@keetanetwork/anchor 0.0.38 → 0.0.40
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/client/index.d.ts +6 -0
- package/client/index.d.ts.map +1 -1
- package/client/index.js +7 -0
- package/client/index.js.map +1 -1
- package/lib/block-listener.d.ts +93 -0
- package/lib/block-listener.d.ts.map +1 -0
- package/lib/block-listener.js +259 -0
- package/lib/block-listener.js.map +1 -0
- package/lib/encrypted-container.d.ts +53 -3
- package/lib/encrypted-container.d.ts.map +1 -1
- package/lib/encrypted-container.js +549 -93
- package/lib/encrypted-container.js.map +1 -1
- package/lib/error.d.ts.map +1 -1
- package/lib/error.js +3 -1
- package/lib/error.js.map +1 -1
- package/lib/http-server/index.d.ts +14 -1
- package/lib/http-server/index.d.ts.map +1 -1
- package/lib/http-server/index.js +144 -12
- package/lib/http-server/index.js.map +1 -1
- package/lib/queue/drivers/queue_firestore.d.ts +29 -0
- package/lib/queue/drivers/queue_firestore.d.ts.map +1 -0
- package/lib/queue/drivers/queue_firestore.js +279 -0
- package/lib/queue/drivers/queue_firestore.js.map +1 -0
- package/lib/queue/index.d.ts +74 -3
- package/lib/queue/index.d.ts.map +1 -1
- package/lib/queue/index.js +161 -36
- package/lib/queue/index.js.map +1 -1
- package/lib/resolver.d.ts +61 -15
- package/lib/resolver.d.ts.map +1 -1
- package/lib/resolver.js +1132 -686
- package/lib/resolver.js.map +1 -1
- package/lib/utils/signing.d.ts +12 -3
- package/lib/utils/signing.d.ts.map +1 -1
- package/lib/utils/signing.js +7 -13
- package/lib/utils/signing.js.map +1 -1
- package/npm-shrinkwrap.json +6 -6
- package/package.json +2 -1
- package/services/asset-movement/client.d.ts +10 -3
- package/services/asset-movement/client.d.ts.map +1 -1
- package/services/asset-movement/client.js +36 -3
- package/services/asset-movement/client.js.map +1 -1
- package/services/asset-movement/common.d.ts +57 -22
- package/services/asset-movement/common.d.ts.map +1 -1
- package/services/asset-movement/common.js +370 -70
- package/services/asset-movement/common.js.map +1 -1
- package/services/fx/client.d.ts +15 -3
- package/services/fx/client.d.ts.map +1 -1
- package/services/fx/client.js +18 -0
- package/services/fx/client.js.map +1 -1
- package/services/fx/common.d.ts +1 -1
- package/services/fx/common.js.map +1 -1
- package/services/fx/server.d.ts +59 -9
- package/services/fx/server.d.ts.map +1 -1
- package/services/fx/server.js +337 -140
- package/services/fx/server.js.map +1 -1
- package/services/fx/util.d.ts +26 -8
- package/services/fx/util.d.ts.map +1 -1
- package/services/fx/util.js +92 -4
- package/services/fx/util.js.map +1 -1
- package/services/storage/client.d.ts +322 -0
- package/services/storage/client.d.ts.map +1 -0
- package/services/storage/client.js +1058 -0
- package/services/storage/client.js.map +1 -0
- package/services/storage/common.d.ts +653 -0
- package/services/storage/common.d.ts.map +1 -0
- package/services/storage/common.generated.d.ts +17 -0
- package/services/storage/common.generated.d.ts.map +1 -0
- package/services/storage/common.generated.js +863 -0
- package/services/storage/common.generated.js.map +1 -0
- package/services/storage/common.js +587 -0
- package/services/storage/common.js.map +1 -0
- package/services/storage/lib/validators.d.ts +64 -0
- package/services/storage/lib/validators.d.ts.map +1 -0
- package/services/storage/lib/validators.js +82 -0
- package/services/storage/lib/validators.js.map +1 -0
- package/services/storage/server.d.ts +127 -0
- package/services/storage/server.d.ts.map +1 -0
- package/services/storage/server.js +626 -0
- package/services/storage/server.js.map +1 -0
- package/services/storage/test-utils.d.ts +70 -0
- package/services/storage/test-utils.d.ts.map +1 -0
- package/services/storage/test-utils.js +347 -0
- package/services/storage/test-utils.js.map +1 -0
- package/services/storage/utils.d.ts +3 -0
- package/services/storage/utils.d.ts.map +1 -0
- package/services/storage/utils.js +10 -0
- package/services/storage/utils.js.map +1 -0
- package/services/username/client.d.ts +145 -0
- package/services/username/client.d.ts.map +1 -0
- package/services/username/client.js +681 -0
- package/services/username/client.js.map +1 -0
- package/services/username/common.d.ts +136 -0
- package/services/username/common.d.ts.map +1 -0
- package/services/username/common.generated.d.ts +13 -0
- package/services/username/common.generated.d.ts.map +1 -0
- package/services/username/common.generated.js +256 -0
- package/services/username/common.generated.js.map +1 -0
- package/services/username/common.js +226 -0
- package/services/username/common.js.map +1 -0
- package/services/username/server.d.ts +51 -0
- package/services/username/server.d.ts.map +1 -0
- package/services/username/server.js +264 -0
- package/services/username/server.js.map +1 -0
package/lib/resolver.js
CHANGED
|
@@ -6,7 +6,7 @@ import { assertNever } from './utils/never.js';
|
|
|
6
6
|
import { Buffer } from './utils/buffer.js';
|
|
7
7
|
import crypto from './utils/crypto.js';
|
|
8
8
|
import { createIs, createAssert } from 'typia';
|
|
9
|
-
import { convertAssetLocationInputToCanonical, convertAssetOrPairSearchInputToCanonical } from '../services/asset-movement/common.js';
|
|
9
|
+
import { convertAssetLocationInputToCanonical, convertAssetOrPairSearchInputToCanonical, assertKeetaSupportedAssetsMetadata } from '../services/asset-movement/common.js';
|
|
10
10
|
const KeetaNetAccount = KeetaNetClient.lib.Account;
|
|
11
11
|
const isCurrencySearchCanonical = (() => { const _iv1 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); return input => null !== input && undefined !== input && (true === _iv1.has(input) || "string" === typeof input && RegExp(/^\$(.*)/).test(input)); })();
|
|
12
12
|
function assertValidCountryCodes(input) {
|
|
@@ -87,6 +87,19 @@ function assertValidOperationsAssetMovement(input) {
|
|
|
87
87
|
/* XXX:TODO: Validate the specific operations */
|
|
88
88
|
assertValidOperationsBanking(input);
|
|
89
89
|
}
|
|
90
|
+
function assertValidOperationsUsername(input) {
|
|
91
|
+
assertValidOperationsBanking(input);
|
|
92
|
+
}
|
|
93
|
+
function assertValidOptionalUsernamePattern(input) {
|
|
94
|
+
if (typeof input !== 'object' || input === null) {
|
|
95
|
+
throw (new Error(`Expected an object, got ${typeof input}`));
|
|
96
|
+
}
|
|
97
|
+
if ('usernamePattern' in input && input.usernamePattern !== undefined) {
|
|
98
|
+
if (typeof input.usernamePattern !== 'string' && typeof input.usernamePattern !== 'function') {
|
|
99
|
+
throw (new Error(`Expected "usernamePattern" to be a string | function, got ${typeof input.usernamePattern}`));
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
90
103
|
function assertValidOptionalKYCProviders(input) {
|
|
91
104
|
if (typeof input !== 'object' || input === null) {
|
|
92
105
|
throw (new Error(`Expected an object, got ${typeof input}`));
|
|
@@ -163,6 +176,11 @@ const assertResolverLookupAssetMovementResults = async function (input) {
|
|
|
163
176
|
// @ts-ignore
|
|
164
177
|
return (input);
|
|
165
178
|
};
|
|
179
|
+
const assertResolverLookupUsernameResult = function (input) {
|
|
180
|
+
assertValidOperationsUsername(input);
|
|
181
|
+
assertValidOptionalUsernamePattern(input);
|
|
182
|
+
return (input);
|
|
183
|
+
};
|
|
166
184
|
// #endregion
|
|
167
185
|
// #region Validation
|
|
168
186
|
async function isValidOperations(input) {
|
|
@@ -257,7 +275,7 @@ const isExternalURL = (() => { const _io0 = input => "2b828e33-2692-46e9-817e-9b
|
|
|
257
275
|
* access the mutable stats object.
|
|
258
276
|
*/
|
|
259
277
|
const statsAccessToken = Symbol('statsAccessToken');
|
|
260
|
-
const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _iv11 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _iv12 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _iv16 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv18 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv20 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv22 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv24 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv26 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv28 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av38 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _av39 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _av40 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _av44 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av46 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av48 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av50 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av52 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av54 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av56 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _io0 = input => "2b828e33-2692-46e9-817e-9b93d63f28fd" === input.external && "string" === typeof input.url; const _io1 = input => null !== input.version && undefined !== input.version && ("number" === typeof input.version || "object" === typeof input.version && null !== input.version && _io0(input.version)) && ("object" === typeof input.currencyMap && null !== input.currencyMap && false === Array.isArray(input.currencyMap) && _iu4(input.currencyMap)) && ("object" === typeof input.services && null !== input.services && false === Array.isArray(input.services) && _iu5(input.services)); const _io2 = input => null !== input.AFN && (undefined === input.AFN || "string" === typeof input.AFN && (RegExp(/^keeta_am(.*)/).test(input.AFN) || RegExp(/^keeta_an(.*)/).test(input.AFN) || RegExp(/^keeta_ao(.*)/).test(input.AFN) || RegExp(/^keeta_ap(.*)/).test(input.AFN) || RegExp(/^tyblocks_am(.*)/).test(input.AFN) || RegExp(/^tyblocks_an(.*)/).test(input.AFN) || RegExp(/^tyblocks_ao(.*)/).test(input.AFN) || RegExp(/^tyblocks_ap(.*)/).test(input.AFN)) || "object" === typeof input.AFN && null !== input.AFN && _io0(input.AFN)) && (null !== input.EUR && (undefined === input.EUR || "string" === typeof input.EUR && (RegExp(/^keeta_am(.*)/).test(input.EUR) || RegExp(/^keeta_an(.*)/).test(input.EUR) || RegExp(/^keeta_ao(.*)/).test(input.EUR) || RegExp(/^keeta_ap(.*)/).test(input.EUR) || RegExp(/^tyblocks_am(.*)/).test(input.EUR) || RegExp(/^tyblocks_an(.*)/).test(input.EUR) || RegExp(/^tyblocks_ao(.*)/).test(input.EUR) || RegExp(/^tyblocks_ap(.*)/).test(input.EUR)) || "object" === typeof input.EUR && null !== input.EUR && _io0(input.EUR))) && (null !== input.ALL && (undefined === input.ALL || "string" === typeof input.ALL && (RegExp(/^keeta_am(.*)/).test(input.ALL) || RegExp(/^keeta_an(.*)/).test(input.ALL) || RegExp(/^keeta_ao(.*)/).test(input.ALL) || RegExp(/^keeta_ap(.*)/).test(input.ALL) || RegExp(/^tyblocks_am(.*)/).test(input.ALL) || RegExp(/^tyblocks_an(.*)/).test(input.ALL) || RegExp(/^tyblocks_ao(.*)/).test(input.ALL) || RegExp(/^tyblocks_ap(.*)/).test(input.ALL)) || "object" === typeof input.ALL && null !== input.ALL && _io0(input.ALL))) && (null !== input.DZD && (undefined === input.DZD || "string" === typeof input.DZD && (RegExp(/^keeta_am(.*)/).test(input.DZD) || RegExp(/^keeta_an(.*)/).test(input.DZD) || RegExp(/^keeta_ao(.*)/).test(input.DZD) || RegExp(/^keeta_ap(.*)/).test(input.DZD) || RegExp(/^tyblocks_am(.*)/).test(input.DZD) || RegExp(/^tyblocks_an(.*)/).test(input.DZD) || RegExp(/^tyblocks_ao(.*)/).test(input.DZD) || RegExp(/^tyblocks_ap(.*)/).test(input.DZD)) || "object" === typeof input.DZD && null !== input.DZD && _io0(input.DZD))) && (null !== input.USD && (undefined === input.USD || "string" === typeof input.USD && (RegExp(/^keeta_am(.*)/).test(input.USD) || RegExp(/^keeta_an(.*)/).test(input.USD) || RegExp(/^keeta_ao(.*)/).test(input.USD) || RegExp(/^keeta_ap(.*)/).test(input.USD) || RegExp(/^tyblocks_am(.*)/).test(input.USD) || RegExp(/^tyblocks_an(.*)/).test(input.USD) || RegExp(/^tyblocks_ao(.*)/).test(input.USD) || RegExp(/^tyblocks_ap(.*)/).test(input.USD)) || "object" === typeof input.USD && null !== input.USD && _io0(input.USD))) && (null !== input.AOA && (undefined === input.AOA || "string" === typeof input.AOA && (RegExp(/^keeta_am(.*)/).test(input.AOA) || RegExp(/^keeta_an(.*)/).test(input.AOA) || RegExp(/^keeta_ao(.*)/).test(input.AOA) || RegExp(/^keeta_ap(.*)/).test(input.AOA) || RegExp(/^tyblocks_am(.*)/).test(input.AOA) || RegExp(/^tyblocks_an(.*)/).test(input.AOA) || RegExp(/^tyblocks_ao(.*)/).test(input.AOA) || RegExp(/^tyblocks_ap(.*)/).test(input.AOA)) || "object" === typeof input.AOA && null !== input.AOA && _io0(input.AOA))) && (null !== input.XCD && (undefined === input.XCD || "string" === typeof input.XCD && (RegExp(/^keeta_am(.*)/).test(input.XCD) || RegExp(/^keeta_an(.*)/).test(input.XCD) || RegExp(/^keeta_ao(.*)/).test(input.XCD) || RegExp(/^keeta_ap(.*)/).test(input.XCD) || RegExp(/^tyblocks_am(.*)/).test(input.XCD) || RegExp(/^tyblocks_an(.*)/).test(input.XCD) || RegExp(/^tyblocks_ao(.*)/).test(input.XCD) || RegExp(/^tyblocks_ap(.*)/).test(input.XCD)) || "object" === typeof input.XCD && null !== input.XCD && _io0(input.XCD))) && (null !== input.ARS && (undefined === input.ARS || "string" === typeof input.ARS && (RegExp(/^keeta_am(.*)/).test(input.ARS) || RegExp(/^keeta_an(.*)/).test(input.ARS) || RegExp(/^keeta_ao(.*)/).test(input.ARS) || RegExp(/^keeta_ap(.*)/).test(input.ARS) || RegExp(/^tyblocks_am(.*)/).test(input.ARS) || RegExp(/^tyblocks_an(.*)/).test(input.ARS) || RegExp(/^tyblocks_ao(.*)/).test(input.ARS) || RegExp(/^tyblocks_ap(.*)/).test(input.ARS)) || "object" === typeof input.ARS && null !== input.ARS && _io0(input.ARS))) && (null !== input.AMD && (undefined === input.AMD || "string" === typeof input.AMD && (RegExp(/^keeta_am(.*)/).test(input.AMD) || RegExp(/^keeta_an(.*)/).test(input.AMD) || RegExp(/^keeta_ao(.*)/).test(input.AMD) || RegExp(/^keeta_ap(.*)/).test(input.AMD) || RegExp(/^tyblocks_am(.*)/).test(input.AMD) || RegExp(/^tyblocks_an(.*)/).test(input.AMD) || RegExp(/^tyblocks_ao(.*)/).test(input.AMD) || RegExp(/^tyblocks_ap(.*)/).test(input.AMD)) || "object" === typeof input.AMD && null !== input.AMD && _io0(input.AMD))) && (null !== input.AWG && (undefined === input.AWG || "string" === typeof input.AWG && (RegExp(/^keeta_am(.*)/).test(input.AWG) || RegExp(/^keeta_an(.*)/).test(input.AWG) || RegExp(/^keeta_ao(.*)/).test(input.AWG) || RegExp(/^keeta_ap(.*)/).test(input.AWG) || RegExp(/^tyblocks_am(.*)/).test(input.AWG) || RegExp(/^tyblocks_an(.*)/).test(input.AWG) || RegExp(/^tyblocks_ao(.*)/).test(input.AWG) || RegExp(/^tyblocks_ap(.*)/).test(input.AWG)) || "object" === typeof input.AWG && null !== input.AWG && _io0(input.AWG))) && (null !== input.AUD && (undefined === input.AUD || "string" === typeof input.AUD && (RegExp(/^keeta_am(.*)/).test(input.AUD) || RegExp(/^keeta_an(.*)/).test(input.AUD) || RegExp(/^keeta_ao(.*)/).test(input.AUD) || RegExp(/^keeta_ap(.*)/).test(input.AUD) || RegExp(/^tyblocks_am(.*)/).test(input.AUD) || RegExp(/^tyblocks_an(.*)/).test(input.AUD) || RegExp(/^tyblocks_ao(.*)/).test(input.AUD) || RegExp(/^tyblocks_ap(.*)/).test(input.AUD)) || "object" === typeof input.AUD && null !== input.AUD && _io0(input.AUD))) && (null !== input.AZN && (undefined === input.AZN || "string" === typeof input.AZN && (RegExp(/^keeta_am(.*)/).test(input.AZN) || RegExp(/^keeta_an(.*)/).test(input.AZN) || RegExp(/^keeta_ao(.*)/).test(input.AZN) || RegExp(/^keeta_ap(.*)/).test(input.AZN) || RegExp(/^tyblocks_am(.*)/).test(input.AZN) || RegExp(/^tyblocks_an(.*)/).test(input.AZN) || RegExp(/^tyblocks_ao(.*)/).test(input.AZN) || RegExp(/^tyblocks_ap(.*)/).test(input.AZN)) || "object" === typeof input.AZN && null !== input.AZN && _io0(input.AZN))) && (null !== input.BSD && (undefined === input.BSD || "string" === typeof input.BSD && (RegExp(/^keeta_am(.*)/).test(input.BSD) || RegExp(/^keeta_an(.*)/).test(input.BSD) || RegExp(/^keeta_ao(.*)/).test(input.BSD) || RegExp(/^keeta_ap(.*)/).test(input.BSD) || RegExp(/^tyblocks_am(.*)/).test(input.BSD) || RegExp(/^tyblocks_an(.*)/).test(input.BSD) || RegExp(/^tyblocks_ao(.*)/).test(input.BSD) || RegExp(/^tyblocks_ap(.*)/).test(input.BSD)) || "object" === typeof input.BSD && null !== input.BSD && _io0(input.BSD))) && (null !== input.BHD && (undefined === input.BHD || "string" === typeof input.BHD && (RegExp(/^keeta_am(.*)/).test(input.BHD) || RegExp(/^keeta_an(.*)/).test(input.BHD) || RegExp(/^keeta_ao(.*)/).test(input.BHD) || RegExp(/^keeta_ap(.*)/).test(input.BHD) || RegExp(/^tyblocks_am(.*)/).test(input.BHD) || RegExp(/^tyblocks_an(.*)/).test(input.BHD) || RegExp(/^tyblocks_ao(.*)/).test(input.BHD) || RegExp(/^tyblocks_ap(.*)/).test(input.BHD)) || "object" === typeof input.BHD && null !== input.BHD && _io0(input.BHD))) && (null !== input.BDT && (undefined === input.BDT || "string" === typeof input.BDT && (RegExp(/^keeta_am(.*)/).test(input.BDT) || RegExp(/^keeta_an(.*)/).test(input.BDT) || RegExp(/^keeta_ao(.*)/).test(input.BDT) || RegExp(/^keeta_ap(.*)/).test(input.BDT) || RegExp(/^tyblocks_am(.*)/).test(input.BDT) || RegExp(/^tyblocks_an(.*)/).test(input.BDT) || RegExp(/^tyblocks_ao(.*)/).test(input.BDT) || RegExp(/^tyblocks_ap(.*)/).test(input.BDT)) || "object" === typeof input.BDT && null !== input.BDT && _io0(input.BDT))) && (null !== input.BBD && (undefined === input.BBD || "string" === typeof input.BBD && (RegExp(/^keeta_am(.*)/).test(input.BBD) || RegExp(/^keeta_an(.*)/).test(input.BBD) || RegExp(/^keeta_ao(.*)/).test(input.BBD) || RegExp(/^keeta_ap(.*)/).test(input.BBD) || RegExp(/^tyblocks_am(.*)/).test(input.BBD) || RegExp(/^tyblocks_an(.*)/).test(input.BBD) || RegExp(/^tyblocks_ao(.*)/).test(input.BBD) || RegExp(/^tyblocks_ap(.*)/).test(input.BBD)) || "object" === typeof input.BBD && null !== input.BBD && _io0(input.BBD))) && (null !== input.BYN && (undefined === input.BYN || "string" === typeof input.BYN && (RegExp(/^keeta_am(.*)/).test(input.BYN) || RegExp(/^keeta_an(.*)/).test(input.BYN) || RegExp(/^keeta_ao(.*)/).test(input.BYN) || RegExp(/^keeta_ap(.*)/).test(input.BYN) || RegExp(/^tyblocks_am(.*)/).test(input.BYN) || RegExp(/^tyblocks_an(.*)/).test(input.BYN) || RegExp(/^tyblocks_ao(.*)/).test(input.BYN) || RegExp(/^tyblocks_ap(.*)/).test(input.BYN)) || "object" === typeof input.BYN && null !== input.BYN && _io0(input.BYN))) && (null !== input.BZD && (undefined === input.BZD || "string" === typeof input.BZD && (RegExp(/^keeta_am(.*)/).test(input.BZD) || RegExp(/^keeta_an(.*)/).test(input.BZD) || RegExp(/^keeta_ao(.*)/).test(input.BZD) || RegExp(/^keeta_ap(.*)/).test(input.BZD) || RegExp(/^tyblocks_am(.*)/).test(input.BZD) || RegExp(/^tyblocks_an(.*)/).test(input.BZD) || RegExp(/^tyblocks_ao(.*)/).test(input.BZD) || RegExp(/^tyblocks_ap(.*)/).test(input.BZD)) || "object" === typeof input.BZD && null !== input.BZD && _io0(input.BZD))) && (null !== input.XOF && (undefined === input.XOF || "string" === typeof input.XOF && (RegExp(/^keeta_am(.*)/).test(input.XOF) || RegExp(/^keeta_an(.*)/).test(input.XOF) || RegExp(/^keeta_ao(.*)/).test(input.XOF) || RegExp(/^keeta_ap(.*)/).test(input.XOF) || RegExp(/^tyblocks_am(.*)/).test(input.XOF) || RegExp(/^tyblocks_an(.*)/).test(input.XOF) || RegExp(/^tyblocks_ao(.*)/).test(input.XOF) || RegExp(/^tyblocks_ap(.*)/).test(input.XOF)) || "object" === typeof input.XOF && null !== input.XOF && _io0(input.XOF))) && (null !== input.BMD && (undefined === input.BMD || "string" === typeof input.BMD && (RegExp(/^keeta_am(.*)/).test(input.BMD) || RegExp(/^keeta_an(.*)/).test(input.BMD) || RegExp(/^keeta_ao(.*)/).test(input.BMD) || RegExp(/^keeta_ap(.*)/).test(input.BMD) || RegExp(/^tyblocks_am(.*)/).test(input.BMD) || RegExp(/^tyblocks_an(.*)/).test(input.BMD) || RegExp(/^tyblocks_ao(.*)/).test(input.BMD) || RegExp(/^tyblocks_ap(.*)/).test(input.BMD)) || "object" === typeof input.BMD && null !== input.BMD && _io0(input.BMD))) && (null !== input.INR && (undefined === input.INR || "string" === typeof input.INR && (RegExp(/^keeta_am(.*)/).test(input.INR) || RegExp(/^keeta_an(.*)/).test(input.INR) || RegExp(/^keeta_ao(.*)/).test(input.INR) || RegExp(/^keeta_ap(.*)/).test(input.INR) || RegExp(/^tyblocks_am(.*)/).test(input.INR) || RegExp(/^tyblocks_an(.*)/).test(input.INR) || RegExp(/^tyblocks_ao(.*)/).test(input.INR) || RegExp(/^tyblocks_ap(.*)/).test(input.INR)) || "object" === typeof input.INR && null !== input.INR && _io0(input.INR))) && (null !== input.BTN && (undefined === input.BTN || "string" === typeof input.BTN && (RegExp(/^keeta_am(.*)/).test(input.BTN) || RegExp(/^keeta_an(.*)/).test(input.BTN) || RegExp(/^keeta_ao(.*)/).test(input.BTN) || RegExp(/^keeta_ap(.*)/).test(input.BTN) || RegExp(/^tyblocks_am(.*)/).test(input.BTN) || RegExp(/^tyblocks_an(.*)/).test(input.BTN) || RegExp(/^tyblocks_ao(.*)/).test(input.BTN) || RegExp(/^tyblocks_ap(.*)/).test(input.BTN)) || "object" === typeof input.BTN && null !== input.BTN && _io0(input.BTN))) && (null !== input.BOB && (undefined === input.BOB || "string" === typeof input.BOB && (RegExp(/^keeta_am(.*)/).test(input.BOB) || RegExp(/^keeta_an(.*)/).test(input.BOB) || RegExp(/^keeta_ao(.*)/).test(input.BOB) || RegExp(/^keeta_ap(.*)/).test(input.BOB) || RegExp(/^tyblocks_am(.*)/).test(input.BOB) || RegExp(/^tyblocks_an(.*)/).test(input.BOB) || RegExp(/^tyblocks_ao(.*)/).test(input.BOB) || RegExp(/^tyblocks_ap(.*)/).test(input.BOB)) || "object" === typeof input.BOB && null !== input.BOB && _io0(input.BOB))) && (null !== input.BOV && (undefined === input.BOV || "string" === typeof input.BOV && (RegExp(/^keeta_am(.*)/).test(input.BOV) || RegExp(/^keeta_an(.*)/).test(input.BOV) || RegExp(/^keeta_ao(.*)/).test(input.BOV) || RegExp(/^keeta_ap(.*)/).test(input.BOV) || RegExp(/^tyblocks_am(.*)/).test(input.BOV) || RegExp(/^tyblocks_an(.*)/).test(input.BOV) || RegExp(/^tyblocks_ao(.*)/).test(input.BOV) || RegExp(/^tyblocks_ap(.*)/).test(input.BOV)) || "object" === typeof input.BOV && null !== input.BOV && _io0(input.BOV))) && (null !== input.BAM && (undefined === input.BAM || "string" === typeof input.BAM && (RegExp(/^keeta_am(.*)/).test(input.BAM) || RegExp(/^keeta_an(.*)/).test(input.BAM) || RegExp(/^keeta_ao(.*)/).test(input.BAM) || RegExp(/^keeta_ap(.*)/).test(input.BAM) || RegExp(/^tyblocks_am(.*)/).test(input.BAM) || RegExp(/^tyblocks_an(.*)/).test(input.BAM) || RegExp(/^tyblocks_ao(.*)/).test(input.BAM) || RegExp(/^tyblocks_ap(.*)/).test(input.BAM)) || "object" === typeof input.BAM && null !== input.BAM && _io0(input.BAM))) && (null !== input.BWP && (undefined === input.BWP || "string" === typeof input.BWP && (RegExp(/^keeta_am(.*)/).test(input.BWP) || RegExp(/^keeta_an(.*)/).test(input.BWP) || RegExp(/^keeta_ao(.*)/).test(input.BWP) || RegExp(/^keeta_ap(.*)/).test(input.BWP) || RegExp(/^tyblocks_am(.*)/).test(input.BWP) || RegExp(/^tyblocks_an(.*)/).test(input.BWP) || RegExp(/^tyblocks_ao(.*)/).test(input.BWP) || RegExp(/^tyblocks_ap(.*)/).test(input.BWP)) || "object" === typeof input.BWP && null !== input.BWP && _io0(input.BWP))) && (null !== input.NOK && (undefined === input.NOK || "string" === typeof input.NOK && (RegExp(/^keeta_am(.*)/).test(input.NOK) || RegExp(/^keeta_an(.*)/).test(input.NOK) || RegExp(/^keeta_ao(.*)/).test(input.NOK) || RegExp(/^keeta_ap(.*)/).test(input.NOK) || RegExp(/^tyblocks_am(.*)/).test(input.NOK) || RegExp(/^tyblocks_an(.*)/).test(input.NOK) || RegExp(/^tyblocks_ao(.*)/).test(input.NOK) || RegExp(/^tyblocks_ap(.*)/).test(input.NOK)) || "object" === typeof input.NOK && null !== input.NOK && _io0(input.NOK))) && (null !== input.BRL && (undefined === input.BRL || "string" === typeof input.BRL && (RegExp(/^keeta_am(.*)/).test(input.BRL) || RegExp(/^keeta_an(.*)/).test(input.BRL) || RegExp(/^keeta_ao(.*)/).test(input.BRL) || RegExp(/^keeta_ap(.*)/).test(input.BRL) || RegExp(/^tyblocks_am(.*)/).test(input.BRL) || RegExp(/^tyblocks_an(.*)/).test(input.BRL) || RegExp(/^tyblocks_ao(.*)/).test(input.BRL) || RegExp(/^tyblocks_ap(.*)/).test(input.BRL)) || "object" === typeof input.BRL && null !== input.BRL && _io0(input.BRL))) && (null !== input.BND && (undefined === input.BND || "string" === typeof input.BND && (RegExp(/^keeta_am(.*)/).test(input.BND) || RegExp(/^keeta_an(.*)/).test(input.BND) || RegExp(/^keeta_ao(.*)/).test(input.BND) || RegExp(/^keeta_ap(.*)/).test(input.BND) || RegExp(/^tyblocks_am(.*)/).test(input.BND) || RegExp(/^tyblocks_an(.*)/).test(input.BND) || RegExp(/^tyblocks_ao(.*)/).test(input.BND) || RegExp(/^tyblocks_ap(.*)/).test(input.BND)) || "object" === typeof input.BND && null !== input.BND && _io0(input.BND))) && (null !== input.BGN && (undefined === input.BGN || "string" === typeof input.BGN && (RegExp(/^keeta_am(.*)/).test(input.BGN) || RegExp(/^keeta_an(.*)/).test(input.BGN) || RegExp(/^keeta_ao(.*)/).test(input.BGN) || RegExp(/^keeta_ap(.*)/).test(input.BGN) || RegExp(/^tyblocks_am(.*)/).test(input.BGN) || RegExp(/^tyblocks_an(.*)/).test(input.BGN) || RegExp(/^tyblocks_ao(.*)/).test(input.BGN) || RegExp(/^tyblocks_ap(.*)/).test(input.BGN)) || "object" === typeof input.BGN && null !== input.BGN && _io0(input.BGN))) && (null !== input.BIF && (undefined === input.BIF || "string" === typeof input.BIF && (RegExp(/^keeta_am(.*)/).test(input.BIF) || RegExp(/^keeta_an(.*)/).test(input.BIF) || RegExp(/^keeta_ao(.*)/).test(input.BIF) || RegExp(/^keeta_ap(.*)/).test(input.BIF) || RegExp(/^tyblocks_am(.*)/).test(input.BIF) || RegExp(/^tyblocks_an(.*)/).test(input.BIF) || RegExp(/^tyblocks_ao(.*)/).test(input.BIF) || RegExp(/^tyblocks_ap(.*)/).test(input.BIF)) || "object" === typeof input.BIF && null !== input.BIF && _io0(input.BIF))) && (null !== input.CVE && (undefined === input.CVE || "string" === typeof input.CVE && (RegExp(/^keeta_am(.*)/).test(input.CVE) || RegExp(/^keeta_an(.*)/).test(input.CVE) || RegExp(/^keeta_ao(.*)/).test(input.CVE) || RegExp(/^keeta_ap(.*)/).test(input.CVE) || RegExp(/^tyblocks_am(.*)/).test(input.CVE) || RegExp(/^tyblocks_an(.*)/).test(input.CVE) || RegExp(/^tyblocks_ao(.*)/).test(input.CVE) || RegExp(/^tyblocks_ap(.*)/).test(input.CVE)) || "object" === typeof input.CVE && null !== input.CVE && _io0(input.CVE))) && (null !== input.KHR && (undefined === input.KHR || "string" === typeof input.KHR && (RegExp(/^keeta_am(.*)/).test(input.KHR) || RegExp(/^keeta_an(.*)/).test(input.KHR) || RegExp(/^keeta_ao(.*)/).test(input.KHR) || RegExp(/^keeta_ap(.*)/).test(input.KHR) || RegExp(/^tyblocks_am(.*)/).test(input.KHR) || RegExp(/^tyblocks_an(.*)/).test(input.KHR) || RegExp(/^tyblocks_ao(.*)/).test(input.KHR) || RegExp(/^tyblocks_ap(.*)/).test(input.KHR)) || "object" === typeof input.KHR && null !== input.KHR && _io0(input.KHR))) && (null !== input.XAF && (undefined === input.XAF || "string" === typeof input.XAF && (RegExp(/^keeta_am(.*)/).test(input.XAF) || RegExp(/^keeta_an(.*)/).test(input.XAF) || RegExp(/^keeta_ao(.*)/).test(input.XAF) || RegExp(/^keeta_ap(.*)/).test(input.XAF) || RegExp(/^tyblocks_am(.*)/).test(input.XAF) || RegExp(/^tyblocks_an(.*)/).test(input.XAF) || RegExp(/^tyblocks_ao(.*)/).test(input.XAF) || RegExp(/^tyblocks_ap(.*)/).test(input.XAF)) || "object" === typeof input.XAF && null !== input.XAF && _io0(input.XAF))) && (null !== input.CAD && (undefined === input.CAD || "string" === typeof input.CAD && (RegExp(/^keeta_am(.*)/).test(input.CAD) || RegExp(/^keeta_an(.*)/).test(input.CAD) || RegExp(/^keeta_ao(.*)/).test(input.CAD) || RegExp(/^keeta_ap(.*)/).test(input.CAD) || RegExp(/^tyblocks_am(.*)/).test(input.CAD) || RegExp(/^tyblocks_an(.*)/).test(input.CAD) || RegExp(/^tyblocks_ao(.*)/).test(input.CAD) || RegExp(/^tyblocks_ap(.*)/).test(input.CAD)) || "object" === typeof input.CAD && null !== input.CAD && _io0(input.CAD))) && (null !== input.KYD && (undefined === input.KYD || "string" === typeof input.KYD && (RegExp(/^keeta_am(.*)/).test(input.KYD) || RegExp(/^keeta_an(.*)/).test(input.KYD) || RegExp(/^keeta_ao(.*)/).test(input.KYD) || RegExp(/^keeta_ap(.*)/).test(input.KYD) || RegExp(/^tyblocks_am(.*)/).test(input.KYD) || RegExp(/^tyblocks_an(.*)/).test(input.KYD) || RegExp(/^tyblocks_ao(.*)/).test(input.KYD) || RegExp(/^tyblocks_ap(.*)/).test(input.KYD)) || "object" === typeof input.KYD && null !== input.KYD && _io0(input.KYD))) && (null !== input.CLP && (undefined === input.CLP || "string" === typeof input.CLP && (RegExp(/^keeta_am(.*)/).test(input.CLP) || RegExp(/^keeta_an(.*)/).test(input.CLP) || RegExp(/^keeta_ao(.*)/).test(input.CLP) || RegExp(/^keeta_ap(.*)/).test(input.CLP) || RegExp(/^tyblocks_am(.*)/).test(input.CLP) || RegExp(/^tyblocks_an(.*)/).test(input.CLP) || RegExp(/^tyblocks_ao(.*)/).test(input.CLP) || RegExp(/^tyblocks_ap(.*)/).test(input.CLP)) || "object" === typeof input.CLP && null !== input.CLP && _io0(input.CLP))) && (null !== input.CLF && (undefined === input.CLF || "string" === typeof input.CLF && (RegExp(/^keeta_am(.*)/).test(input.CLF) || RegExp(/^keeta_an(.*)/).test(input.CLF) || RegExp(/^keeta_ao(.*)/).test(input.CLF) || RegExp(/^keeta_ap(.*)/).test(input.CLF) || RegExp(/^tyblocks_am(.*)/).test(input.CLF) || RegExp(/^tyblocks_an(.*)/).test(input.CLF) || RegExp(/^tyblocks_ao(.*)/).test(input.CLF) || RegExp(/^tyblocks_ap(.*)/).test(input.CLF)) || "object" === typeof input.CLF && null !== input.CLF && _io0(input.CLF))) && (null !== input.CNY && (undefined === input.CNY || "string" === typeof input.CNY && (RegExp(/^keeta_am(.*)/).test(input.CNY) || RegExp(/^keeta_an(.*)/).test(input.CNY) || RegExp(/^keeta_ao(.*)/).test(input.CNY) || RegExp(/^keeta_ap(.*)/).test(input.CNY) || RegExp(/^tyblocks_am(.*)/).test(input.CNY) || RegExp(/^tyblocks_an(.*)/).test(input.CNY) || RegExp(/^tyblocks_ao(.*)/).test(input.CNY) || RegExp(/^tyblocks_ap(.*)/).test(input.CNY)) || "object" === typeof input.CNY && null !== input.CNY && _io0(input.CNY))) && (null !== input.COP && (undefined === input.COP || "string" === typeof input.COP && (RegExp(/^keeta_am(.*)/).test(input.COP) || RegExp(/^keeta_an(.*)/).test(input.COP) || RegExp(/^keeta_ao(.*)/).test(input.COP) || RegExp(/^keeta_ap(.*)/).test(input.COP) || RegExp(/^tyblocks_am(.*)/).test(input.COP) || RegExp(/^tyblocks_an(.*)/).test(input.COP) || RegExp(/^tyblocks_ao(.*)/).test(input.COP) || RegExp(/^tyblocks_ap(.*)/).test(input.COP)) || "object" === typeof input.COP && null !== input.COP && _io0(input.COP))) && (null !== input.COU && (undefined === input.COU || "string" === typeof input.COU && (RegExp(/^keeta_am(.*)/).test(input.COU) || RegExp(/^keeta_an(.*)/).test(input.COU) || RegExp(/^keeta_ao(.*)/).test(input.COU) || RegExp(/^keeta_ap(.*)/).test(input.COU) || RegExp(/^tyblocks_am(.*)/).test(input.COU) || RegExp(/^tyblocks_an(.*)/).test(input.COU) || RegExp(/^tyblocks_ao(.*)/).test(input.COU) || RegExp(/^tyblocks_ap(.*)/).test(input.COU)) || "object" === typeof input.COU && null !== input.COU && _io0(input.COU))) && (null !== input.KMF && (undefined === input.KMF || "string" === typeof input.KMF && (RegExp(/^keeta_am(.*)/).test(input.KMF) || RegExp(/^keeta_an(.*)/).test(input.KMF) || RegExp(/^keeta_ao(.*)/).test(input.KMF) || RegExp(/^keeta_ap(.*)/).test(input.KMF) || RegExp(/^tyblocks_am(.*)/).test(input.KMF) || RegExp(/^tyblocks_an(.*)/).test(input.KMF) || RegExp(/^tyblocks_ao(.*)/).test(input.KMF) || RegExp(/^tyblocks_ap(.*)/).test(input.KMF)) || "object" === typeof input.KMF && null !== input.KMF && _io0(input.KMF))) && (null !== input.CDF && (undefined === input.CDF || "string" === typeof input.CDF && (RegExp(/^keeta_am(.*)/).test(input.CDF) || RegExp(/^keeta_an(.*)/).test(input.CDF) || RegExp(/^keeta_ao(.*)/).test(input.CDF) || RegExp(/^keeta_ap(.*)/).test(input.CDF) || RegExp(/^tyblocks_am(.*)/).test(input.CDF) || RegExp(/^tyblocks_an(.*)/).test(input.CDF) || RegExp(/^tyblocks_ao(.*)/).test(input.CDF) || RegExp(/^tyblocks_ap(.*)/).test(input.CDF)) || "object" === typeof input.CDF && null !== input.CDF && _io0(input.CDF))) && (null !== input.NZD && (undefined === input.NZD || "string" === typeof input.NZD && (RegExp(/^keeta_am(.*)/).test(input.NZD) || RegExp(/^keeta_an(.*)/).test(input.NZD) || RegExp(/^keeta_ao(.*)/).test(input.NZD) || RegExp(/^keeta_ap(.*)/).test(input.NZD) || RegExp(/^tyblocks_am(.*)/).test(input.NZD) || RegExp(/^tyblocks_an(.*)/).test(input.NZD) || RegExp(/^tyblocks_ao(.*)/).test(input.NZD) || RegExp(/^tyblocks_ap(.*)/).test(input.NZD)) || "object" === typeof input.NZD && null !== input.NZD && _io0(input.NZD))) && (null !== input.CRC && (undefined === input.CRC || "string" === typeof input.CRC && (RegExp(/^keeta_am(.*)/).test(input.CRC) || RegExp(/^keeta_an(.*)/).test(input.CRC) || RegExp(/^keeta_ao(.*)/).test(input.CRC) || RegExp(/^keeta_ap(.*)/).test(input.CRC) || RegExp(/^tyblocks_am(.*)/).test(input.CRC) || RegExp(/^tyblocks_an(.*)/).test(input.CRC) || RegExp(/^tyblocks_ao(.*)/).test(input.CRC) || RegExp(/^tyblocks_ap(.*)/).test(input.CRC)) || "object" === typeof input.CRC && null !== input.CRC && _io0(input.CRC))) && (null !== input.CUP && (undefined === input.CUP || "string" === typeof input.CUP && (RegExp(/^keeta_am(.*)/).test(input.CUP) || RegExp(/^keeta_an(.*)/).test(input.CUP) || RegExp(/^keeta_ao(.*)/).test(input.CUP) || RegExp(/^keeta_ap(.*)/).test(input.CUP) || RegExp(/^tyblocks_am(.*)/).test(input.CUP) || RegExp(/^tyblocks_an(.*)/).test(input.CUP) || RegExp(/^tyblocks_ao(.*)/).test(input.CUP) || RegExp(/^tyblocks_ap(.*)/).test(input.CUP)) || "object" === typeof input.CUP && null !== input.CUP && _io0(input.CUP))) && (null !== input.CUC && (undefined === input.CUC || "string" === typeof input.CUC && (RegExp(/^keeta_am(.*)/).test(input.CUC) || RegExp(/^keeta_an(.*)/).test(input.CUC) || RegExp(/^keeta_ao(.*)/).test(input.CUC) || RegExp(/^keeta_ap(.*)/).test(input.CUC) || RegExp(/^tyblocks_am(.*)/).test(input.CUC) || RegExp(/^tyblocks_an(.*)/).test(input.CUC) || RegExp(/^tyblocks_ao(.*)/).test(input.CUC) || RegExp(/^tyblocks_ap(.*)/).test(input.CUC)) || "object" === typeof input.CUC && null !== input.CUC && _io0(input.CUC))) && (null !== input.ANG && (undefined === input.ANG || "string" === typeof input.ANG && (RegExp(/^keeta_am(.*)/).test(input.ANG) || RegExp(/^keeta_an(.*)/).test(input.ANG) || RegExp(/^keeta_ao(.*)/).test(input.ANG) || RegExp(/^keeta_ap(.*)/).test(input.ANG) || RegExp(/^tyblocks_am(.*)/).test(input.ANG) || RegExp(/^tyblocks_an(.*)/).test(input.ANG) || RegExp(/^tyblocks_ao(.*)/).test(input.ANG) || RegExp(/^tyblocks_ap(.*)/).test(input.ANG)) || "object" === typeof input.ANG && null !== input.ANG && _io0(input.ANG))) && (null !== input.CZK && (undefined === input.CZK || "string" === typeof input.CZK && (RegExp(/^keeta_am(.*)/).test(input.CZK) || RegExp(/^keeta_an(.*)/).test(input.CZK) || RegExp(/^keeta_ao(.*)/).test(input.CZK) || RegExp(/^keeta_ap(.*)/).test(input.CZK) || RegExp(/^tyblocks_am(.*)/).test(input.CZK) || RegExp(/^tyblocks_an(.*)/).test(input.CZK) || RegExp(/^tyblocks_ao(.*)/).test(input.CZK) || RegExp(/^tyblocks_ap(.*)/).test(input.CZK)) || "object" === typeof input.CZK && null !== input.CZK && _io0(input.CZK))) && (null !== input.DKK && (undefined === input.DKK || "string" === typeof input.DKK && (RegExp(/^keeta_am(.*)/).test(input.DKK) || RegExp(/^keeta_an(.*)/).test(input.DKK) || RegExp(/^keeta_ao(.*)/).test(input.DKK) || RegExp(/^keeta_ap(.*)/).test(input.DKK) || RegExp(/^tyblocks_am(.*)/).test(input.DKK) || RegExp(/^tyblocks_an(.*)/).test(input.DKK) || RegExp(/^tyblocks_ao(.*)/).test(input.DKK) || RegExp(/^tyblocks_ap(.*)/).test(input.DKK)) || "object" === typeof input.DKK && null !== input.DKK && _io0(input.DKK))) && (null !== input.DJF && (undefined === input.DJF || "string" === typeof input.DJF && (RegExp(/^keeta_am(.*)/).test(input.DJF) || RegExp(/^keeta_an(.*)/).test(input.DJF) || RegExp(/^keeta_ao(.*)/).test(input.DJF) || RegExp(/^keeta_ap(.*)/).test(input.DJF) || RegExp(/^tyblocks_am(.*)/).test(input.DJF) || RegExp(/^tyblocks_an(.*)/).test(input.DJF) || RegExp(/^tyblocks_ao(.*)/).test(input.DJF) || RegExp(/^tyblocks_ap(.*)/).test(input.DJF)) || "object" === typeof input.DJF && null !== input.DJF && _io0(input.DJF))) && (null !== input.DOP && (undefined === input.DOP || "string" === typeof input.DOP && (RegExp(/^keeta_am(.*)/).test(input.DOP) || RegExp(/^keeta_an(.*)/).test(input.DOP) || RegExp(/^keeta_ao(.*)/).test(input.DOP) || RegExp(/^keeta_ap(.*)/).test(input.DOP) || RegExp(/^tyblocks_am(.*)/).test(input.DOP) || RegExp(/^tyblocks_an(.*)/).test(input.DOP) || RegExp(/^tyblocks_ao(.*)/).test(input.DOP) || RegExp(/^tyblocks_ap(.*)/).test(input.DOP)) || "object" === typeof input.DOP && null !== input.DOP && _io0(input.DOP))) && (null !== input.EGP && (undefined === input.EGP || "string" === typeof input.EGP && (RegExp(/^keeta_am(.*)/).test(input.EGP) || RegExp(/^keeta_an(.*)/).test(input.EGP) || RegExp(/^keeta_ao(.*)/).test(input.EGP) || RegExp(/^keeta_ap(.*)/).test(input.EGP) || RegExp(/^tyblocks_am(.*)/).test(input.EGP) || RegExp(/^tyblocks_an(.*)/).test(input.EGP) || RegExp(/^tyblocks_ao(.*)/).test(input.EGP) || RegExp(/^tyblocks_ap(.*)/).test(input.EGP)) || "object" === typeof input.EGP && null !== input.EGP && _io0(input.EGP))) && (null !== input.SVC && (undefined === input.SVC || "string" === typeof input.SVC && (RegExp(/^keeta_am(.*)/).test(input.SVC) || RegExp(/^keeta_an(.*)/).test(input.SVC) || RegExp(/^keeta_ao(.*)/).test(input.SVC) || RegExp(/^keeta_ap(.*)/).test(input.SVC) || RegExp(/^tyblocks_am(.*)/).test(input.SVC) || RegExp(/^tyblocks_an(.*)/).test(input.SVC) || RegExp(/^tyblocks_ao(.*)/).test(input.SVC) || RegExp(/^tyblocks_ap(.*)/).test(input.SVC)) || "object" === typeof input.SVC && null !== input.SVC && _io0(input.SVC))) && (null !== input.ERN && (undefined === input.ERN || "string" === typeof input.ERN && (RegExp(/^keeta_am(.*)/).test(input.ERN) || RegExp(/^keeta_an(.*)/).test(input.ERN) || RegExp(/^keeta_ao(.*)/).test(input.ERN) || RegExp(/^keeta_ap(.*)/).test(input.ERN) || RegExp(/^tyblocks_am(.*)/).test(input.ERN) || RegExp(/^tyblocks_an(.*)/).test(input.ERN) || RegExp(/^tyblocks_ao(.*)/).test(input.ERN) || RegExp(/^tyblocks_ap(.*)/).test(input.ERN)) || "object" === typeof input.ERN && null !== input.ERN && _io0(input.ERN))) && (null !== input.SZL && (undefined === input.SZL || "string" === typeof input.SZL && (RegExp(/^keeta_am(.*)/).test(input.SZL) || RegExp(/^keeta_an(.*)/).test(input.SZL) || RegExp(/^keeta_ao(.*)/).test(input.SZL) || RegExp(/^keeta_ap(.*)/).test(input.SZL) || RegExp(/^tyblocks_am(.*)/).test(input.SZL) || RegExp(/^tyblocks_an(.*)/).test(input.SZL) || RegExp(/^tyblocks_ao(.*)/).test(input.SZL) || RegExp(/^tyblocks_ap(.*)/).test(input.SZL)) || "object" === typeof input.SZL && null !== input.SZL && _io0(input.SZL))) && (null !== input.ETB && (undefined === input.ETB || "string" === typeof input.ETB && (RegExp(/^keeta_am(.*)/).test(input.ETB) || RegExp(/^keeta_an(.*)/).test(input.ETB) || RegExp(/^keeta_ao(.*)/).test(input.ETB) || RegExp(/^keeta_ap(.*)/).test(input.ETB) || RegExp(/^tyblocks_am(.*)/).test(input.ETB) || RegExp(/^tyblocks_an(.*)/).test(input.ETB) || RegExp(/^tyblocks_ao(.*)/).test(input.ETB) || RegExp(/^tyblocks_ap(.*)/).test(input.ETB)) || "object" === typeof input.ETB && null !== input.ETB && _io0(input.ETB))) && (null !== input.FKP && (undefined === input.FKP || "string" === typeof input.FKP && (RegExp(/^keeta_am(.*)/).test(input.FKP) || RegExp(/^keeta_an(.*)/).test(input.FKP) || RegExp(/^keeta_ao(.*)/).test(input.FKP) || RegExp(/^keeta_ap(.*)/).test(input.FKP) || RegExp(/^tyblocks_am(.*)/).test(input.FKP) || RegExp(/^tyblocks_an(.*)/).test(input.FKP) || RegExp(/^tyblocks_ao(.*)/).test(input.FKP) || RegExp(/^tyblocks_ap(.*)/).test(input.FKP)) || "object" === typeof input.FKP && null !== input.FKP && _io0(input.FKP))) && (null !== input.FJD && (undefined === input.FJD || "string" === typeof input.FJD && (RegExp(/^keeta_am(.*)/).test(input.FJD) || RegExp(/^keeta_an(.*)/).test(input.FJD) || RegExp(/^keeta_ao(.*)/).test(input.FJD) || RegExp(/^keeta_ap(.*)/).test(input.FJD) || RegExp(/^tyblocks_am(.*)/).test(input.FJD) || RegExp(/^tyblocks_an(.*)/).test(input.FJD) || RegExp(/^tyblocks_ao(.*)/).test(input.FJD) || RegExp(/^tyblocks_ap(.*)/).test(input.FJD)) || "object" === typeof input.FJD && null !== input.FJD && _io0(input.FJD))) && (null !== input.XPF && (undefined === input.XPF || "string" === typeof input.XPF && (RegExp(/^keeta_am(.*)/).test(input.XPF) || RegExp(/^keeta_an(.*)/).test(input.XPF) || RegExp(/^keeta_ao(.*)/).test(input.XPF) || RegExp(/^keeta_ap(.*)/).test(input.XPF) || RegExp(/^tyblocks_am(.*)/).test(input.XPF) || RegExp(/^tyblocks_an(.*)/).test(input.XPF) || RegExp(/^tyblocks_ao(.*)/).test(input.XPF) || RegExp(/^tyblocks_ap(.*)/).test(input.XPF)) || "object" === typeof input.XPF && null !== input.XPF && _io0(input.XPF))) && (null !== input.GMD && (undefined === input.GMD || "string" === typeof input.GMD && (RegExp(/^keeta_am(.*)/).test(input.GMD) || RegExp(/^keeta_an(.*)/).test(input.GMD) || RegExp(/^keeta_ao(.*)/).test(input.GMD) || RegExp(/^keeta_ap(.*)/).test(input.GMD) || RegExp(/^tyblocks_am(.*)/).test(input.GMD) || RegExp(/^tyblocks_an(.*)/).test(input.GMD) || RegExp(/^tyblocks_ao(.*)/).test(input.GMD) || RegExp(/^tyblocks_ap(.*)/).test(input.GMD)) || "object" === typeof input.GMD && null !== input.GMD && _io0(input.GMD))) && (null !== input.GEL && (undefined === input.GEL || "string" === typeof input.GEL && (RegExp(/^keeta_am(.*)/).test(input.GEL) || RegExp(/^keeta_an(.*)/).test(input.GEL) || RegExp(/^keeta_ao(.*)/).test(input.GEL) || RegExp(/^keeta_ap(.*)/).test(input.GEL) || RegExp(/^tyblocks_am(.*)/).test(input.GEL) || RegExp(/^tyblocks_an(.*)/).test(input.GEL) || RegExp(/^tyblocks_ao(.*)/).test(input.GEL) || RegExp(/^tyblocks_ap(.*)/).test(input.GEL)) || "object" === typeof input.GEL && null !== input.GEL && _io0(input.GEL))) && (null !== input.GHS && (undefined === input.GHS || "string" === typeof input.GHS && (RegExp(/^keeta_am(.*)/).test(input.GHS) || RegExp(/^keeta_an(.*)/).test(input.GHS) || RegExp(/^keeta_ao(.*)/).test(input.GHS) || RegExp(/^keeta_ap(.*)/).test(input.GHS) || RegExp(/^tyblocks_am(.*)/).test(input.GHS) || RegExp(/^tyblocks_an(.*)/).test(input.GHS) || RegExp(/^tyblocks_ao(.*)/).test(input.GHS) || RegExp(/^tyblocks_ap(.*)/).test(input.GHS)) || "object" === typeof input.GHS && null !== input.GHS && _io0(input.GHS))) && (null !== input.GIP && (undefined === input.GIP || "string" === typeof input.GIP && (RegExp(/^keeta_am(.*)/).test(input.GIP) || RegExp(/^keeta_an(.*)/).test(input.GIP) || RegExp(/^keeta_ao(.*)/).test(input.GIP) || RegExp(/^keeta_ap(.*)/).test(input.GIP) || RegExp(/^tyblocks_am(.*)/).test(input.GIP) || RegExp(/^tyblocks_an(.*)/).test(input.GIP) || RegExp(/^tyblocks_ao(.*)/).test(input.GIP) || RegExp(/^tyblocks_ap(.*)/).test(input.GIP)) || "object" === typeof input.GIP && null !== input.GIP && _io0(input.GIP))) && (null !== input.GTQ && (undefined === input.GTQ || "string" === typeof input.GTQ && (RegExp(/^keeta_am(.*)/).test(input.GTQ) || RegExp(/^keeta_an(.*)/).test(input.GTQ) || RegExp(/^keeta_ao(.*)/).test(input.GTQ) || RegExp(/^keeta_ap(.*)/).test(input.GTQ) || RegExp(/^tyblocks_am(.*)/).test(input.GTQ) || RegExp(/^tyblocks_an(.*)/).test(input.GTQ) || RegExp(/^tyblocks_ao(.*)/).test(input.GTQ) || RegExp(/^tyblocks_ap(.*)/).test(input.GTQ)) || "object" === typeof input.GTQ && null !== input.GTQ && _io0(input.GTQ))) && (null !== input.GBP && (undefined === input.GBP || "string" === typeof input.GBP && (RegExp(/^keeta_am(.*)/).test(input.GBP) || RegExp(/^keeta_an(.*)/).test(input.GBP) || RegExp(/^keeta_ao(.*)/).test(input.GBP) || RegExp(/^keeta_ap(.*)/).test(input.GBP) || RegExp(/^tyblocks_am(.*)/).test(input.GBP) || RegExp(/^tyblocks_an(.*)/).test(input.GBP) || RegExp(/^tyblocks_ao(.*)/).test(input.GBP) || RegExp(/^tyblocks_ap(.*)/).test(input.GBP)) || "object" === typeof input.GBP && null !== input.GBP && _io0(input.GBP))) && (null !== input.GNF && (undefined === input.GNF || "string" === typeof input.GNF && (RegExp(/^keeta_am(.*)/).test(input.GNF) || RegExp(/^keeta_an(.*)/).test(input.GNF) || RegExp(/^keeta_ao(.*)/).test(input.GNF) || RegExp(/^keeta_ap(.*)/).test(input.GNF) || RegExp(/^tyblocks_am(.*)/).test(input.GNF) || RegExp(/^tyblocks_an(.*)/).test(input.GNF) || RegExp(/^tyblocks_ao(.*)/).test(input.GNF) || RegExp(/^tyblocks_ap(.*)/).test(input.GNF)) || "object" === typeof input.GNF && null !== input.GNF && _io0(input.GNF))) && (null !== input.GYD && (undefined === input.GYD || "string" === typeof input.GYD && (RegExp(/^keeta_am(.*)/).test(input.GYD) || RegExp(/^keeta_an(.*)/).test(input.GYD) || RegExp(/^keeta_ao(.*)/).test(input.GYD) || RegExp(/^keeta_ap(.*)/).test(input.GYD) || RegExp(/^tyblocks_am(.*)/).test(input.GYD) || RegExp(/^tyblocks_an(.*)/).test(input.GYD) || RegExp(/^tyblocks_ao(.*)/).test(input.GYD) || RegExp(/^tyblocks_ap(.*)/).test(input.GYD)) || "object" === typeof input.GYD && null !== input.GYD && _io0(input.GYD))) && (null !== input.HTG && (undefined === input.HTG || "string" === typeof input.HTG && (RegExp(/^keeta_am(.*)/).test(input.HTG) || RegExp(/^keeta_an(.*)/).test(input.HTG) || RegExp(/^keeta_ao(.*)/).test(input.HTG) || RegExp(/^keeta_ap(.*)/).test(input.HTG) || RegExp(/^tyblocks_am(.*)/).test(input.HTG) || RegExp(/^tyblocks_an(.*)/).test(input.HTG) || RegExp(/^tyblocks_ao(.*)/).test(input.HTG) || RegExp(/^tyblocks_ap(.*)/).test(input.HTG)) || "object" === typeof input.HTG && null !== input.HTG && _io0(input.HTG))) && (null !== input.HNL && (undefined === input.HNL || "string" === typeof input.HNL && (RegExp(/^keeta_am(.*)/).test(input.HNL) || RegExp(/^keeta_an(.*)/).test(input.HNL) || RegExp(/^keeta_ao(.*)/).test(input.HNL) || RegExp(/^keeta_ap(.*)/).test(input.HNL) || RegExp(/^tyblocks_am(.*)/).test(input.HNL) || RegExp(/^tyblocks_an(.*)/).test(input.HNL) || RegExp(/^tyblocks_ao(.*)/).test(input.HNL) || RegExp(/^tyblocks_ap(.*)/).test(input.HNL)) || "object" === typeof input.HNL && null !== input.HNL && _io0(input.HNL))) && (null !== input.HKD && (undefined === input.HKD || "string" === typeof input.HKD && (RegExp(/^keeta_am(.*)/).test(input.HKD) || RegExp(/^keeta_an(.*)/).test(input.HKD) || RegExp(/^keeta_ao(.*)/).test(input.HKD) || RegExp(/^keeta_ap(.*)/).test(input.HKD) || RegExp(/^tyblocks_am(.*)/).test(input.HKD) || RegExp(/^tyblocks_an(.*)/).test(input.HKD) || RegExp(/^tyblocks_ao(.*)/).test(input.HKD) || RegExp(/^tyblocks_ap(.*)/).test(input.HKD)) || "object" === typeof input.HKD && null !== input.HKD && _io0(input.HKD))) && (null !== input.HUF && (undefined === input.HUF || "string" === typeof input.HUF && (RegExp(/^keeta_am(.*)/).test(input.HUF) || RegExp(/^keeta_an(.*)/).test(input.HUF) || RegExp(/^keeta_ao(.*)/).test(input.HUF) || RegExp(/^keeta_ap(.*)/).test(input.HUF) || RegExp(/^tyblocks_am(.*)/).test(input.HUF) || RegExp(/^tyblocks_an(.*)/).test(input.HUF) || RegExp(/^tyblocks_ao(.*)/).test(input.HUF) || RegExp(/^tyblocks_ap(.*)/).test(input.HUF)) || "object" === typeof input.HUF && null !== input.HUF && _io0(input.HUF))) && (null !== input.ISK && (undefined === input.ISK || "string" === typeof input.ISK && (RegExp(/^keeta_am(.*)/).test(input.ISK) || RegExp(/^keeta_an(.*)/).test(input.ISK) || RegExp(/^keeta_ao(.*)/).test(input.ISK) || RegExp(/^keeta_ap(.*)/).test(input.ISK) || RegExp(/^tyblocks_am(.*)/).test(input.ISK) || RegExp(/^tyblocks_an(.*)/).test(input.ISK) || RegExp(/^tyblocks_ao(.*)/).test(input.ISK) || RegExp(/^tyblocks_ap(.*)/).test(input.ISK)) || "object" === typeof input.ISK && null !== input.ISK && _io0(input.ISK))) && (null !== input.IDR && (undefined === input.IDR || "string" === typeof input.IDR && (RegExp(/^keeta_am(.*)/).test(input.IDR) || RegExp(/^keeta_an(.*)/).test(input.IDR) || RegExp(/^keeta_ao(.*)/).test(input.IDR) || RegExp(/^keeta_ap(.*)/).test(input.IDR) || RegExp(/^tyblocks_am(.*)/).test(input.IDR) || RegExp(/^tyblocks_an(.*)/).test(input.IDR) || RegExp(/^tyblocks_ao(.*)/).test(input.IDR) || RegExp(/^tyblocks_ap(.*)/).test(input.IDR)) || "object" === typeof input.IDR && null !== input.IDR && _io0(input.IDR))) && (null !== input.IRR && (undefined === input.IRR || "string" === typeof input.IRR && (RegExp(/^keeta_am(.*)/).test(input.IRR) || RegExp(/^keeta_an(.*)/).test(input.IRR) || RegExp(/^keeta_ao(.*)/).test(input.IRR) || RegExp(/^keeta_ap(.*)/).test(input.IRR) || RegExp(/^tyblocks_am(.*)/).test(input.IRR) || RegExp(/^tyblocks_an(.*)/).test(input.IRR) || RegExp(/^tyblocks_ao(.*)/).test(input.IRR) || RegExp(/^tyblocks_ap(.*)/).test(input.IRR)) || "object" === typeof input.IRR && null !== input.IRR && _io0(input.IRR))) && (null !== input.IQD && (undefined === input.IQD || "string" === typeof input.IQD && (RegExp(/^keeta_am(.*)/).test(input.IQD) || RegExp(/^keeta_an(.*)/).test(input.IQD) || RegExp(/^keeta_ao(.*)/).test(input.IQD) || RegExp(/^keeta_ap(.*)/).test(input.IQD) || RegExp(/^tyblocks_am(.*)/).test(input.IQD) || RegExp(/^tyblocks_an(.*)/).test(input.IQD) || RegExp(/^tyblocks_ao(.*)/).test(input.IQD) || RegExp(/^tyblocks_ap(.*)/).test(input.IQD)) || "object" === typeof input.IQD && null !== input.IQD && _io0(input.IQD))) && (null !== input.ILS && (undefined === input.ILS || "string" === typeof input.ILS && (RegExp(/^keeta_am(.*)/).test(input.ILS) || RegExp(/^keeta_an(.*)/).test(input.ILS) || RegExp(/^keeta_ao(.*)/).test(input.ILS) || RegExp(/^keeta_ap(.*)/).test(input.ILS) || RegExp(/^tyblocks_am(.*)/).test(input.ILS) || RegExp(/^tyblocks_an(.*)/).test(input.ILS) || RegExp(/^tyblocks_ao(.*)/).test(input.ILS) || RegExp(/^tyblocks_ap(.*)/).test(input.ILS)) || "object" === typeof input.ILS && null !== input.ILS && _io0(input.ILS))) && (null !== input.JMD && (undefined === input.JMD || "string" === typeof input.JMD && (RegExp(/^keeta_am(.*)/).test(input.JMD) || RegExp(/^keeta_an(.*)/).test(input.JMD) || RegExp(/^keeta_ao(.*)/).test(input.JMD) || RegExp(/^keeta_ap(.*)/).test(input.JMD) || RegExp(/^tyblocks_am(.*)/).test(input.JMD) || RegExp(/^tyblocks_an(.*)/).test(input.JMD) || RegExp(/^tyblocks_ao(.*)/).test(input.JMD) || RegExp(/^tyblocks_ap(.*)/).test(input.JMD)) || "object" === typeof input.JMD && null !== input.JMD && _io0(input.JMD))) && (null !== input.JPY && (undefined === input.JPY || "string" === typeof input.JPY && (RegExp(/^keeta_am(.*)/).test(input.JPY) || RegExp(/^keeta_an(.*)/).test(input.JPY) || RegExp(/^keeta_ao(.*)/).test(input.JPY) || RegExp(/^keeta_ap(.*)/).test(input.JPY) || RegExp(/^tyblocks_am(.*)/).test(input.JPY) || RegExp(/^tyblocks_an(.*)/).test(input.JPY) || RegExp(/^tyblocks_ao(.*)/).test(input.JPY) || RegExp(/^tyblocks_ap(.*)/).test(input.JPY)) || "object" === typeof input.JPY && null !== input.JPY && _io0(input.JPY))) && (null !== input.JOD && (undefined === input.JOD || "string" === typeof input.JOD && (RegExp(/^keeta_am(.*)/).test(input.JOD) || RegExp(/^keeta_an(.*)/).test(input.JOD) || RegExp(/^keeta_ao(.*)/).test(input.JOD) || RegExp(/^keeta_ap(.*)/).test(input.JOD) || RegExp(/^tyblocks_am(.*)/).test(input.JOD) || RegExp(/^tyblocks_an(.*)/).test(input.JOD) || RegExp(/^tyblocks_ao(.*)/).test(input.JOD) || RegExp(/^tyblocks_ap(.*)/).test(input.JOD)) || "object" === typeof input.JOD && null !== input.JOD && _io0(input.JOD))) && (null !== input.KZT && (undefined === input.KZT || "string" === typeof input.KZT && (RegExp(/^keeta_am(.*)/).test(input.KZT) || RegExp(/^keeta_an(.*)/).test(input.KZT) || RegExp(/^keeta_ao(.*)/).test(input.KZT) || RegExp(/^keeta_ap(.*)/).test(input.KZT) || RegExp(/^tyblocks_am(.*)/).test(input.KZT) || RegExp(/^tyblocks_an(.*)/).test(input.KZT) || RegExp(/^tyblocks_ao(.*)/).test(input.KZT) || RegExp(/^tyblocks_ap(.*)/).test(input.KZT)) || "object" === typeof input.KZT && null !== input.KZT && _io0(input.KZT))) && (null !== input.KES && (undefined === input.KES || "string" === typeof input.KES && (RegExp(/^keeta_am(.*)/).test(input.KES) || RegExp(/^keeta_an(.*)/).test(input.KES) || RegExp(/^keeta_ao(.*)/).test(input.KES) || RegExp(/^keeta_ap(.*)/).test(input.KES) || RegExp(/^tyblocks_am(.*)/).test(input.KES) || RegExp(/^tyblocks_an(.*)/).test(input.KES) || RegExp(/^tyblocks_ao(.*)/).test(input.KES) || RegExp(/^tyblocks_ap(.*)/).test(input.KES)) || "object" === typeof input.KES && null !== input.KES && _io0(input.KES))) && (null !== input.KPW && (undefined === input.KPW || "string" === typeof input.KPW && (RegExp(/^keeta_am(.*)/).test(input.KPW) || RegExp(/^keeta_an(.*)/).test(input.KPW) || RegExp(/^keeta_ao(.*)/).test(input.KPW) || RegExp(/^keeta_ap(.*)/).test(input.KPW) || RegExp(/^tyblocks_am(.*)/).test(input.KPW) || RegExp(/^tyblocks_an(.*)/).test(input.KPW) || RegExp(/^tyblocks_ao(.*)/).test(input.KPW) || RegExp(/^tyblocks_ap(.*)/).test(input.KPW)) || "object" === typeof input.KPW && null !== input.KPW && _io0(input.KPW))) && (null !== input.KRW && (undefined === input.KRW || "string" === typeof input.KRW && (RegExp(/^keeta_am(.*)/).test(input.KRW) || RegExp(/^keeta_an(.*)/).test(input.KRW) || RegExp(/^keeta_ao(.*)/).test(input.KRW) || RegExp(/^keeta_ap(.*)/).test(input.KRW) || RegExp(/^tyblocks_am(.*)/).test(input.KRW) || RegExp(/^tyblocks_an(.*)/).test(input.KRW) || RegExp(/^tyblocks_ao(.*)/).test(input.KRW) || RegExp(/^tyblocks_ap(.*)/).test(input.KRW)) || "object" === typeof input.KRW && null !== input.KRW && _io0(input.KRW))) && (null !== input.KWD && (undefined === input.KWD || "string" === typeof input.KWD && (RegExp(/^keeta_am(.*)/).test(input.KWD) || RegExp(/^keeta_an(.*)/).test(input.KWD) || RegExp(/^keeta_ao(.*)/).test(input.KWD) || RegExp(/^keeta_ap(.*)/).test(input.KWD) || RegExp(/^tyblocks_am(.*)/).test(input.KWD) || RegExp(/^tyblocks_an(.*)/).test(input.KWD) || RegExp(/^tyblocks_ao(.*)/).test(input.KWD) || RegExp(/^tyblocks_ap(.*)/).test(input.KWD)) || "object" === typeof input.KWD && null !== input.KWD && _io0(input.KWD))) && (null !== input.KGS && (undefined === input.KGS || "string" === typeof input.KGS && (RegExp(/^keeta_am(.*)/).test(input.KGS) || RegExp(/^keeta_an(.*)/).test(input.KGS) || RegExp(/^keeta_ao(.*)/).test(input.KGS) || RegExp(/^keeta_ap(.*)/).test(input.KGS) || RegExp(/^tyblocks_am(.*)/).test(input.KGS) || RegExp(/^tyblocks_an(.*)/).test(input.KGS) || RegExp(/^tyblocks_ao(.*)/).test(input.KGS) || RegExp(/^tyblocks_ap(.*)/).test(input.KGS)) || "object" === typeof input.KGS && null !== input.KGS && _io0(input.KGS))) && (null !== input.LAK && (undefined === input.LAK || "string" === typeof input.LAK && (RegExp(/^keeta_am(.*)/).test(input.LAK) || RegExp(/^keeta_an(.*)/).test(input.LAK) || RegExp(/^keeta_ao(.*)/).test(input.LAK) || RegExp(/^keeta_ap(.*)/).test(input.LAK) || RegExp(/^tyblocks_am(.*)/).test(input.LAK) || RegExp(/^tyblocks_an(.*)/).test(input.LAK) || RegExp(/^tyblocks_ao(.*)/).test(input.LAK) || RegExp(/^tyblocks_ap(.*)/).test(input.LAK)) || "object" === typeof input.LAK && null !== input.LAK && _io0(input.LAK))) && (null !== input.LBP && (undefined === input.LBP || "string" === typeof input.LBP && (RegExp(/^keeta_am(.*)/).test(input.LBP) || RegExp(/^keeta_an(.*)/).test(input.LBP) || RegExp(/^keeta_ao(.*)/).test(input.LBP) || RegExp(/^keeta_ap(.*)/).test(input.LBP) || RegExp(/^tyblocks_am(.*)/).test(input.LBP) || RegExp(/^tyblocks_an(.*)/).test(input.LBP) || RegExp(/^tyblocks_ao(.*)/).test(input.LBP) || RegExp(/^tyblocks_ap(.*)/).test(input.LBP)) || "object" === typeof input.LBP && null !== input.LBP && _io0(input.LBP))) && (null !== input.LSL && (undefined === input.LSL || "string" === typeof input.LSL && (RegExp(/^keeta_am(.*)/).test(input.LSL) || RegExp(/^keeta_an(.*)/).test(input.LSL) || RegExp(/^keeta_ao(.*)/).test(input.LSL) || RegExp(/^keeta_ap(.*)/).test(input.LSL) || RegExp(/^tyblocks_am(.*)/).test(input.LSL) || RegExp(/^tyblocks_an(.*)/).test(input.LSL) || RegExp(/^tyblocks_ao(.*)/).test(input.LSL) || RegExp(/^tyblocks_ap(.*)/).test(input.LSL)) || "object" === typeof input.LSL && null !== input.LSL && _io0(input.LSL))) && (null !== input.ZAR && (undefined === input.ZAR || "string" === typeof input.ZAR && (RegExp(/^keeta_am(.*)/).test(input.ZAR) || RegExp(/^keeta_an(.*)/).test(input.ZAR) || RegExp(/^keeta_ao(.*)/).test(input.ZAR) || RegExp(/^keeta_ap(.*)/).test(input.ZAR) || RegExp(/^tyblocks_am(.*)/).test(input.ZAR) || RegExp(/^tyblocks_an(.*)/).test(input.ZAR) || RegExp(/^tyblocks_ao(.*)/).test(input.ZAR) || RegExp(/^tyblocks_ap(.*)/).test(input.ZAR)) || "object" === typeof input.ZAR && null !== input.ZAR && _io0(input.ZAR))) && (null !== input.LRD && (undefined === input.LRD || "string" === typeof input.LRD && (RegExp(/^keeta_am(.*)/).test(input.LRD) || RegExp(/^keeta_an(.*)/).test(input.LRD) || RegExp(/^keeta_ao(.*)/).test(input.LRD) || RegExp(/^keeta_ap(.*)/).test(input.LRD) || RegExp(/^tyblocks_am(.*)/).test(input.LRD) || RegExp(/^tyblocks_an(.*)/).test(input.LRD) || RegExp(/^tyblocks_ao(.*)/).test(input.LRD) || RegExp(/^tyblocks_ap(.*)/).test(input.LRD)) || "object" === typeof input.LRD && null !== input.LRD && _io0(input.LRD))) && (null !== input.LYD && (undefined === input.LYD || "string" === typeof input.LYD && (RegExp(/^keeta_am(.*)/).test(input.LYD) || RegExp(/^keeta_an(.*)/).test(input.LYD) || RegExp(/^keeta_ao(.*)/).test(input.LYD) || RegExp(/^keeta_ap(.*)/).test(input.LYD) || RegExp(/^tyblocks_am(.*)/).test(input.LYD) || RegExp(/^tyblocks_an(.*)/).test(input.LYD) || RegExp(/^tyblocks_ao(.*)/).test(input.LYD) || RegExp(/^tyblocks_ap(.*)/).test(input.LYD)) || "object" === typeof input.LYD && null !== input.LYD && _io0(input.LYD))) && (null !== input.CHF && (undefined === input.CHF || "string" === typeof input.CHF && (RegExp(/^keeta_am(.*)/).test(input.CHF) || RegExp(/^keeta_an(.*)/).test(input.CHF) || RegExp(/^keeta_ao(.*)/).test(input.CHF) || RegExp(/^keeta_ap(.*)/).test(input.CHF) || RegExp(/^tyblocks_am(.*)/).test(input.CHF) || RegExp(/^tyblocks_an(.*)/).test(input.CHF) || RegExp(/^tyblocks_ao(.*)/).test(input.CHF) || RegExp(/^tyblocks_ap(.*)/).test(input.CHF)) || "object" === typeof input.CHF && null !== input.CHF && _io0(input.CHF))) && (null !== input.MOP && (undefined === input.MOP || "string" === typeof input.MOP && (RegExp(/^keeta_am(.*)/).test(input.MOP) || RegExp(/^keeta_an(.*)/).test(input.MOP) || RegExp(/^keeta_ao(.*)/).test(input.MOP) || RegExp(/^keeta_ap(.*)/).test(input.MOP) || RegExp(/^tyblocks_am(.*)/).test(input.MOP) || RegExp(/^tyblocks_an(.*)/).test(input.MOP) || RegExp(/^tyblocks_ao(.*)/).test(input.MOP) || RegExp(/^tyblocks_ap(.*)/).test(input.MOP)) || "object" === typeof input.MOP && null !== input.MOP && _io0(input.MOP))) && (null !== input.MKD && (undefined === input.MKD || "string" === typeof input.MKD && (RegExp(/^keeta_am(.*)/).test(input.MKD) || RegExp(/^keeta_an(.*)/).test(input.MKD) || RegExp(/^keeta_ao(.*)/).test(input.MKD) || RegExp(/^keeta_ap(.*)/).test(input.MKD) || RegExp(/^tyblocks_am(.*)/).test(input.MKD) || RegExp(/^tyblocks_an(.*)/).test(input.MKD) || RegExp(/^tyblocks_ao(.*)/).test(input.MKD) || RegExp(/^tyblocks_ap(.*)/).test(input.MKD)) || "object" === typeof input.MKD && null !== input.MKD && _io0(input.MKD))) && (null !== input.MGA && (undefined === input.MGA || "string" === typeof input.MGA && (RegExp(/^keeta_am(.*)/).test(input.MGA) || RegExp(/^keeta_an(.*)/).test(input.MGA) || RegExp(/^keeta_ao(.*)/).test(input.MGA) || RegExp(/^keeta_ap(.*)/).test(input.MGA) || RegExp(/^tyblocks_am(.*)/).test(input.MGA) || RegExp(/^tyblocks_an(.*)/).test(input.MGA) || RegExp(/^tyblocks_ao(.*)/).test(input.MGA) || RegExp(/^tyblocks_ap(.*)/).test(input.MGA)) || "object" === typeof input.MGA && null !== input.MGA && _io0(input.MGA))) && (null !== input.MWK && (undefined === input.MWK || "string" === typeof input.MWK && (RegExp(/^keeta_am(.*)/).test(input.MWK) || RegExp(/^keeta_an(.*)/).test(input.MWK) || RegExp(/^keeta_ao(.*)/).test(input.MWK) || RegExp(/^keeta_ap(.*)/).test(input.MWK) || RegExp(/^tyblocks_am(.*)/).test(input.MWK) || RegExp(/^tyblocks_an(.*)/).test(input.MWK) || RegExp(/^tyblocks_ao(.*)/).test(input.MWK) || RegExp(/^tyblocks_ap(.*)/).test(input.MWK)) || "object" === typeof input.MWK && null !== input.MWK && _io0(input.MWK))) && (null !== input.MYR && (undefined === input.MYR || "string" === typeof input.MYR && (RegExp(/^keeta_am(.*)/).test(input.MYR) || RegExp(/^keeta_an(.*)/).test(input.MYR) || RegExp(/^keeta_ao(.*)/).test(input.MYR) || RegExp(/^keeta_ap(.*)/).test(input.MYR) || RegExp(/^tyblocks_am(.*)/).test(input.MYR) || RegExp(/^tyblocks_an(.*)/).test(input.MYR) || RegExp(/^tyblocks_ao(.*)/).test(input.MYR) || RegExp(/^tyblocks_ap(.*)/).test(input.MYR)) || "object" === typeof input.MYR && null !== input.MYR && _io0(input.MYR))) && (null !== input.MVR && (undefined === input.MVR || "string" === typeof input.MVR && (RegExp(/^keeta_am(.*)/).test(input.MVR) || RegExp(/^keeta_an(.*)/).test(input.MVR) || RegExp(/^keeta_ao(.*)/).test(input.MVR) || RegExp(/^keeta_ap(.*)/).test(input.MVR) || RegExp(/^tyblocks_am(.*)/).test(input.MVR) || RegExp(/^tyblocks_an(.*)/).test(input.MVR) || RegExp(/^tyblocks_ao(.*)/).test(input.MVR) || RegExp(/^tyblocks_ap(.*)/).test(input.MVR)) || "object" === typeof input.MVR && null !== input.MVR && _io0(input.MVR))) && (null !== input.MRU && (undefined === input.MRU || "string" === typeof input.MRU && (RegExp(/^keeta_am(.*)/).test(input.MRU) || RegExp(/^keeta_an(.*)/).test(input.MRU) || RegExp(/^keeta_ao(.*)/).test(input.MRU) || RegExp(/^keeta_ap(.*)/).test(input.MRU) || RegExp(/^tyblocks_am(.*)/).test(input.MRU) || RegExp(/^tyblocks_an(.*)/).test(input.MRU) || RegExp(/^tyblocks_ao(.*)/).test(input.MRU) || RegExp(/^tyblocks_ap(.*)/).test(input.MRU)) || "object" === typeof input.MRU && null !== input.MRU && _io0(input.MRU))) && (null !== input.MUR && (undefined === input.MUR || "string" === typeof input.MUR && (RegExp(/^keeta_am(.*)/).test(input.MUR) || RegExp(/^keeta_an(.*)/).test(input.MUR) || RegExp(/^keeta_ao(.*)/).test(input.MUR) || RegExp(/^keeta_ap(.*)/).test(input.MUR) || RegExp(/^tyblocks_am(.*)/).test(input.MUR) || RegExp(/^tyblocks_an(.*)/).test(input.MUR) || RegExp(/^tyblocks_ao(.*)/).test(input.MUR) || RegExp(/^tyblocks_ap(.*)/).test(input.MUR)) || "object" === typeof input.MUR && null !== input.MUR && _io0(input.MUR))) && (null !== input.MXN && (undefined === input.MXN || "string" === typeof input.MXN && (RegExp(/^keeta_am(.*)/).test(input.MXN) || RegExp(/^keeta_an(.*)/).test(input.MXN) || RegExp(/^keeta_ao(.*)/).test(input.MXN) || RegExp(/^keeta_ap(.*)/).test(input.MXN) || RegExp(/^tyblocks_am(.*)/).test(input.MXN) || RegExp(/^tyblocks_an(.*)/).test(input.MXN) || RegExp(/^tyblocks_ao(.*)/).test(input.MXN) || RegExp(/^tyblocks_ap(.*)/).test(input.MXN)) || "object" === typeof input.MXN && null !== input.MXN && _io0(input.MXN))) && (null !== input.MXV && (undefined === input.MXV || "string" === typeof input.MXV && (RegExp(/^keeta_am(.*)/).test(input.MXV) || RegExp(/^keeta_an(.*)/).test(input.MXV) || RegExp(/^keeta_ao(.*)/).test(input.MXV) || RegExp(/^keeta_ap(.*)/).test(input.MXV) || RegExp(/^tyblocks_am(.*)/).test(input.MXV) || RegExp(/^tyblocks_an(.*)/).test(input.MXV) || RegExp(/^tyblocks_ao(.*)/).test(input.MXV) || RegExp(/^tyblocks_ap(.*)/).test(input.MXV)) || "object" === typeof input.MXV && null !== input.MXV && _io0(input.MXV))) && (null !== input.MDL && (undefined === input.MDL || "string" === typeof input.MDL && (RegExp(/^keeta_am(.*)/).test(input.MDL) || RegExp(/^keeta_an(.*)/).test(input.MDL) || RegExp(/^keeta_ao(.*)/).test(input.MDL) || RegExp(/^keeta_ap(.*)/).test(input.MDL) || RegExp(/^tyblocks_am(.*)/).test(input.MDL) || RegExp(/^tyblocks_an(.*)/).test(input.MDL) || RegExp(/^tyblocks_ao(.*)/).test(input.MDL) || RegExp(/^tyblocks_ap(.*)/).test(input.MDL)) || "object" === typeof input.MDL && null !== input.MDL && _io0(input.MDL))) && (null !== input.MNT && (undefined === input.MNT || "string" === typeof input.MNT && (RegExp(/^keeta_am(.*)/).test(input.MNT) || RegExp(/^keeta_an(.*)/).test(input.MNT) || RegExp(/^keeta_ao(.*)/).test(input.MNT) || RegExp(/^keeta_ap(.*)/).test(input.MNT) || RegExp(/^tyblocks_am(.*)/).test(input.MNT) || RegExp(/^tyblocks_an(.*)/).test(input.MNT) || RegExp(/^tyblocks_ao(.*)/).test(input.MNT) || RegExp(/^tyblocks_ap(.*)/).test(input.MNT)) || "object" === typeof input.MNT && null !== input.MNT && _io0(input.MNT))) && (null !== input.MAD && (undefined === input.MAD || "string" === typeof input.MAD && (RegExp(/^keeta_am(.*)/).test(input.MAD) || RegExp(/^keeta_an(.*)/).test(input.MAD) || RegExp(/^keeta_ao(.*)/).test(input.MAD) || RegExp(/^keeta_ap(.*)/).test(input.MAD) || RegExp(/^tyblocks_am(.*)/).test(input.MAD) || RegExp(/^tyblocks_an(.*)/).test(input.MAD) || RegExp(/^tyblocks_ao(.*)/).test(input.MAD) || RegExp(/^tyblocks_ap(.*)/).test(input.MAD)) || "object" === typeof input.MAD && null !== input.MAD && _io0(input.MAD))) && (null !== input.MZN && (undefined === input.MZN || "string" === typeof input.MZN && (RegExp(/^keeta_am(.*)/).test(input.MZN) || RegExp(/^keeta_an(.*)/).test(input.MZN) || RegExp(/^keeta_ao(.*)/).test(input.MZN) || RegExp(/^keeta_ap(.*)/).test(input.MZN) || RegExp(/^tyblocks_am(.*)/).test(input.MZN) || RegExp(/^tyblocks_an(.*)/).test(input.MZN) || RegExp(/^tyblocks_ao(.*)/).test(input.MZN) || RegExp(/^tyblocks_ap(.*)/).test(input.MZN)) || "object" === typeof input.MZN && null !== input.MZN && _io0(input.MZN))) && (null !== input.MMK && (undefined === input.MMK || "string" === typeof input.MMK && (RegExp(/^keeta_am(.*)/).test(input.MMK) || RegExp(/^keeta_an(.*)/).test(input.MMK) || RegExp(/^keeta_ao(.*)/).test(input.MMK) || RegExp(/^keeta_ap(.*)/).test(input.MMK) || RegExp(/^tyblocks_am(.*)/).test(input.MMK) || RegExp(/^tyblocks_an(.*)/).test(input.MMK) || RegExp(/^tyblocks_ao(.*)/).test(input.MMK) || RegExp(/^tyblocks_ap(.*)/).test(input.MMK)) || "object" === typeof input.MMK && null !== input.MMK && _io0(input.MMK))) && (null !== input.NAD && (undefined === input.NAD || "string" === typeof input.NAD && (RegExp(/^keeta_am(.*)/).test(input.NAD) || RegExp(/^keeta_an(.*)/).test(input.NAD) || RegExp(/^keeta_ao(.*)/).test(input.NAD) || RegExp(/^keeta_ap(.*)/).test(input.NAD) || RegExp(/^tyblocks_am(.*)/).test(input.NAD) || RegExp(/^tyblocks_an(.*)/).test(input.NAD) || RegExp(/^tyblocks_ao(.*)/).test(input.NAD) || RegExp(/^tyblocks_ap(.*)/).test(input.NAD)) || "object" === typeof input.NAD && null !== input.NAD && _io0(input.NAD))) && (null !== input.NPR && (undefined === input.NPR || "string" === typeof input.NPR && (RegExp(/^keeta_am(.*)/).test(input.NPR) || RegExp(/^keeta_an(.*)/).test(input.NPR) || RegExp(/^keeta_ao(.*)/).test(input.NPR) || RegExp(/^keeta_ap(.*)/).test(input.NPR) || RegExp(/^tyblocks_am(.*)/).test(input.NPR) || RegExp(/^tyblocks_an(.*)/).test(input.NPR) || RegExp(/^tyblocks_ao(.*)/).test(input.NPR) || RegExp(/^tyblocks_ap(.*)/).test(input.NPR)) || "object" === typeof input.NPR && null !== input.NPR && _io0(input.NPR))) && (null !== input.NIO && (undefined === input.NIO || "string" === typeof input.NIO && (RegExp(/^keeta_am(.*)/).test(input.NIO) || RegExp(/^keeta_an(.*)/).test(input.NIO) || RegExp(/^keeta_ao(.*)/).test(input.NIO) || RegExp(/^keeta_ap(.*)/).test(input.NIO) || RegExp(/^tyblocks_am(.*)/).test(input.NIO) || RegExp(/^tyblocks_an(.*)/).test(input.NIO) || RegExp(/^tyblocks_ao(.*)/).test(input.NIO) || RegExp(/^tyblocks_ap(.*)/).test(input.NIO)) || "object" === typeof input.NIO && null !== input.NIO && _io0(input.NIO))) && (null !== input.NGN && (undefined === input.NGN || "string" === typeof input.NGN && (RegExp(/^keeta_am(.*)/).test(input.NGN) || RegExp(/^keeta_an(.*)/).test(input.NGN) || RegExp(/^keeta_ao(.*)/).test(input.NGN) || RegExp(/^keeta_ap(.*)/).test(input.NGN) || RegExp(/^tyblocks_am(.*)/).test(input.NGN) || RegExp(/^tyblocks_an(.*)/).test(input.NGN) || RegExp(/^tyblocks_ao(.*)/).test(input.NGN) || RegExp(/^tyblocks_ap(.*)/).test(input.NGN)) || "object" === typeof input.NGN && null !== input.NGN && _io0(input.NGN))) && (null !== input.OMR && (undefined === input.OMR || "string" === typeof input.OMR && (RegExp(/^keeta_am(.*)/).test(input.OMR) || RegExp(/^keeta_an(.*)/).test(input.OMR) || RegExp(/^keeta_ao(.*)/).test(input.OMR) || RegExp(/^keeta_ap(.*)/).test(input.OMR) || RegExp(/^tyblocks_am(.*)/).test(input.OMR) || RegExp(/^tyblocks_an(.*)/).test(input.OMR) || RegExp(/^tyblocks_ao(.*)/).test(input.OMR) || RegExp(/^tyblocks_ap(.*)/).test(input.OMR)) || "object" === typeof input.OMR && null !== input.OMR && _io0(input.OMR))) && (null !== input.PKR && (undefined === input.PKR || "string" === typeof input.PKR && (RegExp(/^keeta_am(.*)/).test(input.PKR) || RegExp(/^keeta_an(.*)/).test(input.PKR) || RegExp(/^keeta_ao(.*)/).test(input.PKR) || RegExp(/^keeta_ap(.*)/).test(input.PKR) || RegExp(/^tyblocks_am(.*)/).test(input.PKR) || RegExp(/^tyblocks_an(.*)/).test(input.PKR) || RegExp(/^tyblocks_ao(.*)/).test(input.PKR) || RegExp(/^tyblocks_ap(.*)/).test(input.PKR)) || "object" === typeof input.PKR && null !== input.PKR && _io0(input.PKR))) && (null !== input.PAB && (undefined === input.PAB || "string" === typeof input.PAB && (RegExp(/^keeta_am(.*)/).test(input.PAB) || RegExp(/^keeta_an(.*)/).test(input.PAB) || RegExp(/^keeta_ao(.*)/).test(input.PAB) || RegExp(/^keeta_ap(.*)/).test(input.PAB) || RegExp(/^tyblocks_am(.*)/).test(input.PAB) || RegExp(/^tyblocks_an(.*)/).test(input.PAB) || RegExp(/^tyblocks_ao(.*)/).test(input.PAB) || RegExp(/^tyblocks_ap(.*)/).test(input.PAB)) || "object" === typeof input.PAB && null !== input.PAB && _io0(input.PAB))) && (null !== input.PGK && (undefined === input.PGK || "string" === typeof input.PGK && (RegExp(/^keeta_am(.*)/).test(input.PGK) || RegExp(/^keeta_an(.*)/).test(input.PGK) || RegExp(/^keeta_ao(.*)/).test(input.PGK) || RegExp(/^keeta_ap(.*)/).test(input.PGK) || RegExp(/^tyblocks_am(.*)/).test(input.PGK) || RegExp(/^tyblocks_an(.*)/).test(input.PGK) || RegExp(/^tyblocks_ao(.*)/).test(input.PGK) || RegExp(/^tyblocks_ap(.*)/).test(input.PGK)) || "object" === typeof input.PGK && null !== input.PGK && _io0(input.PGK))) && (null !== input.PYG && (undefined === input.PYG || "string" === typeof input.PYG && (RegExp(/^keeta_am(.*)/).test(input.PYG) || RegExp(/^keeta_an(.*)/).test(input.PYG) || RegExp(/^keeta_ao(.*)/).test(input.PYG) || RegExp(/^keeta_ap(.*)/).test(input.PYG) || RegExp(/^tyblocks_am(.*)/).test(input.PYG) || RegExp(/^tyblocks_an(.*)/).test(input.PYG) || RegExp(/^tyblocks_ao(.*)/).test(input.PYG) || RegExp(/^tyblocks_ap(.*)/).test(input.PYG)) || "object" === typeof input.PYG && null !== input.PYG && _io0(input.PYG))) && (null !== input.PEN && (undefined === input.PEN || "string" === typeof input.PEN && (RegExp(/^keeta_am(.*)/).test(input.PEN) || RegExp(/^keeta_an(.*)/).test(input.PEN) || RegExp(/^keeta_ao(.*)/).test(input.PEN) || RegExp(/^keeta_ap(.*)/).test(input.PEN) || RegExp(/^tyblocks_am(.*)/).test(input.PEN) || RegExp(/^tyblocks_an(.*)/).test(input.PEN) || RegExp(/^tyblocks_ao(.*)/).test(input.PEN) || RegExp(/^tyblocks_ap(.*)/).test(input.PEN)) || "object" === typeof input.PEN && null !== input.PEN && _io0(input.PEN))) && (null !== input.PHP && (undefined === input.PHP || "string" === typeof input.PHP && (RegExp(/^keeta_am(.*)/).test(input.PHP) || RegExp(/^keeta_an(.*)/).test(input.PHP) || RegExp(/^keeta_ao(.*)/).test(input.PHP) || RegExp(/^keeta_ap(.*)/).test(input.PHP) || RegExp(/^tyblocks_am(.*)/).test(input.PHP) || RegExp(/^tyblocks_an(.*)/).test(input.PHP) || RegExp(/^tyblocks_ao(.*)/).test(input.PHP) || RegExp(/^tyblocks_ap(.*)/).test(input.PHP)) || "object" === typeof input.PHP && null !== input.PHP && _io0(input.PHP))) && (null !== input.PLN && (undefined === input.PLN || "string" === typeof input.PLN && (RegExp(/^keeta_am(.*)/).test(input.PLN) || RegExp(/^keeta_an(.*)/).test(input.PLN) || RegExp(/^keeta_ao(.*)/).test(input.PLN) || RegExp(/^keeta_ap(.*)/).test(input.PLN) || RegExp(/^tyblocks_am(.*)/).test(input.PLN) || RegExp(/^tyblocks_an(.*)/).test(input.PLN) || RegExp(/^tyblocks_ao(.*)/).test(input.PLN) || RegExp(/^tyblocks_ap(.*)/).test(input.PLN)) || "object" === typeof input.PLN && null !== input.PLN && _io0(input.PLN))) && (null !== input.QAR && (undefined === input.QAR || "string" === typeof input.QAR && (RegExp(/^keeta_am(.*)/).test(input.QAR) || RegExp(/^keeta_an(.*)/).test(input.QAR) || RegExp(/^keeta_ao(.*)/).test(input.QAR) || RegExp(/^keeta_ap(.*)/).test(input.QAR) || RegExp(/^tyblocks_am(.*)/).test(input.QAR) || RegExp(/^tyblocks_an(.*)/).test(input.QAR) || RegExp(/^tyblocks_ao(.*)/).test(input.QAR) || RegExp(/^tyblocks_ap(.*)/).test(input.QAR)) || "object" === typeof input.QAR && null !== input.QAR && _io0(input.QAR))) && (null !== input.RON && (undefined === input.RON || "string" === typeof input.RON && (RegExp(/^keeta_am(.*)/).test(input.RON) || RegExp(/^keeta_an(.*)/).test(input.RON) || RegExp(/^keeta_ao(.*)/).test(input.RON) || RegExp(/^keeta_ap(.*)/).test(input.RON) || RegExp(/^tyblocks_am(.*)/).test(input.RON) || RegExp(/^tyblocks_an(.*)/).test(input.RON) || RegExp(/^tyblocks_ao(.*)/).test(input.RON) || RegExp(/^tyblocks_ap(.*)/).test(input.RON)) || "object" === typeof input.RON && null !== input.RON && _io0(input.RON))) && (null !== input.RUB && (undefined === input.RUB || "string" === typeof input.RUB && (RegExp(/^keeta_am(.*)/).test(input.RUB) || RegExp(/^keeta_an(.*)/).test(input.RUB) || RegExp(/^keeta_ao(.*)/).test(input.RUB) || RegExp(/^keeta_ap(.*)/).test(input.RUB) || RegExp(/^tyblocks_am(.*)/).test(input.RUB) || RegExp(/^tyblocks_an(.*)/).test(input.RUB) || RegExp(/^tyblocks_ao(.*)/).test(input.RUB) || RegExp(/^tyblocks_ap(.*)/).test(input.RUB)) || "object" === typeof input.RUB && null !== input.RUB && _io0(input.RUB))) && (null !== input.RWF && (undefined === input.RWF || "string" === typeof input.RWF && (RegExp(/^keeta_am(.*)/).test(input.RWF) || RegExp(/^keeta_an(.*)/).test(input.RWF) || RegExp(/^keeta_ao(.*)/).test(input.RWF) || RegExp(/^keeta_ap(.*)/).test(input.RWF) || RegExp(/^tyblocks_am(.*)/).test(input.RWF) || RegExp(/^tyblocks_an(.*)/).test(input.RWF) || RegExp(/^tyblocks_ao(.*)/).test(input.RWF) || RegExp(/^tyblocks_ap(.*)/).test(input.RWF)) || "object" === typeof input.RWF && null !== input.RWF && _io0(input.RWF))) && (null !== input.SHP && (undefined === input.SHP || "string" === typeof input.SHP && (RegExp(/^keeta_am(.*)/).test(input.SHP) || RegExp(/^keeta_an(.*)/).test(input.SHP) || RegExp(/^keeta_ao(.*)/).test(input.SHP) || RegExp(/^keeta_ap(.*)/).test(input.SHP) || RegExp(/^tyblocks_am(.*)/).test(input.SHP) || RegExp(/^tyblocks_an(.*)/).test(input.SHP) || RegExp(/^tyblocks_ao(.*)/).test(input.SHP) || RegExp(/^tyblocks_ap(.*)/).test(input.SHP)) || "object" === typeof input.SHP && null !== input.SHP && _io0(input.SHP))) && (null !== input.WST && (undefined === input.WST || "string" === typeof input.WST && (RegExp(/^keeta_am(.*)/).test(input.WST) || RegExp(/^keeta_an(.*)/).test(input.WST) || RegExp(/^keeta_ao(.*)/).test(input.WST) || RegExp(/^keeta_ap(.*)/).test(input.WST) || RegExp(/^tyblocks_am(.*)/).test(input.WST) || RegExp(/^tyblocks_an(.*)/).test(input.WST) || RegExp(/^tyblocks_ao(.*)/).test(input.WST) || RegExp(/^tyblocks_ap(.*)/).test(input.WST)) || "object" === typeof input.WST && null !== input.WST && _io0(input.WST))) && (null !== input.STN && (undefined === input.STN || "string" === typeof input.STN && (RegExp(/^keeta_am(.*)/).test(input.STN) || RegExp(/^keeta_an(.*)/).test(input.STN) || RegExp(/^keeta_ao(.*)/).test(input.STN) || RegExp(/^keeta_ap(.*)/).test(input.STN) || RegExp(/^tyblocks_am(.*)/).test(input.STN) || RegExp(/^tyblocks_an(.*)/).test(input.STN) || RegExp(/^tyblocks_ao(.*)/).test(input.STN) || RegExp(/^tyblocks_ap(.*)/).test(input.STN)) || "object" === typeof input.STN && null !== input.STN && _io0(input.STN))) && (null !== input.SAR && (undefined === input.SAR || "string" === typeof input.SAR && (RegExp(/^keeta_am(.*)/).test(input.SAR) || RegExp(/^keeta_an(.*)/).test(input.SAR) || RegExp(/^keeta_ao(.*)/).test(input.SAR) || RegExp(/^keeta_ap(.*)/).test(input.SAR) || RegExp(/^tyblocks_am(.*)/).test(input.SAR) || RegExp(/^tyblocks_an(.*)/).test(input.SAR) || RegExp(/^tyblocks_ao(.*)/).test(input.SAR) || RegExp(/^tyblocks_ap(.*)/).test(input.SAR)) || "object" === typeof input.SAR && null !== input.SAR && _io0(input.SAR))) && (null !== input.RSD && (undefined === input.RSD || "string" === typeof input.RSD && (RegExp(/^keeta_am(.*)/).test(input.RSD) || RegExp(/^keeta_an(.*)/).test(input.RSD) || RegExp(/^keeta_ao(.*)/).test(input.RSD) || RegExp(/^keeta_ap(.*)/).test(input.RSD) || RegExp(/^tyblocks_am(.*)/).test(input.RSD) || RegExp(/^tyblocks_an(.*)/).test(input.RSD) || RegExp(/^tyblocks_ao(.*)/).test(input.RSD) || RegExp(/^tyblocks_ap(.*)/).test(input.RSD)) || "object" === typeof input.RSD && null !== input.RSD && _io0(input.RSD))) && (null !== input.SCR && (undefined === input.SCR || "string" === typeof input.SCR && (RegExp(/^keeta_am(.*)/).test(input.SCR) || RegExp(/^keeta_an(.*)/).test(input.SCR) || RegExp(/^keeta_ao(.*)/).test(input.SCR) || RegExp(/^keeta_ap(.*)/).test(input.SCR) || RegExp(/^tyblocks_am(.*)/).test(input.SCR) || RegExp(/^tyblocks_an(.*)/).test(input.SCR) || RegExp(/^tyblocks_ao(.*)/).test(input.SCR) || RegExp(/^tyblocks_ap(.*)/).test(input.SCR)) || "object" === typeof input.SCR && null !== input.SCR && _io0(input.SCR))) && (null !== input.SLL && (undefined === input.SLL || "string" === typeof input.SLL && (RegExp(/^keeta_am(.*)/).test(input.SLL) || RegExp(/^keeta_an(.*)/).test(input.SLL) || RegExp(/^keeta_ao(.*)/).test(input.SLL) || RegExp(/^keeta_ap(.*)/).test(input.SLL) || RegExp(/^tyblocks_am(.*)/).test(input.SLL) || RegExp(/^tyblocks_an(.*)/).test(input.SLL) || RegExp(/^tyblocks_ao(.*)/).test(input.SLL) || RegExp(/^tyblocks_ap(.*)/).test(input.SLL)) || "object" === typeof input.SLL && null !== input.SLL && _io0(input.SLL))) && (null !== input.SLE && (undefined === input.SLE || "string" === typeof input.SLE && (RegExp(/^keeta_am(.*)/).test(input.SLE) || RegExp(/^keeta_an(.*)/).test(input.SLE) || RegExp(/^keeta_ao(.*)/).test(input.SLE) || RegExp(/^keeta_ap(.*)/).test(input.SLE) || RegExp(/^tyblocks_am(.*)/).test(input.SLE) || RegExp(/^tyblocks_an(.*)/).test(input.SLE) || RegExp(/^tyblocks_ao(.*)/).test(input.SLE) || RegExp(/^tyblocks_ap(.*)/).test(input.SLE)) || "object" === typeof input.SLE && null !== input.SLE && _io0(input.SLE))) && (null !== input.SGD && (undefined === input.SGD || "string" === typeof input.SGD && (RegExp(/^keeta_am(.*)/).test(input.SGD) || RegExp(/^keeta_an(.*)/).test(input.SGD) || RegExp(/^keeta_ao(.*)/).test(input.SGD) || RegExp(/^keeta_ap(.*)/).test(input.SGD) || RegExp(/^tyblocks_am(.*)/).test(input.SGD) || RegExp(/^tyblocks_an(.*)/).test(input.SGD) || RegExp(/^tyblocks_ao(.*)/).test(input.SGD) || RegExp(/^tyblocks_ap(.*)/).test(input.SGD)) || "object" === typeof input.SGD && null !== input.SGD && _io0(input.SGD))) && (null !== input.SBD && (undefined === input.SBD || "string" === typeof input.SBD && (RegExp(/^keeta_am(.*)/).test(input.SBD) || RegExp(/^keeta_an(.*)/).test(input.SBD) || RegExp(/^keeta_ao(.*)/).test(input.SBD) || RegExp(/^keeta_ap(.*)/).test(input.SBD) || RegExp(/^tyblocks_am(.*)/).test(input.SBD) || RegExp(/^tyblocks_an(.*)/).test(input.SBD) || RegExp(/^tyblocks_ao(.*)/).test(input.SBD) || RegExp(/^tyblocks_ap(.*)/).test(input.SBD)) || "object" === typeof input.SBD && null !== input.SBD && _io0(input.SBD))) && (null !== input.SOS && (undefined === input.SOS || "string" === typeof input.SOS && (RegExp(/^keeta_am(.*)/).test(input.SOS) || RegExp(/^keeta_an(.*)/).test(input.SOS) || RegExp(/^keeta_ao(.*)/).test(input.SOS) || RegExp(/^keeta_ap(.*)/).test(input.SOS) || RegExp(/^tyblocks_am(.*)/).test(input.SOS) || RegExp(/^tyblocks_an(.*)/).test(input.SOS) || RegExp(/^tyblocks_ao(.*)/).test(input.SOS) || RegExp(/^tyblocks_ap(.*)/).test(input.SOS)) || "object" === typeof input.SOS && null !== input.SOS && _io0(input.SOS))) && (null !== input.SSP && (undefined === input.SSP || "string" === typeof input.SSP && (RegExp(/^keeta_am(.*)/).test(input.SSP) || RegExp(/^keeta_an(.*)/).test(input.SSP) || RegExp(/^keeta_ao(.*)/).test(input.SSP) || RegExp(/^keeta_ap(.*)/).test(input.SSP) || RegExp(/^tyblocks_am(.*)/).test(input.SSP) || RegExp(/^tyblocks_an(.*)/).test(input.SSP) || RegExp(/^tyblocks_ao(.*)/).test(input.SSP) || RegExp(/^tyblocks_ap(.*)/).test(input.SSP)) || "object" === typeof input.SSP && null !== input.SSP && _io0(input.SSP))) && (null !== input.LKR && (undefined === input.LKR || "string" === typeof input.LKR && (RegExp(/^keeta_am(.*)/).test(input.LKR) || RegExp(/^keeta_an(.*)/).test(input.LKR) || RegExp(/^keeta_ao(.*)/).test(input.LKR) || RegExp(/^keeta_ap(.*)/).test(input.LKR) || RegExp(/^tyblocks_am(.*)/).test(input.LKR) || RegExp(/^tyblocks_an(.*)/).test(input.LKR) || RegExp(/^tyblocks_ao(.*)/).test(input.LKR) || RegExp(/^tyblocks_ap(.*)/).test(input.LKR)) || "object" === typeof input.LKR && null !== input.LKR && _io0(input.LKR))) && (null !== input.SDG && (undefined === input.SDG || "string" === typeof input.SDG && (RegExp(/^keeta_am(.*)/).test(input.SDG) || RegExp(/^keeta_an(.*)/).test(input.SDG) || RegExp(/^keeta_ao(.*)/).test(input.SDG) || RegExp(/^keeta_ap(.*)/).test(input.SDG) || RegExp(/^tyblocks_am(.*)/).test(input.SDG) || RegExp(/^tyblocks_an(.*)/).test(input.SDG) || RegExp(/^tyblocks_ao(.*)/).test(input.SDG) || RegExp(/^tyblocks_ap(.*)/).test(input.SDG)) || "object" === typeof input.SDG && null !== input.SDG && _io0(input.SDG))) && (null !== input.SRD && (undefined === input.SRD || "string" === typeof input.SRD && (RegExp(/^keeta_am(.*)/).test(input.SRD) || RegExp(/^keeta_an(.*)/).test(input.SRD) || RegExp(/^keeta_ao(.*)/).test(input.SRD) || RegExp(/^keeta_ap(.*)/).test(input.SRD) || RegExp(/^tyblocks_am(.*)/).test(input.SRD) || RegExp(/^tyblocks_an(.*)/).test(input.SRD) || RegExp(/^tyblocks_ao(.*)/).test(input.SRD) || RegExp(/^tyblocks_ap(.*)/).test(input.SRD)) || "object" === typeof input.SRD && null !== input.SRD && _io0(input.SRD))) && (null !== input.SEK && (undefined === input.SEK || "string" === typeof input.SEK && (RegExp(/^keeta_am(.*)/).test(input.SEK) || RegExp(/^keeta_an(.*)/).test(input.SEK) || RegExp(/^keeta_ao(.*)/).test(input.SEK) || RegExp(/^keeta_ap(.*)/).test(input.SEK) || RegExp(/^tyblocks_am(.*)/).test(input.SEK) || RegExp(/^tyblocks_an(.*)/).test(input.SEK) || RegExp(/^tyblocks_ao(.*)/).test(input.SEK) || RegExp(/^tyblocks_ap(.*)/).test(input.SEK)) || "object" === typeof input.SEK && null !== input.SEK && _io0(input.SEK))) && (null !== input.CHE && (undefined === input.CHE || "string" === typeof input.CHE && (RegExp(/^keeta_am(.*)/).test(input.CHE) || RegExp(/^keeta_an(.*)/).test(input.CHE) || RegExp(/^keeta_ao(.*)/).test(input.CHE) || RegExp(/^keeta_ap(.*)/).test(input.CHE) || RegExp(/^tyblocks_am(.*)/).test(input.CHE) || RegExp(/^tyblocks_an(.*)/).test(input.CHE) || RegExp(/^tyblocks_ao(.*)/).test(input.CHE) || RegExp(/^tyblocks_ap(.*)/).test(input.CHE)) || "object" === typeof input.CHE && null !== input.CHE && _io0(input.CHE))) && (null !== input.CHW && (undefined === input.CHW || "string" === typeof input.CHW && (RegExp(/^keeta_am(.*)/).test(input.CHW) || RegExp(/^keeta_an(.*)/).test(input.CHW) || RegExp(/^keeta_ao(.*)/).test(input.CHW) || RegExp(/^keeta_ap(.*)/).test(input.CHW) || RegExp(/^tyblocks_am(.*)/).test(input.CHW) || RegExp(/^tyblocks_an(.*)/).test(input.CHW) || RegExp(/^tyblocks_ao(.*)/).test(input.CHW) || RegExp(/^tyblocks_ap(.*)/).test(input.CHW)) || "object" === typeof input.CHW && null !== input.CHW && _io0(input.CHW))) && (null !== input.SYP && (undefined === input.SYP || "string" === typeof input.SYP && (RegExp(/^keeta_am(.*)/).test(input.SYP) || RegExp(/^keeta_an(.*)/).test(input.SYP) || RegExp(/^keeta_ao(.*)/).test(input.SYP) || RegExp(/^keeta_ap(.*)/).test(input.SYP) || RegExp(/^tyblocks_am(.*)/).test(input.SYP) || RegExp(/^tyblocks_an(.*)/).test(input.SYP) || RegExp(/^tyblocks_ao(.*)/).test(input.SYP) || RegExp(/^tyblocks_ap(.*)/).test(input.SYP)) || "object" === typeof input.SYP && null !== input.SYP && _io0(input.SYP))) && (null !== input.TWD && (undefined === input.TWD || "string" === typeof input.TWD && (RegExp(/^keeta_am(.*)/).test(input.TWD) || RegExp(/^keeta_an(.*)/).test(input.TWD) || RegExp(/^keeta_ao(.*)/).test(input.TWD) || RegExp(/^keeta_ap(.*)/).test(input.TWD) || RegExp(/^tyblocks_am(.*)/).test(input.TWD) || RegExp(/^tyblocks_an(.*)/).test(input.TWD) || RegExp(/^tyblocks_ao(.*)/).test(input.TWD) || RegExp(/^tyblocks_ap(.*)/).test(input.TWD)) || "object" === typeof input.TWD && null !== input.TWD && _io0(input.TWD))) && (null !== input.TJS && (undefined === input.TJS || "string" === typeof input.TJS && (RegExp(/^keeta_am(.*)/).test(input.TJS) || RegExp(/^keeta_an(.*)/).test(input.TJS) || RegExp(/^keeta_ao(.*)/).test(input.TJS) || RegExp(/^keeta_ap(.*)/).test(input.TJS) || RegExp(/^tyblocks_am(.*)/).test(input.TJS) || RegExp(/^tyblocks_an(.*)/).test(input.TJS) || RegExp(/^tyblocks_ao(.*)/).test(input.TJS) || RegExp(/^tyblocks_ap(.*)/).test(input.TJS)) || "object" === typeof input.TJS && null !== input.TJS && _io0(input.TJS))) && (null !== input.TZS && (undefined === input.TZS || "string" === typeof input.TZS && (RegExp(/^keeta_am(.*)/).test(input.TZS) || RegExp(/^keeta_an(.*)/).test(input.TZS) || RegExp(/^keeta_ao(.*)/).test(input.TZS) || RegExp(/^keeta_ap(.*)/).test(input.TZS) || RegExp(/^tyblocks_am(.*)/).test(input.TZS) || RegExp(/^tyblocks_an(.*)/).test(input.TZS) || RegExp(/^tyblocks_ao(.*)/).test(input.TZS) || RegExp(/^tyblocks_ap(.*)/).test(input.TZS)) || "object" === typeof input.TZS && null !== input.TZS && _io0(input.TZS))) && (null !== input.THB && (undefined === input.THB || "string" === typeof input.THB && (RegExp(/^keeta_am(.*)/).test(input.THB) || RegExp(/^keeta_an(.*)/).test(input.THB) || RegExp(/^keeta_ao(.*)/).test(input.THB) || RegExp(/^keeta_ap(.*)/).test(input.THB) || RegExp(/^tyblocks_am(.*)/).test(input.THB) || RegExp(/^tyblocks_an(.*)/).test(input.THB) || RegExp(/^tyblocks_ao(.*)/).test(input.THB) || RegExp(/^tyblocks_ap(.*)/).test(input.THB)) || "object" === typeof input.THB && null !== input.THB && _io0(input.THB))) && (null !== input.TOP && (undefined === input.TOP || "string" === typeof input.TOP && (RegExp(/^keeta_am(.*)/).test(input.TOP) || RegExp(/^keeta_an(.*)/).test(input.TOP) || RegExp(/^keeta_ao(.*)/).test(input.TOP) || RegExp(/^keeta_ap(.*)/).test(input.TOP) || RegExp(/^tyblocks_am(.*)/).test(input.TOP) || RegExp(/^tyblocks_an(.*)/).test(input.TOP) || RegExp(/^tyblocks_ao(.*)/).test(input.TOP) || RegExp(/^tyblocks_ap(.*)/).test(input.TOP)) || "object" === typeof input.TOP && null !== input.TOP && _io0(input.TOP))) && (null !== input.TTD && (undefined === input.TTD || "string" === typeof input.TTD && (RegExp(/^keeta_am(.*)/).test(input.TTD) || RegExp(/^keeta_an(.*)/).test(input.TTD) || RegExp(/^keeta_ao(.*)/).test(input.TTD) || RegExp(/^keeta_ap(.*)/).test(input.TTD) || RegExp(/^tyblocks_am(.*)/).test(input.TTD) || RegExp(/^tyblocks_an(.*)/).test(input.TTD) || RegExp(/^tyblocks_ao(.*)/).test(input.TTD) || RegExp(/^tyblocks_ap(.*)/).test(input.TTD)) || "object" === typeof input.TTD && null !== input.TTD && _io0(input.TTD))) && (null !== input.TND && (undefined === input.TND || "string" === typeof input.TND && (RegExp(/^keeta_am(.*)/).test(input.TND) || RegExp(/^keeta_an(.*)/).test(input.TND) || RegExp(/^keeta_ao(.*)/).test(input.TND) || RegExp(/^keeta_ap(.*)/).test(input.TND) || RegExp(/^tyblocks_am(.*)/).test(input.TND) || RegExp(/^tyblocks_an(.*)/).test(input.TND) || RegExp(/^tyblocks_ao(.*)/).test(input.TND) || RegExp(/^tyblocks_ap(.*)/).test(input.TND)) || "object" === typeof input.TND && null !== input.TND && _io0(input.TND))) && (null !== input.TRY && (undefined === input.TRY || "string" === typeof input.TRY && (RegExp(/^keeta_am(.*)/).test(input.TRY) || RegExp(/^keeta_an(.*)/).test(input.TRY) || RegExp(/^keeta_ao(.*)/).test(input.TRY) || RegExp(/^keeta_ap(.*)/).test(input.TRY) || RegExp(/^tyblocks_am(.*)/).test(input.TRY) || RegExp(/^tyblocks_an(.*)/).test(input.TRY) || RegExp(/^tyblocks_ao(.*)/).test(input.TRY) || RegExp(/^tyblocks_ap(.*)/).test(input.TRY)) || "object" === typeof input.TRY && null !== input.TRY && _io0(input.TRY))) && (null !== input.TMT && (undefined === input.TMT || "string" === typeof input.TMT && (RegExp(/^keeta_am(.*)/).test(input.TMT) || RegExp(/^keeta_an(.*)/).test(input.TMT) || RegExp(/^keeta_ao(.*)/).test(input.TMT) || RegExp(/^keeta_ap(.*)/).test(input.TMT) || RegExp(/^tyblocks_am(.*)/).test(input.TMT) || RegExp(/^tyblocks_an(.*)/).test(input.TMT) || RegExp(/^tyblocks_ao(.*)/).test(input.TMT) || RegExp(/^tyblocks_ap(.*)/).test(input.TMT)) || "object" === typeof input.TMT && null !== input.TMT && _io0(input.TMT))) && (null !== input.UGX && (undefined === input.UGX || "string" === typeof input.UGX && (RegExp(/^keeta_am(.*)/).test(input.UGX) || RegExp(/^keeta_an(.*)/).test(input.UGX) || RegExp(/^keeta_ao(.*)/).test(input.UGX) || RegExp(/^keeta_ap(.*)/).test(input.UGX) || RegExp(/^tyblocks_am(.*)/).test(input.UGX) || RegExp(/^tyblocks_an(.*)/).test(input.UGX) || RegExp(/^tyblocks_ao(.*)/).test(input.UGX) || RegExp(/^tyblocks_ap(.*)/).test(input.UGX)) || "object" === typeof input.UGX && null !== input.UGX && _io0(input.UGX))) && (null !== input.UAH && (undefined === input.UAH || "string" === typeof input.UAH && (RegExp(/^keeta_am(.*)/).test(input.UAH) || RegExp(/^keeta_an(.*)/).test(input.UAH) || RegExp(/^keeta_ao(.*)/).test(input.UAH) || RegExp(/^keeta_ap(.*)/).test(input.UAH) || RegExp(/^tyblocks_am(.*)/).test(input.UAH) || RegExp(/^tyblocks_an(.*)/).test(input.UAH) || RegExp(/^tyblocks_ao(.*)/).test(input.UAH) || RegExp(/^tyblocks_ap(.*)/).test(input.UAH)) || "object" === typeof input.UAH && null !== input.UAH && _io0(input.UAH))) && (null !== input.AED && (undefined === input.AED || "string" === typeof input.AED && (RegExp(/^keeta_am(.*)/).test(input.AED) || RegExp(/^keeta_an(.*)/).test(input.AED) || RegExp(/^keeta_ao(.*)/).test(input.AED) || RegExp(/^keeta_ap(.*)/).test(input.AED) || RegExp(/^tyblocks_am(.*)/).test(input.AED) || RegExp(/^tyblocks_an(.*)/).test(input.AED) || RegExp(/^tyblocks_ao(.*)/).test(input.AED) || RegExp(/^tyblocks_ap(.*)/).test(input.AED)) || "object" === typeof input.AED && null !== input.AED && _io0(input.AED))) && (null !== input.USN && (undefined === input.USN || "string" === typeof input.USN && (RegExp(/^keeta_am(.*)/).test(input.USN) || RegExp(/^keeta_an(.*)/).test(input.USN) || RegExp(/^keeta_ao(.*)/).test(input.USN) || RegExp(/^keeta_ap(.*)/).test(input.USN) || RegExp(/^tyblocks_am(.*)/).test(input.USN) || RegExp(/^tyblocks_an(.*)/).test(input.USN) || RegExp(/^tyblocks_ao(.*)/).test(input.USN) || RegExp(/^tyblocks_ap(.*)/).test(input.USN)) || "object" === typeof input.USN && null !== input.USN && _io0(input.USN))) && (null !== input.UYU && (undefined === input.UYU || "string" === typeof input.UYU && (RegExp(/^keeta_am(.*)/).test(input.UYU) || RegExp(/^keeta_an(.*)/).test(input.UYU) || RegExp(/^keeta_ao(.*)/).test(input.UYU) || RegExp(/^keeta_ap(.*)/).test(input.UYU) || RegExp(/^tyblocks_am(.*)/).test(input.UYU) || RegExp(/^tyblocks_an(.*)/).test(input.UYU) || RegExp(/^tyblocks_ao(.*)/).test(input.UYU) || RegExp(/^tyblocks_ap(.*)/).test(input.UYU)) || "object" === typeof input.UYU && null !== input.UYU && _io0(input.UYU))) && (null !== input.UYI && (undefined === input.UYI || "string" === typeof input.UYI && (RegExp(/^keeta_am(.*)/).test(input.UYI) || RegExp(/^keeta_an(.*)/).test(input.UYI) || RegExp(/^keeta_ao(.*)/).test(input.UYI) || RegExp(/^keeta_ap(.*)/).test(input.UYI) || RegExp(/^tyblocks_am(.*)/).test(input.UYI) || RegExp(/^tyblocks_an(.*)/).test(input.UYI) || RegExp(/^tyblocks_ao(.*)/).test(input.UYI) || RegExp(/^tyblocks_ap(.*)/).test(input.UYI)) || "object" === typeof input.UYI && null !== input.UYI && _io0(input.UYI))) && (null !== input.UYW && (undefined === input.UYW || "string" === typeof input.UYW && (RegExp(/^keeta_am(.*)/).test(input.UYW) || RegExp(/^keeta_an(.*)/).test(input.UYW) || RegExp(/^keeta_ao(.*)/).test(input.UYW) || RegExp(/^keeta_ap(.*)/).test(input.UYW) || RegExp(/^tyblocks_am(.*)/).test(input.UYW) || RegExp(/^tyblocks_an(.*)/).test(input.UYW) || RegExp(/^tyblocks_ao(.*)/).test(input.UYW) || RegExp(/^tyblocks_ap(.*)/).test(input.UYW)) || "object" === typeof input.UYW && null !== input.UYW && _io0(input.UYW))) && (null !== input.UZS && (undefined === input.UZS || "string" === typeof input.UZS && (RegExp(/^keeta_am(.*)/).test(input.UZS) || RegExp(/^keeta_an(.*)/).test(input.UZS) || RegExp(/^keeta_ao(.*)/).test(input.UZS) || RegExp(/^keeta_ap(.*)/).test(input.UZS) || RegExp(/^tyblocks_am(.*)/).test(input.UZS) || RegExp(/^tyblocks_an(.*)/).test(input.UZS) || RegExp(/^tyblocks_ao(.*)/).test(input.UZS) || RegExp(/^tyblocks_ap(.*)/).test(input.UZS)) || "object" === typeof input.UZS && null !== input.UZS && _io0(input.UZS))) && (null !== input.VUV && (undefined === input.VUV || "string" === typeof input.VUV && (RegExp(/^keeta_am(.*)/).test(input.VUV) || RegExp(/^keeta_an(.*)/).test(input.VUV) || RegExp(/^keeta_ao(.*)/).test(input.VUV) || RegExp(/^keeta_ap(.*)/).test(input.VUV) || RegExp(/^tyblocks_am(.*)/).test(input.VUV) || RegExp(/^tyblocks_an(.*)/).test(input.VUV) || RegExp(/^tyblocks_ao(.*)/).test(input.VUV) || RegExp(/^tyblocks_ap(.*)/).test(input.VUV)) || "object" === typeof input.VUV && null !== input.VUV && _io0(input.VUV))) && (null !== input.VES && (undefined === input.VES || "string" === typeof input.VES && (RegExp(/^keeta_am(.*)/).test(input.VES) || RegExp(/^keeta_an(.*)/).test(input.VES) || RegExp(/^keeta_ao(.*)/).test(input.VES) || RegExp(/^keeta_ap(.*)/).test(input.VES) || RegExp(/^tyblocks_am(.*)/).test(input.VES) || RegExp(/^tyblocks_an(.*)/).test(input.VES) || RegExp(/^tyblocks_ao(.*)/).test(input.VES) || RegExp(/^tyblocks_ap(.*)/).test(input.VES)) || "object" === typeof input.VES && null !== input.VES && _io0(input.VES))) && (null !== input.VED && (undefined === input.VED || "string" === typeof input.VED && (RegExp(/^keeta_am(.*)/).test(input.VED) || RegExp(/^keeta_an(.*)/).test(input.VED) || RegExp(/^keeta_ao(.*)/).test(input.VED) || RegExp(/^keeta_ap(.*)/).test(input.VED) || RegExp(/^tyblocks_am(.*)/).test(input.VED) || RegExp(/^tyblocks_an(.*)/).test(input.VED) || RegExp(/^tyblocks_ao(.*)/).test(input.VED) || RegExp(/^tyblocks_ap(.*)/).test(input.VED)) || "object" === typeof input.VED && null !== input.VED && _io0(input.VED))) && (null !== input.VND && (undefined === input.VND || "string" === typeof input.VND && (RegExp(/^keeta_am(.*)/).test(input.VND) || RegExp(/^keeta_an(.*)/).test(input.VND) || RegExp(/^keeta_ao(.*)/).test(input.VND) || RegExp(/^keeta_ap(.*)/).test(input.VND) || RegExp(/^tyblocks_am(.*)/).test(input.VND) || RegExp(/^tyblocks_an(.*)/).test(input.VND) || RegExp(/^tyblocks_ao(.*)/).test(input.VND) || RegExp(/^tyblocks_ap(.*)/).test(input.VND)) || "object" === typeof input.VND && null !== input.VND && _io0(input.VND))) && (null !== input.YER && (undefined === input.YER || "string" === typeof input.YER && (RegExp(/^keeta_am(.*)/).test(input.YER) || RegExp(/^keeta_an(.*)/).test(input.YER) || RegExp(/^keeta_ao(.*)/).test(input.YER) || RegExp(/^keeta_ap(.*)/).test(input.YER) || RegExp(/^tyblocks_am(.*)/).test(input.YER) || RegExp(/^tyblocks_an(.*)/).test(input.YER) || RegExp(/^tyblocks_ao(.*)/).test(input.YER) || RegExp(/^tyblocks_ap(.*)/).test(input.YER)) || "object" === typeof input.YER && null !== input.YER && _io0(input.YER))) && (null !== input.ZMW && (undefined === input.ZMW || "string" === typeof input.ZMW && (RegExp(/^keeta_am(.*)/).test(input.ZMW) || RegExp(/^keeta_an(.*)/).test(input.ZMW) || RegExp(/^keeta_ao(.*)/).test(input.ZMW) || RegExp(/^keeta_ap(.*)/).test(input.ZMW) || RegExp(/^tyblocks_am(.*)/).test(input.ZMW) || RegExp(/^tyblocks_an(.*)/).test(input.ZMW) || RegExp(/^tyblocks_ao(.*)/).test(input.ZMW) || RegExp(/^tyblocks_ap(.*)/).test(input.ZMW)) || "object" === typeof input.ZMW && null !== input.ZMW && _io0(input.ZMW))) && (null !== input.ZWL && (undefined === input.ZWL || "string" === typeof input.ZWL && (RegExp(/^keeta_am(.*)/).test(input.ZWL) || RegExp(/^keeta_an(.*)/).test(input.ZWL) || RegExp(/^keeta_ao(.*)/).test(input.ZWL) || RegExp(/^keeta_ap(.*)/).test(input.ZWL) || RegExp(/^tyblocks_am(.*)/).test(input.ZWL) || RegExp(/^tyblocks_an(.*)/).test(input.ZWL) || RegExp(/^tyblocks_ao(.*)/).test(input.ZWL) || RegExp(/^tyblocks_ap(.*)/).test(input.ZWL)) || "object" === typeof input.ZWL && null !== input.ZWL && _io0(input.ZWL))) && Object.keys(input).every(key => {
|
|
278
|
+
const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _iv11 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _iv12 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _iv16 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv18 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv20 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv21 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv22 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _iv23 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _iv25 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv27 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv29 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv31 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av42 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _av43 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _av44 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _av48 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av50 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av52 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av53 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av54 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _av55 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _av57 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av59 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av61 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av63 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _io0 = input => "2b828e33-2692-46e9-817e-9b93d63f28fd" === input.external && "string" === typeof input.url; const _io1 = input => null !== input.version && undefined !== input.version && ("number" === typeof input.version || "object" === typeof input.version && null !== input.version && _io0(input.version)) && ("object" === typeof input.currencyMap && null !== input.currencyMap && false === Array.isArray(input.currencyMap) && _iu5(input.currencyMap)) && ("object" === typeof input.services && null !== input.services && false === Array.isArray(input.services) && _iu6(input.services)); const _io2 = input => null !== input.AFN && (undefined === input.AFN || "string" === typeof input.AFN && (RegExp(/^keeta_am(.*)/).test(input.AFN) || RegExp(/^keeta_an(.*)/).test(input.AFN) || RegExp(/^keeta_ao(.*)/).test(input.AFN) || RegExp(/^keeta_ap(.*)/).test(input.AFN) || RegExp(/^tyblocks_am(.*)/).test(input.AFN) || RegExp(/^tyblocks_an(.*)/).test(input.AFN) || RegExp(/^tyblocks_ao(.*)/).test(input.AFN) || RegExp(/^tyblocks_ap(.*)/).test(input.AFN)) || "object" === typeof input.AFN && null !== input.AFN && _io0(input.AFN)) && (null !== input.EUR && (undefined === input.EUR || "string" === typeof input.EUR && (RegExp(/^keeta_am(.*)/).test(input.EUR) || RegExp(/^keeta_an(.*)/).test(input.EUR) || RegExp(/^keeta_ao(.*)/).test(input.EUR) || RegExp(/^keeta_ap(.*)/).test(input.EUR) || RegExp(/^tyblocks_am(.*)/).test(input.EUR) || RegExp(/^tyblocks_an(.*)/).test(input.EUR) || RegExp(/^tyblocks_ao(.*)/).test(input.EUR) || RegExp(/^tyblocks_ap(.*)/).test(input.EUR)) || "object" === typeof input.EUR && null !== input.EUR && _io0(input.EUR))) && (null !== input.ALL && (undefined === input.ALL || "string" === typeof input.ALL && (RegExp(/^keeta_am(.*)/).test(input.ALL) || RegExp(/^keeta_an(.*)/).test(input.ALL) || RegExp(/^keeta_ao(.*)/).test(input.ALL) || RegExp(/^keeta_ap(.*)/).test(input.ALL) || RegExp(/^tyblocks_am(.*)/).test(input.ALL) || RegExp(/^tyblocks_an(.*)/).test(input.ALL) || RegExp(/^tyblocks_ao(.*)/).test(input.ALL) || RegExp(/^tyblocks_ap(.*)/).test(input.ALL)) || "object" === typeof input.ALL && null !== input.ALL && _io0(input.ALL))) && (null !== input.DZD && (undefined === input.DZD || "string" === typeof input.DZD && (RegExp(/^keeta_am(.*)/).test(input.DZD) || RegExp(/^keeta_an(.*)/).test(input.DZD) || RegExp(/^keeta_ao(.*)/).test(input.DZD) || RegExp(/^keeta_ap(.*)/).test(input.DZD) || RegExp(/^tyblocks_am(.*)/).test(input.DZD) || RegExp(/^tyblocks_an(.*)/).test(input.DZD) || RegExp(/^tyblocks_ao(.*)/).test(input.DZD) || RegExp(/^tyblocks_ap(.*)/).test(input.DZD)) || "object" === typeof input.DZD && null !== input.DZD && _io0(input.DZD))) && (null !== input.USD && (undefined === input.USD || "string" === typeof input.USD && (RegExp(/^keeta_am(.*)/).test(input.USD) || RegExp(/^keeta_an(.*)/).test(input.USD) || RegExp(/^keeta_ao(.*)/).test(input.USD) || RegExp(/^keeta_ap(.*)/).test(input.USD) || RegExp(/^tyblocks_am(.*)/).test(input.USD) || RegExp(/^tyblocks_an(.*)/).test(input.USD) || RegExp(/^tyblocks_ao(.*)/).test(input.USD) || RegExp(/^tyblocks_ap(.*)/).test(input.USD)) || "object" === typeof input.USD && null !== input.USD && _io0(input.USD))) && (null !== input.AOA && (undefined === input.AOA || "string" === typeof input.AOA && (RegExp(/^keeta_am(.*)/).test(input.AOA) || RegExp(/^keeta_an(.*)/).test(input.AOA) || RegExp(/^keeta_ao(.*)/).test(input.AOA) || RegExp(/^keeta_ap(.*)/).test(input.AOA) || RegExp(/^tyblocks_am(.*)/).test(input.AOA) || RegExp(/^tyblocks_an(.*)/).test(input.AOA) || RegExp(/^tyblocks_ao(.*)/).test(input.AOA) || RegExp(/^tyblocks_ap(.*)/).test(input.AOA)) || "object" === typeof input.AOA && null !== input.AOA && _io0(input.AOA))) && (null !== input.XCD && (undefined === input.XCD || "string" === typeof input.XCD && (RegExp(/^keeta_am(.*)/).test(input.XCD) || RegExp(/^keeta_an(.*)/).test(input.XCD) || RegExp(/^keeta_ao(.*)/).test(input.XCD) || RegExp(/^keeta_ap(.*)/).test(input.XCD) || RegExp(/^tyblocks_am(.*)/).test(input.XCD) || RegExp(/^tyblocks_an(.*)/).test(input.XCD) || RegExp(/^tyblocks_ao(.*)/).test(input.XCD) || RegExp(/^tyblocks_ap(.*)/).test(input.XCD)) || "object" === typeof input.XCD && null !== input.XCD && _io0(input.XCD))) && (null !== input.ARS && (undefined === input.ARS || "string" === typeof input.ARS && (RegExp(/^keeta_am(.*)/).test(input.ARS) || RegExp(/^keeta_an(.*)/).test(input.ARS) || RegExp(/^keeta_ao(.*)/).test(input.ARS) || RegExp(/^keeta_ap(.*)/).test(input.ARS) || RegExp(/^tyblocks_am(.*)/).test(input.ARS) || RegExp(/^tyblocks_an(.*)/).test(input.ARS) || RegExp(/^tyblocks_ao(.*)/).test(input.ARS) || RegExp(/^tyblocks_ap(.*)/).test(input.ARS)) || "object" === typeof input.ARS && null !== input.ARS && _io0(input.ARS))) && (null !== input.AMD && (undefined === input.AMD || "string" === typeof input.AMD && (RegExp(/^keeta_am(.*)/).test(input.AMD) || RegExp(/^keeta_an(.*)/).test(input.AMD) || RegExp(/^keeta_ao(.*)/).test(input.AMD) || RegExp(/^keeta_ap(.*)/).test(input.AMD) || RegExp(/^tyblocks_am(.*)/).test(input.AMD) || RegExp(/^tyblocks_an(.*)/).test(input.AMD) || RegExp(/^tyblocks_ao(.*)/).test(input.AMD) || RegExp(/^tyblocks_ap(.*)/).test(input.AMD)) || "object" === typeof input.AMD && null !== input.AMD && _io0(input.AMD))) && (null !== input.AWG && (undefined === input.AWG || "string" === typeof input.AWG && (RegExp(/^keeta_am(.*)/).test(input.AWG) || RegExp(/^keeta_an(.*)/).test(input.AWG) || RegExp(/^keeta_ao(.*)/).test(input.AWG) || RegExp(/^keeta_ap(.*)/).test(input.AWG) || RegExp(/^tyblocks_am(.*)/).test(input.AWG) || RegExp(/^tyblocks_an(.*)/).test(input.AWG) || RegExp(/^tyblocks_ao(.*)/).test(input.AWG) || RegExp(/^tyblocks_ap(.*)/).test(input.AWG)) || "object" === typeof input.AWG && null !== input.AWG && _io0(input.AWG))) && (null !== input.AUD && (undefined === input.AUD || "string" === typeof input.AUD && (RegExp(/^keeta_am(.*)/).test(input.AUD) || RegExp(/^keeta_an(.*)/).test(input.AUD) || RegExp(/^keeta_ao(.*)/).test(input.AUD) || RegExp(/^keeta_ap(.*)/).test(input.AUD) || RegExp(/^tyblocks_am(.*)/).test(input.AUD) || RegExp(/^tyblocks_an(.*)/).test(input.AUD) || RegExp(/^tyblocks_ao(.*)/).test(input.AUD) || RegExp(/^tyblocks_ap(.*)/).test(input.AUD)) || "object" === typeof input.AUD && null !== input.AUD && _io0(input.AUD))) && (null !== input.AZN && (undefined === input.AZN || "string" === typeof input.AZN && (RegExp(/^keeta_am(.*)/).test(input.AZN) || RegExp(/^keeta_an(.*)/).test(input.AZN) || RegExp(/^keeta_ao(.*)/).test(input.AZN) || RegExp(/^keeta_ap(.*)/).test(input.AZN) || RegExp(/^tyblocks_am(.*)/).test(input.AZN) || RegExp(/^tyblocks_an(.*)/).test(input.AZN) || RegExp(/^tyblocks_ao(.*)/).test(input.AZN) || RegExp(/^tyblocks_ap(.*)/).test(input.AZN)) || "object" === typeof input.AZN && null !== input.AZN && _io0(input.AZN))) && (null !== input.BSD && (undefined === input.BSD || "string" === typeof input.BSD && (RegExp(/^keeta_am(.*)/).test(input.BSD) || RegExp(/^keeta_an(.*)/).test(input.BSD) || RegExp(/^keeta_ao(.*)/).test(input.BSD) || RegExp(/^keeta_ap(.*)/).test(input.BSD) || RegExp(/^tyblocks_am(.*)/).test(input.BSD) || RegExp(/^tyblocks_an(.*)/).test(input.BSD) || RegExp(/^tyblocks_ao(.*)/).test(input.BSD) || RegExp(/^tyblocks_ap(.*)/).test(input.BSD)) || "object" === typeof input.BSD && null !== input.BSD && _io0(input.BSD))) && (null !== input.BHD && (undefined === input.BHD || "string" === typeof input.BHD && (RegExp(/^keeta_am(.*)/).test(input.BHD) || RegExp(/^keeta_an(.*)/).test(input.BHD) || RegExp(/^keeta_ao(.*)/).test(input.BHD) || RegExp(/^keeta_ap(.*)/).test(input.BHD) || RegExp(/^tyblocks_am(.*)/).test(input.BHD) || RegExp(/^tyblocks_an(.*)/).test(input.BHD) || RegExp(/^tyblocks_ao(.*)/).test(input.BHD) || RegExp(/^tyblocks_ap(.*)/).test(input.BHD)) || "object" === typeof input.BHD && null !== input.BHD && _io0(input.BHD))) && (null !== input.BDT && (undefined === input.BDT || "string" === typeof input.BDT && (RegExp(/^keeta_am(.*)/).test(input.BDT) || RegExp(/^keeta_an(.*)/).test(input.BDT) || RegExp(/^keeta_ao(.*)/).test(input.BDT) || RegExp(/^keeta_ap(.*)/).test(input.BDT) || RegExp(/^tyblocks_am(.*)/).test(input.BDT) || RegExp(/^tyblocks_an(.*)/).test(input.BDT) || RegExp(/^tyblocks_ao(.*)/).test(input.BDT) || RegExp(/^tyblocks_ap(.*)/).test(input.BDT)) || "object" === typeof input.BDT && null !== input.BDT && _io0(input.BDT))) && (null !== input.BBD && (undefined === input.BBD || "string" === typeof input.BBD && (RegExp(/^keeta_am(.*)/).test(input.BBD) || RegExp(/^keeta_an(.*)/).test(input.BBD) || RegExp(/^keeta_ao(.*)/).test(input.BBD) || RegExp(/^keeta_ap(.*)/).test(input.BBD) || RegExp(/^tyblocks_am(.*)/).test(input.BBD) || RegExp(/^tyblocks_an(.*)/).test(input.BBD) || RegExp(/^tyblocks_ao(.*)/).test(input.BBD) || RegExp(/^tyblocks_ap(.*)/).test(input.BBD)) || "object" === typeof input.BBD && null !== input.BBD && _io0(input.BBD))) && (null !== input.BYN && (undefined === input.BYN || "string" === typeof input.BYN && (RegExp(/^keeta_am(.*)/).test(input.BYN) || RegExp(/^keeta_an(.*)/).test(input.BYN) || RegExp(/^keeta_ao(.*)/).test(input.BYN) || RegExp(/^keeta_ap(.*)/).test(input.BYN) || RegExp(/^tyblocks_am(.*)/).test(input.BYN) || RegExp(/^tyblocks_an(.*)/).test(input.BYN) || RegExp(/^tyblocks_ao(.*)/).test(input.BYN) || RegExp(/^tyblocks_ap(.*)/).test(input.BYN)) || "object" === typeof input.BYN && null !== input.BYN && _io0(input.BYN))) && (null !== input.BZD && (undefined === input.BZD || "string" === typeof input.BZD && (RegExp(/^keeta_am(.*)/).test(input.BZD) || RegExp(/^keeta_an(.*)/).test(input.BZD) || RegExp(/^keeta_ao(.*)/).test(input.BZD) || RegExp(/^keeta_ap(.*)/).test(input.BZD) || RegExp(/^tyblocks_am(.*)/).test(input.BZD) || RegExp(/^tyblocks_an(.*)/).test(input.BZD) || RegExp(/^tyblocks_ao(.*)/).test(input.BZD) || RegExp(/^tyblocks_ap(.*)/).test(input.BZD)) || "object" === typeof input.BZD && null !== input.BZD && _io0(input.BZD))) && (null !== input.XOF && (undefined === input.XOF || "string" === typeof input.XOF && (RegExp(/^keeta_am(.*)/).test(input.XOF) || RegExp(/^keeta_an(.*)/).test(input.XOF) || RegExp(/^keeta_ao(.*)/).test(input.XOF) || RegExp(/^keeta_ap(.*)/).test(input.XOF) || RegExp(/^tyblocks_am(.*)/).test(input.XOF) || RegExp(/^tyblocks_an(.*)/).test(input.XOF) || RegExp(/^tyblocks_ao(.*)/).test(input.XOF) || RegExp(/^tyblocks_ap(.*)/).test(input.XOF)) || "object" === typeof input.XOF && null !== input.XOF && _io0(input.XOF))) && (null !== input.BMD && (undefined === input.BMD || "string" === typeof input.BMD && (RegExp(/^keeta_am(.*)/).test(input.BMD) || RegExp(/^keeta_an(.*)/).test(input.BMD) || RegExp(/^keeta_ao(.*)/).test(input.BMD) || RegExp(/^keeta_ap(.*)/).test(input.BMD) || RegExp(/^tyblocks_am(.*)/).test(input.BMD) || RegExp(/^tyblocks_an(.*)/).test(input.BMD) || RegExp(/^tyblocks_ao(.*)/).test(input.BMD) || RegExp(/^tyblocks_ap(.*)/).test(input.BMD)) || "object" === typeof input.BMD && null !== input.BMD && _io0(input.BMD))) && (null !== input.INR && (undefined === input.INR || "string" === typeof input.INR && (RegExp(/^keeta_am(.*)/).test(input.INR) || RegExp(/^keeta_an(.*)/).test(input.INR) || RegExp(/^keeta_ao(.*)/).test(input.INR) || RegExp(/^keeta_ap(.*)/).test(input.INR) || RegExp(/^tyblocks_am(.*)/).test(input.INR) || RegExp(/^tyblocks_an(.*)/).test(input.INR) || RegExp(/^tyblocks_ao(.*)/).test(input.INR) || RegExp(/^tyblocks_ap(.*)/).test(input.INR)) || "object" === typeof input.INR && null !== input.INR && _io0(input.INR))) && (null !== input.BTN && (undefined === input.BTN || "string" === typeof input.BTN && (RegExp(/^keeta_am(.*)/).test(input.BTN) || RegExp(/^keeta_an(.*)/).test(input.BTN) || RegExp(/^keeta_ao(.*)/).test(input.BTN) || RegExp(/^keeta_ap(.*)/).test(input.BTN) || RegExp(/^tyblocks_am(.*)/).test(input.BTN) || RegExp(/^tyblocks_an(.*)/).test(input.BTN) || RegExp(/^tyblocks_ao(.*)/).test(input.BTN) || RegExp(/^tyblocks_ap(.*)/).test(input.BTN)) || "object" === typeof input.BTN && null !== input.BTN && _io0(input.BTN))) && (null !== input.BOB && (undefined === input.BOB || "string" === typeof input.BOB && (RegExp(/^keeta_am(.*)/).test(input.BOB) || RegExp(/^keeta_an(.*)/).test(input.BOB) || RegExp(/^keeta_ao(.*)/).test(input.BOB) || RegExp(/^keeta_ap(.*)/).test(input.BOB) || RegExp(/^tyblocks_am(.*)/).test(input.BOB) || RegExp(/^tyblocks_an(.*)/).test(input.BOB) || RegExp(/^tyblocks_ao(.*)/).test(input.BOB) || RegExp(/^tyblocks_ap(.*)/).test(input.BOB)) || "object" === typeof input.BOB && null !== input.BOB && _io0(input.BOB))) && (null !== input.BOV && (undefined === input.BOV || "string" === typeof input.BOV && (RegExp(/^keeta_am(.*)/).test(input.BOV) || RegExp(/^keeta_an(.*)/).test(input.BOV) || RegExp(/^keeta_ao(.*)/).test(input.BOV) || RegExp(/^keeta_ap(.*)/).test(input.BOV) || RegExp(/^tyblocks_am(.*)/).test(input.BOV) || RegExp(/^tyblocks_an(.*)/).test(input.BOV) || RegExp(/^tyblocks_ao(.*)/).test(input.BOV) || RegExp(/^tyblocks_ap(.*)/).test(input.BOV)) || "object" === typeof input.BOV && null !== input.BOV && _io0(input.BOV))) && (null !== input.BAM && (undefined === input.BAM || "string" === typeof input.BAM && (RegExp(/^keeta_am(.*)/).test(input.BAM) || RegExp(/^keeta_an(.*)/).test(input.BAM) || RegExp(/^keeta_ao(.*)/).test(input.BAM) || RegExp(/^keeta_ap(.*)/).test(input.BAM) || RegExp(/^tyblocks_am(.*)/).test(input.BAM) || RegExp(/^tyblocks_an(.*)/).test(input.BAM) || RegExp(/^tyblocks_ao(.*)/).test(input.BAM) || RegExp(/^tyblocks_ap(.*)/).test(input.BAM)) || "object" === typeof input.BAM && null !== input.BAM && _io0(input.BAM))) && (null !== input.BWP && (undefined === input.BWP || "string" === typeof input.BWP && (RegExp(/^keeta_am(.*)/).test(input.BWP) || RegExp(/^keeta_an(.*)/).test(input.BWP) || RegExp(/^keeta_ao(.*)/).test(input.BWP) || RegExp(/^keeta_ap(.*)/).test(input.BWP) || RegExp(/^tyblocks_am(.*)/).test(input.BWP) || RegExp(/^tyblocks_an(.*)/).test(input.BWP) || RegExp(/^tyblocks_ao(.*)/).test(input.BWP) || RegExp(/^tyblocks_ap(.*)/).test(input.BWP)) || "object" === typeof input.BWP && null !== input.BWP && _io0(input.BWP))) && (null !== input.NOK && (undefined === input.NOK || "string" === typeof input.NOK && (RegExp(/^keeta_am(.*)/).test(input.NOK) || RegExp(/^keeta_an(.*)/).test(input.NOK) || RegExp(/^keeta_ao(.*)/).test(input.NOK) || RegExp(/^keeta_ap(.*)/).test(input.NOK) || RegExp(/^tyblocks_am(.*)/).test(input.NOK) || RegExp(/^tyblocks_an(.*)/).test(input.NOK) || RegExp(/^tyblocks_ao(.*)/).test(input.NOK) || RegExp(/^tyblocks_ap(.*)/).test(input.NOK)) || "object" === typeof input.NOK && null !== input.NOK && _io0(input.NOK))) && (null !== input.BRL && (undefined === input.BRL || "string" === typeof input.BRL && (RegExp(/^keeta_am(.*)/).test(input.BRL) || RegExp(/^keeta_an(.*)/).test(input.BRL) || RegExp(/^keeta_ao(.*)/).test(input.BRL) || RegExp(/^keeta_ap(.*)/).test(input.BRL) || RegExp(/^tyblocks_am(.*)/).test(input.BRL) || RegExp(/^tyblocks_an(.*)/).test(input.BRL) || RegExp(/^tyblocks_ao(.*)/).test(input.BRL) || RegExp(/^tyblocks_ap(.*)/).test(input.BRL)) || "object" === typeof input.BRL && null !== input.BRL && _io0(input.BRL))) && (null !== input.BND && (undefined === input.BND || "string" === typeof input.BND && (RegExp(/^keeta_am(.*)/).test(input.BND) || RegExp(/^keeta_an(.*)/).test(input.BND) || RegExp(/^keeta_ao(.*)/).test(input.BND) || RegExp(/^keeta_ap(.*)/).test(input.BND) || RegExp(/^tyblocks_am(.*)/).test(input.BND) || RegExp(/^tyblocks_an(.*)/).test(input.BND) || RegExp(/^tyblocks_ao(.*)/).test(input.BND) || RegExp(/^tyblocks_ap(.*)/).test(input.BND)) || "object" === typeof input.BND && null !== input.BND && _io0(input.BND))) && (null !== input.BGN && (undefined === input.BGN || "string" === typeof input.BGN && (RegExp(/^keeta_am(.*)/).test(input.BGN) || RegExp(/^keeta_an(.*)/).test(input.BGN) || RegExp(/^keeta_ao(.*)/).test(input.BGN) || RegExp(/^keeta_ap(.*)/).test(input.BGN) || RegExp(/^tyblocks_am(.*)/).test(input.BGN) || RegExp(/^tyblocks_an(.*)/).test(input.BGN) || RegExp(/^tyblocks_ao(.*)/).test(input.BGN) || RegExp(/^tyblocks_ap(.*)/).test(input.BGN)) || "object" === typeof input.BGN && null !== input.BGN && _io0(input.BGN))) && (null !== input.BIF && (undefined === input.BIF || "string" === typeof input.BIF && (RegExp(/^keeta_am(.*)/).test(input.BIF) || RegExp(/^keeta_an(.*)/).test(input.BIF) || RegExp(/^keeta_ao(.*)/).test(input.BIF) || RegExp(/^keeta_ap(.*)/).test(input.BIF) || RegExp(/^tyblocks_am(.*)/).test(input.BIF) || RegExp(/^tyblocks_an(.*)/).test(input.BIF) || RegExp(/^tyblocks_ao(.*)/).test(input.BIF) || RegExp(/^tyblocks_ap(.*)/).test(input.BIF)) || "object" === typeof input.BIF && null !== input.BIF && _io0(input.BIF))) && (null !== input.CVE && (undefined === input.CVE || "string" === typeof input.CVE && (RegExp(/^keeta_am(.*)/).test(input.CVE) || RegExp(/^keeta_an(.*)/).test(input.CVE) || RegExp(/^keeta_ao(.*)/).test(input.CVE) || RegExp(/^keeta_ap(.*)/).test(input.CVE) || RegExp(/^tyblocks_am(.*)/).test(input.CVE) || RegExp(/^tyblocks_an(.*)/).test(input.CVE) || RegExp(/^tyblocks_ao(.*)/).test(input.CVE) || RegExp(/^tyblocks_ap(.*)/).test(input.CVE)) || "object" === typeof input.CVE && null !== input.CVE && _io0(input.CVE))) && (null !== input.KHR && (undefined === input.KHR || "string" === typeof input.KHR && (RegExp(/^keeta_am(.*)/).test(input.KHR) || RegExp(/^keeta_an(.*)/).test(input.KHR) || RegExp(/^keeta_ao(.*)/).test(input.KHR) || RegExp(/^keeta_ap(.*)/).test(input.KHR) || RegExp(/^tyblocks_am(.*)/).test(input.KHR) || RegExp(/^tyblocks_an(.*)/).test(input.KHR) || RegExp(/^tyblocks_ao(.*)/).test(input.KHR) || RegExp(/^tyblocks_ap(.*)/).test(input.KHR)) || "object" === typeof input.KHR && null !== input.KHR && _io0(input.KHR))) && (null !== input.XAF && (undefined === input.XAF || "string" === typeof input.XAF && (RegExp(/^keeta_am(.*)/).test(input.XAF) || RegExp(/^keeta_an(.*)/).test(input.XAF) || RegExp(/^keeta_ao(.*)/).test(input.XAF) || RegExp(/^keeta_ap(.*)/).test(input.XAF) || RegExp(/^tyblocks_am(.*)/).test(input.XAF) || RegExp(/^tyblocks_an(.*)/).test(input.XAF) || RegExp(/^tyblocks_ao(.*)/).test(input.XAF) || RegExp(/^tyblocks_ap(.*)/).test(input.XAF)) || "object" === typeof input.XAF && null !== input.XAF && _io0(input.XAF))) && (null !== input.CAD && (undefined === input.CAD || "string" === typeof input.CAD && (RegExp(/^keeta_am(.*)/).test(input.CAD) || RegExp(/^keeta_an(.*)/).test(input.CAD) || RegExp(/^keeta_ao(.*)/).test(input.CAD) || RegExp(/^keeta_ap(.*)/).test(input.CAD) || RegExp(/^tyblocks_am(.*)/).test(input.CAD) || RegExp(/^tyblocks_an(.*)/).test(input.CAD) || RegExp(/^tyblocks_ao(.*)/).test(input.CAD) || RegExp(/^tyblocks_ap(.*)/).test(input.CAD)) || "object" === typeof input.CAD && null !== input.CAD && _io0(input.CAD))) && (null !== input.KYD && (undefined === input.KYD || "string" === typeof input.KYD && (RegExp(/^keeta_am(.*)/).test(input.KYD) || RegExp(/^keeta_an(.*)/).test(input.KYD) || RegExp(/^keeta_ao(.*)/).test(input.KYD) || RegExp(/^keeta_ap(.*)/).test(input.KYD) || RegExp(/^tyblocks_am(.*)/).test(input.KYD) || RegExp(/^tyblocks_an(.*)/).test(input.KYD) || RegExp(/^tyblocks_ao(.*)/).test(input.KYD) || RegExp(/^tyblocks_ap(.*)/).test(input.KYD)) || "object" === typeof input.KYD && null !== input.KYD && _io0(input.KYD))) && (null !== input.CLP && (undefined === input.CLP || "string" === typeof input.CLP && (RegExp(/^keeta_am(.*)/).test(input.CLP) || RegExp(/^keeta_an(.*)/).test(input.CLP) || RegExp(/^keeta_ao(.*)/).test(input.CLP) || RegExp(/^keeta_ap(.*)/).test(input.CLP) || RegExp(/^tyblocks_am(.*)/).test(input.CLP) || RegExp(/^tyblocks_an(.*)/).test(input.CLP) || RegExp(/^tyblocks_ao(.*)/).test(input.CLP) || RegExp(/^tyblocks_ap(.*)/).test(input.CLP)) || "object" === typeof input.CLP && null !== input.CLP && _io0(input.CLP))) && (null !== input.CLF && (undefined === input.CLF || "string" === typeof input.CLF && (RegExp(/^keeta_am(.*)/).test(input.CLF) || RegExp(/^keeta_an(.*)/).test(input.CLF) || RegExp(/^keeta_ao(.*)/).test(input.CLF) || RegExp(/^keeta_ap(.*)/).test(input.CLF) || RegExp(/^tyblocks_am(.*)/).test(input.CLF) || RegExp(/^tyblocks_an(.*)/).test(input.CLF) || RegExp(/^tyblocks_ao(.*)/).test(input.CLF) || RegExp(/^tyblocks_ap(.*)/).test(input.CLF)) || "object" === typeof input.CLF && null !== input.CLF && _io0(input.CLF))) && (null !== input.CNY && (undefined === input.CNY || "string" === typeof input.CNY && (RegExp(/^keeta_am(.*)/).test(input.CNY) || RegExp(/^keeta_an(.*)/).test(input.CNY) || RegExp(/^keeta_ao(.*)/).test(input.CNY) || RegExp(/^keeta_ap(.*)/).test(input.CNY) || RegExp(/^tyblocks_am(.*)/).test(input.CNY) || RegExp(/^tyblocks_an(.*)/).test(input.CNY) || RegExp(/^tyblocks_ao(.*)/).test(input.CNY) || RegExp(/^tyblocks_ap(.*)/).test(input.CNY)) || "object" === typeof input.CNY && null !== input.CNY && _io0(input.CNY))) && (null !== input.COP && (undefined === input.COP || "string" === typeof input.COP && (RegExp(/^keeta_am(.*)/).test(input.COP) || RegExp(/^keeta_an(.*)/).test(input.COP) || RegExp(/^keeta_ao(.*)/).test(input.COP) || RegExp(/^keeta_ap(.*)/).test(input.COP) || RegExp(/^tyblocks_am(.*)/).test(input.COP) || RegExp(/^tyblocks_an(.*)/).test(input.COP) || RegExp(/^tyblocks_ao(.*)/).test(input.COP) || RegExp(/^tyblocks_ap(.*)/).test(input.COP)) || "object" === typeof input.COP && null !== input.COP && _io0(input.COP))) && (null !== input.COU && (undefined === input.COU || "string" === typeof input.COU && (RegExp(/^keeta_am(.*)/).test(input.COU) || RegExp(/^keeta_an(.*)/).test(input.COU) || RegExp(/^keeta_ao(.*)/).test(input.COU) || RegExp(/^keeta_ap(.*)/).test(input.COU) || RegExp(/^tyblocks_am(.*)/).test(input.COU) || RegExp(/^tyblocks_an(.*)/).test(input.COU) || RegExp(/^tyblocks_ao(.*)/).test(input.COU) || RegExp(/^tyblocks_ap(.*)/).test(input.COU)) || "object" === typeof input.COU && null !== input.COU && _io0(input.COU))) && (null !== input.KMF && (undefined === input.KMF || "string" === typeof input.KMF && (RegExp(/^keeta_am(.*)/).test(input.KMF) || RegExp(/^keeta_an(.*)/).test(input.KMF) || RegExp(/^keeta_ao(.*)/).test(input.KMF) || RegExp(/^keeta_ap(.*)/).test(input.KMF) || RegExp(/^tyblocks_am(.*)/).test(input.KMF) || RegExp(/^tyblocks_an(.*)/).test(input.KMF) || RegExp(/^tyblocks_ao(.*)/).test(input.KMF) || RegExp(/^tyblocks_ap(.*)/).test(input.KMF)) || "object" === typeof input.KMF && null !== input.KMF && _io0(input.KMF))) && (null !== input.CDF && (undefined === input.CDF || "string" === typeof input.CDF && (RegExp(/^keeta_am(.*)/).test(input.CDF) || RegExp(/^keeta_an(.*)/).test(input.CDF) || RegExp(/^keeta_ao(.*)/).test(input.CDF) || RegExp(/^keeta_ap(.*)/).test(input.CDF) || RegExp(/^tyblocks_am(.*)/).test(input.CDF) || RegExp(/^tyblocks_an(.*)/).test(input.CDF) || RegExp(/^tyblocks_ao(.*)/).test(input.CDF) || RegExp(/^tyblocks_ap(.*)/).test(input.CDF)) || "object" === typeof input.CDF && null !== input.CDF && _io0(input.CDF))) && (null !== input.NZD && (undefined === input.NZD || "string" === typeof input.NZD && (RegExp(/^keeta_am(.*)/).test(input.NZD) || RegExp(/^keeta_an(.*)/).test(input.NZD) || RegExp(/^keeta_ao(.*)/).test(input.NZD) || RegExp(/^keeta_ap(.*)/).test(input.NZD) || RegExp(/^tyblocks_am(.*)/).test(input.NZD) || RegExp(/^tyblocks_an(.*)/).test(input.NZD) || RegExp(/^tyblocks_ao(.*)/).test(input.NZD) || RegExp(/^tyblocks_ap(.*)/).test(input.NZD)) || "object" === typeof input.NZD && null !== input.NZD && _io0(input.NZD))) && (null !== input.CRC && (undefined === input.CRC || "string" === typeof input.CRC && (RegExp(/^keeta_am(.*)/).test(input.CRC) || RegExp(/^keeta_an(.*)/).test(input.CRC) || RegExp(/^keeta_ao(.*)/).test(input.CRC) || RegExp(/^keeta_ap(.*)/).test(input.CRC) || RegExp(/^tyblocks_am(.*)/).test(input.CRC) || RegExp(/^tyblocks_an(.*)/).test(input.CRC) || RegExp(/^tyblocks_ao(.*)/).test(input.CRC) || RegExp(/^tyblocks_ap(.*)/).test(input.CRC)) || "object" === typeof input.CRC && null !== input.CRC && _io0(input.CRC))) && (null !== input.CUP && (undefined === input.CUP || "string" === typeof input.CUP && (RegExp(/^keeta_am(.*)/).test(input.CUP) || RegExp(/^keeta_an(.*)/).test(input.CUP) || RegExp(/^keeta_ao(.*)/).test(input.CUP) || RegExp(/^keeta_ap(.*)/).test(input.CUP) || RegExp(/^tyblocks_am(.*)/).test(input.CUP) || RegExp(/^tyblocks_an(.*)/).test(input.CUP) || RegExp(/^tyblocks_ao(.*)/).test(input.CUP) || RegExp(/^tyblocks_ap(.*)/).test(input.CUP)) || "object" === typeof input.CUP && null !== input.CUP && _io0(input.CUP))) && (null !== input.CUC && (undefined === input.CUC || "string" === typeof input.CUC && (RegExp(/^keeta_am(.*)/).test(input.CUC) || RegExp(/^keeta_an(.*)/).test(input.CUC) || RegExp(/^keeta_ao(.*)/).test(input.CUC) || RegExp(/^keeta_ap(.*)/).test(input.CUC) || RegExp(/^tyblocks_am(.*)/).test(input.CUC) || RegExp(/^tyblocks_an(.*)/).test(input.CUC) || RegExp(/^tyblocks_ao(.*)/).test(input.CUC) || RegExp(/^tyblocks_ap(.*)/).test(input.CUC)) || "object" === typeof input.CUC && null !== input.CUC && _io0(input.CUC))) && (null !== input.ANG && (undefined === input.ANG || "string" === typeof input.ANG && (RegExp(/^keeta_am(.*)/).test(input.ANG) || RegExp(/^keeta_an(.*)/).test(input.ANG) || RegExp(/^keeta_ao(.*)/).test(input.ANG) || RegExp(/^keeta_ap(.*)/).test(input.ANG) || RegExp(/^tyblocks_am(.*)/).test(input.ANG) || RegExp(/^tyblocks_an(.*)/).test(input.ANG) || RegExp(/^tyblocks_ao(.*)/).test(input.ANG) || RegExp(/^tyblocks_ap(.*)/).test(input.ANG)) || "object" === typeof input.ANG && null !== input.ANG && _io0(input.ANG))) && (null !== input.CZK && (undefined === input.CZK || "string" === typeof input.CZK && (RegExp(/^keeta_am(.*)/).test(input.CZK) || RegExp(/^keeta_an(.*)/).test(input.CZK) || RegExp(/^keeta_ao(.*)/).test(input.CZK) || RegExp(/^keeta_ap(.*)/).test(input.CZK) || RegExp(/^tyblocks_am(.*)/).test(input.CZK) || RegExp(/^tyblocks_an(.*)/).test(input.CZK) || RegExp(/^tyblocks_ao(.*)/).test(input.CZK) || RegExp(/^tyblocks_ap(.*)/).test(input.CZK)) || "object" === typeof input.CZK && null !== input.CZK && _io0(input.CZK))) && (null !== input.DKK && (undefined === input.DKK || "string" === typeof input.DKK && (RegExp(/^keeta_am(.*)/).test(input.DKK) || RegExp(/^keeta_an(.*)/).test(input.DKK) || RegExp(/^keeta_ao(.*)/).test(input.DKK) || RegExp(/^keeta_ap(.*)/).test(input.DKK) || RegExp(/^tyblocks_am(.*)/).test(input.DKK) || RegExp(/^tyblocks_an(.*)/).test(input.DKK) || RegExp(/^tyblocks_ao(.*)/).test(input.DKK) || RegExp(/^tyblocks_ap(.*)/).test(input.DKK)) || "object" === typeof input.DKK && null !== input.DKK && _io0(input.DKK))) && (null !== input.DJF && (undefined === input.DJF || "string" === typeof input.DJF && (RegExp(/^keeta_am(.*)/).test(input.DJF) || RegExp(/^keeta_an(.*)/).test(input.DJF) || RegExp(/^keeta_ao(.*)/).test(input.DJF) || RegExp(/^keeta_ap(.*)/).test(input.DJF) || RegExp(/^tyblocks_am(.*)/).test(input.DJF) || RegExp(/^tyblocks_an(.*)/).test(input.DJF) || RegExp(/^tyblocks_ao(.*)/).test(input.DJF) || RegExp(/^tyblocks_ap(.*)/).test(input.DJF)) || "object" === typeof input.DJF && null !== input.DJF && _io0(input.DJF))) && (null !== input.DOP && (undefined === input.DOP || "string" === typeof input.DOP && (RegExp(/^keeta_am(.*)/).test(input.DOP) || RegExp(/^keeta_an(.*)/).test(input.DOP) || RegExp(/^keeta_ao(.*)/).test(input.DOP) || RegExp(/^keeta_ap(.*)/).test(input.DOP) || RegExp(/^tyblocks_am(.*)/).test(input.DOP) || RegExp(/^tyblocks_an(.*)/).test(input.DOP) || RegExp(/^tyblocks_ao(.*)/).test(input.DOP) || RegExp(/^tyblocks_ap(.*)/).test(input.DOP)) || "object" === typeof input.DOP && null !== input.DOP && _io0(input.DOP))) && (null !== input.EGP && (undefined === input.EGP || "string" === typeof input.EGP && (RegExp(/^keeta_am(.*)/).test(input.EGP) || RegExp(/^keeta_an(.*)/).test(input.EGP) || RegExp(/^keeta_ao(.*)/).test(input.EGP) || RegExp(/^keeta_ap(.*)/).test(input.EGP) || RegExp(/^tyblocks_am(.*)/).test(input.EGP) || RegExp(/^tyblocks_an(.*)/).test(input.EGP) || RegExp(/^tyblocks_ao(.*)/).test(input.EGP) || RegExp(/^tyblocks_ap(.*)/).test(input.EGP)) || "object" === typeof input.EGP && null !== input.EGP && _io0(input.EGP))) && (null !== input.SVC && (undefined === input.SVC || "string" === typeof input.SVC && (RegExp(/^keeta_am(.*)/).test(input.SVC) || RegExp(/^keeta_an(.*)/).test(input.SVC) || RegExp(/^keeta_ao(.*)/).test(input.SVC) || RegExp(/^keeta_ap(.*)/).test(input.SVC) || RegExp(/^tyblocks_am(.*)/).test(input.SVC) || RegExp(/^tyblocks_an(.*)/).test(input.SVC) || RegExp(/^tyblocks_ao(.*)/).test(input.SVC) || RegExp(/^tyblocks_ap(.*)/).test(input.SVC)) || "object" === typeof input.SVC && null !== input.SVC && _io0(input.SVC))) && (null !== input.ERN && (undefined === input.ERN || "string" === typeof input.ERN && (RegExp(/^keeta_am(.*)/).test(input.ERN) || RegExp(/^keeta_an(.*)/).test(input.ERN) || RegExp(/^keeta_ao(.*)/).test(input.ERN) || RegExp(/^keeta_ap(.*)/).test(input.ERN) || RegExp(/^tyblocks_am(.*)/).test(input.ERN) || RegExp(/^tyblocks_an(.*)/).test(input.ERN) || RegExp(/^tyblocks_ao(.*)/).test(input.ERN) || RegExp(/^tyblocks_ap(.*)/).test(input.ERN)) || "object" === typeof input.ERN && null !== input.ERN && _io0(input.ERN))) && (null !== input.SZL && (undefined === input.SZL || "string" === typeof input.SZL && (RegExp(/^keeta_am(.*)/).test(input.SZL) || RegExp(/^keeta_an(.*)/).test(input.SZL) || RegExp(/^keeta_ao(.*)/).test(input.SZL) || RegExp(/^keeta_ap(.*)/).test(input.SZL) || RegExp(/^tyblocks_am(.*)/).test(input.SZL) || RegExp(/^tyblocks_an(.*)/).test(input.SZL) || RegExp(/^tyblocks_ao(.*)/).test(input.SZL) || RegExp(/^tyblocks_ap(.*)/).test(input.SZL)) || "object" === typeof input.SZL && null !== input.SZL && _io0(input.SZL))) && (null !== input.ETB && (undefined === input.ETB || "string" === typeof input.ETB && (RegExp(/^keeta_am(.*)/).test(input.ETB) || RegExp(/^keeta_an(.*)/).test(input.ETB) || RegExp(/^keeta_ao(.*)/).test(input.ETB) || RegExp(/^keeta_ap(.*)/).test(input.ETB) || RegExp(/^tyblocks_am(.*)/).test(input.ETB) || RegExp(/^tyblocks_an(.*)/).test(input.ETB) || RegExp(/^tyblocks_ao(.*)/).test(input.ETB) || RegExp(/^tyblocks_ap(.*)/).test(input.ETB)) || "object" === typeof input.ETB && null !== input.ETB && _io0(input.ETB))) && (null !== input.FKP && (undefined === input.FKP || "string" === typeof input.FKP && (RegExp(/^keeta_am(.*)/).test(input.FKP) || RegExp(/^keeta_an(.*)/).test(input.FKP) || RegExp(/^keeta_ao(.*)/).test(input.FKP) || RegExp(/^keeta_ap(.*)/).test(input.FKP) || RegExp(/^tyblocks_am(.*)/).test(input.FKP) || RegExp(/^tyblocks_an(.*)/).test(input.FKP) || RegExp(/^tyblocks_ao(.*)/).test(input.FKP) || RegExp(/^tyblocks_ap(.*)/).test(input.FKP)) || "object" === typeof input.FKP && null !== input.FKP && _io0(input.FKP))) && (null !== input.FJD && (undefined === input.FJD || "string" === typeof input.FJD && (RegExp(/^keeta_am(.*)/).test(input.FJD) || RegExp(/^keeta_an(.*)/).test(input.FJD) || RegExp(/^keeta_ao(.*)/).test(input.FJD) || RegExp(/^keeta_ap(.*)/).test(input.FJD) || RegExp(/^tyblocks_am(.*)/).test(input.FJD) || RegExp(/^tyblocks_an(.*)/).test(input.FJD) || RegExp(/^tyblocks_ao(.*)/).test(input.FJD) || RegExp(/^tyblocks_ap(.*)/).test(input.FJD)) || "object" === typeof input.FJD && null !== input.FJD && _io0(input.FJD))) && (null !== input.XPF && (undefined === input.XPF || "string" === typeof input.XPF && (RegExp(/^keeta_am(.*)/).test(input.XPF) || RegExp(/^keeta_an(.*)/).test(input.XPF) || RegExp(/^keeta_ao(.*)/).test(input.XPF) || RegExp(/^keeta_ap(.*)/).test(input.XPF) || RegExp(/^tyblocks_am(.*)/).test(input.XPF) || RegExp(/^tyblocks_an(.*)/).test(input.XPF) || RegExp(/^tyblocks_ao(.*)/).test(input.XPF) || RegExp(/^tyblocks_ap(.*)/).test(input.XPF)) || "object" === typeof input.XPF && null !== input.XPF && _io0(input.XPF))) && (null !== input.GMD && (undefined === input.GMD || "string" === typeof input.GMD && (RegExp(/^keeta_am(.*)/).test(input.GMD) || RegExp(/^keeta_an(.*)/).test(input.GMD) || RegExp(/^keeta_ao(.*)/).test(input.GMD) || RegExp(/^keeta_ap(.*)/).test(input.GMD) || RegExp(/^tyblocks_am(.*)/).test(input.GMD) || RegExp(/^tyblocks_an(.*)/).test(input.GMD) || RegExp(/^tyblocks_ao(.*)/).test(input.GMD) || RegExp(/^tyblocks_ap(.*)/).test(input.GMD)) || "object" === typeof input.GMD && null !== input.GMD && _io0(input.GMD))) && (null !== input.GEL && (undefined === input.GEL || "string" === typeof input.GEL && (RegExp(/^keeta_am(.*)/).test(input.GEL) || RegExp(/^keeta_an(.*)/).test(input.GEL) || RegExp(/^keeta_ao(.*)/).test(input.GEL) || RegExp(/^keeta_ap(.*)/).test(input.GEL) || RegExp(/^tyblocks_am(.*)/).test(input.GEL) || RegExp(/^tyblocks_an(.*)/).test(input.GEL) || RegExp(/^tyblocks_ao(.*)/).test(input.GEL) || RegExp(/^tyblocks_ap(.*)/).test(input.GEL)) || "object" === typeof input.GEL && null !== input.GEL && _io0(input.GEL))) && (null !== input.GHS && (undefined === input.GHS || "string" === typeof input.GHS && (RegExp(/^keeta_am(.*)/).test(input.GHS) || RegExp(/^keeta_an(.*)/).test(input.GHS) || RegExp(/^keeta_ao(.*)/).test(input.GHS) || RegExp(/^keeta_ap(.*)/).test(input.GHS) || RegExp(/^tyblocks_am(.*)/).test(input.GHS) || RegExp(/^tyblocks_an(.*)/).test(input.GHS) || RegExp(/^tyblocks_ao(.*)/).test(input.GHS) || RegExp(/^tyblocks_ap(.*)/).test(input.GHS)) || "object" === typeof input.GHS && null !== input.GHS && _io0(input.GHS))) && (null !== input.GIP && (undefined === input.GIP || "string" === typeof input.GIP && (RegExp(/^keeta_am(.*)/).test(input.GIP) || RegExp(/^keeta_an(.*)/).test(input.GIP) || RegExp(/^keeta_ao(.*)/).test(input.GIP) || RegExp(/^keeta_ap(.*)/).test(input.GIP) || RegExp(/^tyblocks_am(.*)/).test(input.GIP) || RegExp(/^tyblocks_an(.*)/).test(input.GIP) || RegExp(/^tyblocks_ao(.*)/).test(input.GIP) || RegExp(/^tyblocks_ap(.*)/).test(input.GIP)) || "object" === typeof input.GIP && null !== input.GIP && _io0(input.GIP))) && (null !== input.GTQ && (undefined === input.GTQ || "string" === typeof input.GTQ && (RegExp(/^keeta_am(.*)/).test(input.GTQ) || RegExp(/^keeta_an(.*)/).test(input.GTQ) || RegExp(/^keeta_ao(.*)/).test(input.GTQ) || RegExp(/^keeta_ap(.*)/).test(input.GTQ) || RegExp(/^tyblocks_am(.*)/).test(input.GTQ) || RegExp(/^tyblocks_an(.*)/).test(input.GTQ) || RegExp(/^tyblocks_ao(.*)/).test(input.GTQ) || RegExp(/^tyblocks_ap(.*)/).test(input.GTQ)) || "object" === typeof input.GTQ && null !== input.GTQ && _io0(input.GTQ))) && (null !== input.GBP && (undefined === input.GBP || "string" === typeof input.GBP && (RegExp(/^keeta_am(.*)/).test(input.GBP) || RegExp(/^keeta_an(.*)/).test(input.GBP) || RegExp(/^keeta_ao(.*)/).test(input.GBP) || RegExp(/^keeta_ap(.*)/).test(input.GBP) || RegExp(/^tyblocks_am(.*)/).test(input.GBP) || RegExp(/^tyblocks_an(.*)/).test(input.GBP) || RegExp(/^tyblocks_ao(.*)/).test(input.GBP) || RegExp(/^tyblocks_ap(.*)/).test(input.GBP)) || "object" === typeof input.GBP && null !== input.GBP && _io0(input.GBP))) && (null !== input.GNF && (undefined === input.GNF || "string" === typeof input.GNF && (RegExp(/^keeta_am(.*)/).test(input.GNF) || RegExp(/^keeta_an(.*)/).test(input.GNF) || RegExp(/^keeta_ao(.*)/).test(input.GNF) || RegExp(/^keeta_ap(.*)/).test(input.GNF) || RegExp(/^tyblocks_am(.*)/).test(input.GNF) || RegExp(/^tyblocks_an(.*)/).test(input.GNF) || RegExp(/^tyblocks_ao(.*)/).test(input.GNF) || RegExp(/^tyblocks_ap(.*)/).test(input.GNF)) || "object" === typeof input.GNF && null !== input.GNF && _io0(input.GNF))) && (null !== input.GYD && (undefined === input.GYD || "string" === typeof input.GYD && (RegExp(/^keeta_am(.*)/).test(input.GYD) || RegExp(/^keeta_an(.*)/).test(input.GYD) || RegExp(/^keeta_ao(.*)/).test(input.GYD) || RegExp(/^keeta_ap(.*)/).test(input.GYD) || RegExp(/^tyblocks_am(.*)/).test(input.GYD) || RegExp(/^tyblocks_an(.*)/).test(input.GYD) || RegExp(/^tyblocks_ao(.*)/).test(input.GYD) || RegExp(/^tyblocks_ap(.*)/).test(input.GYD)) || "object" === typeof input.GYD && null !== input.GYD && _io0(input.GYD))) && (null !== input.HTG && (undefined === input.HTG || "string" === typeof input.HTG && (RegExp(/^keeta_am(.*)/).test(input.HTG) || RegExp(/^keeta_an(.*)/).test(input.HTG) || RegExp(/^keeta_ao(.*)/).test(input.HTG) || RegExp(/^keeta_ap(.*)/).test(input.HTG) || RegExp(/^tyblocks_am(.*)/).test(input.HTG) || RegExp(/^tyblocks_an(.*)/).test(input.HTG) || RegExp(/^tyblocks_ao(.*)/).test(input.HTG) || RegExp(/^tyblocks_ap(.*)/).test(input.HTG)) || "object" === typeof input.HTG && null !== input.HTG && _io0(input.HTG))) && (null !== input.HNL && (undefined === input.HNL || "string" === typeof input.HNL && (RegExp(/^keeta_am(.*)/).test(input.HNL) || RegExp(/^keeta_an(.*)/).test(input.HNL) || RegExp(/^keeta_ao(.*)/).test(input.HNL) || RegExp(/^keeta_ap(.*)/).test(input.HNL) || RegExp(/^tyblocks_am(.*)/).test(input.HNL) || RegExp(/^tyblocks_an(.*)/).test(input.HNL) || RegExp(/^tyblocks_ao(.*)/).test(input.HNL) || RegExp(/^tyblocks_ap(.*)/).test(input.HNL)) || "object" === typeof input.HNL && null !== input.HNL && _io0(input.HNL))) && (null !== input.HKD && (undefined === input.HKD || "string" === typeof input.HKD && (RegExp(/^keeta_am(.*)/).test(input.HKD) || RegExp(/^keeta_an(.*)/).test(input.HKD) || RegExp(/^keeta_ao(.*)/).test(input.HKD) || RegExp(/^keeta_ap(.*)/).test(input.HKD) || RegExp(/^tyblocks_am(.*)/).test(input.HKD) || RegExp(/^tyblocks_an(.*)/).test(input.HKD) || RegExp(/^tyblocks_ao(.*)/).test(input.HKD) || RegExp(/^tyblocks_ap(.*)/).test(input.HKD)) || "object" === typeof input.HKD && null !== input.HKD && _io0(input.HKD))) && (null !== input.HUF && (undefined === input.HUF || "string" === typeof input.HUF && (RegExp(/^keeta_am(.*)/).test(input.HUF) || RegExp(/^keeta_an(.*)/).test(input.HUF) || RegExp(/^keeta_ao(.*)/).test(input.HUF) || RegExp(/^keeta_ap(.*)/).test(input.HUF) || RegExp(/^tyblocks_am(.*)/).test(input.HUF) || RegExp(/^tyblocks_an(.*)/).test(input.HUF) || RegExp(/^tyblocks_ao(.*)/).test(input.HUF) || RegExp(/^tyblocks_ap(.*)/).test(input.HUF)) || "object" === typeof input.HUF && null !== input.HUF && _io0(input.HUF))) && (null !== input.ISK && (undefined === input.ISK || "string" === typeof input.ISK && (RegExp(/^keeta_am(.*)/).test(input.ISK) || RegExp(/^keeta_an(.*)/).test(input.ISK) || RegExp(/^keeta_ao(.*)/).test(input.ISK) || RegExp(/^keeta_ap(.*)/).test(input.ISK) || RegExp(/^tyblocks_am(.*)/).test(input.ISK) || RegExp(/^tyblocks_an(.*)/).test(input.ISK) || RegExp(/^tyblocks_ao(.*)/).test(input.ISK) || RegExp(/^tyblocks_ap(.*)/).test(input.ISK)) || "object" === typeof input.ISK && null !== input.ISK && _io0(input.ISK))) && (null !== input.IDR && (undefined === input.IDR || "string" === typeof input.IDR && (RegExp(/^keeta_am(.*)/).test(input.IDR) || RegExp(/^keeta_an(.*)/).test(input.IDR) || RegExp(/^keeta_ao(.*)/).test(input.IDR) || RegExp(/^keeta_ap(.*)/).test(input.IDR) || RegExp(/^tyblocks_am(.*)/).test(input.IDR) || RegExp(/^tyblocks_an(.*)/).test(input.IDR) || RegExp(/^tyblocks_ao(.*)/).test(input.IDR) || RegExp(/^tyblocks_ap(.*)/).test(input.IDR)) || "object" === typeof input.IDR && null !== input.IDR && _io0(input.IDR))) && (null !== input.IRR && (undefined === input.IRR || "string" === typeof input.IRR && (RegExp(/^keeta_am(.*)/).test(input.IRR) || RegExp(/^keeta_an(.*)/).test(input.IRR) || RegExp(/^keeta_ao(.*)/).test(input.IRR) || RegExp(/^keeta_ap(.*)/).test(input.IRR) || RegExp(/^tyblocks_am(.*)/).test(input.IRR) || RegExp(/^tyblocks_an(.*)/).test(input.IRR) || RegExp(/^tyblocks_ao(.*)/).test(input.IRR) || RegExp(/^tyblocks_ap(.*)/).test(input.IRR)) || "object" === typeof input.IRR && null !== input.IRR && _io0(input.IRR))) && (null !== input.IQD && (undefined === input.IQD || "string" === typeof input.IQD && (RegExp(/^keeta_am(.*)/).test(input.IQD) || RegExp(/^keeta_an(.*)/).test(input.IQD) || RegExp(/^keeta_ao(.*)/).test(input.IQD) || RegExp(/^keeta_ap(.*)/).test(input.IQD) || RegExp(/^tyblocks_am(.*)/).test(input.IQD) || RegExp(/^tyblocks_an(.*)/).test(input.IQD) || RegExp(/^tyblocks_ao(.*)/).test(input.IQD) || RegExp(/^tyblocks_ap(.*)/).test(input.IQD)) || "object" === typeof input.IQD && null !== input.IQD && _io0(input.IQD))) && (null !== input.ILS && (undefined === input.ILS || "string" === typeof input.ILS && (RegExp(/^keeta_am(.*)/).test(input.ILS) || RegExp(/^keeta_an(.*)/).test(input.ILS) || RegExp(/^keeta_ao(.*)/).test(input.ILS) || RegExp(/^keeta_ap(.*)/).test(input.ILS) || RegExp(/^tyblocks_am(.*)/).test(input.ILS) || RegExp(/^tyblocks_an(.*)/).test(input.ILS) || RegExp(/^tyblocks_ao(.*)/).test(input.ILS) || RegExp(/^tyblocks_ap(.*)/).test(input.ILS)) || "object" === typeof input.ILS && null !== input.ILS && _io0(input.ILS))) && (null !== input.JMD && (undefined === input.JMD || "string" === typeof input.JMD && (RegExp(/^keeta_am(.*)/).test(input.JMD) || RegExp(/^keeta_an(.*)/).test(input.JMD) || RegExp(/^keeta_ao(.*)/).test(input.JMD) || RegExp(/^keeta_ap(.*)/).test(input.JMD) || RegExp(/^tyblocks_am(.*)/).test(input.JMD) || RegExp(/^tyblocks_an(.*)/).test(input.JMD) || RegExp(/^tyblocks_ao(.*)/).test(input.JMD) || RegExp(/^tyblocks_ap(.*)/).test(input.JMD)) || "object" === typeof input.JMD && null !== input.JMD && _io0(input.JMD))) && (null !== input.JPY && (undefined === input.JPY || "string" === typeof input.JPY && (RegExp(/^keeta_am(.*)/).test(input.JPY) || RegExp(/^keeta_an(.*)/).test(input.JPY) || RegExp(/^keeta_ao(.*)/).test(input.JPY) || RegExp(/^keeta_ap(.*)/).test(input.JPY) || RegExp(/^tyblocks_am(.*)/).test(input.JPY) || RegExp(/^tyblocks_an(.*)/).test(input.JPY) || RegExp(/^tyblocks_ao(.*)/).test(input.JPY) || RegExp(/^tyblocks_ap(.*)/).test(input.JPY)) || "object" === typeof input.JPY && null !== input.JPY && _io0(input.JPY))) && (null !== input.JOD && (undefined === input.JOD || "string" === typeof input.JOD && (RegExp(/^keeta_am(.*)/).test(input.JOD) || RegExp(/^keeta_an(.*)/).test(input.JOD) || RegExp(/^keeta_ao(.*)/).test(input.JOD) || RegExp(/^keeta_ap(.*)/).test(input.JOD) || RegExp(/^tyblocks_am(.*)/).test(input.JOD) || RegExp(/^tyblocks_an(.*)/).test(input.JOD) || RegExp(/^tyblocks_ao(.*)/).test(input.JOD) || RegExp(/^tyblocks_ap(.*)/).test(input.JOD)) || "object" === typeof input.JOD && null !== input.JOD && _io0(input.JOD))) && (null !== input.KZT && (undefined === input.KZT || "string" === typeof input.KZT && (RegExp(/^keeta_am(.*)/).test(input.KZT) || RegExp(/^keeta_an(.*)/).test(input.KZT) || RegExp(/^keeta_ao(.*)/).test(input.KZT) || RegExp(/^keeta_ap(.*)/).test(input.KZT) || RegExp(/^tyblocks_am(.*)/).test(input.KZT) || RegExp(/^tyblocks_an(.*)/).test(input.KZT) || RegExp(/^tyblocks_ao(.*)/).test(input.KZT) || RegExp(/^tyblocks_ap(.*)/).test(input.KZT)) || "object" === typeof input.KZT && null !== input.KZT && _io0(input.KZT))) && (null !== input.KES && (undefined === input.KES || "string" === typeof input.KES && (RegExp(/^keeta_am(.*)/).test(input.KES) || RegExp(/^keeta_an(.*)/).test(input.KES) || RegExp(/^keeta_ao(.*)/).test(input.KES) || RegExp(/^keeta_ap(.*)/).test(input.KES) || RegExp(/^tyblocks_am(.*)/).test(input.KES) || RegExp(/^tyblocks_an(.*)/).test(input.KES) || RegExp(/^tyblocks_ao(.*)/).test(input.KES) || RegExp(/^tyblocks_ap(.*)/).test(input.KES)) || "object" === typeof input.KES && null !== input.KES && _io0(input.KES))) && (null !== input.KPW && (undefined === input.KPW || "string" === typeof input.KPW && (RegExp(/^keeta_am(.*)/).test(input.KPW) || RegExp(/^keeta_an(.*)/).test(input.KPW) || RegExp(/^keeta_ao(.*)/).test(input.KPW) || RegExp(/^keeta_ap(.*)/).test(input.KPW) || RegExp(/^tyblocks_am(.*)/).test(input.KPW) || RegExp(/^tyblocks_an(.*)/).test(input.KPW) || RegExp(/^tyblocks_ao(.*)/).test(input.KPW) || RegExp(/^tyblocks_ap(.*)/).test(input.KPW)) || "object" === typeof input.KPW && null !== input.KPW && _io0(input.KPW))) && (null !== input.KRW && (undefined === input.KRW || "string" === typeof input.KRW && (RegExp(/^keeta_am(.*)/).test(input.KRW) || RegExp(/^keeta_an(.*)/).test(input.KRW) || RegExp(/^keeta_ao(.*)/).test(input.KRW) || RegExp(/^keeta_ap(.*)/).test(input.KRW) || RegExp(/^tyblocks_am(.*)/).test(input.KRW) || RegExp(/^tyblocks_an(.*)/).test(input.KRW) || RegExp(/^tyblocks_ao(.*)/).test(input.KRW) || RegExp(/^tyblocks_ap(.*)/).test(input.KRW)) || "object" === typeof input.KRW && null !== input.KRW && _io0(input.KRW))) && (null !== input.KWD && (undefined === input.KWD || "string" === typeof input.KWD && (RegExp(/^keeta_am(.*)/).test(input.KWD) || RegExp(/^keeta_an(.*)/).test(input.KWD) || RegExp(/^keeta_ao(.*)/).test(input.KWD) || RegExp(/^keeta_ap(.*)/).test(input.KWD) || RegExp(/^tyblocks_am(.*)/).test(input.KWD) || RegExp(/^tyblocks_an(.*)/).test(input.KWD) || RegExp(/^tyblocks_ao(.*)/).test(input.KWD) || RegExp(/^tyblocks_ap(.*)/).test(input.KWD)) || "object" === typeof input.KWD && null !== input.KWD && _io0(input.KWD))) && (null !== input.KGS && (undefined === input.KGS || "string" === typeof input.KGS && (RegExp(/^keeta_am(.*)/).test(input.KGS) || RegExp(/^keeta_an(.*)/).test(input.KGS) || RegExp(/^keeta_ao(.*)/).test(input.KGS) || RegExp(/^keeta_ap(.*)/).test(input.KGS) || RegExp(/^tyblocks_am(.*)/).test(input.KGS) || RegExp(/^tyblocks_an(.*)/).test(input.KGS) || RegExp(/^tyblocks_ao(.*)/).test(input.KGS) || RegExp(/^tyblocks_ap(.*)/).test(input.KGS)) || "object" === typeof input.KGS && null !== input.KGS && _io0(input.KGS))) && (null !== input.LAK && (undefined === input.LAK || "string" === typeof input.LAK && (RegExp(/^keeta_am(.*)/).test(input.LAK) || RegExp(/^keeta_an(.*)/).test(input.LAK) || RegExp(/^keeta_ao(.*)/).test(input.LAK) || RegExp(/^keeta_ap(.*)/).test(input.LAK) || RegExp(/^tyblocks_am(.*)/).test(input.LAK) || RegExp(/^tyblocks_an(.*)/).test(input.LAK) || RegExp(/^tyblocks_ao(.*)/).test(input.LAK) || RegExp(/^tyblocks_ap(.*)/).test(input.LAK)) || "object" === typeof input.LAK && null !== input.LAK && _io0(input.LAK))) && (null !== input.LBP && (undefined === input.LBP || "string" === typeof input.LBP && (RegExp(/^keeta_am(.*)/).test(input.LBP) || RegExp(/^keeta_an(.*)/).test(input.LBP) || RegExp(/^keeta_ao(.*)/).test(input.LBP) || RegExp(/^keeta_ap(.*)/).test(input.LBP) || RegExp(/^tyblocks_am(.*)/).test(input.LBP) || RegExp(/^tyblocks_an(.*)/).test(input.LBP) || RegExp(/^tyblocks_ao(.*)/).test(input.LBP) || RegExp(/^tyblocks_ap(.*)/).test(input.LBP)) || "object" === typeof input.LBP && null !== input.LBP && _io0(input.LBP))) && (null !== input.LSL && (undefined === input.LSL || "string" === typeof input.LSL && (RegExp(/^keeta_am(.*)/).test(input.LSL) || RegExp(/^keeta_an(.*)/).test(input.LSL) || RegExp(/^keeta_ao(.*)/).test(input.LSL) || RegExp(/^keeta_ap(.*)/).test(input.LSL) || RegExp(/^tyblocks_am(.*)/).test(input.LSL) || RegExp(/^tyblocks_an(.*)/).test(input.LSL) || RegExp(/^tyblocks_ao(.*)/).test(input.LSL) || RegExp(/^tyblocks_ap(.*)/).test(input.LSL)) || "object" === typeof input.LSL && null !== input.LSL && _io0(input.LSL))) && (null !== input.ZAR && (undefined === input.ZAR || "string" === typeof input.ZAR && (RegExp(/^keeta_am(.*)/).test(input.ZAR) || RegExp(/^keeta_an(.*)/).test(input.ZAR) || RegExp(/^keeta_ao(.*)/).test(input.ZAR) || RegExp(/^keeta_ap(.*)/).test(input.ZAR) || RegExp(/^tyblocks_am(.*)/).test(input.ZAR) || RegExp(/^tyblocks_an(.*)/).test(input.ZAR) || RegExp(/^tyblocks_ao(.*)/).test(input.ZAR) || RegExp(/^tyblocks_ap(.*)/).test(input.ZAR)) || "object" === typeof input.ZAR && null !== input.ZAR && _io0(input.ZAR))) && (null !== input.LRD && (undefined === input.LRD || "string" === typeof input.LRD && (RegExp(/^keeta_am(.*)/).test(input.LRD) || RegExp(/^keeta_an(.*)/).test(input.LRD) || RegExp(/^keeta_ao(.*)/).test(input.LRD) || RegExp(/^keeta_ap(.*)/).test(input.LRD) || RegExp(/^tyblocks_am(.*)/).test(input.LRD) || RegExp(/^tyblocks_an(.*)/).test(input.LRD) || RegExp(/^tyblocks_ao(.*)/).test(input.LRD) || RegExp(/^tyblocks_ap(.*)/).test(input.LRD)) || "object" === typeof input.LRD && null !== input.LRD && _io0(input.LRD))) && (null !== input.LYD && (undefined === input.LYD || "string" === typeof input.LYD && (RegExp(/^keeta_am(.*)/).test(input.LYD) || RegExp(/^keeta_an(.*)/).test(input.LYD) || RegExp(/^keeta_ao(.*)/).test(input.LYD) || RegExp(/^keeta_ap(.*)/).test(input.LYD) || RegExp(/^tyblocks_am(.*)/).test(input.LYD) || RegExp(/^tyblocks_an(.*)/).test(input.LYD) || RegExp(/^tyblocks_ao(.*)/).test(input.LYD) || RegExp(/^tyblocks_ap(.*)/).test(input.LYD)) || "object" === typeof input.LYD && null !== input.LYD && _io0(input.LYD))) && (null !== input.CHF && (undefined === input.CHF || "string" === typeof input.CHF && (RegExp(/^keeta_am(.*)/).test(input.CHF) || RegExp(/^keeta_an(.*)/).test(input.CHF) || RegExp(/^keeta_ao(.*)/).test(input.CHF) || RegExp(/^keeta_ap(.*)/).test(input.CHF) || RegExp(/^tyblocks_am(.*)/).test(input.CHF) || RegExp(/^tyblocks_an(.*)/).test(input.CHF) || RegExp(/^tyblocks_ao(.*)/).test(input.CHF) || RegExp(/^tyblocks_ap(.*)/).test(input.CHF)) || "object" === typeof input.CHF && null !== input.CHF && _io0(input.CHF))) && (null !== input.MOP && (undefined === input.MOP || "string" === typeof input.MOP && (RegExp(/^keeta_am(.*)/).test(input.MOP) || RegExp(/^keeta_an(.*)/).test(input.MOP) || RegExp(/^keeta_ao(.*)/).test(input.MOP) || RegExp(/^keeta_ap(.*)/).test(input.MOP) || RegExp(/^tyblocks_am(.*)/).test(input.MOP) || RegExp(/^tyblocks_an(.*)/).test(input.MOP) || RegExp(/^tyblocks_ao(.*)/).test(input.MOP) || RegExp(/^tyblocks_ap(.*)/).test(input.MOP)) || "object" === typeof input.MOP && null !== input.MOP && _io0(input.MOP))) && (null !== input.MKD && (undefined === input.MKD || "string" === typeof input.MKD && (RegExp(/^keeta_am(.*)/).test(input.MKD) || RegExp(/^keeta_an(.*)/).test(input.MKD) || RegExp(/^keeta_ao(.*)/).test(input.MKD) || RegExp(/^keeta_ap(.*)/).test(input.MKD) || RegExp(/^tyblocks_am(.*)/).test(input.MKD) || RegExp(/^tyblocks_an(.*)/).test(input.MKD) || RegExp(/^tyblocks_ao(.*)/).test(input.MKD) || RegExp(/^tyblocks_ap(.*)/).test(input.MKD)) || "object" === typeof input.MKD && null !== input.MKD && _io0(input.MKD))) && (null !== input.MGA && (undefined === input.MGA || "string" === typeof input.MGA && (RegExp(/^keeta_am(.*)/).test(input.MGA) || RegExp(/^keeta_an(.*)/).test(input.MGA) || RegExp(/^keeta_ao(.*)/).test(input.MGA) || RegExp(/^keeta_ap(.*)/).test(input.MGA) || RegExp(/^tyblocks_am(.*)/).test(input.MGA) || RegExp(/^tyblocks_an(.*)/).test(input.MGA) || RegExp(/^tyblocks_ao(.*)/).test(input.MGA) || RegExp(/^tyblocks_ap(.*)/).test(input.MGA)) || "object" === typeof input.MGA && null !== input.MGA && _io0(input.MGA))) && (null !== input.MWK && (undefined === input.MWK || "string" === typeof input.MWK && (RegExp(/^keeta_am(.*)/).test(input.MWK) || RegExp(/^keeta_an(.*)/).test(input.MWK) || RegExp(/^keeta_ao(.*)/).test(input.MWK) || RegExp(/^keeta_ap(.*)/).test(input.MWK) || RegExp(/^tyblocks_am(.*)/).test(input.MWK) || RegExp(/^tyblocks_an(.*)/).test(input.MWK) || RegExp(/^tyblocks_ao(.*)/).test(input.MWK) || RegExp(/^tyblocks_ap(.*)/).test(input.MWK)) || "object" === typeof input.MWK && null !== input.MWK && _io0(input.MWK))) && (null !== input.MYR && (undefined === input.MYR || "string" === typeof input.MYR && (RegExp(/^keeta_am(.*)/).test(input.MYR) || RegExp(/^keeta_an(.*)/).test(input.MYR) || RegExp(/^keeta_ao(.*)/).test(input.MYR) || RegExp(/^keeta_ap(.*)/).test(input.MYR) || RegExp(/^tyblocks_am(.*)/).test(input.MYR) || RegExp(/^tyblocks_an(.*)/).test(input.MYR) || RegExp(/^tyblocks_ao(.*)/).test(input.MYR) || RegExp(/^tyblocks_ap(.*)/).test(input.MYR)) || "object" === typeof input.MYR && null !== input.MYR && _io0(input.MYR))) && (null !== input.MVR && (undefined === input.MVR || "string" === typeof input.MVR && (RegExp(/^keeta_am(.*)/).test(input.MVR) || RegExp(/^keeta_an(.*)/).test(input.MVR) || RegExp(/^keeta_ao(.*)/).test(input.MVR) || RegExp(/^keeta_ap(.*)/).test(input.MVR) || RegExp(/^tyblocks_am(.*)/).test(input.MVR) || RegExp(/^tyblocks_an(.*)/).test(input.MVR) || RegExp(/^tyblocks_ao(.*)/).test(input.MVR) || RegExp(/^tyblocks_ap(.*)/).test(input.MVR)) || "object" === typeof input.MVR && null !== input.MVR && _io0(input.MVR))) && (null !== input.MRU && (undefined === input.MRU || "string" === typeof input.MRU && (RegExp(/^keeta_am(.*)/).test(input.MRU) || RegExp(/^keeta_an(.*)/).test(input.MRU) || RegExp(/^keeta_ao(.*)/).test(input.MRU) || RegExp(/^keeta_ap(.*)/).test(input.MRU) || RegExp(/^tyblocks_am(.*)/).test(input.MRU) || RegExp(/^tyblocks_an(.*)/).test(input.MRU) || RegExp(/^tyblocks_ao(.*)/).test(input.MRU) || RegExp(/^tyblocks_ap(.*)/).test(input.MRU)) || "object" === typeof input.MRU && null !== input.MRU && _io0(input.MRU))) && (null !== input.MUR && (undefined === input.MUR || "string" === typeof input.MUR && (RegExp(/^keeta_am(.*)/).test(input.MUR) || RegExp(/^keeta_an(.*)/).test(input.MUR) || RegExp(/^keeta_ao(.*)/).test(input.MUR) || RegExp(/^keeta_ap(.*)/).test(input.MUR) || RegExp(/^tyblocks_am(.*)/).test(input.MUR) || RegExp(/^tyblocks_an(.*)/).test(input.MUR) || RegExp(/^tyblocks_ao(.*)/).test(input.MUR) || RegExp(/^tyblocks_ap(.*)/).test(input.MUR)) || "object" === typeof input.MUR && null !== input.MUR && _io0(input.MUR))) && (null !== input.MXN && (undefined === input.MXN || "string" === typeof input.MXN && (RegExp(/^keeta_am(.*)/).test(input.MXN) || RegExp(/^keeta_an(.*)/).test(input.MXN) || RegExp(/^keeta_ao(.*)/).test(input.MXN) || RegExp(/^keeta_ap(.*)/).test(input.MXN) || RegExp(/^tyblocks_am(.*)/).test(input.MXN) || RegExp(/^tyblocks_an(.*)/).test(input.MXN) || RegExp(/^tyblocks_ao(.*)/).test(input.MXN) || RegExp(/^tyblocks_ap(.*)/).test(input.MXN)) || "object" === typeof input.MXN && null !== input.MXN && _io0(input.MXN))) && (null !== input.MXV && (undefined === input.MXV || "string" === typeof input.MXV && (RegExp(/^keeta_am(.*)/).test(input.MXV) || RegExp(/^keeta_an(.*)/).test(input.MXV) || RegExp(/^keeta_ao(.*)/).test(input.MXV) || RegExp(/^keeta_ap(.*)/).test(input.MXV) || RegExp(/^tyblocks_am(.*)/).test(input.MXV) || RegExp(/^tyblocks_an(.*)/).test(input.MXV) || RegExp(/^tyblocks_ao(.*)/).test(input.MXV) || RegExp(/^tyblocks_ap(.*)/).test(input.MXV)) || "object" === typeof input.MXV && null !== input.MXV && _io0(input.MXV))) && (null !== input.MDL && (undefined === input.MDL || "string" === typeof input.MDL && (RegExp(/^keeta_am(.*)/).test(input.MDL) || RegExp(/^keeta_an(.*)/).test(input.MDL) || RegExp(/^keeta_ao(.*)/).test(input.MDL) || RegExp(/^keeta_ap(.*)/).test(input.MDL) || RegExp(/^tyblocks_am(.*)/).test(input.MDL) || RegExp(/^tyblocks_an(.*)/).test(input.MDL) || RegExp(/^tyblocks_ao(.*)/).test(input.MDL) || RegExp(/^tyblocks_ap(.*)/).test(input.MDL)) || "object" === typeof input.MDL && null !== input.MDL && _io0(input.MDL))) && (null !== input.MNT && (undefined === input.MNT || "string" === typeof input.MNT && (RegExp(/^keeta_am(.*)/).test(input.MNT) || RegExp(/^keeta_an(.*)/).test(input.MNT) || RegExp(/^keeta_ao(.*)/).test(input.MNT) || RegExp(/^keeta_ap(.*)/).test(input.MNT) || RegExp(/^tyblocks_am(.*)/).test(input.MNT) || RegExp(/^tyblocks_an(.*)/).test(input.MNT) || RegExp(/^tyblocks_ao(.*)/).test(input.MNT) || RegExp(/^tyblocks_ap(.*)/).test(input.MNT)) || "object" === typeof input.MNT && null !== input.MNT && _io0(input.MNT))) && (null !== input.MAD && (undefined === input.MAD || "string" === typeof input.MAD && (RegExp(/^keeta_am(.*)/).test(input.MAD) || RegExp(/^keeta_an(.*)/).test(input.MAD) || RegExp(/^keeta_ao(.*)/).test(input.MAD) || RegExp(/^keeta_ap(.*)/).test(input.MAD) || RegExp(/^tyblocks_am(.*)/).test(input.MAD) || RegExp(/^tyblocks_an(.*)/).test(input.MAD) || RegExp(/^tyblocks_ao(.*)/).test(input.MAD) || RegExp(/^tyblocks_ap(.*)/).test(input.MAD)) || "object" === typeof input.MAD && null !== input.MAD && _io0(input.MAD))) && (null !== input.MZN && (undefined === input.MZN || "string" === typeof input.MZN && (RegExp(/^keeta_am(.*)/).test(input.MZN) || RegExp(/^keeta_an(.*)/).test(input.MZN) || RegExp(/^keeta_ao(.*)/).test(input.MZN) || RegExp(/^keeta_ap(.*)/).test(input.MZN) || RegExp(/^tyblocks_am(.*)/).test(input.MZN) || RegExp(/^tyblocks_an(.*)/).test(input.MZN) || RegExp(/^tyblocks_ao(.*)/).test(input.MZN) || RegExp(/^tyblocks_ap(.*)/).test(input.MZN)) || "object" === typeof input.MZN && null !== input.MZN && _io0(input.MZN))) && (null !== input.MMK && (undefined === input.MMK || "string" === typeof input.MMK && (RegExp(/^keeta_am(.*)/).test(input.MMK) || RegExp(/^keeta_an(.*)/).test(input.MMK) || RegExp(/^keeta_ao(.*)/).test(input.MMK) || RegExp(/^keeta_ap(.*)/).test(input.MMK) || RegExp(/^tyblocks_am(.*)/).test(input.MMK) || RegExp(/^tyblocks_an(.*)/).test(input.MMK) || RegExp(/^tyblocks_ao(.*)/).test(input.MMK) || RegExp(/^tyblocks_ap(.*)/).test(input.MMK)) || "object" === typeof input.MMK && null !== input.MMK && _io0(input.MMK))) && (null !== input.NAD && (undefined === input.NAD || "string" === typeof input.NAD && (RegExp(/^keeta_am(.*)/).test(input.NAD) || RegExp(/^keeta_an(.*)/).test(input.NAD) || RegExp(/^keeta_ao(.*)/).test(input.NAD) || RegExp(/^keeta_ap(.*)/).test(input.NAD) || RegExp(/^tyblocks_am(.*)/).test(input.NAD) || RegExp(/^tyblocks_an(.*)/).test(input.NAD) || RegExp(/^tyblocks_ao(.*)/).test(input.NAD) || RegExp(/^tyblocks_ap(.*)/).test(input.NAD)) || "object" === typeof input.NAD && null !== input.NAD && _io0(input.NAD))) && (null !== input.NPR && (undefined === input.NPR || "string" === typeof input.NPR && (RegExp(/^keeta_am(.*)/).test(input.NPR) || RegExp(/^keeta_an(.*)/).test(input.NPR) || RegExp(/^keeta_ao(.*)/).test(input.NPR) || RegExp(/^keeta_ap(.*)/).test(input.NPR) || RegExp(/^tyblocks_am(.*)/).test(input.NPR) || RegExp(/^tyblocks_an(.*)/).test(input.NPR) || RegExp(/^tyblocks_ao(.*)/).test(input.NPR) || RegExp(/^tyblocks_ap(.*)/).test(input.NPR)) || "object" === typeof input.NPR && null !== input.NPR && _io0(input.NPR))) && (null !== input.NIO && (undefined === input.NIO || "string" === typeof input.NIO && (RegExp(/^keeta_am(.*)/).test(input.NIO) || RegExp(/^keeta_an(.*)/).test(input.NIO) || RegExp(/^keeta_ao(.*)/).test(input.NIO) || RegExp(/^keeta_ap(.*)/).test(input.NIO) || RegExp(/^tyblocks_am(.*)/).test(input.NIO) || RegExp(/^tyblocks_an(.*)/).test(input.NIO) || RegExp(/^tyblocks_ao(.*)/).test(input.NIO) || RegExp(/^tyblocks_ap(.*)/).test(input.NIO)) || "object" === typeof input.NIO && null !== input.NIO && _io0(input.NIO))) && (null !== input.NGN && (undefined === input.NGN || "string" === typeof input.NGN && (RegExp(/^keeta_am(.*)/).test(input.NGN) || RegExp(/^keeta_an(.*)/).test(input.NGN) || RegExp(/^keeta_ao(.*)/).test(input.NGN) || RegExp(/^keeta_ap(.*)/).test(input.NGN) || RegExp(/^tyblocks_am(.*)/).test(input.NGN) || RegExp(/^tyblocks_an(.*)/).test(input.NGN) || RegExp(/^tyblocks_ao(.*)/).test(input.NGN) || RegExp(/^tyblocks_ap(.*)/).test(input.NGN)) || "object" === typeof input.NGN && null !== input.NGN && _io0(input.NGN))) && (null !== input.OMR && (undefined === input.OMR || "string" === typeof input.OMR && (RegExp(/^keeta_am(.*)/).test(input.OMR) || RegExp(/^keeta_an(.*)/).test(input.OMR) || RegExp(/^keeta_ao(.*)/).test(input.OMR) || RegExp(/^keeta_ap(.*)/).test(input.OMR) || RegExp(/^tyblocks_am(.*)/).test(input.OMR) || RegExp(/^tyblocks_an(.*)/).test(input.OMR) || RegExp(/^tyblocks_ao(.*)/).test(input.OMR) || RegExp(/^tyblocks_ap(.*)/).test(input.OMR)) || "object" === typeof input.OMR && null !== input.OMR && _io0(input.OMR))) && (null !== input.PKR && (undefined === input.PKR || "string" === typeof input.PKR && (RegExp(/^keeta_am(.*)/).test(input.PKR) || RegExp(/^keeta_an(.*)/).test(input.PKR) || RegExp(/^keeta_ao(.*)/).test(input.PKR) || RegExp(/^keeta_ap(.*)/).test(input.PKR) || RegExp(/^tyblocks_am(.*)/).test(input.PKR) || RegExp(/^tyblocks_an(.*)/).test(input.PKR) || RegExp(/^tyblocks_ao(.*)/).test(input.PKR) || RegExp(/^tyblocks_ap(.*)/).test(input.PKR)) || "object" === typeof input.PKR && null !== input.PKR && _io0(input.PKR))) && (null !== input.PAB && (undefined === input.PAB || "string" === typeof input.PAB && (RegExp(/^keeta_am(.*)/).test(input.PAB) || RegExp(/^keeta_an(.*)/).test(input.PAB) || RegExp(/^keeta_ao(.*)/).test(input.PAB) || RegExp(/^keeta_ap(.*)/).test(input.PAB) || RegExp(/^tyblocks_am(.*)/).test(input.PAB) || RegExp(/^tyblocks_an(.*)/).test(input.PAB) || RegExp(/^tyblocks_ao(.*)/).test(input.PAB) || RegExp(/^tyblocks_ap(.*)/).test(input.PAB)) || "object" === typeof input.PAB && null !== input.PAB && _io0(input.PAB))) && (null !== input.PGK && (undefined === input.PGK || "string" === typeof input.PGK && (RegExp(/^keeta_am(.*)/).test(input.PGK) || RegExp(/^keeta_an(.*)/).test(input.PGK) || RegExp(/^keeta_ao(.*)/).test(input.PGK) || RegExp(/^keeta_ap(.*)/).test(input.PGK) || RegExp(/^tyblocks_am(.*)/).test(input.PGK) || RegExp(/^tyblocks_an(.*)/).test(input.PGK) || RegExp(/^tyblocks_ao(.*)/).test(input.PGK) || RegExp(/^tyblocks_ap(.*)/).test(input.PGK)) || "object" === typeof input.PGK && null !== input.PGK && _io0(input.PGK))) && (null !== input.PYG && (undefined === input.PYG || "string" === typeof input.PYG && (RegExp(/^keeta_am(.*)/).test(input.PYG) || RegExp(/^keeta_an(.*)/).test(input.PYG) || RegExp(/^keeta_ao(.*)/).test(input.PYG) || RegExp(/^keeta_ap(.*)/).test(input.PYG) || RegExp(/^tyblocks_am(.*)/).test(input.PYG) || RegExp(/^tyblocks_an(.*)/).test(input.PYG) || RegExp(/^tyblocks_ao(.*)/).test(input.PYG) || RegExp(/^tyblocks_ap(.*)/).test(input.PYG)) || "object" === typeof input.PYG && null !== input.PYG && _io0(input.PYG))) && (null !== input.PEN && (undefined === input.PEN || "string" === typeof input.PEN && (RegExp(/^keeta_am(.*)/).test(input.PEN) || RegExp(/^keeta_an(.*)/).test(input.PEN) || RegExp(/^keeta_ao(.*)/).test(input.PEN) || RegExp(/^keeta_ap(.*)/).test(input.PEN) || RegExp(/^tyblocks_am(.*)/).test(input.PEN) || RegExp(/^tyblocks_an(.*)/).test(input.PEN) || RegExp(/^tyblocks_ao(.*)/).test(input.PEN) || RegExp(/^tyblocks_ap(.*)/).test(input.PEN)) || "object" === typeof input.PEN && null !== input.PEN && _io0(input.PEN))) && (null !== input.PHP && (undefined === input.PHP || "string" === typeof input.PHP && (RegExp(/^keeta_am(.*)/).test(input.PHP) || RegExp(/^keeta_an(.*)/).test(input.PHP) || RegExp(/^keeta_ao(.*)/).test(input.PHP) || RegExp(/^keeta_ap(.*)/).test(input.PHP) || RegExp(/^tyblocks_am(.*)/).test(input.PHP) || RegExp(/^tyblocks_an(.*)/).test(input.PHP) || RegExp(/^tyblocks_ao(.*)/).test(input.PHP) || RegExp(/^tyblocks_ap(.*)/).test(input.PHP)) || "object" === typeof input.PHP && null !== input.PHP && _io0(input.PHP))) && (null !== input.PLN && (undefined === input.PLN || "string" === typeof input.PLN && (RegExp(/^keeta_am(.*)/).test(input.PLN) || RegExp(/^keeta_an(.*)/).test(input.PLN) || RegExp(/^keeta_ao(.*)/).test(input.PLN) || RegExp(/^keeta_ap(.*)/).test(input.PLN) || RegExp(/^tyblocks_am(.*)/).test(input.PLN) || RegExp(/^tyblocks_an(.*)/).test(input.PLN) || RegExp(/^tyblocks_ao(.*)/).test(input.PLN) || RegExp(/^tyblocks_ap(.*)/).test(input.PLN)) || "object" === typeof input.PLN && null !== input.PLN && _io0(input.PLN))) && (null !== input.QAR && (undefined === input.QAR || "string" === typeof input.QAR && (RegExp(/^keeta_am(.*)/).test(input.QAR) || RegExp(/^keeta_an(.*)/).test(input.QAR) || RegExp(/^keeta_ao(.*)/).test(input.QAR) || RegExp(/^keeta_ap(.*)/).test(input.QAR) || RegExp(/^tyblocks_am(.*)/).test(input.QAR) || RegExp(/^tyblocks_an(.*)/).test(input.QAR) || RegExp(/^tyblocks_ao(.*)/).test(input.QAR) || RegExp(/^tyblocks_ap(.*)/).test(input.QAR)) || "object" === typeof input.QAR && null !== input.QAR && _io0(input.QAR))) && (null !== input.RON && (undefined === input.RON || "string" === typeof input.RON && (RegExp(/^keeta_am(.*)/).test(input.RON) || RegExp(/^keeta_an(.*)/).test(input.RON) || RegExp(/^keeta_ao(.*)/).test(input.RON) || RegExp(/^keeta_ap(.*)/).test(input.RON) || RegExp(/^tyblocks_am(.*)/).test(input.RON) || RegExp(/^tyblocks_an(.*)/).test(input.RON) || RegExp(/^tyblocks_ao(.*)/).test(input.RON) || RegExp(/^tyblocks_ap(.*)/).test(input.RON)) || "object" === typeof input.RON && null !== input.RON && _io0(input.RON))) && (null !== input.RUB && (undefined === input.RUB || "string" === typeof input.RUB && (RegExp(/^keeta_am(.*)/).test(input.RUB) || RegExp(/^keeta_an(.*)/).test(input.RUB) || RegExp(/^keeta_ao(.*)/).test(input.RUB) || RegExp(/^keeta_ap(.*)/).test(input.RUB) || RegExp(/^tyblocks_am(.*)/).test(input.RUB) || RegExp(/^tyblocks_an(.*)/).test(input.RUB) || RegExp(/^tyblocks_ao(.*)/).test(input.RUB) || RegExp(/^tyblocks_ap(.*)/).test(input.RUB)) || "object" === typeof input.RUB && null !== input.RUB && _io0(input.RUB))) && (null !== input.RWF && (undefined === input.RWF || "string" === typeof input.RWF && (RegExp(/^keeta_am(.*)/).test(input.RWF) || RegExp(/^keeta_an(.*)/).test(input.RWF) || RegExp(/^keeta_ao(.*)/).test(input.RWF) || RegExp(/^keeta_ap(.*)/).test(input.RWF) || RegExp(/^tyblocks_am(.*)/).test(input.RWF) || RegExp(/^tyblocks_an(.*)/).test(input.RWF) || RegExp(/^tyblocks_ao(.*)/).test(input.RWF) || RegExp(/^tyblocks_ap(.*)/).test(input.RWF)) || "object" === typeof input.RWF && null !== input.RWF && _io0(input.RWF))) && (null !== input.SHP && (undefined === input.SHP || "string" === typeof input.SHP && (RegExp(/^keeta_am(.*)/).test(input.SHP) || RegExp(/^keeta_an(.*)/).test(input.SHP) || RegExp(/^keeta_ao(.*)/).test(input.SHP) || RegExp(/^keeta_ap(.*)/).test(input.SHP) || RegExp(/^tyblocks_am(.*)/).test(input.SHP) || RegExp(/^tyblocks_an(.*)/).test(input.SHP) || RegExp(/^tyblocks_ao(.*)/).test(input.SHP) || RegExp(/^tyblocks_ap(.*)/).test(input.SHP)) || "object" === typeof input.SHP && null !== input.SHP && _io0(input.SHP))) && (null !== input.WST && (undefined === input.WST || "string" === typeof input.WST && (RegExp(/^keeta_am(.*)/).test(input.WST) || RegExp(/^keeta_an(.*)/).test(input.WST) || RegExp(/^keeta_ao(.*)/).test(input.WST) || RegExp(/^keeta_ap(.*)/).test(input.WST) || RegExp(/^tyblocks_am(.*)/).test(input.WST) || RegExp(/^tyblocks_an(.*)/).test(input.WST) || RegExp(/^tyblocks_ao(.*)/).test(input.WST) || RegExp(/^tyblocks_ap(.*)/).test(input.WST)) || "object" === typeof input.WST && null !== input.WST && _io0(input.WST))) && (null !== input.STN && (undefined === input.STN || "string" === typeof input.STN && (RegExp(/^keeta_am(.*)/).test(input.STN) || RegExp(/^keeta_an(.*)/).test(input.STN) || RegExp(/^keeta_ao(.*)/).test(input.STN) || RegExp(/^keeta_ap(.*)/).test(input.STN) || RegExp(/^tyblocks_am(.*)/).test(input.STN) || RegExp(/^tyblocks_an(.*)/).test(input.STN) || RegExp(/^tyblocks_ao(.*)/).test(input.STN) || RegExp(/^tyblocks_ap(.*)/).test(input.STN)) || "object" === typeof input.STN && null !== input.STN && _io0(input.STN))) && (null !== input.SAR && (undefined === input.SAR || "string" === typeof input.SAR && (RegExp(/^keeta_am(.*)/).test(input.SAR) || RegExp(/^keeta_an(.*)/).test(input.SAR) || RegExp(/^keeta_ao(.*)/).test(input.SAR) || RegExp(/^keeta_ap(.*)/).test(input.SAR) || RegExp(/^tyblocks_am(.*)/).test(input.SAR) || RegExp(/^tyblocks_an(.*)/).test(input.SAR) || RegExp(/^tyblocks_ao(.*)/).test(input.SAR) || RegExp(/^tyblocks_ap(.*)/).test(input.SAR)) || "object" === typeof input.SAR && null !== input.SAR && _io0(input.SAR))) && (null !== input.RSD && (undefined === input.RSD || "string" === typeof input.RSD && (RegExp(/^keeta_am(.*)/).test(input.RSD) || RegExp(/^keeta_an(.*)/).test(input.RSD) || RegExp(/^keeta_ao(.*)/).test(input.RSD) || RegExp(/^keeta_ap(.*)/).test(input.RSD) || RegExp(/^tyblocks_am(.*)/).test(input.RSD) || RegExp(/^tyblocks_an(.*)/).test(input.RSD) || RegExp(/^tyblocks_ao(.*)/).test(input.RSD) || RegExp(/^tyblocks_ap(.*)/).test(input.RSD)) || "object" === typeof input.RSD && null !== input.RSD && _io0(input.RSD))) && (null !== input.SCR && (undefined === input.SCR || "string" === typeof input.SCR && (RegExp(/^keeta_am(.*)/).test(input.SCR) || RegExp(/^keeta_an(.*)/).test(input.SCR) || RegExp(/^keeta_ao(.*)/).test(input.SCR) || RegExp(/^keeta_ap(.*)/).test(input.SCR) || RegExp(/^tyblocks_am(.*)/).test(input.SCR) || RegExp(/^tyblocks_an(.*)/).test(input.SCR) || RegExp(/^tyblocks_ao(.*)/).test(input.SCR) || RegExp(/^tyblocks_ap(.*)/).test(input.SCR)) || "object" === typeof input.SCR && null !== input.SCR && _io0(input.SCR))) && (null !== input.SLL && (undefined === input.SLL || "string" === typeof input.SLL && (RegExp(/^keeta_am(.*)/).test(input.SLL) || RegExp(/^keeta_an(.*)/).test(input.SLL) || RegExp(/^keeta_ao(.*)/).test(input.SLL) || RegExp(/^keeta_ap(.*)/).test(input.SLL) || RegExp(/^tyblocks_am(.*)/).test(input.SLL) || RegExp(/^tyblocks_an(.*)/).test(input.SLL) || RegExp(/^tyblocks_ao(.*)/).test(input.SLL) || RegExp(/^tyblocks_ap(.*)/).test(input.SLL)) || "object" === typeof input.SLL && null !== input.SLL && _io0(input.SLL))) && (null !== input.SLE && (undefined === input.SLE || "string" === typeof input.SLE && (RegExp(/^keeta_am(.*)/).test(input.SLE) || RegExp(/^keeta_an(.*)/).test(input.SLE) || RegExp(/^keeta_ao(.*)/).test(input.SLE) || RegExp(/^keeta_ap(.*)/).test(input.SLE) || RegExp(/^tyblocks_am(.*)/).test(input.SLE) || RegExp(/^tyblocks_an(.*)/).test(input.SLE) || RegExp(/^tyblocks_ao(.*)/).test(input.SLE) || RegExp(/^tyblocks_ap(.*)/).test(input.SLE)) || "object" === typeof input.SLE && null !== input.SLE && _io0(input.SLE))) && (null !== input.SGD && (undefined === input.SGD || "string" === typeof input.SGD && (RegExp(/^keeta_am(.*)/).test(input.SGD) || RegExp(/^keeta_an(.*)/).test(input.SGD) || RegExp(/^keeta_ao(.*)/).test(input.SGD) || RegExp(/^keeta_ap(.*)/).test(input.SGD) || RegExp(/^tyblocks_am(.*)/).test(input.SGD) || RegExp(/^tyblocks_an(.*)/).test(input.SGD) || RegExp(/^tyblocks_ao(.*)/).test(input.SGD) || RegExp(/^tyblocks_ap(.*)/).test(input.SGD)) || "object" === typeof input.SGD && null !== input.SGD && _io0(input.SGD))) && (null !== input.SBD && (undefined === input.SBD || "string" === typeof input.SBD && (RegExp(/^keeta_am(.*)/).test(input.SBD) || RegExp(/^keeta_an(.*)/).test(input.SBD) || RegExp(/^keeta_ao(.*)/).test(input.SBD) || RegExp(/^keeta_ap(.*)/).test(input.SBD) || RegExp(/^tyblocks_am(.*)/).test(input.SBD) || RegExp(/^tyblocks_an(.*)/).test(input.SBD) || RegExp(/^tyblocks_ao(.*)/).test(input.SBD) || RegExp(/^tyblocks_ap(.*)/).test(input.SBD)) || "object" === typeof input.SBD && null !== input.SBD && _io0(input.SBD))) && (null !== input.SOS && (undefined === input.SOS || "string" === typeof input.SOS && (RegExp(/^keeta_am(.*)/).test(input.SOS) || RegExp(/^keeta_an(.*)/).test(input.SOS) || RegExp(/^keeta_ao(.*)/).test(input.SOS) || RegExp(/^keeta_ap(.*)/).test(input.SOS) || RegExp(/^tyblocks_am(.*)/).test(input.SOS) || RegExp(/^tyblocks_an(.*)/).test(input.SOS) || RegExp(/^tyblocks_ao(.*)/).test(input.SOS) || RegExp(/^tyblocks_ap(.*)/).test(input.SOS)) || "object" === typeof input.SOS && null !== input.SOS && _io0(input.SOS))) && (null !== input.SSP && (undefined === input.SSP || "string" === typeof input.SSP && (RegExp(/^keeta_am(.*)/).test(input.SSP) || RegExp(/^keeta_an(.*)/).test(input.SSP) || RegExp(/^keeta_ao(.*)/).test(input.SSP) || RegExp(/^keeta_ap(.*)/).test(input.SSP) || RegExp(/^tyblocks_am(.*)/).test(input.SSP) || RegExp(/^tyblocks_an(.*)/).test(input.SSP) || RegExp(/^tyblocks_ao(.*)/).test(input.SSP) || RegExp(/^tyblocks_ap(.*)/).test(input.SSP)) || "object" === typeof input.SSP && null !== input.SSP && _io0(input.SSP))) && (null !== input.LKR && (undefined === input.LKR || "string" === typeof input.LKR && (RegExp(/^keeta_am(.*)/).test(input.LKR) || RegExp(/^keeta_an(.*)/).test(input.LKR) || RegExp(/^keeta_ao(.*)/).test(input.LKR) || RegExp(/^keeta_ap(.*)/).test(input.LKR) || RegExp(/^tyblocks_am(.*)/).test(input.LKR) || RegExp(/^tyblocks_an(.*)/).test(input.LKR) || RegExp(/^tyblocks_ao(.*)/).test(input.LKR) || RegExp(/^tyblocks_ap(.*)/).test(input.LKR)) || "object" === typeof input.LKR && null !== input.LKR && _io0(input.LKR))) && (null !== input.SDG && (undefined === input.SDG || "string" === typeof input.SDG && (RegExp(/^keeta_am(.*)/).test(input.SDG) || RegExp(/^keeta_an(.*)/).test(input.SDG) || RegExp(/^keeta_ao(.*)/).test(input.SDG) || RegExp(/^keeta_ap(.*)/).test(input.SDG) || RegExp(/^tyblocks_am(.*)/).test(input.SDG) || RegExp(/^tyblocks_an(.*)/).test(input.SDG) || RegExp(/^tyblocks_ao(.*)/).test(input.SDG) || RegExp(/^tyblocks_ap(.*)/).test(input.SDG)) || "object" === typeof input.SDG && null !== input.SDG && _io0(input.SDG))) && (null !== input.SRD && (undefined === input.SRD || "string" === typeof input.SRD && (RegExp(/^keeta_am(.*)/).test(input.SRD) || RegExp(/^keeta_an(.*)/).test(input.SRD) || RegExp(/^keeta_ao(.*)/).test(input.SRD) || RegExp(/^keeta_ap(.*)/).test(input.SRD) || RegExp(/^tyblocks_am(.*)/).test(input.SRD) || RegExp(/^tyblocks_an(.*)/).test(input.SRD) || RegExp(/^tyblocks_ao(.*)/).test(input.SRD) || RegExp(/^tyblocks_ap(.*)/).test(input.SRD)) || "object" === typeof input.SRD && null !== input.SRD && _io0(input.SRD))) && (null !== input.SEK && (undefined === input.SEK || "string" === typeof input.SEK && (RegExp(/^keeta_am(.*)/).test(input.SEK) || RegExp(/^keeta_an(.*)/).test(input.SEK) || RegExp(/^keeta_ao(.*)/).test(input.SEK) || RegExp(/^keeta_ap(.*)/).test(input.SEK) || RegExp(/^tyblocks_am(.*)/).test(input.SEK) || RegExp(/^tyblocks_an(.*)/).test(input.SEK) || RegExp(/^tyblocks_ao(.*)/).test(input.SEK) || RegExp(/^tyblocks_ap(.*)/).test(input.SEK)) || "object" === typeof input.SEK && null !== input.SEK && _io0(input.SEK))) && (null !== input.CHE && (undefined === input.CHE || "string" === typeof input.CHE && (RegExp(/^keeta_am(.*)/).test(input.CHE) || RegExp(/^keeta_an(.*)/).test(input.CHE) || RegExp(/^keeta_ao(.*)/).test(input.CHE) || RegExp(/^keeta_ap(.*)/).test(input.CHE) || RegExp(/^tyblocks_am(.*)/).test(input.CHE) || RegExp(/^tyblocks_an(.*)/).test(input.CHE) || RegExp(/^tyblocks_ao(.*)/).test(input.CHE) || RegExp(/^tyblocks_ap(.*)/).test(input.CHE)) || "object" === typeof input.CHE && null !== input.CHE && _io0(input.CHE))) && (null !== input.CHW && (undefined === input.CHW || "string" === typeof input.CHW && (RegExp(/^keeta_am(.*)/).test(input.CHW) || RegExp(/^keeta_an(.*)/).test(input.CHW) || RegExp(/^keeta_ao(.*)/).test(input.CHW) || RegExp(/^keeta_ap(.*)/).test(input.CHW) || RegExp(/^tyblocks_am(.*)/).test(input.CHW) || RegExp(/^tyblocks_an(.*)/).test(input.CHW) || RegExp(/^tyblocks_ao(.*)/).test(input.CHW) || RegExp(/^tyblocks_ap(.*)/).test(input.CHW)) || "object" === typeof input.CHW && null !== input.CHW && _io0(input.CHW))) && (null !== input.SYP && (undefined === input.SYP || "string" === typeof input.SYP && (RegExp(/^keeta_am(.*)/).test(input.SYP) || RegExp(/^keeta_an(.*)/).test(input.SYP) || RegExp(/^keeta_ao(.*)/).test(input.SYP) || RegExp(/^keeta_ap(.*)/).test(input.SYP) || RegExp(/^tyblocks_am(.*)/).test(input.SYP) || RegExp(/^tyblocks_an(.*)/).test(input.SYP) || RegExp(/^tyblocks_ao(.*)/).test(input.SYP) || RegExp(/^tyblocks_ap(.*)/).test(input.SYP)) || "object" === typeof input.SYP && null !== input.SYP && _io0(input.SYP))) && (null !== input.TWD && (undefined === input.TWD || "string" === typeof input.TWD && (RegExp(/^keeta_am(.*)/).test(input.TWD) || RegExp(/^keeta_an(.*)/).test(input.TWD) || RegExp(/^keeta_ao(.*)/).test(input.TWD) || RegExp(/^keeta_ap(.*)/).test(input.TWD) || RegExp(/^tyblocks_am(.*)/).test(input.TWD) || RegExp(/^tyblocks_an(.*)/).test(input.TWD) || RegExp(/^tyblocks_ao(.*)/).test(input.TWD) || RegExp(/^tyblocks_ap(.*)/).test(input.TWD)) || "object" === typeof input.TWD && null !== input.TWD && _io0(input.TWD))) && (null !== input.TJS && (undefined === input.TJS || "string" === typeof input.TJS && (RegExp(/^keeta_am(.*)/).test(input.TJS) || RegExp(/^keeta_an(.*)/).test(input.TJS) || RegExp(/^keeta_ao(.*)/).test(input.TJS) || RegExp(/^keeta_ap(.*)/).test(input.TJS) || RegExp(/^tyblocks_am(.*)/).test(input.TJS) || RegExp(/^tyblocks_an(.*)/).test(input.TJS) || RegExp(/^tyblocks_ao(.*)/).test(input.TJS) || RegExp(/^tyblocks_ap(.*)/).test(input.TJS)) || "object" === typeof input.TJS && null !== input.TJS && _io0(input.TJS))) && (null !== input.TZS && (undefined === input.TZS || "string" === typeof input.TZS && (RegExp(/^keeta_am(.*)/).test(input.TZS) || RegExp(/^keeta_an(.*)/).test(input.TZS) || RegExp(/^keeta_ao(.*)/).test(input.TZS) || RegExp(/^keeta_ap(.*)/).test(input.TZS) || RegExp(/^tyblocks_am(.*)/).test(input.TZS) || RegExp(/^tyblocks_an(.*)/).test(input.TZS) || RegExp(/^tyblocks_ao(.*)/).test(input.TZS) || RegExp(/^tyblocks_ap(.*)/).test(input.TZS)) || "object" === typeof input.TZS && null !== input.TZS && _io0(input.TZS))) && (null !== input.THB && (undefined === input.THB || "string" === typeof input.THB && (RegExp(/^keeta_am(.*)/).test(input.THB) || RegExp(/^keeta_an(.*)/).test(input.THB) || RegExp(/^keeta_ao(.*)/).test(input.THB) || RegExp(/^keeta_ap(.*)/).test(input.THB) || RegExp(/^tyblocks_am(.*)/).test(input.THB) || RegExp(/^tyblocks_an(.*)/).test(input.THB) || RegExp(/^tyblocks_ao(.*)/).test(input.THB) || RegExp(/^tyblocks_ap(.*)/).test(input.THB)) || "object" === typeof input.THB && null !== input.THB && _io0(input.THB))) && (null !== input.TOP && (undefined === input.TOP || "string" === typeof input.TOP && (RegExp(/^keeta_am(.*)/).test(input.TOP) || RegExp(/^keeta_an(.*)/).test(input.TOP) || RegExp(/^keeta_ao(.*)/).test(input.TOP) || RegExp(/^keeta_ap(.*)/).test(input.TOP) || RegExp(/^tyblocks_am(.*)/).test(input.TOP) || RegExp(/^tyblocks_an(.*)/).test(input.TOP) || RegExp(/^tyblocks_ao(.*)/).test(input.TOP) || RegExp(/^tyblocks_ap(.*)/).test(input.TOP)) || "object" === typeof input.TOP && null !== input.TOP && _io0(input.TOP))) && (null !== input.TTD && (undefined === input.TTD || "string" === typeof input.TTD && (RegExp(/^keeta_am(.*)/).test(input.TTD) || RegExp(/^keeta_an(.*)/).test(input.TTD) || RegExp(/^keeta_ao(.*)/).test(input.TTD) || RegExp(/^keeta_ap(.*)/).test(input.TTD) || RegExp(/^tyblocks_am(.*)/).test(input.TTD) || RegExp(/^tyblocks_an(.*)/).test(input.TTD) || RegExp(/^tyblocks_ao(.*)/).test(input.TTD) || RegExp(/^tyblocks_ap(.*)/).test(input.TTD)) || "object" === typeof input.TTD && null !== input.TTD && _io0(input.TTD))) && (null !== input.TND && (undefined === input.TND || "string" === typeof input.TND && (RegExp(/^keeta_am(.*)/).test(input.TND) || RegExp(/^keeta_an(.*)/).test(input.TND) || RegExp(/^keeta_ao(.*)/).test(input.TND) || RegExp(/^keeta_ap(.*)/).test(input.TND) || RegExp(/^tyblocks_am(.*)/).test(input.TND) || RegExp(/^tyblocks_an(.*)/).test(input.TND) || RegExp(/^tyblocks_ao(.*)/).test(input.TND) || RegExp(/^tyblocks_ap(.*)/).test(input.TND)) || "object" === typeof input.TND && null !== input.TND && _io0(input.TND))) && (null !== input.TRY && (undefined === input.TRY || "string" === typeof input.TRY && (RegExp(/^keeta_am(.*)/).test(input.TRY) || RegExp(/^keeta_an(.*)/).test(input.TRY) || RegExp(/^keeta_ao(.*)/).test(input.TRY) || RegExp(/^keeta_ap(.*)/).test(input.TRY) || RegExp(/^tyblocks_am(.*)/).test(input.TRY) || RegExp(/^tyblocks_an(.*)/).test(input.TRY) || RegExp(/^tyblocks_ao(.*)/).test(input.TRY) || RegExp(/^tyblocks_ap(.*)/).test(input.TRY)) || "object" === typeof input.TRY && null !== input.TRY && _io0(input.TRY))) && (null !== input.TMT && (undefined === input.TMT || "string" === typeof input.TMT && (RegExp(/^keeta_am(.*)/).test(input.TMT) || RegExp(/^keeta_an(.*)/).test(input.TMT) || RegExp(/^keeta_ao(.*)/).test(input.TMT) || RegExp(/^keeta_ap(.*)/).test(input.TMT) || RegExp(/^tyblocks_am(.*)/).test(input.TMT) || RegExp(/^tyblocks_an(.*)/).test(input.TMT) || RegExp(/^tyblocks_ao(.*)/).test(input.TMT) || RegExp(/^tyblocks_ap(.*)/).test(input.TMT)) || "object" === typeof input.TMT && null !== input.TMT && _io0(input.TMT))) && (null !== input.UGX && (undefined === input.UGX || "string" === typeof input.UGX && (RegExp(/^keeta_am(.*)/).test(input.UGX) || RegExp(/^keeta_an(.*)/).test(input.UGX) || RegExp(/^keeta_ao(.*)/).test(input.UGX) || RegExp(/^keeta_ap(.*)/).test(input.UGX) || RegExp(/^tyblocks_am(.*)/).test(input.UGX) || RegExp(/^tyblocks_an(.*)/).test(input.UGX) || RegExp(/^tyblocks_ao(.*)/).test(input.UGX) || RegExp(/^tyblocks_ap(.*)/).test(input.UGX)) || "object" === typeof input.UGX && null !== input.UGX && _io0(input.UGX))) && (null !== input.UAH && (undefined === input.UAH || "string" === typeof input.UAH && (RegExp(/^keeta_am(.*)/).test(input.UAH) || RegExp(/^keeta_an(.*)/).test(input.UAH) || RegExp(/^keeta_ao(.*)/).test(input.UAH) || RegExp(/^keeta_ap(.*)/).test(input.UAH) || RegExp(/^tyblocks_am(.*)/).test(input.UAH) || RegExp(/^tyblocks_an(.*)/).test(input.UAH) || RegExp(/^tyblocks_ao(.*)/).test(input.UAH) || RegExp(/^tyblocks_ap(.*)/).test(input.UAH)) || "object" === typeof input.UAH && null !== input.UAH && _io0(input.UAH))) && (null !== input.AED && (undefined === input.AED || "string" === typeof input.AED && (RegExp(/^keeta_am(.*)/).test(input.AED) || RegExp(/^keeta_an(.*)/).test(input.AED) || RegExp(/^keeta_ao(.*)/).test(input.AED) || RegExp(/^keeta_ap(.*)/).test(input.AED) || RegExp(/^tyblocks_am(.*)/).test(input.AED) || RegExp(/^tyblocks_an(.*)/).test(input.AED) || RegExp(/^tyblocks_ao(.*)/).test(input.AED) || RegExp(/^tyblocks_ap(.*)/).test(input.AED)) || "object" === typeof input.AED && null !== input.AED && _io0(input.AED))) && (null !== input.USN && (undefined === input.USN || "string" === typeof input.USN && (RegExp(/^keeta_am(.*)/).test(input.USN) || RegExp(/^keeta_an(.*)/).test(input.USN) || RegExp(/^keeta_ao(.*)/).test(input.USN) || RegExp(/^keeta_ap(.*)/).test(input.USN) || RegExp(/^tyblocks_am(.*)/).test(input.USN) || RegExp(/^tyblocks_an(.*)/).test(input.USN) || RegExp(/^tyblocks_ao(.*)/).test(input.USN) || RegExp(/^tyblocks_ap(.*)/).test(input.USN)) || "object" === typeof input.USN && null !== input.USN && _io0(input.USN))) && (null !== input.UYU && (undefined === input.UYU || "string" === typeof input.UYU && (RegExp(/^keeta_am(.*)/).test(input.UYU) || RegExp(/^keeta_an(.*)/).test(input.UYU) || RegExp(/^keeta_ao(.*)/).test(input.UYU) || RegExp(/^keeta_ap(.*)/).test(input.UYU) || RegExp(/^tyblocks_am(.*)/).test(input.UYU) || RegExp(/^tyblocks_an(.*)/).test(input.UYU) || RegExp(/^tyblocks_ao(.*)/).test(input.UYU) || RegExp(/^tyblocks_ap(.*)/).test(input.UYU)) || "object" === typeof input.UYU && null !== input.UYU && _io0(input.UYU))) && (null !== input.UYI && (undefined === input.UYI || "string" === typeof input.UYI && (RegExp(/^keeta_am(.*)/).test(input.UYI) || RegExp(/^keeta_an(.*)/).test(input.UYI) || RegExp(/^keeta_ao(.*)/).test(input.UYI) || RegExp(/^keeta_ap(.*)/).test(input.UYI) || RegExp(/^tyblocks_am(.*)/).test(input.UYI) || RegExp(/^tyblocks_an(.*)/).test(input.UYI) || RegExp(/^tyblocks_ao(.*)/).test(input.UYI) || RegExp(/^tyblocks_ap(.*)/).test(input.UYI)) || "object" === typeof input.UYI && null !== input.UYI && _io0(input.UYI))) && (null !== input.UYW && (undefined === input.UYW || "string" === typeof input.UYW && (RegExp(/^keeta_am(.*)/).test(input.UYW) || RegExp(/^keeta_an(.*)/).test(input.UYW) || RegExp(/^keeta_ao(.*)/).test(input.UYW) || RegExp(/^keeta_ap(.*)/).test(input.UYW) || RegExp(/^tyblocks_am(.*)/).test(input.UYW) || RegExp(/^tyblocks_an(.*)/).test(input.UYW) || RegExp(/^tyblocks_ao(.*)/).test(input.UYW) || RegExp(/^tyblocks_ap(.*)/).test(input.UYW)) || "object" === typeof input.UYW && null !== input.UYW && _io0(input.UYW))) && (null !== input.UZS && (undefined === input.UZS || "string" === typeof input.UZS && (RegExp(/^keeta_am(.*)/).test(input.UZS) || RegExp(/^keeta_an(.*)/).test(input.UZS) || RegExp(/^keeta_ao(.*)/).test(input.UZS) || RegExp(/^keeta_ap(.*)/).test(input.UZS) || RegExp(/^tyblocks_am(.*)/).test(input.UZS) || RegExp(/^tyblocks_an(.*)/).test(input.UZS) || RegExp(/^tyblocks_ao(.*)/).test(input.UZS) || RegExp(/^tyblocks_ap(.*)/).test(input.UZS)) || "object" === typeof input.UZS && null !== input.UZS && _io0(input.UZS))) && (null !== input.VUV && (undefined === input.VUV || "string" === typeof input.VUV && (RegExp(/^keeta_am(.*)/).test(input.VUV) || RegExp(/^keeta_an(.*)/).test(input.VUV) || RegExp(/^keeta_ao(.*)/).test(input.VUV) || RegExp(/^keeta_ap(.*)/).test(input.VUV) || RegExp(/^tyblocks_am(.*)/).test(input.VUV) || RegExp(/^tyblocks_an(.*)/).test(input.VUV) || RegExp(/^tyblocks_ao(.*)/).test(input.VUV) || RegExp(/^tyblocks_ap(.*)/).test(input.VUV)) || "object" === typeof input.VUV && null !== input.VUV && _io0(input.VUV))) && (null !== input.VES && (undefined === input.VES || "string" === typeof input.VES && (RegExp(/^keeta_am(.*)/).test(input.VES) || RegExp(/^keeta_an(.*)/).test(input.VES) || RegExp(/^keeta_ao(.*)/).test(input.VES) || RegExp(/^keeta_ap(.*)/).test(input.VES) || RegExp(/^tyblocks_am(.*)/).test(input.VES) || RegExp(/^tyblocks_an(.*)/).test(input.VES) || RegExp(/^tyblocks_ao(.*)/).test(input.VES) || RegExp(/^tyblocks_ap(.*)/).test(input.VES)) || "object" === typeof input.VES && null !== input.VES && _io0(input.VES))) && (null !== input.VED && (undefined === input.VED || "string" === typeof input.VED && (RegExp(/^keeta_am(.*)/).test(input.VED) || RegExp(/^keeta_an(.*)/).test(input.VED) || RegExp(/^keeta_ao(.*)/).test(input.VED) || RegExp(/^keeta_ap(.*)/).test(input.VED) || RegExp(/^tyblocks_am(.*)/).test(input.VED) || RegExp(/^tyblocks_an(.*)/).test(input.VED) || RegExp(/^tyblocks_ao(.*)/).test(input.VED) || RegExp(/^tyblocks_ap(.*)/).test(input.VED)) || "object" === typeof input.VED && null !== input.VED && _io0(input.VED))) && (null !== input.VND && (undefined === input.VND || "string" === typeof input.VND && (RegExp(/^keeta_am(.*)/).test(input.VND) || RegExp(/^keeta_an(.*)/).test(input.VND) || RegExp(/^keeta_ao(.*)/).test(input.VND) || RegExp(/^keeta_ap(.*)/).test(input.VND) || RegExp(/^tyblocks_am(.*)/).test(input.VND) || RegExp(/^tyblocks_an(.*)/).test(input.VND) || RegExp(/^tyblocks_ao(.*)/).test(input.VND) || RegExp(/^tyblocks_ap(.*)/).test(input.VND)) || "object" === typeof input.VND && null !== input.VND && _io0(input.VND))) && (null !== input.YER && (undefined === input.YER || "string" === typeof input.YER && (RegExp(/^keeta_am(.*)/).test(input.YER) || RegExp(/^keeta_an(.*)/).test(input.YER) || RegExp(/^keeta_ao(.*)/).test(input.YER) || RegExp(/^keeta_ap(.*)/).test(input.YER) || RegExp(/^tyblocks_am(.*)/).test(input.YER) || RegExp(/^tyblocks_an(.*)/).test(input.YER) || RegExp(/^tyblocks_ao(.*)/).test(input.YER) || RegExp(/^tyblocks_ap(.*)/).test(input.YER)) || "object" === typeof input.YER && null !== input.YER && _io0(input.YER))) && (null !== input.ZMW && (undefined === input.ZMW || "string" === typeof input.ZMW && (RegExp(/^keeta_am(.*)/).test(input.ZMW) || RegExp(/^keeta_an(.*)/).test(input.ZMW) || RegExp(/^keeta_ao(.*)/).test(input.ZMW) || RegExp(/^keeta_ap(.*)/).test(input.ZMW) || RegExp(/^tyblocks_am(.*)/).test(input.ZMW) || RegExp(/^tyblocks_an(.*)/).test(input.ZMW) || RegExp(/^tyblocks_ao(.*)/).test(input.ZMW) || RegExp(/^tyblocks_ap(.*)/).test(input.ZMW)) || "object" === typeof input.ZMW && null !== input.ZMW && _io0(input.ZMW))) && (null !== input.ZWL && (undefined === input.ZWL || "string" === typeof input.ZWL && (RegExp(/^keeta_am(.*)/).test(input.ZWL) || RegExp(/^keeta_an(.*)/).test(input.ZWL) || RegExp(/^keeta_ao(.*)/).test(input.ZWL) || RegExp(/^keeta_ap(.*)/).test(input.ZWL) || RegExp(/^tyblocks_am(.*)/).test(input.ZWL) || RegExp(/^tyblocks_an(.*)/).test(input.ZWL) || RegExp(/^tyblocks_ao(.*)/).test(input.ZWL) || RegExp(/^tyblocks_ap(.*)/).test(input.ZWL)) || "object" === typeof input.ZWL && null !== input.ZWL && _io0(input.ZWL))) && Object.keys(input).every(key => {
|
|
261
279
|
if (["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"].some(prop => key === prop))
|
|
262
280
|
return true;
|
|
263
281
|
const value = input[key];
|
|
@@ -266,32 +284,42 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
266
284
|
if ("string" === typeof key && RegExp(/^\$(.*)/).test(key))
|
|
267
285
|
return null !== value && (undefined === value || "string" === typeof value && (RegExp(/^keeta_am(.*)/).test(value) || RegExp(/^keeta_an(.*)/).test(value) || RegExp(/^keeta_ao(.*)/).test(value) || RegExp(/^keeta_ap(.*)/).test(value) || RegExp(/^tyblocks_am(.*)/).test(value) || RegExp(/^tyblocks_an(.*)/).test(value) || RegExp(/^tyblocks_ao(.*)/).test(value) || RegExp(/^tyblocks_ap(.*)/).test(value)) || "object" === typeof value && null !== value && _io0(value));
|
|
268
286
|
return true;
|
|
269
|
-
}); const _io3 = input => (undefined === input.banking || "object" === typeof input.banking && null !== input.banking && false === Array.isArray(input.banking) &&
|
|
287
|
+
}); const _io3 = input => (undefined === input.banking || "object" === typeof input.banking && null !== input.banking && false === Array.isArray(input.banking) && _iu7(input.banking)) && (undefined === input.kyc || "object" === typeof input.kyc && null !== input.kyc && false === Array.isArray(input.kyc) && _iu8(input.kyc)) && (undefined === input.fx || "object" === typeof input.fx && null !== input.fx && false === Array.isArray(input.fx) && _iu9(input.fx)) && (undefined === input.username || "object" === typeof input.username && null !== input.username && false === Array.isArray(input.username) && _iu10(input.username)) && (undefined === input.assetMovement || "object" === typeof input.assetMovement && null !== input.assetMovement && false === Array.isArray(input.assetMovement) && _iu11(input.assetMovement)) && (undefined === input.cards || "object" === typeof input.cards && null !== input.cards && false === Array.isArray(input.cards) && _iu12(input.cards)) && (undefined === input.storage || "object" === typeof input.storage && null !== input.storage && false === Array.isArray(input.storage) && _iu13(input.storage)); const _io4 = input => Object.keys(input).every(key => {
|
|
288
|
+
const value = input[key];
|
|
289
|
+
if (undefined === value)
|
|
290
|
+
return true;
|
|
291
|
+
return "object" === typeof value && null !== value && _iu14(value);
|
|
292
|
+
}); const _io5 = input => "object" === typeof input.operations && null !== input.operations && false === Array.isArray(input.operations) && _iu15(input.operations) && (null !== input.currencyCodes && undefined !== input.currencyCodes && (Array.isArray(input.currencyCodes) && input.currencyCodes.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem || "object" === typeof elem && null !== elem && _io0(elem))) || "object" === typeof input.currencyCodes && null !== input.currencyCodes && _io0(input.currencyCodes))) && (null !== input.countryCodes && undefined !== input.countryCodes && (Array.isArray(input.countryCodes) && input.countryCodes.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem || "object" === typeof elem && null !== elem && _io0(elem))) || "object" === typeof input.countryCodes && null !== input.countryCodes && _io0(input.countryCodes))) && (null !== input.kycProviders && (undefined === input.kycProviders || (Array.isArray(input.kycProviders) && input.kycProviders.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem || "object" === typeof elem && null !== elem && _io0(elem))) || "object" === typeof input.kycProviders && null !== input.kycProviders && _io0(input.kycProviders)))); const _io6 = input => null !== input.createAccount && (undefined === input.createAccount || "string" === typeof input.createAccount || "object" === typeof input.createAccount && null !== input.createAccount && _io0(input.createAccount)); const _io7 = input => Object.keys(input).every(key => {
|
|
293
|
+
const value = input[key];
|
|
294
|
+
if (undefined === value)
|
|
295
|
+
return true;
|
|
296
|
+
return "object" === typeof value && null !== value && _iu16(value);
|
|
297
|
+
}); const _io8 = input => "object" === typeof input.operations && null !== input.operations && false === Array.isArray(input.operations) && _iu17(input.operations) && (null !== input.countryCodes && (undefined === input.countryCodes || (Array.isArray(input.countryCodes) && input.countryCodes.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem || "object" === typeof elem && null !== elem && _io0(elem))) || "object" === typeof input.countryCodes && null !== input.countryCodes && _io0(input.countryCodes)))) && (null !== input.ca && undefined !== input.ca && ("string" === typeof input.ca || "object" === typeof input.ca && null !== input.ca && _io0(input.ca))); const _io9 = input => null !== input.checkLocality && (undefined === input.checkLocality || "string" === typeof input.checkLocality || "object" === typeof input.checkLocality && null !== input.checkLocality && _io0(input.checkLocality)) && (null !== input.getEstimate && (undefined === input.getEstimate || "string" === typeof input.getEstimate || "object" === typeof input.getEstimate && null !== input.getEstimate && _io0(input.getEstimate))) && (null !== input.createVerification && (undefined === input.createVerification || "string" === typeof input.createVerification || "object" === typeof input.createVerification && null !== input.createVerification && _io0(input.createVerification))) && (null !== input.getCertificates && (undefined === input.getCertificates || "string" === typeof input.getCertificates || "object" === typeof input.getCertificates && null !== input.getCertificates && _io0(input.getCertificates))); const _io10 = input => Object.keys(input).every(key => {
|
|
270
298
|
const value = input[key];
|
|
271
299
|
if (undefined === value)
|
|
272
300
|
return true;
|
|
273
|
-
return "object" === typeof value && null !== value &&
|
|
274
|
-
}); const
|
|
301
|
+
return "object" === typeof value && null !== value && _iu18(value);
|
|
302
|
+
}); const _io11 = input => "object" === typeof input.operations && null !== input.operations && _iu19(input.operations) && (null !== input.from && undefined !== input.from && (Array.isArray(input.from) && input.from.every(elem => "object" === typeof elem && null !== elem && _iu0(elem)) || "object" === typeof input.from && null !== input.from && _io0(input.from))); const _io12 = input => null !== input.getEstimate && (undefined === input.getEstimate || "string" === typeof input.getEstimate || "object" === typeof input.getEstimate && null !== input.getEstimate && _io0(input.getEstimate)) && (null !== input.getQuote && undefined !== input.getQuote && ("string" === typeof input.getQuote || "object" === typeof input.getQuote && null !== input.getQuote && _io0(input.getQuote))) && (null !== input.createExchange && undefined !== input.createExchange && ("string" === typeof input.createExchange || "object" === typeof input.createExchange && null !== input.createExchange && _io0(input.createExchange))) && (null !== input.getExchangeStatus && undefined !== input.getExchangeStatus && ("string" === typeof input.getExchangeStatus || "object" === typeof input.getExchangeStatus && null !== input.getExchangeStatus && _io0(input.getExchangeStatus))); const _io13 = input => null !== input.currencyCodes && undefined !== input.currencyCodes && (Array.isArray(input.currencyCodes) && input.currencyCodes.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem && (RegExp(/^keeta_am(.*)/).test(elem) || RegExp(/^keeta_an(.*)/).test(elem) || RegExp(/^keeta_ao(.*)/).test(elem) || RegExp(/^keeta_ap(.*)/).test(elem) || RegExp(/^tyblocks_am(.*)/).test(elem) || RegExp(/^tyblocks_an(.*)/).test(elem) || RegExp(/^tyblocks_ao(.*)/).test(elem) || RegExp(/^tyblocks_ap(.*)/).test(elem)) || "object" === typeof elem && null !== elem && _io0(elem))) || "object" === typeof input.currencyCodes && null !== input.currencyCodes && _io0(input.currencyCodes)) && (null !== input.to && undefined !== input.to && (Array.isArray(input.to) && input.to.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem && (RegExp(/^keeta_am(.*)/).test(elem) || RegExp(/^keeta_an(.*)/).test(elem) || RegExp(/^keeta_ao(.*)/).test(elem) || RegExp(/^keeta_ap(.*)/).test(elem) || RegExp(/^tyblocks_am(.*)/).test(elem) || RegExp(/^tyblocks_an(.*)/).test(elem) || RegExp(/^tyblocks_ao(.*)/).test(elem) || RegExp(/^tyblocks_ap(.*)/).test(elem)) || "object" === typeof elem && null !== elem && _io0(elem))) || "object" === typeof input.to && null !== input.to && _io0(input.to))) && (null !== input.kycProviders && (undefined === input.kycProviders || (Array.isArray(input.kycProviders) && input.kycProviders.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem || "object" === typeof elem && null !== elem && _io0(elem))) || "object" === typeof input.kycProviders && null !== input.kycProviders && _io0(input.kycProviders)))); const _io14 = input => Object.keys(input).every(key => {
|
|
275
303
|
const value = input[key];
|
|
276
304
|
if (undefined === value)
|
|
277
305
|
return true;
|
|
278
|
-
return "object" === typeof value && null !== value &&
|
|
279
|
-
}); const
|
|
306
|
+
return "object" === typeof value && null !== value && _iu20(value);
|
|
307
|
+
}); const _io15 = input => "object" === typeof input.operations && null !== input.operations && _iu21(input.operations) && (null !== input.usernamePattern && (undefined === input.usernamePattern || "string" === typeof input.usernamePattern || "object" === typeof input.usernamePattern && null !== input.usernamePattern && _io0(input.usernamePattern))); const _io16 = input => null !== input.resolve && undefined !== input.resolve && ("string" === typeof input.resolve || "object" === typeof input.resolve && null !== input.resolve && _iu22(input.resolve)) && (null !== input.claim && (undefined === input.claim || "string" === typeof input.claim || "object" === typeof input.claim && null !== input.claim && _iu22(input.claim))) && (null !== input.release && (undefined === input.release || "string" === typeof input.release || "object" === typeof input.release && null !== input.release && _iu22(input.release))) && (null !== input.search && (undefined === input.search || "string" === typeof input.search || "object" === typeof input.search && null !== input.search && _iu22(input.search))); const _io17 = input => "string" === typeof input.url && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io18(input.options)); const _io18 = input => undefined === input.authentication || "object" === typeof input.authentication && null !== input.authentication && _io19(input.authentication); const _io19 = input => "keeta-account" === input.method && ("optional" === input.type || "required" === input.type || "none" === input.type); const _io20 = input => Object.keys(input).every(key => {
|
|
280
308
|
const value = input[key];
|
|
281
309
|
if (undefined === value)
|
|
282
310
|
return true;
|
|
283
|
-
return "object" === typeof value && null !== value &&
|
|
284
|
-
}); const _io11 = input => "object" === typeof input.operations && null !== input.operations && _iu16(input.operations) && (null !== input.from && undefined !== input.from && (Array.isArray(input.from) && input.from.every(elem => "object" === typeof elem && null !== elem && _iu0(elem)) || "object" === typeof input.from && null !== input.from && _io0(input.from))); const _io12 = input => null !== input.getEstimate && (undefined === input.getEstimate || "string" === typeof input.getEstimate || "object" === typeof input.getEstimate && null !== input.getEstimate && _io0(input.getEstimate)) && (null !== input.getQuote && undefined !== input.getQuote && ("string" === typeof input.getQuote || "object" === typeof input.getQuote && null !== input.getQuote && _io0(input.getQuote))) && (null !== input.createExchange && undefined !== input.createExchange && ("string" === typeof input.createExchange || "object" === typeof input.createExchange && null !== input.createExchange && _io0(input.createExchange))) && (null !== input.getExchangeStatus && undefined !== input.getExchangeStatus && ("string" === typeof input.getExchangeStatus || "object" === typeof input.getExchangeStatus && null !== input.getExchangeStatus && _io0(input.getExchangeStatus))); const _io13 = input => null !== input.currencyCodes && undefined !== input.currencyCodes && (Array.isArray(input.currencyCodes) && input.currencyCodes.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem && (RegExp(/^keeta_am(.*)/).test(elem) || RegExp(/^keeta_an(.*)/).test(elem) || RegExp(/^keeta_ao(.*)/).test(elem) || RegExp(/^keeta_ap(.*)/).test(elem) || RegExp(/^tyblocks_am(.*)/).test(elem) || RegExp(/^tyblocks_an(.*)/).test(elem) || RegExp(/^tyblocks_ao(.*)/).test(elem) || RegExp(/^tyblocks_ap(.*)/).test(elem)) || "object" === typeof elem && null !== elem && _io0(elem))) || "object" === typeof input.currencyCodes && null !== input.currencyCodes && _io0(input.currencyCodes)) && (null !== input.to && undefined !== input.to && (Array.isArray(input.to) && input.to.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem && (RegExp(/^keeta_am(.*)/).test(elem) || RegExp(/^keeta_an(.*)/).test(elem) || RegExp(/^keeta_ao(.*)/).test(elem) || RegExp(/^keeta_ap(.*)/).test(elem) || RegExp(/^tyblocks_am(.*)/).test(elem) || RegExp(/^tyblocks_an(.*)/).test(elem) || RegExp(/^tyblocks_ao(.*)/).test(elem) || RegExp(/^tyblocks_ap(.*)/).test(elem)) || "object" === typeof elem && null !== elem && _io0(elem))) || "object" === typeof input.to && null !== input.to && _io0(input.to))) && (null !== input.kycProviders && (undefined === input.kycProviders || (Array.isArray(input.kycProviders) && input.kycProviders.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem || "object" === typeof elem && null !== elem && _io0(elem))) || "object" === typeof input.kycProviders && null !== input.kycProviders && _io0(input.kycProviders)))); const _io14 = input => Object.keys(input).every(key => {
|
|
311
|
+
return "object" === typeof value && null !== value && _iu23(value);
|
|
312
|
+
}); const _io21 = input => "object" === typeof input.operations && null !== input.operations && false === Array.isArray(input.operations) && _iu24(input.operations) && (null !== input.supportedAssets && undefined !== input.supportedAssets && (Array.isArray(input.supportedAssets) && input.supportedAssets.every(elem => "object" === typeof elem && null !== elem && _iu1(elem)) || "object" === typeof input.supportedAssets && null !== input.supportedAssets && _io0(input.supportedAssets))); const _io22 = input => null !== input.initiateTransfer && (undefined === input.initiateTransfer || "string" === typeof input.initiateTransfer || "object" === typeof input.initiateTransfer && null !== input.initiateTransfer && _iu22(input.initiateTransfer)) && (null !== input.getTransferStatus && (undefined === input.getTransferStatus || "string" === typeof input.getTransferStatus || "object" === typeof input.getTransferStatus && null !== input.getTransferStatus && _iu22(input.getTransferStatus))) && (null !== input.createPersistentForwardingTemplate && (undefined === input.createPersistentForwardingTemplate || "string" === typeof input.createPersistentForwardingTemplate || "object" === typeof input.createPersistentForwardingTemplate && null !== input.createPersistentForwardingTemplate && _iu22(input.createPersistentForwardingTemplate))) && (null !== input.listPersistentForwardingTemplate && (undefined === input.listPersistentForwardingTemplate || "string" === typeof input.listPersistentForwardingTemplate || "object" === typeof input.listPersistentForwardingTemplate && null !== input.listPersistentForwardingTemplate && _iu22(input.listPersistentForwardingTemplate))) && (null !== input.createPersistentForwarding && (undefined === input.createPersistentForwarding || "string" === typeof input.createPersistentForwarding || "object" === typeof input.createPersistentForwarding && null !== input.createPersistentForwarding && _iu22(input.createPersistentForwarding))) && (null !== input.listPersistentForwarding && (undefined === input.listPersistentForwarding || "string" === typeof input.listPersistentForwarding || "object" === typeof input.listPersistentForwarding && null !== input.listPersistentForwarding && _iu22(input.listPersistentForwarding))) && (null !== input.listTransactions && (undefined === input.listTransactions || "string" === typeof input.listTransactions || "object" === typeof input.listTransactions && null !== input.listTransactions && _iu22(input.listTransactions))) && (null !== input.shareKYC && (undefined === input.shareKYC || "string" === typeof input.shareKYC || "object" === typeof input.shareKYC && null !== input.shareKYC && _iu22(input.shareKYC))); const _io23 = input => null !== input.asset && undefined !== input.asset && (true === _iv10.has(input.asset) || "string" === typeof input.asset && (RegExp(/^\$(.*)/).test(input.asset) || RegExp(/^keeta_am(.*)/).test(input.asset) || RegExp(/^keeta_an(.*)/).test(input.asset) || RegExp(/^keeta_ao(.*)/).test(input.asset) || RegExp(/^keeta_ap(.*)/).test(input.asset) || RegExp(/^tyblocks_am(.*)/).test(input.asset) || RegExp(/^tyblocks_an(.*)/).test(input.asset) || RegExp(/^tyblocks_ao(.*)/).test(input.asset) || RegExp(/^tyblocks_ap(.*)/).test(input.asset)) || (Array.isArray(input.asset) && (input.asset.length === 2 && (null !== input.asset[0] && undefined !== input.asset[0] && (true === _iv11.has(input.asset[0]) || "string" === typeof input.asset[0] && (RegExp(/^\$(.*)/).test(input.asset[0]) || RegExp(/^keeta_am(.*)/).test(input.asset[0]) || RegExp(/^keeta_an(.*)/).test(input.asset[0]) || RegExp(/^keeta_ao(.*)/).test(input.asset[0]) || RegExp(/^keeta_ap(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_am(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_an(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_ao(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_ap(.*)/).test(input.asset[0])))) && (null !== input.asset[1] && undefined !== input.asset[1] && (true === _iv12.has(input.asset[1]) || "string" === typeof input.asset[1] && (RegExp(/^\$(.*)/).test(input.asset[1]) || RegExp(/^keeta_am(.*)/).test(input.asset[1]) || RegExp(/^keeta_an(.*)/).test(input.asset[1]) || RegExp(/^keeta_ao(.*)/).test(input.asset[1]) || RegExp(/^keeta_ap(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_am(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_an(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_ao(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_ap(.*)/).test(input.asset[1]))))) || "object" === typeof input.asset && null !== input.asset && _io0(input.asset))) && (null !== input.paths && undefined !== input.paths && (Array.isArray(input.paths) && input.paths.every(elem => "object" === typeof elem && null !== elem && _iu2(elem)) || "object" === typeof input.paths && null !== input.paths && _io0(input.paths))); const _io24 = input => null !== input.pair && undefined !== input.pair && (Array.isArray(input.pair) && (input.pair.length === 2 && ("object" === typeof input.pair[0] && null !== input.pair[0] && _iu4(input.pair[0])) && ("object" === typeof input.pair[1] && null !== input.pair[1] && _iu4(input.pair[1]))) || "object" === typeof input.pair && null !== input.pair && _io0(input.pair)) && (null !== input.kycProviders && (undefined === input.kycProviders || (Array.isArray(input.kycProviders) && input.kycProviders.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem || "object" === typeof elem && null !== elem && _io0(elem))) || "object" === typeof input.kycProviders && null !== input.kycProviders && _io0(input.kycProviders)))); const _io25 = input => "object" === typeof input.rails && null !== input.rails && false === Array.isArray(input.rails) && _iu25(input.rails) && (null !== input.location && (undefined === input.location || "bank-account:us" === input.location || "bank-account:iban-swift" === input.location || "bank-account:clabe" === input.location || "bank-account:pix" === input.location || "string" === typeof input.location && (RegExp(/^chain:keeta:[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.location) || RegExp(/^chain:evm:[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.location) || RegExp(/^chain:solana:(.*)/).test(input.location) || RegExp(/^chain:bitcoin:(.*)/).test(input.location) || RegExp(/^chain:tron:(.*)/).test(input.location)) || "object" === typeof input.location && null !== input.location && _io0(input.location))) && (null !== input.id && undefined !== input.id && ("string" === typeof input.id || "object" === typeof input.id && null !== input.id && _io0(input.id))); const _io26 = input => null !== input.inbound && undefined !== input.inbound && (Array.isArray(input.inbound) && input.inbound.every(elem => null !== elem && undefined !== elem && (true === _iv16.has(elem) || "object" === typeof elem && null !== elem && _iu3(elem))) || "object" === typeof input.inbound && null !== input.inbound && _io0(input.inbound)) && (null !== input.outbound && (undefined === input.outbound || (Array.isArray(input.outbound) && input.outbound.every(elem => null !== elem && undefined !== elem && (true === _iv18.has(elem) || "object" === typeof elem && null !== elem && _iu3(elem))) || "object" === typeof input.outbound && null !== input.outbound && _io0(input.outbound)))) && (null !== input.common && (undefined === input.common || (Array.isArray(input.common) && input.common.every(elem => null !== elem && undefined !== elem && (true === _iv20.has(elem) || "object" === typeof elem && null !== elem && _iu3(elem))) || "object" === typeof input.common && null !== input.common && _io0(input.common)))); const _io27 = input => true === _iv21.has(input.rail) && (null !== input.estimatedTransferTimeMs && (undefined === input.estimatedTransferTimeMs || "number" === typeof input.estimatedTransferTimeMs || Array.isArray(input.estimatedTransferTimeMs) && (input.estimatedTransferTimeMs.length === 2 && "number" === typeof input.estimatedTransferTimeMs[0] && "number" === typeof input.estimatedTransferTimeMs[1]))) && (undefined === input.estimatedTransferValueRange || "object" === typeof input.estimatedTransferValueRange && null !== input.estimatedTransferValueRange && _io28(input.estimatedTransferValueRange)) && (undefined === input.estimatedFee || "object" === typeof input.estimatedFee && null !== input.estimatedFee && false === Array.isArray(input.estimatedFee) && _io29(input.estimatedFee)); const _io28 = input => Array.isArray(input.value) && (input.value.length === 2 && (undefined === input.value[0] || "string" === typeof input.value[0]) && (undefined === input.value[1] || "string" === typeof input.value[1])) && (null !== input.asset && (undefined === input.asset || true === _iv22.has(input.asset) || "string" === typeof input.asset && (RegExp(/^\$(.*)/).test(input.asset) || RegExp(/^keeta_am(.*)/).test(input.asset) || RegExp(/^keeta_an(.*)/).test(input.asset) || RegExp(/^keeta_ao(.*)/).test(input.asset) || RegExp(/^keeta_ap(.*)/).test(input.asset) || RegExp(/^tyblocks_am(.*)/).test(input.asset) || RegExp(/^tyblocks_an(.*)/).test(input.asset) || RegExp(/^tyblocks_ao(.*)/).test(input.asset) || RegExp(/^tyblocks_ap(.*)/).test(input.asset) || RegExp(/^solana:(.*)/).test(input.asset) || RegExp(/^evm:0x(.*)/).test(input.asset) || RegExp(/^tron:(.*)/).test(input.asset)))); const _io29 = input => (undefined === input.fixedFee || "object" === typeof input.fixedFee && null !== input.fixedFee && _io30(input.fixedFee)) && (undefined === input.variableFeeBps || "number" === typeof input.variableFeeBps); const _io30 = input => "string" === typeof input.value && (null !== input.asset && (undefined === input.asset || true === _iv23.has(input.asset) || "string" === typeof input.asset && (RegExp(/^\$(.*)/).test(input.asset) || RegExp(/^keeta_am(.*)/).test(input.asset) || RegExp(/^keeta_an(.*)/).test(input.asset) || RegExp(/^keeta_ao(.*)/).test(input.asset) || RegExp(/^keeta_ap(.*)/).test(input.asset) || RegExp(/^tyblocks_am(.*)/).test(input.asset) || RegExp(/^tyblocks_an(.*)/).test(input.asset) || RegExp(/^tyblocks_ao(.*)/).test(input.asset) || RegExp(/^tyblocks_ap(.*)/).test(input.asset) || RegExp(/^solana:(.*)/).test(input.asset) || RegExp(/^evm:0x(.*)/).test(input.asset) || RegExp(/^tron:(.*)/).test(input.asset)))); const _io31 = input => null !== input.inbound && (undefined === input.inbound || (Array.isArray(input.inbound) && input.inbound.every(elem => null !== elem && undefined !== elem && (true === _iv25.has(elem) || "object" === typeof elem && null !== elem && _iu3(elem))) || "object" === typeof input.inbound && null !== input.inbound && _io0(input.inbound))) && (null !== input.outbound && undefined !== input.outbound && (Array.isArray(input.outbound) && input.outbound.every(elem => null !== elem && undefined !== elem && (true === _iv27.has(elem) || "object" === typeof elem && null !== elem && _iu3(elem))) || "object" === typeof input.outbound && null !== input.outbound && _io0(input.outbound))) && (null !== input.common && (undefined === input.common || (Array.isArray(input.common) && input.common.every(elem => null !== elem && undefined !== elem && (true === _iv29.has(elem) || "object" === typeof elem && null !== elem && _iu3(elem))) || "object" === typeof input.common && null !== input.common && _io0(input.common)))); const _io32 = input => (undefined === input.inbound || "object" === typeof input.inbound && null !== input.inbound && _io0(input.inbound)) && (undefined === input.outbound || "object" === typeof input.outbound && null !== input.outbound && _io0(input.outbound)) && (null !== input.common && (undefined === input.common || (Array.isArray(input.common) && input.common.every(elem => null !== elem && undefined !== elem && (true === _iv31.has(elem) || "object" === typeof elem && null !== elem && _iu3(elem))) || "object" === typeof input.common && null !== input.common && _io0(input.common)))); const _io33 = input => Object.keys(input).every(key => {
|
|
285
313
|
const value = input[key];
|
|
286
314
|
if (undefined === value)
|
|
287
315
|
return true;
|
|
288
|
-
return "object" === typeof value && null !== value &&
|
|
289
|
-
}); const
|
|
316
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu26(value);
|
|
317
|
+
}); const _io34 = input => null !== input.workInProgress && (undefined === input.workInProgress || true === input.workInProgress || "object" === typeof input.workInProgress && null !== input.workInProgress && _io0(input.workInProgress)); const _io35 = input => Object.keys(input).every(key => {
|
|
290
318
|
const value = input[key];
|
|
291
319
|
if (undefined === value)
|
|
292
320
|
return true;
|
|
293
|
-
return "object" === typeof value && null !== value &&
|
|
294
|
-
}); const
|
|
321
|
+
return "object" === typeof value && null !== value && _iu27(value);
|
|
322
|
+
}); const _io36 = input => "object" === typeof input.operations && null !== input.operations && false === Array.isArray(input.operations) && _iu28(input.operations) && (null !== input.anchorAccount && (undefined === input.anchorAccount || "string" === typeof input.anchorAccount || "object" === typeof input.anchorAccount && null !== input.anchorAccount && _io0(input.anchorAccount))) && (undefined === input.quotas || "object" === typeof input.quotas && null !== input.quotas && _iu29(input.quotas)) && (null !== input.signedUrlDefaultTTL && (undefined === input.signedUrlDefaultTTL || "number" === typeof input.signedUrlDefaultTTL || "object" === typeof input.signedUrlDefaultTTL && null !== input.signedUrlDefaultTTL && _io0(input.signedUrlDefaultTTL))) && (null !== input.searchableFields && (undefined === input.searchableFields || (Array.isArray(input.searchableFields) && input.searchableFields.every(elem => null !== elem && undefined !== elem && ("tags" === elem || "owner" === elem || "visibility" === elem || "pathPrefix" === elem || "object" === typeof elem && null !== elem && _io0(elem))) || "object" === typeof input.searchableFields && null !== input.searchableFields && _io0(input.searchableFields)))); const _io37 = input => null !== input.put && (undefined === input.put || "string" === typeof input.put || "object" === typeof input.put && null !== input.put && _iu22(input.put)) && (null !== input.get && (undefined === input.get || "string" === typeof input.get || "object" === typeof input.get && null !== input.get && _iu22(input.get))) && (null !== input["delete"] && (undefined === input["delete"] || "string" === typeof input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && _iu22(input["delete"]))) && (null !== input.metadata && (undefined === input.metadata || "string" === typeof input.metadata || "object" === typeof input.metadata && null !== input.metadata && _iu22(input.metadata))) && (null !== input.search && (undefined === input.search || "string" === typeof input.search || "object" === typeof input.search && null !== input.search && _iu22(input.search))) && (null !== input["public"] && (undefined === input["public"] || "string" === typeof input["public"] || "object" === typeof input["public"] && null !== input["public"] && _iu22(input["public"]))) && (null !== input.quota && (undefined === input.quota || "string" === typeof input.quota || "object" === typeof input.quota && null !== input.quota && _iu22(input.quota))); const _io38 = input => null !== input.maxObjectSize && undefined !== input.maxObjectSize && ("number" === typeof input.maxObjectSize || "object" === typeof input.maxObjectSize && null !== input.maxObjectSize && _io0(input.maxObjectSize)) && (null !== input.maxObjectsPerUser && undefined !== input.maxObjectsPerUser && ("number" === typeof input.maxObjectsPerUser || "object" === typeof input.maxObjectsPerUser && null !== input.maxObjectsPerUser && _io0(input.maxObjectsPerUser))) && (null !== input.maxStoragePerUser && undefined !== input.maxStoragePerUser && ("number" === typeof input.maxStoragePerUser || "object" === typeof input.maxStoragePerUser && null !== input.maxStoragePerUser && _io0(input.maxStoragePerUser))) && (null !== input.maxSearchLimit && undefined !== input.maxSearchLimit && ("number" === typeof input.maxSearchLimit || "object" === typeof input.maxSearchLimit && null !== input.maxSearchLimit && _io0(input.maxSearchLimit))) && (null !== input.maxSignedUrlTTL && undefined !== input.maxSignedUrlTTL && ("number" === typeof input.maxSignedUrlTTL || "object" === typeof input.maxSignedUrlTTL && null !== input.maxSignedUrlTTL && _io0(input.maxSignedUrlTTL))); const _iu0 = input => (() => {
|
|
295
323
|
if (undefined !== input.external)
|
|
296
324
|
return _io0(input);
|
|
297
325
|
else if (undefined !== input.currencyCodes)
|
|
@@ -302,132 +330,182 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
302
330
|
if (undefined !== input.external)
|
|
303
331
|
return _io0(input);
|
|
304
332
|
else if (undefined !== input.asset)
|
|
305
|
-
return
|
|
333
|
+
return _io23(input);
|
|
306
334
|
else
|
|
307
335
|
return false;
|
|
308
336
|
})(); const _iu2 = input => (() => {
|
|
309
337
|
if (undefined !== input.external)
|
|
310
338
|
return _io0(input);
|
|
311
339
|
else if (undefined !== input.pair)
|
|
312
|
-
return
|
|
340
|
+
return _io24(input);
|
|
313
341
|
else
|
|
314
342
|
return false;
|
|
315
343
|
})(); const _iu3 = input => (() => {
|
|
316
|
-
if (undefined !== input.
|
|
344
|
+
if (undefined !== input.rail)
|
|
345
|
+
return _io27(input);
|
|
346
|
+
else if (undefined !== input.external)
|
|
317
347
|
return _io0(input);
|
|
318
|
-
else if (undefined !== input.location)
|
|
319
|
-
return _io22(input);
|
|
320
348
|
else
|
|
321
349
|
return false;
|
|
322
350
|
})(); const _iu4 = input => (() => {
|
|
323
351
|
if (undefined !== input.external)
|
|
324
352
|
return _io0(input);
|
|
353
|
+
else if (undefined !== input.rails)
|
|
354
|
+
return _io25(input);
|
|
325
355
|
else
|
|
326
|
-
return
|
|
356
|
+
return false;
|
|
327
357
|
})(); const _iu5 = input => (() => {
|
|
328
358
|
if (undefined !== input.external)
|
|
329
359
|
return _io0(input);
|
|
330
360
|
else
|
|
331
|
-
return
|
|
361
|
+
return _io2(input);
|
|
332
362
|
})(); const _iu6 = input => (() => {
|
|
333
363
|
if (undefined !== input.external)
|
|
334
364
|
return _io0(input);
|
|
335
365
|
else
|
|
336
|
-
return
|
|
366
|
+
return _io3(input);
|
|
337
367
|
})(); const _iu7 = input => (() => {
|
|
338
368
|
if (undefined !== input.external)
|
|
339
369
|
return _io0(input);
|
|
340
370
|
else
|
|
341
|
-
return
|
|
371
|
+
return _io4(input);
|
|
342
372
|
})(); const _iu8 = input => (() => {
|
|
343
373
|
if (undefined !== input.external)
|
|
344
374
|
return _io0(input);
|
|
345
375
|
else
|
|
346
|
-
return
|
|
376
|
+
return _io7(input);
|
|
347
377
|
})(); const _iu9 = input => (() => {
|
|
348
378
|
if (undefined !== input.external)
|
|
349
379
|
return _io0(input);
|
|
350
380
|
else
|
|
351
|
-
return
|
|
381
|
+
return _io10(input);
|
|
352
382
|
})(); const _iu10 = input => (() => {
|
|
353
383
|
if (undefined !== input.external)
|
|
354
384
|
return _io0(input);
|
|
355
385
|
else
|
|
356
|
-
return
|
|
386
|
+
return _io14(input);
|
|
357
387
|
})(); const _iu11 = input => (() => {
|
|
388
|
+
if (undefined !== input.external)
|
|
389
|
+
return _io0(input);
|
|
390
|
+
else
|
|
391
|
+
return _io20(input);
|
|
392
|
+
})(); const _iu12 = input => (() => {
|
|
393
|
+
if (undefined !== input.external)
|
|
394
|
+
return _io0(input);
|
|
395
|
+
else
|
|
396
|
+
return _io33(input);
|
|
397
|
+
})(); const _iu13 = input => (() => {
|
|
398
|
+
if (undefined !== input.external)
|
|
399
|
+
return _io0(input);
|
|
400
|
+
else
|
|
401
|
+
return _io35(input);
|
|
402
|
+
})(); const _iu14 = input => (() => {
|
|
358
403
|
if (undefined !== input.external)
|
|
359
404
|
return _io0(input);
|
|
360
405
|
else if (undefined !== input.operations)
|
|
361
406
|
return _io5(input);
|
|
362
407
|
else
|
|
363
408
|
return false;
|
|
364
|
-
})(); const
|
|
409
|
+
})(); const _iu15 = input => (() => {
|
|
365
410
|
if (undefined !== input.external)
|
|
366
411
|
return _io0(input);
|
|
367
412
|
else
|
|
368
413
|
return _io6(input);
|
|
369
|
-
})(); const
|
|
414
|
+
})(); const _iu16 = input => (() => {
|
|
370
415
|
if (undefined !== input.external)
|
|
371
416
|
return _io0(input);
|
|
372
417
|
else if (undefined !== input.operations)
|
|
373
418
|
return _io8(input);
|
|
374
419
|
else
|
|
375
420
|
return false;
|
|
376
|
-
})(); const
|
|
421
|
+
})(); const _iu17 = input => (() => {
|
|
377
422
|
if (undefined !== input.external)
|
|
378
423
|
return _io0(input);
|
|
379
424
|
else
|
|
380
425
|
return _io9(input);
|
|
381
|
-
})(); const
|
|
426
|
+
})(); const _iu18 = input => (() => {
|
|
382
427
|
if (undefined !== input.external)
|
|
383
428
|
return _io0(input);
|
|
384
429
|
else if (undefined !== input.operations)
|
|
385
430
|
return _io11(input);
|
|
386
431
|
else
|
|
387
432
|
return false;
|
|
388
|
-
})(); const
|
|
433
|
+
})(); const _iu19 = input => (() => {
|
|
389
434
|
if (undefined !== input.external)
|
|
390
435
|
return _io0(input);
|
|
391
436
|
else if (undefined !== input.getQuote)
|
|
392
437
|
return _io12(input);
|
|
393
438
|
else
|
|
394
439
|
return false;
|
|
395
|
-
})(); const
|
|
440
|
+
})(); const _iu20 = input => (() => {
|
|
396
441
|
if (undefined !== input.external)
|
|
397
442
|
return _io0(input);
|
|
398
443
|
else if (undefined !== input.operations)
|
|
399
444
|
return _io15(input);
|
|
400
445
|
else
|
|
401
446
|
return false;
|
|
402
|
-
})(); const
|
|
447
|
+
})(); const _iu21 = input => (() => {
|
|
403
448
|
if (undefined !== input.external)
|
|
404
449
|
return _io0(input);
|
|
405
|
-
else
|
|
450
|
+
else if (undefined !== input.resolve)
|
|
406
451
|
return _io16(input);
|
|
407
|
-
|
|
452
|
+
else
|
|
453
|
+
return false;
|
|
454
|
+
})(); const _iu22 = input => (() => {
|
|
408
455
|
if (undefined !== input.external)
|
|
409
456
|
return _io0(input);
|
|
410
457
|
else
|
|
411
458
|
return _io17(input);
|
|
412
|
-
})(); const
|
|
459
|
+
})(); const _iu23 = input => (() => {
|
|
460
|
+
if (undefined !== input.external)
|
|
461
|
+
return _io0(input);
|
|
462
|
+
else if (undefined !== input.operations)
|
|
463
|
+
return _io21(input);
|
|
464
|
+
else
|
|
465
|
+
return false;
|
|
466
|
+
})(); const _iu24 = input => (() => {
|
|
467
|
+
if (undefined !== input.external)
|
|
468
|
+
return _io0(input);
|
|
469
|
+
else
|
|
470
|
+
return _io22(input);
|
|
471
|
+
})(); const _iu25 = input => (() => {
|
|
413
472
|
if (undefined !== input.external)
|
|
414
473
|
return _io0(input);
|
|
415
474
|
else
|
|
416
475
|
return (() => {
|
|
417
|
-
if (
|
|
418
|
-
return
|
|
419
|
-
if (
|
|
420
|
-
return
|
|
421
|
-
if (
|
|
422
|
-
return
|
|
476
|
+
if (_io32(input))
|
|
477
|
+
return _io32(input);
|
|
478
|
+
if (_io31(input))
|
|
479
|
+
return _io31(input);
|
|
480
|
+
if (_io26(input))
|
|
481
|
+
return _io26(input);
|
|
423
482
|
return false;
|
|
424
483
|
})();
|
|
425
|
-
})(); const
|
|
484
|
+
})(); const _iu26 = input => (() => {
|
|
426
485
|
if (undefined !== input.external)
|
|
427
486
|
return _io0(input);
|
|
428
487
|
else
|
|
429
|
-
return
|
|
430
|
-
})(); const
|
|
488
|
+
return _io34(input);
|
|
489
|
+
})(); const _iu27 = input => (() => {
|
|
490
|
+
if (undefined !== input.external)
|
|
491
|
+
return _io0(input);
|
|
492
|
+
else if (undefined !== input.operations)
|
|
493
|
+
return _io36(input);
|
|
494
|
+
else
|
|
495
|
+
return false;
|
|
496
|
+
})(); const _iu28 = input => (() => {
|
|
497
|
+
if (undefined !== input.external)
|
|
498
|
+
return _io0(input);
|
|
499
|
+
else
|
|
500
|
+
return _io37(input);
|
|
501
|
+
})(); const _iu29 = input => (() => {
|
|
502
|
+
if (undefined !== input.external)
|
|
503
|
+
return _io0(input);
|
|
504
|
+
else if (undefined !== input.maxObjectSize)
|
|
505
|
+
return _io38(input);
|
|
506
|
+
else
|
|
507
|
+
return false;
|
|
508
|
+
})(); const _iu30 = input => (() => {
|
|
431
509
|
if (undefined !== input.external)
|
|
432
510
|
return _io0(input);
|
|
433
511
|
else if (undefined !== input.version)
|
|
@@ -469,7 +547,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
469
547
|
path: _path + ".currencyMap",
|
|
470
548
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>)",
|
|
471
549
|
value: input.currencyMap
|
|
472
|
-
}, _errorFactory)) &&
|
|
550
|
+
}, _errorFactory)) && _au5(input.currencyMap, _path + ".currencyMap", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
473
551
|
method: "createAssert",
|
|
474
552
|
path: _path + ".currencyMap",
|
|
475
553
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>)",
|
|
@@ -479,7 +557,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
479
557
|
path: _path + ".services",
|
|
480
558
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o1)",
|
|
481
559
|
value: input.services
|
|
482
|
-
}, _errorFactory)) &&
|
|
560
|
+
}, _errorFactory)) && _au6(input.services, _path + ".services", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
483
561
|
method: "createAssert",
|
|
484
562
|
path: _path + ".services",
|
|
485
563
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o1)",
|
|
@@ -3018,7 +3096,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3018
3096
|
path: _path + ".banking",
|
|
3019
3097
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o2 | undefined)",
|
|
3020
3098
|
value: input.banking
|
|
3021
|
-
}, _errorFactory)) &&
|
|
3099
|
+
}, _errorFactory)) && _au7(input.banking, _path + ".banking", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3022
3100
|
method: "createAssert",
|
|
3023
3101
|
path: _path + ".banking",
|
|
3024
3102
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o2 | undefined)",
|
|
@@ -3028,7 +3106,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3028
3106
|
path: _path + ".kyc",
|
|
3029
3107
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o5 | undefined)",
|
|
3030
3108
|
value: input.kyc
|
|
3031
|
-
}, _errorFactory)) &&
|
|
3109
|
+
}, _errorFactory)) && _au8(input.kyc, _path + ".kyc", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3032
3110
|
method: "createAssert",
|
|
3033
3111
|
path: _path + ".kyc",
|
|
3034
3112
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o5 | undefined)",
|
|
@@ -3038,31 +3116,51 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3038
3116
|
path: _path + ".fx",
|
|
3039
3117
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o8 | undefined)",
|
|
3040
3118
|
value: input.fx
|
|
3041
|
-
}, _errorFactory)) &&
|
|
3119
|
+
}, _errorFactory)) && _au9(input.fx, _path + ".fx", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3042
3120
|
method: "createAssert",
|
|
3043
3121
|
path: _path + ".fx",
|
|
3044
3122
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o8 | undefined)",
|
|
3045
3123
|
value: input.fx
|
|
3124
|
+
}, _errorFactory)) && (undefined === input.username || ("object" === typeof input.username && null !== input.username && false === Array.isArray(input.username) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3125
|
+
method: "createAssert",
|
|
3126
|
+
path: _path + ".username",
|
|
3127
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o12 | undefined)",
|
|
3128
|
+
value: input.username
|
|
3129
|
+
}, _errorFactory)) && _au10(input.username, _path + ".username", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3130
|
+
method: "createAssert",
|
|
3131
|
+
path: _path + ".username",
|
|
3132
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o12 | undefined)",
|
|
3133
|
+
value: input.username
|
|
3046
3134
|
}, _errorFactory)) && (undefined === input.assetMovement || ("object" === typeof input.assetMovement && null !== input.assetMovement && false === Array.isArray(input.assetMovement) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3047
3135
|
method: "createAssert",
|
|
3048
3136
|
path: _path + ".assetMovement",
|
|
3049
|
-
expected: "(ExternalURL | ToJSONValuizableObject<__type>.
|
|
3137
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o15 | undefined)",
|
|
3050
3138
|
value: input.assetMovement
|
|
3051
|
-
}, _errorFactory)) &&
|
|
3139
|
+
}, _errorFactory)) && _au11(input.assetMovement, _path + ".assetMovement", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3052
3140
|
method: "createAssert",
|
|
3053
3141
|
path: _path + ".assetMovement",
|
|
3054
|
-
expected: "(ExternalURL | ToJSONValuizableObject<__type>.
|
|
3142
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o15 | undefined)",
|
|
3055
3143
|
value: input.assetMovement
|
|
3056
3144
|
}, _errorFactory)) && (undefined === input.cards || ("object" === typeof input.cards && null !== input.cards && false === Array.isArray(input.cards) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3057
3145
|
method: "createAssert",
|
|
3058
3146
|
path: _path + ".cards",
|
|
3059
|
-
expected: "(ExternalURL | ToJSONValuizableObject<__type>.
|
|
3147
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o18 | undefined)",
|
|
3060
3148
|
value: input.cards
|
|
3061
|
-
}, _errorFactory)) &&
|
|
3149
|
+
}, _errorFactory)) && _au12(input.cards, _path + ".cards", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3062
3150
|
method: "createAssert",
|
|
3063
3151
|
path: _path + ".cards",
|
|
3064
|
-
expected: "(ExternalURL | ToJSONValuizableObject<__type>.
|
|
3152
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o18 | undefined)",
|
|
3065
3153
|
value: input.cards
|
|
3154
|
+
}, _errorFactory)) && (undefined === input.storage || ("object" === typeof input.storage && null !== input.storage && false === Array.isArray(input.storage) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3155
|
+
method: "createAssert",
|
|
3156
|
+
path: _path + ".storage",
|
|
3157
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o20 | undefined)",
|
|
3158
|
+
value: input.storage
|
|
3159
|
+
}, _errorFactory)) && _au13(input.storage, _path + ".storage", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3160
|
+
method: "createAssert",
|
|
3161
|
+
path: _path + ".storage",
|
|
3162
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o20 | undefined)",
|
|
3163
|
+
value: input.storage
|
|
3066
3164
|
}, _errorFactory)); const _ao4 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
3067
3165
|
const value = input[key];
|
|
3068
3166
|
if (undefined === value)
|
|
@@ -3072,7 +3170,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3072
3170
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
3073
3171
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o3)",
|
|
3074
3172
|
value: value
|
|
3075
|
-
}, _errorFactory)) &&
|
|
3173
|
+
}, _errorFactory)) && _au14(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3076
3174
|
method: "createAssert",
|
|
3077
3175
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
3078
3176
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o3)",
|
|
@@ -3083,7 +3181,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3083
3181
|
path: _path + ".operations",
|
|
3084
3182
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o4)",
|
|
3085
3183
|
value: input.operations
|
|
3086
|
-
}, _errorFactory)) &&
|
|
3184
|
+
}, _errorFactory)) && _au15(input.operations, _path + ".operations", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3087
3185
|
method: "createAssert",
|
|
3088
3186
|
path: _path + ".operations",
|
|
3089
3187
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o4)",
|
|
@@ -3098,24 +3196,24 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3098
3196
|
path: _path + ".currencyCodes",
|
|
3099
3197
|
expected: "(Array<string | ExternalURL> | ExternalURL)",
|
|
3100
3198
|
value: input.currencyCodes
|
|
3101
|
-
}, _errorFactory)) && (Array.isArray(input.currencyCodes) && input.currencyCodes.every((elem,
|
|
3199
|
+
}, _errorFactory)) && (Array.isArray(input.currencyCodes) && input.currencyCodes.every((elem, _index33) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3102
3200
|
method: "createAssert",
|
|
3103
|
-
path: _path + ".currencyCodes[" +
|
|
3201
|
+
path: _path + ".currencyCodes[" + _index33 + "]",
|
|
3104
3202
|
expected: "(ExternalURL | string)",
|
|
3105
3203
|
value: elem
|
|
3106
3204
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3107
3205
|
method: "createAssert",
|
|
3108
|
-
path: _path + ".currencyCodes[" +
|
|
3206
|
+
path: _path + ".currencyCodes[" + _index33 + "]",
|
|
3109
3207
|
expected: "(ExternalURL | string)",
|
|
3110
3208
|
value: elem
|
|
3111
3209
|
}, _errorFactory)) && ("string" === typeof elem || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3112
3210
|
method: "createAssert",
|
|
3113
|
-
path: _path + ".currencyCodes[" +
|
|
3211
|
+
path: _path + ".currencyCodes[" + _index33 + "]",
|
|
3114
3212
|
expected: "(ExternalURL | string)",
|
|
3115
3213
|
value: elem
|
|
3116
|
-
}, _errorFactory)) && _ao0(elem, _path + ".currencyCodes[" +
|
|
3214
|
+
}, _errorFactory)) && _ao0(elem, _path + ".currencyCodes[" + _index33 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3117
3215
|
method: "createAssert",
|
|
3118
|
-
path: _path + ".currencyCodes[" +
|
|
3216
|
+
path: _path + ".currencyCodes[" + _index33 + "]",
|
|
3119
3217
|
expected: "(ExternalURL | string)",
|
|
3120
3218
|
value: elem
|
|
3121
3219
|
}, _errorFactory))) || "object" === typeof input.currencyCodes && null !== input.currencyCodes && _ao0(input.currencyCodes, _path + ".currencyCodes", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -3138,24 +3236,24 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3138
3236
|
path: _path + ".countryCodes",
|
|
3139
3237
|
expected: "(Array<string | ExternalURL> | ExternalURL)",
|
|
3140
3238
|
value: input.countryCodes
|
|
3141
|
-
}, _errorFactory)) && (Array.isArray(input.countryCodes) && input.countryCodes.every((elem,
|
|
3239
|
+
}, _errorFactory)) && (Array.isArray(input.countryCodes) && input.countryCodes.every((elem, _index34) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3142
3240
|
method: "createAssert",
|
|
3143
|
-
path: _path + ".countryCodes[" +
|
|
3241
|
+
path: _path + ".countryCodes[" + _index34 + "]",
|
|
3144
3242
|
expected: "(ExternalURL | string)",
|
|
3145
3243
|
value: elem
|
|
3146
3244
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3147
3245
|
method: "createAssert",
|
|
3148
|
-
path: _path + ".countryCodes[" +
|
|
3246
|
+
path: _path + ".countryCodes[" + _index34 + "]",
|
|
3149
3247
|
expected: "(ExternalURL | string)",
|
|
3150
3248
|
value: elem
|
|
3151
3249
|
}, _errorFactory)) && ("string" === typeof elem || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3152
3250
|
method: "createAssert",
|
|
3153
|
-
path: _path + ".countryCodes[" +
|
|
3251
|
+
path: _path + ".countryCodes[" + _index34 + "]",
|
|
3154
3252
|
expected: "(ExternalURL | string)",
|
|
3155
3253
|
value: elem
|
|
3156
|
-
}, _errorFactory)) && _ao0(elem, _path + ".countryCodes[" +
|
|
3254
|
+
}, _errorFactory)) && _ao0(elem, _path + ".countryCodes[" + _index34 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3157
3255
|
method: "createAssert",
|
|
3158
|
-
path: _path + ".countryCodes[" +
|
|
3256
|
+
path: _path + ".countryCodes[" + _index34 + "]",
|
|
3159
3257
|
expected: "(ExternalURL | string)",
|
|
3160
3258
|
value: elem
|
|
3161
3259
|
}, _errorFactory))) || "object" === typeof input.countryCodes && null !== input.countryCodes && _ao0(input.countryCodes, _path + ".countryCodes", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -3173,24 +3271,24 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3173
3271
|
path: _path + ".kycProviders",
|
|
3174
3272
|
expected: "(Array<string | ExternalURL> | ExternalURL | undefined)",
|
|
3175
3273
|
value: input.kycProviders
|
|
3176
|
-
}, _errorFactory)) && (undefined === input.kycProviders || (Array.isArray(input.kycProviders) && input.kycProviders.every((elem,
|
|
3274
|
+
}, _errorFactory)) && (undefined === input.kycProviders || (Array.isArray(input.kycProviders) && input.kycProviders.every((elem, _index35) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3177
3275
|
method: "createAssert",
|
|
3178
|
-
path: _path + ".kycProviders[" +
|
|
3276
|
+
path: _path + ".kycProviders[" + _index35 + "]",
|
|
3179
3277
|
expected: "(ExternalURL | string)",
|
|
3180
3278
|
value: elem
|
|
3181
3279
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3182
3280
|
method: "createAssert",
|
|
3183
|
-
path: _path + ".kycProviders[" +
|
|
3281
|
+
path: _path + ".kycProviders[" + _index35 + "]",
|
|
3184
3282
|
expected: "(ExternalURL | string)",
|
|
3185
3283
|
value: elem
|
|
3186
3284
|
}, _errorFactory)) && ("string" === typeof elem || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3187
3285
|
method: "createAssert",
|
|
3188
|
-
path: _path + ".kycProviders[" +
|
|
3286
|
+
path: _path + ".kycProviders[" + _index35 + "]",
|
|
3189
3287
|
expected: "(ExternalURL | string)",
|
|
3190
3288
|
value: elem
|
|
3191
|
-
}, _errorFactory)) && _ao0(elem, _path + ".kycProviders[" +
|
|
3289
|
+
}, _errorFactory)) && _ao0(elem, _path + ".kycProviders[" + _index35 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3192
3290
|
method: "createAssert",
|
|
3193
|
-
path: _path + ".kycProviders[" +
|
|
3291
|
+
path: _path + ".kycProviders[" + _index35 + "]",
|
|
3194
3292
|
expected: "(ExternalURL | string)",
|
|
3195
3293
|
value: elem
|
|
3196
3294
|
}, _errorFactory))) || "object" === typeof input.kycProviders && null !== input.kycProviders && _ao0(input.kycProviders, _path + ".kycProviders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -3227,7 +3325,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3227
3325
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
3228
3326
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o6)",
|
|
3229
3327
|
value: value
|
|
3230
|
-
}, _errorFactory)) &&
|
|
3328
|
+
}, _errorFactory)) && _au16(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3231
3329
|
method: "createAssert",
|
|
3232
3330
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
3233
3331
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o6)",
|
|
@@ -3238,7 +3336,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3238
3336
|
path: _path + ".operations",
|
|
3239
3337
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o7)",
|
|
3240
3338
|
value: input.operations
|
|
3241
|
-
}, _errorFactory)) &&
|
|
3339
|
+
}, _errorFactory)) && _au17(input.operations, _path + ".operations", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3242
3340
|
method: "createAssert",
|
|
3243
3341
|
path: _path + ".operations",
|
|
3244
3342
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o7)",
|
|
@@ -3248,24 +3346,24 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3248
3346
|
path: _path + ".countryCodes",
|
|
3249
3347
|
expected: "(Array<string | ExternalURL> | ExternalURL | undefined)",
|
|
3250
3348
|
value: input.countryCodes
|
|
3251
|
-
}, _errorFactory)) && (undefined === input.countryCodes || (Array.isArray(input.countryCodes) && input.countryCodes.every((elem,
|
|
3349
|
+
}, _errorFactory)) && (undefined === input.countryCodes || (Array.isArray(input.countryCodes) && input.countryCodes.every((elem, _index36) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3252
3350
|
method: "createAssert",
|
|
3253
|
-
path: _path + ".countryCodes[" +
|
|
3351
|
+
path: _path + ".countryCodes[" + _index36 + "]",
|
|
3254
3352
|
expected: "(ExternalURL | string)",
|
|
3255
3353
|
value: elem
|
|
3256
3354
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3257
3355
|
method: "createAssert",
|
|
3258
|
-
path: _path + ".countryCodes[" +
|
|
3356
|
+
path: _path + ".countryCodes[" + _index36 + "]",
|
|
3259
3357
|
expected: "(ExternalURL | string)",
|
|
3260
3358
|
value: elem
|
|
3261
3359
|
}, _errorFactory)) && ("string" === typeof elem || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3262
3360
|
method: "createAssert",
|
|
3263
|
-
path: _path + ".countryCodes[" +
|
|
3361
|
+
path: _path + ".countryCodes[" + _index36 + "]",
|
|
3264
3362
|
expected: "(ExternalURL | string)",
|
|
3265
3363
|
value: elem
|
|
3266
|
-
}, _errorFactory)) && _ao0(elem, _path + ".countryCodes[" +
|
|
3364
|
+
}, _errorFactory)) && _ao0(elem, _path + ".countryCodes[" + _index36 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3267
3365
|
method: "createAssert",
|
|
3268
|
-
path: _path + ".countryCodes[" +
|
|
3366
|
+
path: _path + ".countryCodes[" + _index36 + "]",
|
|
3269
3367
|
expected: "(ExternalURL | string)",
|
|
3270
3368
|
value: elem
|
|
3271
3369
|
}, _errorFactory))) || "object" === typeof input.countryCodes && null !== input.countryCodes && _ao0(input.countryCodes, _path + ".countryCodes", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -3367,7 +3465,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3367
3465
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
3368
3466
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o9)",
|
|
3369
3467
|
value: value
|
|
3370
|
-
}, _errorFactory)) &&
|
|
3468
|
+
}, _errorFactory)) && _au18(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3371
3469
|
method: "createAssert",
|
|
3372
3470
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
3373
3471
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o9)",
|
|
@@ -3378,7 +3476,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3378
3476
|
path: _path + ".operations",
|
|
3379
3477
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o10)",
|
|
3380
3478
|
value: input.operations
|
|
3381
|
-
}, _errorFactory)) &&
|
|
3479
|
+
}, _errorFactory)) && _au19(input.operations, _path + ".operations", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3382
3480
|
method: "createAssert",
|
|
3383
3481
|
path: _path + ".operations",
|
|
3384
3482
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o10)",
|
|
@@ -3393,14 +3491,14 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3393
3491
|
path: _path + ".from",
|
|
3394
3492
|
expected: "(Array<ExternalURL | ToJSONValuizableObject<{ currencyCodes: TokenPublicKeyString[]; to: TokenPublicKeyString[]; kycProviders?: string[]; }>> | ExternalURL)",
|
|
3395
3493
|
value: input.from
|
|
3396
|
-
}, _errorFactory)) && (Array.isArray(input.from) && input.from.every((elem,
|
|
3494
|
+
}, _errorFactory)) && (Array.isArray(input.from) && input.from.every((elem, _index37) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3397
3495
|
method: "createAssert",
|
|
3398
|
-
path: _path + ".from[" +
|
|
3496
|
+
path: _path + ".from[" + _index37 + "]",
|
|
3399
3497
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o11)",
|
|
3400
3498
|
value: elem
|
|
3401
|
-
}, _errorFactory)) && _au0(elem, _path + ".from[" +
|
|
3499
|
+
}, _errorFactory)) && _au0(elem, _path + ".from[" + _index37 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3402
3500
|
method: "createAssert",
|
|
3403
|
-
path: _path + ".from[" +
|
|
3501
|
+
path: _path + ".from[" + _index37 + "]",
|
|
3404
3502
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o11)",
|
|
3405
3503
|
value: elem
|
|
3406
3504
|
}, _errorFactory)) || "object" === typeof input.from && null !== input.from && _ao0(input.from, _path + ".from", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -3498,24 +3596,24 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3498
3596
|
path: _path + ".currencyCodes",
|
|
3499
3597
|
expected: "(Array<TokenPublicKeyString | ExternalURL> | ExternalURL)",
|
|
3500
3598
|
value: input.currencyCodes
|
|
3501
|
-
}, _errorFactory)) && (Array.isArray(input.currencyCodes) && input.currencyCodes.every((elem,
|
|
3599
|
+
}, _errorFactory)) && (Array.isArray(input.currencyCodes) && input.currencyCodes.every((elem, _index38) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3502
3600
|
method: "createAssert",
|
|
3503
|
-
path: _path + ".currencyCodes[" +
|
|
3601
|
+
path: _path + ".currencyCodes[" + _index38 + "]",
|
|
3504
3602
|
expected: "(ExternalURL | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
3505
3603
|
value: elem
|
|
3506
3604
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3507
3605
|
method: "createAssert",
|
|
3508
|
-
path: _path + ".currencyCodes[" +
|
|
3606
|
+
path: _path + ".currencyCodes[" + _index38 + "]",
|
|
3509
3607
|
expected: "(ExternalURL | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
3510
3608
|
value: elem
|
|
3511
3609
|
}, _errorFactory)) && ("string" === typeof elem && (RegExp(/^keeta_am(.*)/).test(elem) || RegExp(/^keeta_an(.*)/).test(elem) || RegExp(/^keeta_ao(.*)/).test(elem) || RegExp(/^keeta_ap(.*)/).test(elem) || RegExp(/^tyblocks_am(.*)/).test(elem) || RegExp(/^tyblocks_an(.*)/).test(elem) || RegExp(/^tyblocks_ao(.*)/).test(elem) || RegExp(/^tyblocks_ap(.*)/).test(elem)) || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3512
3610
|
method: "createAssert",
|
|
3513
|
-
path: _path + ".currencyCodes[" +
|
|
3611
|
+
path: _path + ".currencyCodes[" + _index38 + "]",
|
|
3514
3612
|
expected: "(ExternalURL | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
3515
3613
|
value: elem
|
|
3516
|
-
}, _errorFactory)) && _ao0(elem, _path + ".currencyCodes[" +
|
|
3614
|
+
}, _errorFactory)) && _ao0(elem, _path + ".currencyCodes[" + _index38 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3517
3615
|
method: "createAssert",
|
|
3518
|
-
path: _path + ".currencyCodes[" +
|
|
3616
|
+
path: _path + ".currencyCodes[" + _index38 + "]",
|
|
3519
3617
|
expected: "(ExternalURL | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
3520
3618
|
value: elem
|
|
3521
3619
|
}, _errorFactory))) || "object" === typeof input.currencyCodes && null !== input.currencyCodes && _ao0(input.currencyCodes, _path + ".currencyCodes", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -3538,24 +3636,24 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3538
3636
|
path: _path + ".to",
|
|
3539
3637
|
expected: "(Array<TokenPublicKeyString | ExternalURL> | ExternalURL)",
|
|
3540
3638
|
value: input.to
|
|
3541
|
-
}, _errorFactory)) && (Array.isArray(input.to) && input.to.every((elem,
|
|
3639
|
+
}, _errorFactory)) && (Array.isArray(input.to) && input.to.every((elem, _index39) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3542
3640
|
method: "createAssert",
|
|
3543
|
-
path: _path + ".to[" +
|
|
3641
|
+
path: _path + ".to[" + _index39 + "]",
|
|
3544
3642
|
expected: "(ExternalURL | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
3545
3643
|
value: elem
|
|
3546
3644
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3547
3645
|
method: "createAssert",
|
|
3548
|
-
path: _path + ".to[" +
|
|
3646
|
+
path: _path + ".to[" + _index39 + "]",
|
|
3549
3647
|
expected: "(ExternalURL | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
3550
3648
|
value: elem
|
|
3551
3649
|
}, _errorFactory)) && ("string" === typeof elem && (RegExp(/^keeta_am(.*)/).test(elem) || RegExp(/^keeta_an(.*)/).test(elem) || RegExp(/^keeta_ao(.*)/).test(elem) || RegExp(/^keeta_ap(.*)/).test(elem) || RegExp(/^tyblocks_am(.*)/).test(elem) || RegExp(/^tyblocks_an(.*)/).test(elem) || RegExp(/^tyblocks_ao(.*)/).test(elem) || RegExp(/^tyblocks_ap(.*)/).test(elem)) || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3552
3650
|
method: "createAssert",
|
|
3553
|
-
path: _path + ".to[" +
|
|
3651
|
+
path: _path + ".to[" + _index39 + "]",
|
|
3554
3652
|
expected: "(ExternalURL | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
3555
3653
|
value: elem
|
|
3556
|
-
}, _errorFactory)) && _ao0(elem, _path + ".to[" +
|
|
3654
|
+
}, _errorFactory)) && _ao0(elem, _path + ".to[" + _index39 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3557
3655
|
method: "createAssert",
|
|
3558
|
-
path: _path + ".to[" +
|
|
3656
|
+
path: _path + ".to[" + _index39 + "]",
|
|
3559
3657
|
expected: "(ExternalURL | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
3560
3658
|
value: elem
|
|
3561
3659
|
}, _errorFactory))) || "object" === typeof input.to && null !== input.to && _ao0(input.to, _path + ".to", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -3573,24 +3671,24 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3573
3671
|
path: _path + ".kycProviders",
|
|
3574
3672
|
expected: "(Array<string | ExternalURL> | ExternalURL | undefined)",
|
|
3575
3673
|
value: input.kycProviders
|
|
3576
|
-
}, _errorFactory)) && (undefined === input.kycProviders || (Array.isArray(input.kycProviders) && input.kycProviders.every((elem,
|
|
3674
|
+
}, _errorFactory)) && (undefined === input.kycProviders || (Array.isArray(input.kycProviders) && input.kycProviders.every((elem, _index40) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3577
3675
|
method: "createAssert",
|
|
3578
|
-
path: _path + ".kycProviders[" +
|
|
3676
|
+
path: _path + ".kycProviders[" + _index40 + "]",
|
|
3579
3677
|
expected: "(ExternalURL | string)",
|
|
3580
3678
|
value: elem
|
|
3581
3679
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3582
3680
|
method: "createAssert",
|
|
3583
|
-
path: _path + ".kycProviders[" +
|
|
3681
|
+
path: _path + ".kycProviders[" + _index40 + "]",
|
|
3584
3682
|
expected: "(ExternalURL | string)",
|
|
3585
3683
|
value: elem
|
|
3586
3684
|
}, _errorFactory)) && ("string" === typeof elem || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3587
3685
|
method: "createAssert",
|
|
3588
|
-
path: _path + ".kycProviders[" +
|
|
3686
|
+
path: _path + ".kycProviders[" + _index40 + "]",
|
|
3589
3687
|
expected: "(ExternalURL | string)",
|
|
3590
3688
|
value: elem
|
|
3591
|
-
}, _errorFactory)) && _ao0(elem, _path + ".kycProviders[" +
|
|
3689
|
+
}, _errorFactory)) && _ao0(elem, _path + ".kycProviders[" + _index40 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3592
3690
|
method: "createAssert",
|
|
3593
|
-
path: _path + ".kycProviders[" +
|
|
3691
|
+
path: _path + ".kycProviders[" + _index40 + "]",
|
|
3594
3692
|
expected: "(ExternalURL | string)",
|
|
3595
3693
|
value: elem
|
|
3596
3694
|
}, _errorFactory))) || "object" === typeof input.kycProviders && null !== input.kycProviders && _ao0(input.kycProviders, _path + ".kycProviders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -3612,53 +3710,193 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3612
3710
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
3613
3711
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o13)",
|
|
3614
3712
|
value: value
|
|
3615
|
-
}, _errorFactory)) &&
|
|
3713
|
+
}, _errorFactory)) && _au20(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3616
3714
|
method: "createAssert",
|
|
3617
3715
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
3618
3716
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o13)",
|
|
3619
3717
|
value: value
|
|
3620
3718
|
}, _errorFactory);
|
|
3621
|
-
}); const _ao15 = (input, _path, _exceptionable = true) => (("object" === typeof input.operations && null !== input.operations
|
|
3719
|
+
}); const _ao15 = (input, _path, _exceptionable = true) => (("object" === typeof input.operations && null !== input.operations || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3622
3720
|
method: "createAssert",
|
|
3623
3721
|
path: _path + ".operations",
|
|
3624
3722
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o14)",
|
|
3625
3723
|
value: input.operations
|
|
3626
|
-
}, _errorFactory)) &&
|
|
3724
|
+
}, _errorFactory)) && _au21(input.operations, _path + ".operations", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3627
3725
|
method: "createAssert",
|
|
3628
3726
|
path: _path + ".operations",
|
|
3629
3727
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o14)",
|
|
3630
3728
|
value: input.operations
|
|
3729
|
+
}, _errorFactory)) && ((null !== input.usernamePattern || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3730
|
+
method: "createAssert",
|
|
3731
|
+
path: _path + ".usernamePattern",
|
|
3732
|
+
expected: "(ExternalURL | string | undefined)",
|
|
3733
|
+
value: input.usernamePattern
|
|
3734
|
+
}, _errorFactory)) && (undefined === input.usernamePattern || "string" === typeof input.usernamePattern || ("object" === typeof input.usernamePattern && null !== input.usernamePattern || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3735
|
+
method: "createAssert",
|
|
3736
|
+
path: _path + ".usernamePattern",
|
|
3737
|
+
expected: "(ExternalURL | string | undefined)",
|
|
3738
|
+
value: input.usernamePattern
|
|
3739
|
+
}, _errorFactory)) && _ao0(input.usernamePattern, _path + ".usernamePattern", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3740
|
+
method: "createAssert",
|
|
3741
|
+
path: _path + ".usernamePattern",
|
|
3742
|
+
expected: "(ExternalURL | string | undefined)",
|
|
3743
|
+
value: input.usernamePattern
|
|
3744
|
+
}, _errorFactory))); const _ao16 = (input, _path, _exceptionable = true) => (null !== input.resolve || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3745
|
+
method: "createAssert",
|
|
3746
|
+
path: _path + ".resolve",
|
|
3747
|
+
expected: "(ExternalURL | __type | string)",
|
|
3748
|
+
value: input.resolve
|
|
3749
|
+
}, _errorFactory)) && (undefined !== input.resolve || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3750
|
+
method: "createAssert",
|
|
3751
|
+
path: _path + ".resolve",
|
|
3752
|
+
expected: "(ExternalURL | __type | string)",
|
|
3753
|
+
value: input.resolve
|
|
3754
|
+
}, _errorFactory)) && ("string" === typeof input.resolve || ("object" === typeof input.resolve && null !== input.resolve || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3755
|
+
method: "createAssert",
|
|
3756
|
+
path: _path + ".resolve",
|
|
3757
|
+
expected: "(ExternalURL | __type | string)",
|
|
3758
|
+
value: input.resolve
|
|
3759
|
+
}, _errorFactory)) && _au22(input.resolve, _path + ".resolve", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3760
|
+
method: "createAssert",
|
|
3761
|
+
path: _path + ".resolve",
|
|
3762
|
+
expected: "(ExternalURL | __type | string)",
|
|
3763
|
+
value: input.resolve
|
|
3764
|
+
}, _errorFactory)) && ((null !== input.claim || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3765
|
+
method: "createAssert",
|
|
3766
|
+
path: _path + ".claim",
|
|
3767
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
3768
|
+
value: input.claim
|
|
3769
|
+
}, _errorFactory)) && (undefined === input.claim || "string" === typeof input.claim || ("object" === typeof input.claim && null !== input.claim || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3770
|
+
method: "createAssert",
|
|
3771
|
+
path: _path + ".claim",
|
|
3772
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
3773
|
+
value: input.claim
|
|
3774
|
+
}, _errorFactory)) && _au22(input.claim, _path + ".claim", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3775
|
+
method: "createAssert",
|
|
3776
|
+
path: _path + ".claim",
|
|
3777
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
3778
|
+
value: input.claim
|
|
3779
|
+
}, _errorFactory))) && ((null !== input.release || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3780
|
+
method: "createAssert",
|
|
3781
|
+
path: _path + ".release",
|
|
3782
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
3783
|
+
value: input.release
|
|
3784
|
+
}, _errorFactory)) && (undefined === input.release || "string" === typeof input.release || ("object" === typeof input.release && null !== input.release || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3785
|
+
method: "createAssert",
|
|
3786
|
+
path: _path + ".release",
|
|
3787
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
3788
|
+
value: input.release
|
|
3789
|
+
}, _errorFactory)) && _au22(input.release, _path + ".release", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3790
|
+
method: "createAssert",
|
|
3791
|
+
path: _path + ".release",
|
|
3792
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
3793
|
+
value: input.release
|
|
3794
|
+
}, _errorFactory))) && ((null !== input.search || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3795
|
+
method: "createAssert",
|
|
3796
|
+
path: _path + ".search",
|
|
3797
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
3798
|
+
value: input.search
|
|
3799
|
+
}, _errorFactory)) && (undefined === input.search || "string" === typeof input.search || ("object" === typeof input.search && null !== input.search || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3800
|
+
method: "createAssert",
|
|
3801
|
+
path: _path + ".search",
|
|
3802
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
3803
|
+
value: input.search
|
|
3804
|
+
}, _errorFactory)) && _au22(input.search, _path + ".search", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3805
|
+
method: "createAssert",
|
|
3806
|
+
path: _path + ".search",
|
|
3807
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
3808
|
+
value: input.search
|
|
3809
|
+
}, _errorFactory))); const _ao17 = (input, _path, _exceptionable = true) => ("string" === typeof input.url || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3810
|
+
method: "createAssert",
|
|
3811
|
+
path: _path + ".url",
|
|
3812
|
+
expected: "string",
|
|
3813
|
+
value: input.url
|
|
3814
|
+
}, _errorFactory)) && (undefined === input.options || ("object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3815
|
+
method: "createAssert",
|
|
3816
|
+
path: _path + ".options",
|
|
3817
|
+
expected: "(__type.o1 | undefined)",
|
|
3818
|
+
value: input.options
|
|
3819
|
+
}, _errorFactory)) && _ao18(input.options, _path + ".options", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3820
|
+
method: "createAssert",
|
|
3821
|
+
path: _path + ".options",
|
|
3822
|
+
expected: "(__type.o1 | undefined)",
|
|
3823
|
+
value: input.options
|
|
3824
|
+
}, _errorFactory)); const _ao18 = (input, _path, _exceptionable = true) => undefined === input.authentication || ("object" === typeof input.authentication && null !== input.authentication || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3825
|
+
method: "createAssert",
|
|
3826
|
+
path: _path + ".authentication",
|
|
3827
|
+
expected: "(ServiceMetadataAuthenticationType | undefined)",
|
|
3828
|
+
value: input.authentication
|
|
3829
|
+
}, _errorFactory)) && _ao19(input.authentication, _path + ".authentication", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3830
|
+
method: "createAssert",
|
|
3831
|
+
path: _path + ".authentication",
|
|
3832
|
+
expected: "(ServiceMetadataAuthenticationType | undefined)",
|
|
3833
|
+
value: input.authentication
|
|
3834
|
+
}, _errorFactory); const _ao19 = (input, _path, _exceptionable = true) => ("keeta-account" === input.method || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3835
|
+
method: "createAssert",
|
|
3836
|
+
path: _path + ".method",
|
|
3837
|
+
expected: "\"keeta-account\"",
|
|
3838
|
+
value: input.method
|
|
3839
|
+
}, _errorFactory)) && ("optional" === input.type || "required" === input.type || "none" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3840
|
+
method: "createAssert",
|
|
3841
|
+
path: _path + ".type",
|
|
3842
|
+
expected: "(\"none\" | \"optional\" | \"required\")",
|
|
3843
|
+
value: input.type
|
|
3844
|
+
}, _errorFactory)); const _ao20 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
3845
|
+
const value = input[key];
|
|
3846
|
+
if (undefined === value)
|
|
3847
|
+
return true;
|
|
3848
|
+
return ("object" === typeof value && null !== value || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3849
|
+
method: "createAssert",
|
|
3850
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
3851
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o16)",
|
|
3852
|
+
value: value
|
|
3853
|
+
}, _errorFactory)) && _au23(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3854
|
+
method: "createAssert",
|
|
3855
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
3856
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o16)",
|
|
3857
|
+
value: value
|
|
3858
|
+
}, _errorFactory);
|
|
3859
|
+
}); const _ao21 = (input, _path, _exceptionable = true) => (("object" === typeof input.operations && null !== input.operations && false === Array.isArray(input.operations) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3860
|
+
method: "createAssert",
|
|
3861
|
+
path: _path + ".operations",
|
|
3862
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o17)",
|
|
3863
|
+
value: input.operations
|
|
3864
|
+
}, _errorFactory)) && _au24(input.operations, _path + ".operations", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3865
|
+
method: "createAssert",
|
|
3866
|
+
path: _path + ".operations",
|
|
3867
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o17)",
|
|
3868
|
+
value: input.operations
|
|
3631
3869
|
}, _errorFactory)) && ((null !== input.supportedAssets || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3632
3870
|
method: "createAssert",
|
|
3633
3871
|
path: _path + ".supportedAssets",
|
|
3634
|
-
expected: "(Array<ExternalURL | ToJSONValuizableObject<
|
|
3872
|
+
expected: "(Array<ExternalURL | ToJSONValuizableObject<SupportedAssetsMetadata>> | ExternalURL)",
|
|
3635
3873
|
value: input.supportedAssets
|
|
3636
3874
|
}, _errorFactory)) && (undefined !== input.supportedAssets || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3637
3875
|
method: "createAssert",
|
|
3638
3876
|
path: _path + ".supportedAssets",
|
|
3639
|
-
expected: "(Array<ExternalURL | ToJSONValuizableObject<
|
|
3877
|
+
expected: "(Array<ExternalURL | ToJSONValuizableObject<SupportedAssetsMetadata>> | ExternalURL)",
|
|
3640
3878
|
value: input.supportedAssets
|
|
3641
|
-
}, _errorFactory)) && (Array.isArray(input.supportedAssets) && input.supportedAssets.every((elem,
|
|
3879
|
+
}, _errorFactory)) && (Array.isArray(input.supportedAssets) && input.supportedAssets.every((elem, _index41) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3642
3880
|
method: "createAssert",
|
|
3643
|
-
path: _path + ".supportedAssets[" +
|
|
3644
|
-
expected: "(ExternalURL | ToJSONValuizableObject<
|
|
3881
|
+
path: _path + ".supportedAssets[" + _index41 + "]",
|
|
3882
|
+
expected: "(ExternalURL | ToJSONValuizableObject<SupportedAssetsMetadata>)",
|
|
3645
3883
|
value: elem
|
|
3646
|
-
}, _errorFactory)) && _au1(elem, _path + ".supportedAssets[" +
|
|
3884
|
+
}, _errorFactory)) && _au1(elem, _path + ".supportedAssets[" + _index41 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3647
3885
|
method: "createAssert",
|
|
3648
|
-
path: _path + ".supportedAssets[" +
|
|
3649
|
-
expected: "(ExternalURL | ToJSONValuizableObject<
|
|
3886
|
+
path: _path + ".supportedAssets[" + _index41 + "]",
|
|
3887
|
+
expected: "(ExternalURL | ToJSONValuizableObject<SupportedAssetsMetadata>)",
|
|
3650
3888
|
value: elem
|
|
3651
3889
|
}, _errorFactory)) || "object" === typeof input.supportedAssets && null !== input.supportedAssets && _ao0(input.supportedAssets, _path + ".supportedAssets", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3652
3890
|
method: "createAssert",
|
|
3653
3891
|
path: _path + ".supportedAssets",
|
|
3654
|
-
expected: "(Array<ExternalURL | ToJSONValuizableObject<
|
|
3892
|
+
expected: "(Array<ExternalURL | ToJSONValuizableObject<SupportedAssetsMetadata>> | ExternalURL)",
|
|
3655
3893
|
value: input.supportedAssets
|
|
3656
3894
|
}, _errorFactory) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3657
3895
|
method: "createAssert",
|
|
3658
3896
|
path: _path + ".supportedAssets",
|
|
3659
|
-
expected: "(Array<ExternalURL | ToJSONValuizableObject<
|
|
3897
|
+
expected: "(Array<ExternalURL | ToJSONValuizableObject<SupportedAssetsMetadata>> | ExternalURL)",
|
|
3660
3898
|
value: input.supportedAssets
|
|
3661
|
-
}, _errorFactory))); const
|
|
3899
|
+
}, _errorFactory))); const _ao22 = (input, _path, _exceptionable = true) => (null !== input.initiateTransfer || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3662
3900
|
method: "createAssert",
|
|
3663
3901
|
path: _path + ".initiateTransfer",
|
|
3664
3902
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
@@ -3668,7 +3906,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3668
3906
|
path: _path + ".initiateTransfer",
|
|
3669
3907
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
3670
3908
|
value: input.initiateTransfer
|
|
3671
|
-
}, _errorFactory)) &&
|
|
3909
|
+
}, _errorFactory)) && _au22(input.initiateTransfer, _path + ".initiateTransfer", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3672
3910
|
method: "createAssert",
|
|
3673
3911
|
path: _path + ".initiateTransfer",
|
|
3674
3912
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
@@ -3683,7 +3921,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3683
3921
|
path: _path + ".getTransferStatus",
|
|
3684
3922
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
3685
3923
|
value: input.getTransferStatus
|
|
3686
|
-
}, _errorFactory)) &&
|
|
3924
|
+
}, _errorFactory)) && _au22(input.getTransferStatus, _path + ".getTransferStatus", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3687
3925
|
method: "createAssert",
|
|
3688
3926
|
path: _path + ".getTransferStatus",
|
|
3689
3927
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
@@ -3698,7 +3936,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3698
3936
|
path: _path + ".createPersistentForwardingTemplate",
|
|
3699
3937
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
3700
3938
|
value: input.createPersistentForwardingTemplate
|
|
3701
|
-
}, _errorFactory)) &&
|
|
3939
|
+
}, _errorFactory)) && _au22(input.createPersistentForwardingTemplate, _path + ".createPersistentForwardingTemplate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3702
3940
|
method: "createAssert",
|
|
3703
3941
|
path: _path + ".createPersistentForwardingTemplate",
|
|
3704
3942
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
@@ -3713,7 +3951,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3713
3951
|
path: _path + ".listPersistentForwardingTemplate",
|
|
3714
3952
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
3715
3953
|
value: input.listPersistentForwardingTemplate
|
|
3716
|
-
}, _errorFactory)) &&
|
|
3954
|
+
}, _errorFactory)) && _au22(input.listPersistentForwardingTemplate, _path + ".listPersistentForwardingTemplate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3717
3955
|
method: "createAssert",
|
|
3718
3956
|
path: _path + ".listPersistentForwardingTemplate",
|
|
3719
3957
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
@@ -3728,7 +3966,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3728
3966
|
path: _path + ".createPersistentForwarding",
|
|
3729
3967
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
3730
3968
|
value: input.createPersistentForwarding
|
|
3731
|
-
}, _errorFactory)) &&
|
|
3969
|
+
}, _errorFactory)) && _au22(input.createPersistentForwarding, _path + ".createPersistentForwarding", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3732
3970
|
method: "createAssert",
|
|
3733
3971
|
path: _path + ".createPersistentForwarding",
|
|
3734
3972
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
@@ -3743,7 +3981,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3743
3981
|
path: _path + ".listPersistentForwarding",
|
|
3744
3982
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
3745
3983
|
value: input.listPersistentForwarding
|
|
3746
|
-
}, _errorFactory)) &&
|
|
3984
|
+
}, _errorFactory)) && _au22(input.listPersistentForwarding, _path + ".listPersistentForwarding", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3747
3985
|
method: "createAssert",
|
|
3748
3986
|
path: _path + ".listPersistentForwarding",
|
|
3749
3987
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
@@ -3758,7 +3996,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3758
3996
|
path: _path + ".listTransactions",
|
|
3759
3997
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
3760
3998
|
value: input.listTransactions
|
|
3761
|
-
}, _errorFactory)) &&
|
|
3999
|
+
}, _errorFactory)) && _au22(input.listTransactions, _path + ".listTransactions", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3762
4000
|
method: "createAssert",
|
|
3763
4001
|
path: _path + ".listTransactions",
|
|
3764
4002
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
@@ -3773,57 +4011,22 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3773
4011
|
path: _path + ".shareKYC",
|
|
3774
4012
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
3775
4013
|
value: input.shareKYC
|
|
3776
|
-
}, _errorFactory)) &&
|
|
4014
|
+
}, _errorFactory)) && _au22(input.shareKYC, _path + ".shareKYC", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3777
4015
|
method: "createAssert",
|
|
3778
4016
|
path: _path + ".shareKYC",
|
|
3779
4017
|
expected: "(ExternalURL | __type | string | undefined)",
|
|
3780
4018
|
value: input.shareKYC
|
|
3781
|
-
}, _errorFactory))); const
|
|
3782
|
-
method: "createAssert",
|
|
3783
|
-
path: _path + ".url",
|
|
3784
|
-
expected: "string",
|
|
3785
|
-
value: input.url
|
|
3786
|
-
}, _errorFactory)) && (undefined === input.options || ("object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3787
|
-
method: "createAssert",
|
|
3788
|
-
path: _path + ".options",
|
|
3789
|
-
expected: "(__type.o1 | undefined)",
|
|
3790
|
-
value: input.options
|
|
3791
|
-
}, _errorFactory)) && _ao18(input.options, _path + ".options", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3792
|
-
method: "createAssert",
|
|
3793
|
-
path: _path + ".options",
|
|
3794
|
-
expected: "(__type.o1 | undefined)",
|
|
3795
|
-
value: input.options
|
|
3796
|
-
}, _errorFactory)); const _ao18 = (input, _path, _exceptionable = true) => undefined === input.authentication || ("object" === typeof input.authentication && null !== input.authentication || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3797
|
-
method: "createAssert",
|
|
3798
|
-
path: _path + ".authentication",
|
|
3799
|
-
expected: "(ServiceMetadataAuthenticationType | undefined)",
|
|
3800
|
-
value: input.authentication
|
|
3801
|
-
}, _errorFactory)) && _ao19(input.authentication, _path + ".authentication", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3802
|
-
method: "createAssert",
|
|
3803
|
-
path: _path + ".authentication",
|
|
3804
|
-
expected: "(ServiceMetadataAuthenticationType | undefined)",
|
|
3805
|
-
value: input.authentication
|
|
3806
|
-
}, _errorFactory); const _ao19 = (input, _path, _exceptionable = true) => ("keeta-account" === input.method || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3807
|
-
method: "createAssert",
|
|
3808
|
-
path: _path + ".method",
|
|
3809
|
-
expected: "\"keeta-account\"",
|
|
3810
|
-
value: input.method
|
|
3811
|
-
}, _errorFactory)) && ("optional" === input.type || "required" === input.type || "none" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3812
|
-
method: "createAssert",
|
|
3813
|
-
path: _path + ".type",
|
|
3814
|
-
expected: "(\"none\" | \"optional\" | \"required\")",
|
|
3815
|
-
value: input.type
|
|
3816
|
-
}, _errorFactory)); const _ao20 = (input, _path, _exceptionable = true) => (null !== input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4019
|
+
}, _errorFactory))); const _ao23 = (input, _path, _exceptionable = true) => (null !== input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3817
4020
|
method: "createAssert",
|
|
3818
4021
|
path: _path + ".asset",
|
|
3819
|
-
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | ExternalURL | [
|
|
4022
|
+
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | ExternalURL | [AssetMetadataTargetValue, AssetMetadataTargetValue] | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
3820
4023
|
value: input.asset
|
|
3821
4024
|
}, _errorFactory)) && (undefined !== input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3822
4025
|
method: "createAssert",
|
|
3823
4026
|
path: _path + ".asset",
|
|
3824
|
-
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | ExternalURL | [
|
|
4027
|
+
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | ExternalURL | [AssetMetadataTargetValue, AssetMetadataTargetValue] | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
3825
4028
|
value: input.asset
|
|
3826
|
-
}, _errorFactory)) && (true ===
|
|
4029
|
+
}, _errorFactory)) && (true === _av42.has(input.asset) || "string" === typeof input.asset && (RegExp(/^\$(.*)/).test(input.asset) || RegExp(/^keeta_am(.*)/).test(input.asset) || RegExp(/^keeta_an(.*)/).test(input.asset) || RegExp(/^keeta_ao(.*)/).test(input.asset) || RegExp(/^keeta_ap(.*)/).test(input.asset) || RegExp(/^tyblocks_am(.*)/).test(input.asset) || RegExp(/^tyblocks_an(.*)/).test(input.asset) || RegExp(/^tyblocks_ao(.*)/).test(input.asset) || RegExp(/^tyblocks_ap(.*)/).test(input.asset)) || (Array.isArray(input.asset) && ((input.asset.length === 2 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3827
4030
|
method: "createAssert",
|
|
3828
4031
|
path: _path + ".asset",
|
|
3829
4032
|
expected: "[(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`), (\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)]",
|
|
@@ -3838,7 +4041,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3838
4041
|
path: _path + ".asset[0]",
|
|
3839
4042
|
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
3840
4043
|
value: input.asset[0]
|
|
3841
|
-
}, _errorFactory)) && (true ===
|
|
4044
|
+
}, _errorFactory)) && (true === _av43.has(input.asset[0]) || "string" === typeof input.asset[0] && (RegExp(/^\$(.*)/).test(input.asset[0]) || RegExp(/^keeta_am(.*)/).test(input.asset[0]) || RegExp(/^keeta_an(.*)/).test(input.asset[0]) || RegExp(/^keeta_ao(.*)/).test(input.asset[0]) || RegExp(/^keeta_ap(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_am(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_an(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_ao(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_ap(.*)/).test(input.asset[0])) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3842
4045
|
method: "createAssert",
|
|
3843
4046
|
path: _path + ".asset[0]",
|
|
3844
4047
|
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
@@ -3853,7 +4056,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3853
4056
|
path: _path + ".asset[1]",
|
|
3854
4057
|
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
3855
4058
|
value: input.asset[1]
|
|
3856
|
-
}, _errorFactory)) && (true ===
|
|
4059
|
+
}, _errorFactory)) && (true === _av44.has(input.asset[1]) || "string" === typeof input.asset[1] && (RegExp(/^\$(.*)/).test(input.asset[1]) || RegExp(/^keeta_am(.*)/).test(input.asset[1]) || RegExp(/^keeta_an(.*)/).test(input.asset[1]) || RegExp(/^keeta_ao(.*)/).test(input.asset[1]) || RegExp(/^keeta_ap(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_am(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_an(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_ao(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_ap(.*)/).test(input.asset[1])) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3857
4060
|
method: "createAssert",
|
|
3858
4061
|
path: _path + ".asset[1]",
|
|
3859
4062
|
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
@@ -3861,111 +4064,111 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3861
4064
|
}, _errorFactory)))) || "object" === typeof input.asset && null !== input.asset && _ao0(input.asset, _path + ".asset", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3862
4065
|
method: "createAssert",
|
|
3863
4066
|
path: _path + ".asset",
|
|
3864
|
-
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | ExternalURL | [
|
|
4067
|
+
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | ExternalURL | [AssetMetadataTargetValue, AssetMetadataTargetValue] | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
3865
4068
|
value: input.asset
|
|
3866
4069
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3867
4070
|
method: "createAssert",
|
|
3868
4071
|
path: _path + ".asset",
|
|
3869
|
-
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | ExternalURL | [
|
|
4072
|
+
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | ExternalURL | [AssetMetadataTargetValue, AssetMetadataTargetValue] | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
3870
4073
|
value: input.asset
|
|
3871
4074
|
}, _errorFactory)) && ((null !== input.paths || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3872
4075
|
method: "createAssert",
|
|
3873
4076
|
path: _path + ".paths",
|
|
3874
|
-
expected: "(Array<ExternalURL | ToJSONValuizableObject<
|
|
4077
|
+
expected: "(Array<ExternalURL | ToJSONValuizableObject<AssetPath>> | ExternalURL)",
|
|
3875
4078
|
value: input.paths
|
|
3876
4079
|
}, _errorFactory)) && (undefined !== input.paths || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3877
4080
|
method: "createAssert",
|
|
3878
4081
|
path: _path + ".paths",
|
|
3879
|
-
expected: "(Array<ExternalURL | ToJSONValuizableObject<
|
|
4082
|
+
expected: "(Array<ExternalURL | ToJSONValuizableObject<AssetPath>> | ExternalURL)",
|
|
3880
4083
|
value: input.paths
|
|
3881
|
-
}, _errorFactory)) && (Array.isArray(input.paths) && input.paths.every((elem,
|
|
4084
|
+
}, _errorFactory)) && (Array.isArray(input.paths) && input.paths.every((elem, _index45) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3882
4085
|
method: "createAssert",
|
|
3883
|
-
path: _path + ".paths[" +
|
|
3884
|
-
expected: "(ExternalURL | ToJSONValuizableObject<
|
|
4086
|
+
path: _path + ".paths[" + _index45 + "]",
|
|
4087
|
+
expected: "(ExternalURL | ToJSONValuizableObject<AssetPath>)",
|
|
3885
4088
|
value: elem
|
|
3886
|
-
}, _errorFactory)) && _au2(elem, _path + ".paths[" +
|
|
4089
|
+
}, _errorFactory)) && _au2(elem, _path + ".paths[" + _index45 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3887
4090
|
method: "createAssert",
|
|
3888
|
-
path: _path + ".paths[" +
|
|
3889
|
-
expected: "(ExternalURL | ToJSONValuizableObject<
|
|
4091
|
+
path: _path + ".paths[" + _index45 + "]",
|
|
4092
|
+
expected: "(ExternalURL | ToJSONValuizableObject<AssetPath>)",
|
|
3890
4093
|
value: elem
|
|
3891
4094
|
}, _errorFactory)) || "object" === typeof input.paths && null !== input.paths && _ao0(input.paths, _path + ".paths", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3892
4095
|
method: "createAssert",
|
|
3893
4096
|
path: _path + ".paths",
|
|
3894
|
-
expected: "(Array<ExternalURL | ToJSONValuizableObject<
|
|
4097
|
+
expected: "(Array<ExternalURL | ToJSONValuizableObject<AssetPath>> | ExternalURL)",
|
|
3895
4098
|
value: input.paths
|
|
3896
4099
|
}, _errorFactory) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3897
4100
|
method: "createAssert",
|
|
3898
4101
|
path: _path + ".paths",
|
|
3899
|
-
expected: "(Array<ExternalURL | ToJSONValuizableObject<
|
|
4102
|
+
expected: "(Array<ExternalURL | ToJSONValuizableObject<AssetPath>> | ExternalURL)",
|
|
3900
4103
|
value: input.paths
|
|
3901
|
-
}, _errorFactory))); const
|
|
4104
|
+
}, _errorFactory))); const _ao24 = (input, _path, _exceptionable = true) => (null !== input.pair || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3902
4105
|
method: "createAssert",
|
|
3903
4106
|
path: _path + ".pair",
|
|
3904
|
-
expected: "(ExternalURL | [ExternalURL | ToJSONValuizableObject<
|
|
4107
|
+
expected: "(ExternalURL | [ExternalURL | ToJSONValuizableObject<AssetWithRails>, ExternalURL | ToJSONValuizableObject<AssetWithRails>])",
|
|
3905
4108
|
value: input.pair
|
|
3906
4109
|
}, _errorFactory)) && (undefined !== input.pair || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3907
4110
|
method: "createAssert",
|
|
3908
4111
|
path: _path + ".pair",
|
|
3909
|
-
expected: "(ExternalURL | [ExternalURL | ToJSONValuizableObject<
|
|
4112
|
+
expected: "(ExternalURL | [ExternalURL | ToJSONValuizableObject<AssetWithRails>, ExternalURL | ToJSONValuizableObject<AssetWithRails>])",
|
|
3910
4113
|
value: input.pair
|
|
3911
4114
|
}, _errorFactory)) && (Array.isArray(input.pair) && ((input.pair.length === 2 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3912
4115
|
method: "createAssert",
|
|
3913
4116
|
path: _path + ".pair",
|
|
3914
|
-
expected: "[(ExternalURL | ToJSONValuizableObject<
|
|
4117
|
+
expected: "[(ExternalURL | ToJSONValuizableObject<AssetWithRails>), (ExternalURL | ToJSONValuizableObject<AssetWithRails>)]",
|
|
3915
4118
|
value: input.pair
|
|
3916
4119
|
}, _errorFactory)) && (("object" === typeof input.pair[0] && null !== input.pair[0] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3917
4120
|
method: "createAssert",
|
|
3918
4121
|
path: _path + ".pair[0]",
|
|
3919
|
-
expected: "(ExternalURL | ToJSONValuizableObject<
|
|
4122
|
+
expected: "(ExternalURL | ToJSONValuizableObject<AssetWithRails>)",
|
|
3920
4123
|
value: input.pair[0]
|
|
3921
|
-
}, _errorFactory)) &&
|
|
4124
|
+
}, _errorFactory)) && _au4(input.pair[0], _path + ".pair[0]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3922
4125
|
method: "createAssert",
|
|
3923
4126
|
path: _path + ".pair[0]",
|
|
3924
|
-
expected: "(ExternalURL | ToJSONValuizableObject<
|
|
4127
|
+
expected: "(ExternalURL | ToJSONValuizableObject<AssetWithRails>)",
|
|
3925
4128
|
value: input.pair[0]
|
|
3926
4129
|
}, _errorFactory)) && (("object" === typeof input.pair[1] && null !== input.pair[1] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3927
4130
|
method: "createAssert",
|
|
3928
4131
|
path: _path + ".pair[1]",
|
|
3929
|
-
expected: "(ExternalURL | ToJSONValuizableObject<
|
|
4132
|
+
expected: "(ExternalURL | ToJSONValuizableObject<AssetWithRails>)",
|
|
3930
4133
|
value: input.pair[1]
|
|
3931
|
-
}, _errorFactory)) &&
|
|
4134
|
+
}, _errorFactory)) && _au4(input.pair[1], _path + ".pair[1]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3932
4135
|
method: "createAssert",
|
|
3933
4136
|
path: _path + ".pair[1]",
|
|
3934
|
-
expected: "(ExternalURL | ToJSONValuizableObject<
|
|
4137
|
+
expected: "(ExternalURL | ToJSONValuizableObject<AssetWithRails>)",
|
|
3935
4138
|
value: input.pair[1]
|
|
3936
4139
|
}, _errorFactory))) || "object" === typeof input.pair && null !== input.pair && _ao0(input.pair, _path + ".pair", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3937
4140
|
method: "createAssert",
|
|
3938
4141
|
path: _path + ".pair",
|
|
3939
|
-
expected: "(ExternalURL | [ExternalURL | ToJSONValuizableObject<
|
|
4142
|
+
expected: "(ExternalURL | [ExternalURL | ToJSONValuizableObject<AssetWithRails>, ExternalURL | ToJSONValuizableObject<AssetWithRails>])",
|
|
3940
4143
|
value: input.pair
|
|
3941
4144
|
}, _errorFactory) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3942
4145
|
method: "createAssert",
|
|
3943
4146
|
path: _path + ".pair",
|
|
3944
|
-
expected: "(ExternalURL | [ExternalURL | ToJSONValuizableObject<
|
|
4147
|
+
expected: "(ExternalURL | [ExternalURL | ToJSONValuizableObject<AssetWithRails>, ExternalURL | ToJSONValuizableObject<AssetWithRails>])",
|
|
3945
4148
|
value: input.pair
|
|
3946
4149
|
}, _errorFactory)) && ((null !== input.kycProviders || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3947
4150
|
method: "createAssert",
|
|
3948
4151
|
path: _path + ".kycProviders",
|
|
3949
4152
|
expected: "(Array<string | ExternalURL> | ExternalURL | undefined)",
|
|
3950
4153
|
value: input.kycProviders
|
|
3951
|
-
}, _errorFactory)) && (undefined === input.kycProviders || (Array.isArray(input.kycProviders) && input.kycProviders.every((elem,
|
|
4154
|
+
}, _errorFactory)) && (undefined === input.kycProviders || (Array.isArray(input.kycProviders) && input.kycProviders.every((elem, _index46) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3952
4155
|
method: "createAssert",
|
|
3953
|
-
path: _path + ".kycProviders[" +
|
|
4156
|
+
path: _path + ".kycProviders[" + _index46 + "]",
|
|
3954
4157
|
expected: "(ExternalURL | string)",
|
|
3955
4158
|
value: elem
|
|
3956
4159
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3957
4160
|
method: "createAssert",
|
|
3958
|
-
path: _path + ".kycProviders[" +
|
|
4161
|
+
path: _path + ".kycProviders[" + _index46 + "]",
|
|
3959
4162
|
expected: "(ExternalURL | string)",
|
|
3960
4163
|
value: elem
|
|
3961
4164
|
}, _errorFactory)) && ("string" === typeof elem || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3962
4165
|
method: "createAssert",
|
|
3963
|
-
path: _path + ".kycProviders[" +
|
|
4166
|
+
path: _path + ".kycProviders[" + _index46 + "]",
|
|
3964
4167
|
expected: "(ExternalURL | string)",
|
|
3965
4168
|
value: elem
|
|
3966
|
-
}, _errorFactory)) && _ao0(elem, _path + ".kycProviders[" +
|
|
4169
|
+
}, _errorFactory)) && _ao0(elem, _path + ".kycProviders[" + _index46 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3967
4170
|
method: "createAssert",
|
|
3968
|
-
path: _path + ".kycProviders[" +
|
|
4171
|
+
path: _path + ".kycProviders[" + _index46 + "]",
|
|
3969
4172
|
expected: "(ExternalURL | string)",
|
|
3970
4173
|
value: elem
|
|
3971
4174
|
}, _errorFactory))) || "object" === typeof input.kycProviders && null !== input.kycProviders && _ao0(input.kycProviders, _path + ".kycProviders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -3978,27 +4181,32 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
3978
4181
|
path: _path + ".kycProviders",
|
|
3979
4182
|
expected: "(Array<string | ExternalURL> | ExternalURL | undefined)",
|
|
3980
4183
|
value: input.kycProviders
|
|
3981
|
-
}, _errorFactory))); const
|
|
4184
|
+
}, _errorFactory))); const _ao25 = (input, _path, _exceptionable = true) => (("object" === typeof input.rails && null !== input.rails && false === Array.isArray(input.rails) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3982
4185
|
method: "createAssert",
|
|
3983
|
-
path: _path + ".
|
|
3984
|
-
expected: "(ExternalURL |
|
|
3985
|
-
value: input.
|
|
3986
|
-
}, _errorFactory)) && (
|
|
4186
|
+
path: _path + ".rails",
|
|
4187
|
+
expected: "(ExternalURL | ToJSONValuizableObject<{ inbound: RailOrRailWithExtendedDetails[]; outbound?: RailOrRailWithExtendedDetails[]; } & { common?: RailOrRailWithExtendedDetails[]; }> | ToJSONValuizableObject<{ inbound?: RailOrRailWithExtendedDetails[]; outbound: RailOrRailWithExtendedDetails[]; } & { common?: RailOrRailWithExtendedDetails[]; }> | ToJSONValuizableObject<{ inbound?: never; outbound?: never; } & { common?: RailOrRailWithExtendedDetails[]; }>)",
|
|
4188
|
+
value: input.rails
|
|
4189
|
+
}, _errorFactory)) && _au25(input.rails, _path + ".rails", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4190
|
+
method: "createAssert",
|
|
4191
|
+
path: _path + ".rails",
|
|
4192
|
+
expected: "(ExternalURL | ToJSONValuizableObject<{ inbound: RailOrRailWithExtendedDetails[]; outbound?: RailOrRailWithExtendedDetails[]; } & { common?: RailOrRailWithExtendedDetails[]; }> | ToJSONValuizableObject<{ inbound?: RailOrRailWithExtendedDetails[]; outbound: RailOrRailWithExtendedDetails[]; } & { common?: RailOrRailWithExtendedDetails[]; }> | ToJSONValuizableObject<{ inbound?: never; outbound?: never; } & { common?: RailOrRailWithExtendedDetails[]; }>)",
|
|
4193
|
+
value: input.rails
|
|
4194
|
+
}, _errorFactory)) && ((null !== input.location || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3987
4195
|
method: "createAssert",
|
|
3988
4196
|
path: _path + ".location",
|
|
3989
|
-
expected: "(ExternalURL | string)",
|
|
4197
|
+
expected: "(\"bank-account:clabe\" | \"bank-account:iban-swift\" | \"bank-account:pix\" | \"bank-account:us\" | ExternalURL | `chain:bitcoin:${string}` | `chain:evm:${bigint}` | `chain:keeta:${bigint}` | `chain:solana:${string}` | `chain:tron:${string}` | undefined)",
|
|
3990
4198
|
value: input.location
|
|
3991
|
-
}, _errorFactory)) && ("string" === typeof input.location || ("object" === typeof input.location && null !== input.location || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4199
|
+
}, _errorFactory)) && (undefined === input.location || "bank-account:us" === input.location || "bank-account:iban-swift" === input.location || "bank-account:clabe" === input.location || "bank-account:pix" === input.location || "string" === typeof input.location && (RegExp(/^chain:keeta:[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.location) || RegExp(/^chain:evm:[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.location) || RegExp(/^chain:solana:(.*)/).test(input.location) || RegExp(/^chain:bitcoin:(.*)/).test(input.location) || RegExp(/^chain:tron:(.*)/).test(input.location)) || ("object" === typeof input.location && null !== input.location || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3992
4200
|
method: "createAssert",
|
|
3993
4201
|
path: _path + ".location",
|
|
3994
|
-
expected: "(ExternalURL | string)",
|
|
4202
|
+
expected: "(\"bank-account:clabe\" | \"bank-account:iban-swift\" | \"bank-account:pix\" | \"bank-account:us\" | ExternalURL | `chain:bitcoin:${string}` | `chain:evm:${bigint}` | `chain:keeta:${bigint}` | `chain:solana:${string}` | `chain:tron:${string}` | undefined)",
|
|
3995
4203
|
value: input.location
|
|
3996
4204
|
}, _errorFactory)) && _ao0(input.location, _path + ".location", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3997
4205
|
method: "createAssert",
|
|
3998
4206
|
path: _path + ".location",
|
|
3999
|
-
expected: "(ExternalURL | string)",
|
|
4207
|
+
expected: "(\"bank-account:clabe\" | \"bank-account:iban-swift\" | \"bank-account:pix\" | \"bank-account:us\" | ExternalURL | `chain:bitcoin:${string}` | `chain:evm:${bigint}` | `chain:keeta:${bigint}` | `chain:solana:${string}` | `chain:tron:${string}` | undefined)",
|
|
4000
4208
|
value: input.location
|
|
4001
|
-
}, _errorFactory)) && ((null !== input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4209
|
+
}, _errorFactory))) && ((null !== input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4002
4210
|
method: "createAssert",
|
|
4003
4211
|
path: _path + ".id",
|
|
4004
4212
|
expected: "(ExternalURL | string)",
|
|
@@ -4018,237 +4226,347 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
4018
4226
|
path: _path + ".id",
|
|
4019
4227
|
expected: "(ExternalURL | string)",
|
|
4020
4228
|
value: input.id
|
|
4021
|
-
}, _errorFactory)))
|
|
4022
|
-
method: "createAssert",
|
|
4023
|
-
path: _path + ".rails",
|
|
4024
|
-
expected: "(ExternalURL | ToJSONValuizableObject<{ inbound: Rail[]; outbound?: Rail[]; } & { common?: Rail[]; }> | ToJSONValuizableObject<{ inbound?: Rail[]; outbound: Rail[]; } & { common?: Rail[]; }> | ToJSONValuizableObject<{ inbound?: never; outbound?: never; } & { common?: Rail[]; }>)",
|
|
4025
|
-
value: input.rails
|
|
4026
|
-
}, _errorFactory)) && _au20(input.rails, _path + ".rails", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4027
|
-
method: "createAssert",
|
|
4028
|
-
path: _path + ".rails",
|
|
4029
|
-
expected: "(ExternalURL | ToJSONValuizableObject<{ inbound: Rail[]; outbound?: Rail[]; } & { common?: Rail[]; }> | ToJSONValuizableObject<{ inbound?: Rail[]; outbound: Rail[]; } & { common?: Rail[]; }> | ToJSONValuizableObject<{ inbound?: never; outbound?: never; } & { common?: Rail[]; }>)",
|
|
4030
|
-
value: input.rails
|
|
4031
|
-
}, _errorFactory)); const _ao23 = (input, _path, _exceptionable = true) => (null !== input.inbound || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4229
|
+
}, _errorFactory))); const _ao26 = (input, _path, _exceptionable = true) => (null !== input.inbound || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4032
4230
|
method: "createAssert",
|
|
4033
4231
|
path: _path + ".inbound",
|
|
4034
|
-
expected: "(Array<
|
|
4232
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL)",
|
|
4035
4233
|
value: input.inbound
|
|
4036
4234
|
}, _errorFactory)) && (undefined !== input.inbound || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4037
4235
|
method: "createAssert",
|
|
4038
4236
|
path: _path + ".inbound",
|
|
4039
|
-
expected: "(Array<
|
|
4237
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL)",
|
|
4040
4238
|
value: input.inbound
|
|
4041
|
-
}, _errorFactory)) && (Array.isArray(input.inbound) && input.inbound.every((elem,
|
|
4239
|
+
}, _errorFactory)) && (Array.isArray(input.inbound) && input.inbound.every((elem, _index47) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4042
4240
|
method: "createAssert",
|
|
4043
|
-
path: _path + ".inbound[" +
|
|
4044
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4241
|
+
path: _path + ".inbound[" + _index47 + "]",
|
|
4242
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4045
4243
|
value: elem
|
|
4046
4244
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4047
4245
|
method: "createAssert",
|
|
4048
|
-
path: _path + ".inbound[" +
|
|
4049
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4246
|
+
path: _path + ".inbound[" + _index47 + "]",
|
|
4247
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4050
4248
|
value: elem
|
|
4051
|
-
}, _errorFactory)) && (true ===
|
|
4249
|
+
}, _errorFactory)) && (true === _av48.has(elem) || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4052
4250
|
method: "createAssert",
|
|
4053
|
-
path: _path + ".inbound[" +
|
|
4054
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4251
|
+
path: _path + ".inbound[" + _index47 + "]",
|
|
4252
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4055
4253
|
value: elem
|
|
4056
|
-
}, _errorFactory)) &&
|
|
4254
|
+
}, _errorFactory)) && _au3(elem, _path + ".inbound[" + _index47 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4057
4255
|
method: "createAssert",
|
|
4058
|
-
path: _path + ".inbound[" +
|
|
4059
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4256
|
+
path: _path + ".inbound[" + _index47 + "]",
|
|
4257
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4060
4258
|
value: elem
|
|
4061
4259
|
}, _errorFactory))) || "object" === typeof input.inbound && null !== input.inbound && _ao0(input.inbound, _path + ".inbound", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4062
4260
|
method: "createAssert",
|
|
4063
4261
|
path: _path + ".inbound",
|
|
4064
|
-
expected: "(Array<
|
|
4262
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL)",
|
|
4065
4263
|
value: input.inbound
|
|
4066
4264
|
}, _errorFactory) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4067
4265
|
method: "createAssert",
|
|
4068
4266
|
path: _path + ".inbound",
|
|
4069
|
-
expected: "(Array<
|
|
4267
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL)",
|
|
4070
4268
|
value: input.inbound
|
|
4071
4269
|
}, _errorFactory)) && ((null !== input.outbound || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4072
4270
|
method: "createAssert",
|
|
4073
4271
|
path: _path + ".outbound",
|
|
4074
|
-
expected: "(Array<
|
|
4272
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL | undefined)",
|
|
4075
4273
|
value: input.outbound
|
|
4076
|
-
}, _errorFactory)) && (undefined === input.outbound || (Array.isArray(input.outbound) && input.outbound.every((elem,
|
|
4274
|
+
}, _errorFactory)) && (undefined === input.outbound || (Array.isArray(input.outbound) && input.outbound.every((elem, _index49) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4077
4275
|
method: "createAssert",
|
|
4078
|
-
path: _path + ".outbound[" +
|
|
4079
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4276
|
+
path: _path + ".outbound[" + _index49 + "]",
|
|
4277
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4080
4278
|
value: elem
|
|
4081
4279
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4082
4280
|
method: "createAssert",
|
|
4083
|
-
path: _path + ".outbound[" +
|
|
4084
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4281
|
+
path: _path + ".outbound[" + _index49 + "]",
|
|
4282
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4085
4283
|
value: elem
|
|
4086
|
-
}, _errorFactory)) && (true ===
|
|
4284
|
+
}, _errorFactory)) && (true === _av50.has(elem) || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4087
4285
|
method: "createAssert",
|
|
4088
|
-
path: _path + ".outbound[" +
|
|
4089
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4286
|
+
path: _path + ".outbound[" + _index49 + "]",
|
|
4287
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4090
4288
|
value: elem
|
|
4091
|
-
}, _errorFactory)) &&
|
|
4289
|
+
}, _errorFactory)) && _au3(elem, _path + ".outbound[" + _index49 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4092
4290
|
method: "createAssert",
|
|
4093
|
-
path: _path + ".outbound[" +
|
|
4094
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4291
|
+
path: _path + ".outbound[" + _index49 + "]",
|
|
4292
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4095
4293
|
value: elem
|
|
4096
4294
|
}, _errorFactory))) || "object" === typeof input.outbound && null !== input.outbound && _ao0(input.outbound, _path + ".outbound", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4097
4295
|
method: "createAssert",
|
|
4098
4296
|
path: _path + ".outbound",
|
|
4099
|
-
expected: "(Array<
|
|
4297
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL | undefined)",
|
|
4100
4298
|
value: input.outbound
|
|
4101
4299
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4102
4300
|
method: "createAssert",
|
|
4103
4301
|
path: _path + ".outbound",
|
|
4104
|
-
expected: "(Array<
|
|
4302
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL | undefined)",
|
|
4105
4303
|
value: input.outbound
|
|
4106
4304
|
}, _errorFactory))) && ((null !== input.common || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4107
4305
|
method: "createAssert",
|
|
4108
4306
|
path: _path + ".common",
|
|
4109
|
-
expected: "(Array<
|
|
4307
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL | undefined)",
|
|
4110
4308
|
value: input.common
|
|
4111
|
-
}, _errorFactory)) && (undefined === input.common || (Array.isArray(input.common) && input.common.every((elem,
|
|
4309
|
+
}, _errorFactory)) && (undefined === input.common || (Array.isArray(input.common) && input.common.every((elem, _index51) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4112
4310
|
method: "createAssert",
|
|
4113
|
-
path: _path + ".common[" +
|
|
4114
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4311
|
+
path: _path + ".common[" + _index51 + "]",
|
|
4312
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4115
4313
|
value: elem
|
|
4116
4314
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4117
4315
|
method: "createAssert",
|
|
4118
|
-
path: _path + ".common[" +
|
|
4119
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4316
|
+
path: _path + ".common[" + _index51 + "]",
|
|
4317
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4120
4318
|
value: elem
|
|
4121
|
-
}, _errorFactory)) && (true ===
|
|
4319
|
+
}, _errorFactory)) && (true === _av52.has(elem) || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4122
4320
|
method: "createAssert",
|
|
4123
|
-
path: _path + ".common[" +
|
|
4124
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4321
|
+
path: _path + ".common[" + _index51 + "]",
|
|
4322
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4125
4323
|
value: elem
|
|
4126
|
-
}, _errorFactory)) &&
|
|
4324
|
+
}, _errorFactory)) && _au3(elem, _path + ".common[" + _index51 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4127
4325
|
method: "createAssert",
|
|
4128
|
-
path: _path + ".common[" +
|
|
4129
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4326
|
+
path: _path + ".common[" + _index51 + "]",
|
|
4327
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4130
4328
|
value: elem
|
|
4131
4329
|
}, _errorFactory))) || "object" === typeof input.common && null !== input.common && _ao0(input.common, _path + ".common", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4132
4330
|
method: "createAssert",
|
|
4133
4331
|
path: _path + ".common",
|
|
4134
|
-
expected: "(Array<
|
|
4332
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL | undefined)",
|
|
4135
4333
|
value: input.common
|
|
4136
4334
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4137
4335
|
method: "createAssert",
|
|
4138
4336
|
path: _path + ".common",
|
|
4139
|
-
expected: "(Array<
|
|
4337
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL | undefined)",
|
|
4140
4338
|
value: input.common
|
|
4141
|
-
}, _errorFactory))); const
|
|
4339
|
+
}, _errorFactory))); const _ao27 = (input, _path, _exceptionable = true) => (true === _av53.has(input.rail) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4340
|
+
method: "createAssert",
|
|
4341
|
+
path: _path + ".rail",
|
|
4342
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\")",
|
|
4343
|
+
value: input.rail
|
|
4344
|
+
}, _errorFactory)) && ((null !== input.estimatedTransferTimeMs || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4345
|
+
method: "createAssert",
|
|
4346
|
+
path: _path + ".estimatedTransferTimeMs",
|
|
4347
|
+
expected: "([minEstimateMs: number, maxEstimateMs: number] | number | undefined)",
|
|
4348
|
+
value: input.estimatedTransferTimeMs
|
|
4349
|
+
}, _errorFactory)) && (undefined === input.estimatedTransferTimeMs || "number" === typeof input.estimatedTransferTimeMs || (Array.isArray(input.estimatedTransferTimeMs) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4350
|
+
method: "createAssert",
|
|
4351
|
+
path: _path + ".estimatedTransferTimeMs",
|
|
4352
|
+
expected: "([minEstimateMs: number, maxEstimateMs: number] | number | undefined)",
|
|
4353
|
+
value: input.estimatedTransferTimeMs
|
|
4354
|
+
}, _errorFactory)) && ((input.estimatedTransferTimeMs.length === 2 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4355
|
+
method: "createAssert",
|
|
4356
|
+
path: _path + ".estimatedTransferTimeMs",
|
|
4357
|
+
expected: "[number, number]",
|
|
4358
|
+
value: input.estimatedTransferTimeMs
|
|
4359
|
+
}, _errorFactory)) && ("number" === typeof input.estimatedTransferTimeMs[0] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4360
|
+
method: "createAssert",
|
|
4361
|
+
path: _path + ".estimatedTransferTimeMs[0]",
|
|
4362
|
+
expected: "number",
|
|
4363
|
+
value: input.estimatedTransferTimeMs[0]
|
|
4364
|
+
}, _errorFactory)) && ("number" === typeof input.estimatedTransferTimeMs[1] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4365
|
+
method: "createAssert",
|
|
4366
|
+
path: _path + ".estimatedTransferTimeMs[1]",
|
|
4367
|
+
expected: "number",
|
|
4368
|
+
value: input.estimatedTransferTimeMs[1]
|
|
4369
|
+
}, _errorFactory))) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4370
|
+
method: "createAssert",
|
|
4371
|
+
path: _path + ".estimatedTransferTimeMs",
|
|
4372
|
+
expected: "([minEstimateMs: number, maxEstimateMs: number] | number | undefined)",
|
|
4373
|
+
value: input.estimatedTransferTimeMs
|
|
4374
|
+
}, _errorFactory))) && (undefined === input.estimatedTransferValueRange || ("object" === typeof input.estimatedTransferValueRange && null !== input.estimatedTransferValueRange || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4375
|
+
method: "createAssert",
|
|
4376
|
+
path: _path + ".estimatedTransferValueRange",
|
|
4377
|
+
expected: "(__type.o2 | undefined)",
|
|
4378
|
+
value: input.estimatedTransferValueRange
|
|
4379
|
+
}, _errorFactory)) && _ao28(input.estimatedTransferValueRange, _path + ".estimatedTransferValueRange", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4380
|
+
method: "createAssert",
|
|
4381
|
+
path: _path + ".estimatedTransferValueRange",
|
|
4382
|
+
expected: "(__type.o2 | undefined)",
|
|
4383
|
+
value: input.estimatedTransferValueRange
|
|
4384
|
+
}, _errorFactory)) && (undefined === input.estimatedFee || ("object" === typeof input.estimatedFee && null !== input.estimatedFee && false === Array.isArray(input.estimatedFee) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4385
|
+
method: "createAssert",
|
|
4386
|
+
path: _path + ".estimatedFee",
|
|
4387
|
+
expected: "(__type.o3 | undefined)",
|
|
4388
|
+
value: input.estimatedFee
|
|
4389
|
+
}, _errorFactory)) && _ao29(input.estimatedFee, _path + ".estimatedFee", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4390
|
+
method: "createAssert",
|
|
4391
|
+
path: _path + ".estimatedFee",
|
|
4392
|
+
expected: "(__type.o3 | undefined)",
|
|
4393
|
+
value: input.estimatedFee
|
|
4394
|
+
}, _errorFactory)); const _ao28 = (input, _path, _exceptionable = true) => ((Array.isArray(input.value) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4395
|
+
method: "createAssert",
|
|
4396
|
+
path: _path + ".value",
|
|
4397
|
+
expected: "[string | undefined, string | undefined]",
|
|
4398
|
+
value: input.value
|
|
4399
|
+
}, _errorFactory)) && ((input.value.length === 2 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4400
|
+
method: "createAssert",
|
|
4401
|
+
path: _path + ".value",
|
|
4402
|
+
expected: "[(string | undefined), (string | undefined)]",
|
|
4403
|
+
value: input.value
|
|
4404
|
+
}, _errorFactory)) && (undefined === input.value[0] || "string" === typeof input.value[0] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4405
|
+
method: "createAssert",
|
|
4406
|
+
path: _path + ".value[0]",
|
|
4407
|
+
expected: "(string | undefined)",
|
|
4408
|
+
value: input.value[0]
|
|
4409
|
+
}, _errorFactory)) && (undefined === input.value[1] || "string" === typeof input.value[1] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4410
|
+
method: "createAssert",
|
|
4411
|
+
path: _path + ".value[1]",
|
|
4412
|
+
expected: "(string | undefined)",
|
|
4413
|
+
value: input.value[1]
|
|
4414
|
+
}, _errorFactory))) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4415
|
+
method: "createAssert",
|
|
4416
|
+
path: _path + ".value",
|
|
4417
|
+
expected: "[string | undefined, string | undefined]",
|
|
4418
|
+
value: input.value
|
|
4419
|
+
}, _errorFactory)) && ((null !== input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4420
|
+
method: "createAssert",
|
|
4421
|
+
path: _path + ".asset",
|
|
4422
|
+
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `evm:0x${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `solana:${string}` | `tron:${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}` | undefined)",
|
|
4423
|
+
value: input.asset
|
|
4424
|
+
}, _errorFactory)) && (undefined === input.asset || true === _av54.has(input.asset) || "string" === typeof input.asset && (RegExp(/^\$(.*)/).test(input.asset) || RegExp(/^keeta_am(.*)/).test(input.asset) || RegExp(/^keeta_an(.*)/).test(input.asset) || RegExp(/^keeta_ao(.*)/).test(input.asset) || RegExp(/^keeta_ap(.*)/).test(input.asset) || RegExp(/^tyblocks_am(.*)/).test(input.asset) || RegExp(/^tyblocks_an(.*)/).test(input.asset) || RegExp(/^tyblocks_ao(.*)/).test(input.asset) || RegExp(/^tyblocks_ap(.*)/).test(input.asset) || RegExp(/^solana:(.*)/).test(input.asset) || RegExp(/^evm:0x(.*)/).test(input.asset) || RegExp(/^tron:(.*)/).test(input.asset)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4425
|
+
method: "createAssert",
|
|
4426
|
+
path: _path + ".asset",
|
|
4427
|
+
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `evm:0x${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `solana:${string}` | `tron:${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}` | undefined)",
|
|
4428
|
+
value: input.asset
|
|
4429
|
+
}, _errorFactory))); const _ao29 = (input, _path, _exceptionable = true) => (undefined === input.fixedFee || ("object" === typeof input.fixedFee && null !== input.fixedFee || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4430
|
+
method: "createAssert",
|
|
4431
|
+
path: _path + ".fixedFee",
|
|
4432
|
+
expected: "(__type.o4 | undefined)",
|
|
4433
|
+
value: input.fixedFee
|
|
4434
|
+
}, _errorFactory)) && _ao30(input.fixedFee, _path + ".fixedFee", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4435
|
+
method: "createAssert",
|
|
4436
|
+
path: _path + ".fixedFee",
|
|
4437
|
+
expected: "(__type.o4 | undefined)",
|
|
4438
|
+
value: input.fixedFee
|
|
4439
|
+
}, _errorFactory)) && (undefined === input.variableFeeBps || "number" === typeof input.variableFeeBps || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4440
|
+
method: "createAssert",
|
|
4441
|
+
path: _path + ".variableFeeBps",
|
|
4442
|
+
expected: "(number | undefined)",
|
|
4443
|
+
value: input.variableFeeBps
|
|
4444
|
+
}, _errorFactory)); const _ao30 = (input, _path, _exceptionable = true) => ("string" === typeof input.value || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4445
|
+
method: "createAssert",
|
|
4446
|
+
path: _path + ".value",
|
|
4447
|
+
expected: "string",
|
|
4448
|
+
value: input.value
|
|
4449
|
+
}, _errorFactory)) && ((null !== input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4450
|
+
method: "createAssert",
|
|
4451
|
+
path: _path + ".asset",
|
|
4452
|
+
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `evm:0x${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `solana:${string}` | `tron:${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}` | undefined)",
|
|
4453
|
+
value: input.asset
|
|
4454
|
+
}, _errorFactory)) && (undefined === input.asset || true === _av55.has(input.asset) || "string" === typeof input.asset && (RegExp(/^\$(.*)/).test(input.asset) || RegExp(/^keeta_am(.*)/).test(input.asset) || RegExp(/^keeta_an(.*)/).test(input.asset) || RegExp(/^keeta_ao(.*)/).test(input.asset) || RegExp(/^keeta_ap(.*)/).test(input.asset) || RegExp(/^tyblocks_am(.*)/).test(input.asset) || RegExp(/^tyblocks_an(.*)/).test(input.asset) || RegExp(/^tyblocks_ao(.*)/).test(input.asset) || RegExp(/^tyblocks_ap(.*)/).test(input.asset) || RegExp(/^solana:(.*)/).test(input.asset) || RegExp(/^evm:0x(.*)/).test(input.asset) || RegExp(/^tron:(.*)/).test(input.asset)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4455
|
+
method: "createAssert",
|
|
4456
|
+
path: _path + ".asset",
|
|
4457
|
+
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `evm:0x${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `solana:${string}` | `tron:${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}` | undefined)",
|
|
4458
|
+
value: input.asset
|
|
4459
|
+
}, _errorFactory))); const _ao31 = (input, _path, _exceptionable = true) => (null !== input.inbound || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4142
4460
|
method: "createAssert",
|
|
4143
4461
|
path: _path + ".inbound",
|
|
4144
|
-
expected: "(Array<
|
|
4462
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL | undefined)",
|
|
4145
4463
|
value: input.inbound
|
|
4146
|
-
}, _errorFactory)) && (undefined === input.inbound || (Array.isArray(input.inbound) && input.inbound.every((elem,
|
|
4464
|
+
}, _errorFactory)) && (undefined === input.inbound || (Array.isArray(input.inbound) && input.inbound.every((elem, _index56) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4147
4465
|
method: "createAssert",
|
|
4148
|
-
path: _path + ".inbound[" +
|
|
4149
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4466
|
+
path: _path + ".inbound[" + _index56 + "]",
|
|
4467
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4150
4468
|
value: elem
|
|
4151
4469
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4152
4470
|
method: "createAssert",
|
|
4153
|
-
path: _path + ".inbound[" +
|
|
4154
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4471
|
+
path: _path + ".inbound[" + _index56 + "]",
|
|
4472
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4155
4473
|
value: elem
|
|
4156
|
-
}, _errorFactory)) && (true ===
|
|
4474
|
+
}, _errorFactory)) && (true === _av57.has(elem) || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4157
4475
|
method: "createAssert",
|
|
4158
|
-
path: _path + ".inbound[" +
|
|
4159
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4476
|
+
path: _path + ".inbound[" + _index56 + "]",
|
|
4477
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4160
4478
|
value: elem
|
|
4161
|
-
}, _errorFactory)) &&
|
|
4479
|
+
}, _errorFactory)) && _au3(elem, _path + ".inbound[" + _index56 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4162
4480
|
method: "createAssert",
|
|
4163
|
-
path: _path + ".inbound[" +
|
|
4164
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4481
|
+
path: _path + ".inbound[" + _index56 + "]",
|
|
4482
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4165
4483
|
value: elem
|
|
4166
4484
|
}, _errorFactory))) || "object" === typeof input.inbound && null !== input.inbound && _ao0(input.inbound, _path + ".inbound", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4167
4485
|
method: "createAssert",
|
|
4168
4486
|
path: _path + ".inbound",
|
|
4169
|
-
expected: "(Array<
|
|
4487
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL | undefined)",
|
|
4170
4488
|
value: input.inbound
|
|
4171
4489
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4172
4490
|
method: "createAssert",
|
|
4173
4491
|
path: _path + ".inbound",
|
|
4174
|
-
expected: "(Array<
|
|
4492
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL | undefined)",
|
|
4175
4493
|
value: input.inbound
|
|
4176
4494
|
}, _errorFactory)) && ((null !== input.outbound || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4177
4495
|
method: "createAssert",
|
|
4178
4496
|
path: _path + ".outbound",
|
|
4179
|
-
expected: "(Array<
|
|
4497
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL)",
|
|
4180
4498
|
value: input.outbound
|
|
4181
4499
|
}, _errorFactory)) && (undefined !== input.outbound || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4182
4500
|
method: "createAssert",
|
|
4183
4501
|
path: _path + ".outbound",
|
|
4184
|
-
expected: "(Array<
|
|
4502
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL)",
|
|
4185
4503
|
value: input.outbound
|
|
4186
|
-
}, _errorFactory)) && (Array.isArray(input.outbound) && input.outbound.every((elem,
|
|
4504
|
+
}, _errorFactory)) && (Array.isArray(input.outbound) && input.outbound.every((elem, _index58) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4187
4505
|
method: "createAssert",
|
|
4188
|
-
path: _path + ".outbound[" +
|
|
4189
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4506
|
+
path: _path + ".outbound[" + _index58 + "]",
|
|
4507
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4190
4508
|
value: elem
|
|
4191
4509
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4192
4510
|
method: "createAssert",
|
|
4193
|
-
path: _path + ".outbound[" +
|
|
4194
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4511
|
+
path: _path + ".outbound[" + _index58 + "]",
|
|
4512
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4195
4513
|
value: elem
|
|
4196
|
-
}, _errorFactory)) && (true ===
|
|
4514
|
+
}, _errorFactory)) && (true === _av59.has(elem) || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4197
4515
|
method: "createAssert",
|
|
4198
|
-
path: _path + ".outbound[" +
|
|
4199
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4516
|
+
path: _path + ".outbound[" + _index58 + "]",
|
|
4517
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4200
4518
|
value: elem
|
|
4201
|
-
}, _errorFactory)) &&
|
|
4519
|
+
}, _errorFactory)) && _au3(elem, _path + ".outbound[" + _index58 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4202
4520
|
method: "createAssert",
|
|
4203
|
-
path: _path + ".outbound[" +
|
|
4204
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4521
|
+
path: _path + ".outbound[" + _index58 + "]",
|
|
4522
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4205
4523
|
value: elem
|
|
4206
4524
|
}, _errorFactory))) || "object" === typeof input.outbound && null !== input.outbound && _ao0(input.outbound, _path + ".outbound", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4207
4525
|
method: "createAssert",
|
|
4208
4526
|
path: _path + ".outbound",
|
|
4209
|
-
expected: "(Array<
|
|
4527
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL)",
|
|
4210
4528
|
value: input.outbound
|
|
4211
4529
|
}, _errorFactory) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4212
4530
|
method: "createAssert",
|
|
4213
4531
|
path: _path + ".outbound",
|
|
4214
|
-
expected: "(Array<
|
|
4532
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL)",
|
|
4215
4533
|
value: input.outbound
|
|
4216
4534
|
}, _errorFactory))) && ((null !== input.common || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4217
4535
|
method: "createAssert",
|
|
4218
4536
|
path: _path + ".common",
|
|
4219
|
-
expected: "(Array<
|
|
4537
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL | undefined)",
|
|
4220
4538
|
value: input.common
|
|
4221
|
-
}, _errorFactory)) && (undefined === input.common || (Array.isArray(input.common) && input.common.every((elem,
|
|
4539
|
+
}, _errorFactory)) && (undefined === input.common || (Array.isArray(input.common) && input.common.every((elem, _index60) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4222
4540
|
method: "createAssert",
|
|
4223
|
-
path: _path + ".common[" +
|
|
4224
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4541
|
+
path: _path + ".common[" + _index60 + "]",
|
|
4542
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4225
4543
|
value: elem
|
|
4226
4544
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4227
4545
|
method: "createAssert",
|
|
4228
|
-
path: _path + ".common[" +
|
|
4229
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4546
|
+
path: _path + ".common[" + _index60 + "]",
|
|
4547
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4230
4548
|
value: elem
|
|
4231
|
-
}, _errorFactory)) && (true ===
|
|
4549
|
+
}, _errorFactory)) && (true === _av61.has(elem) || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4232
4550
|
method: "createAssert",
|
|
4233
|
-
path: _path + ".common[" +
|
|
4234
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4551
|
+
path: _path + ".common[" + _index60 + "]",
|
|
4552
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4235
4553
|
value: elem
|
|
4236
|
-
}, _errorFactory)) &&
|
|
4554
|
+
}, _errorFactory)) && _au3(elem, _path + ".common[" + _index60 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4237
4555
|
method: "createAssert",
|
|
4238
|
-
path: _path + ".common[" +
|
|
4239
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4556
|
+
path: _path + ".common[" + _index60 + "]",
|
|
4557
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4240
4558
|
value: elem
|
|
4241
4559
|
}, _errorFactory))) || "object" === typeof input.common && null !== input.common && _ao0(input.common, _path + ".common", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4242
4560
|
method: "createAssert",
|
|
4243
4561
|
path: _path + ".common",
|
|
4244
|
-
expected: "(Array<
|
|
4562
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL | undefined)",
|
|
4245
4563
|
value: input.common
|
|
4246
4564
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4247
4565
|
method: "createAssert",
|
|
4248
4566
|
path: _path + ".common",
|
|
4249
|
-
expected: "(Array<
|
|
4567
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL | undefined)",
|
|
4250
4568
|
value: input.common
|
|
4251
|
-
}, _errorFactory))); const
|
|
4569
|
+
}, _errorFactory))); const _ao32 = (input, _path, _exceptionable = true) => (undefined === input.inbound || ("object" === typeof input.inbound && null !== input.inbound || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4252
4570
|
method: "createAssert",
|
|
4253
4571
|
path: _path + ".inbound",
|
|
4254
4572
|
expected: "(ExternalURL | undefined)",
|
|
@@ -4271,54 +4589,54 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
4271
4589
|
}, _errorFactory)) && ((null !== input.common || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4272
4590
|
method: "createAssert",
|
|
4273
4591
|
path: _path + ".common",
|
|
4274
|
-
expected: "(Array<
|
|
4592
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL | undefined)",
|
|
4275
4593
|
value: input.common
|
|
4276
|
-
}, _errorFactory)) && (undefined === input.common || (Array.isArray(input.common) && input.common.every((elem,
|
|
4594
|
+
}, _errorFactory)) && (undefined === input.common || (Array.isArray(input.common) && input.common.every((elem, _index62) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4277
4595
|
method: "createAssert",
|
|
4278
|
-
path: _path + ".common[" +
|
|
4279
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4596
|
+
path: _path + ".common[" + _index62 + "]",
|
|
4597
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4280
4598
|
value: elem
|
|
4281
4599
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4282
4600
|
method: "createAssert",
|
|
4283
|
-
path: _path + ".common[" +
|
|
4284
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4601
|
+
path: _path + ".common[" + _index62 + "]",
|
|
4602
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4285
4603
|
value: elem
|
|
4286
|
-
}, _errorFactory)) && (true ===
|
|
4604
|
+
}, _errorFactory)) && (true === _av63.has(elem) || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4287
4605
|
method: "createAssert",
|
|
4288
|
-
path: _path + ".common[" +
|
|
4289
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4606
|
+
path: _path + ".common[" + _index62 + "]",
|
|
4607
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4290
4608
|
value: elem
|
|
4291
|
-
}, _errorFactory)) &&
|
|
4609
|
+
}, _errorFactory)) && _au3(elem, _path + ".common[" + _index62 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4292
4610
|
method: "createAssert",
|
|
4293
|
-
path: _path + ".common[" +
|
|
4294
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL)",
|
|
4611
|
+
path: _path + ".common[" + _index62 + "]",
|
|
4612
|
+
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\" | ExternalURL | RailWithExtendedDetails)",
|
|
4295
4613
|
value: elem
|
|
4296
4614
|
}, _errorFactory))) || "object" === typeof input.common && null !== input.common && _ao0(input.common, _path + ".common", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4297
4615
|
method: "createAssert",
|
|
4298
4616
|
path: _path + ".common",
|
|
4299
|
-
expected: "(Array<
|
|
4617
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL | undefined)",
|
|
4300
4618
|
value: input.common
|
|
4301
4619
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4302
4620
|
method: "createAssert",
|
|
4303
4621
|
path: _path + ".common",
|
|
4304
|
-
expected: "(Array<
|
|
4622
|
+
expected: "(Array<RailOrRailWithExtendedDetails | ExternalURL> | ExternalURL | undefined)",
|
|
4305
4623
|
value: input.common
|
|
4306
|
-
}, _errorFactory))); const
|
|
4624
|
+
}, _errorFactory))); const _ao33 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
4307
4625
|
const value = input[key];
|
|
4308
4626
|
if (undefined === value)
|
|
4309
4627
|
return true;
|
|
4310
4628
|
return ("object" === typeof value && null !== value && false === Array.isArray(value) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4311
4629
|
method: "createAssert",
|
|
4312
4630
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
4313
|
-
expected: "(ExternalURL | ToJSONValuizableObject<__type>.
|
|
4631
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o19)",
|
|
4314
4632
|
value: value
|
|
4315
|
-
}, _errorFactory)) &&
|
|
4633
|
+
}, _errorFactory)) && _au26(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4316
4634
|
method: "createAssert",
|
|
4317
4635
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
4318
|
-
expected: "(ExternalURL | ToJSONValuizableObject<__type>.
|
|
4636
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o19)",
|
|
4319
4637
|
value: value
|
|
4320
4638
|
}, _errorFactory);
|
|
4321
|
-
}); const
|
|
4639
|
+
}); const _ao34 = (input, _path, _exceptionable = true) => (null !== input.workInProgress || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4322
4640
|
method: "createAssert",
|
|
4323
4641
|
path: _path + ".workInProgress",
|
|
4324
4642
|
expected: "(ExternalURL | true | undefined)",
|
|
@@ -4333,7 +4651,312 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
4333
4651
|
path: _path + ".workInProgress",
|
|
4334
4652
|
expected: "(ExternalURL | true | undefined)",
|
|
4335
4653
|
value: input.workInProgress
|
|
4336
|
-
}, _errorFactory)); const
|
|
4654
|
+
}, _errorFactory)); const _ao35 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
4655
|
+
const value = input[key];
|
|
4656
|
+
if (undefined === value)
|
|
4657
|
+
return true;
|
|
4658
|
+
return ("object" === typeof value && null !== value || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4659
|
+
method: "createAssert",
|
|
4660
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
4661
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o21)",
|
|
4662
|
+
value: value
|
|
4663
|
+
}, _errorFactory)) && _au27(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4664
|
+
method: "createAssert",
|
|
4665
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
4666
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o21)",
|
|
4667
|
+
value: value
|
|
4668
|
+
}, _errorFactory);
|
|
4669
|
+
}); const _ao36 = (input, _path, _exceptionable = true) => (("object" === typeof input.operations && null !== input.operations && false === Array.isArray(input.operations) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4670
|
+
method: "createAssert",
|
|
4671
|
+
path: _path + ".operations",
|
|
4672
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o22)",
|
|
4673
|
+
value: input.operations
|
|
4674
|
+
}, _errorFactory)) && _au28(input.operations, _path + ".operations", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4675
|
+
method: "createAssert",
|
|
4676
|
+
path: _path + ".operations",
|
|
4677
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o22)",
|
|
4678
|
+
value: input.operations
|
|
4679
|
+
}, _errorFactory)) && ((null !== input.anchorAccount || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4680
|
+
method: "createAssert",
|
|
4681
|
+
path: _path + ".anchorAccount",
|
|
4682
|
+
expected: "(ExternalURL | string | undefined)",
|
|
4683
|
+
value: input.anchorAccount
|
|
4684
|
+
}, _errorFactory)) && (undefined === input.anchorAccount || "string" === typeof input.anchorAccount || ("object" === typeof input.anchorAccount && null !== input.anchorAccount || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4685
|
+
method: "createAssert",
|
|
4686
|
+
path: _path + ".anchorAccount",
|
|
4687
|
+
expected: "(ExternalURL | string | undefined)",
|
|
4688
|
+
value: input.anchorAccount
|
|
4689
|
+
}, _errorFactory)) && _ao0(input.anchorAccount, _path + ".anchorAccount", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4690
|
+
method: "createAssert",
|
|
4691
|
+
path: _path + ".anchorAccount",
|
|
4692
|
+
expected: "(ExternalURL | string | undefined)",
|
|
4693
|
+
value: input.anchorAccount
|
|
4694
|
+
}, _errorFactory))) && (undefined === input.quotas || ("object" === typeof input.quotas && null !== input.quotas || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4695
|
+
method: "createAssert",
|
|
4696
|
+
path: _path + ".quotas",
|
|
4697
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o23 | undefined)",
|
|
4698
|
+
value: input.quotas
|
|
4699
|
+
}, _errorFactory)) && _au29(input.quotas, _path + ".quotas", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4700
|
+
method: "createAssert",
|
|
4701
|
+
path: _path + ".quotas",
|
|
4702
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o23 | undefined)",
|
|
4703
|
+
value: input.quotas
|
|
4704
|
+
}, _errorFactory)) && ((null !== input.signedUrlDefaultTTL || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4705
|
+
method: "createAssert",
|
|
4706
|
+
path: _path + ".signedUrlDefaultTTL",
|
|
4707
|
+
expected: "(ExternalURL | number | undefined)",
|
|
4708
|
+
value: input.signedUrlDefaultTTL
|
|
4709
|
+
}, _errorFactory)) && (undefined === input.signedUrlDefaultTTL || "number" === typeof input.signedUrlDefaultTTL || ("object" === typeof input.signedUrlDefaultTTL && null !== input.signedUrlDefaultTTL || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4710
|
+
method: "createAssert",
|
|
4711
|
+
path: _path + ".signedUrlDefaultTTL",
|
|
4712
|
+
expected: "(ExternalURL | number | undefined)",
|
|
4713
|
+
value: input.signedUrlDefaultTTL
|
|
4714
|
+
}, _errorFactory)) && _ao0(input.signedUrlDefaultTTL, _path + ".signedUrlDefaultTTL", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4715
|
+
method: "createAssert",
|
|
4716
|
+
path: _path + ".signedUrlDefaultTTL",
|
|
4717
|
+
expected: "(ExternalURL | number | undefined)",
|
|
4718
|
+
value: input.signedUrlDefaultTTL
|
|
4719
|
+
}, _errorFactory))) && ((null !== input.searchableFields || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4720
|
+
method: "createAssert",
|
|
4721
|
+
path: _path + ".searchableFields",
|
|
4722
|
+
expected: "(Array<\"tags\" | ExternalURL | \"owner\" | \"visibility\" | \"pathPrefix\"> | ExternalURL | undefined)",
|
|
4723
|
+
value: input.searchableFields
|
|
4724
|
+
}, _errorFactory)) && (undefined === input.searchableFields || (Array.isArray(input.searchableFields) && input.searchableFields.every((elem, _index64) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4725
|
+
method: "createAssert",
|
|
4726
|
+
path: _path + ".searchableFields[" + _index64 + "]",
|
|
4727
|
+
expected: "(\"owner\" | \"pathPrefix\" | \"tags\" | \"visibility\" | ExternalURL)",
|
|
4728
|
+
value: elem
|
|
4729
|
+
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4730
|
+
method: "createAssert",
|
|
4731
|
+
path: _path + ".searchableFields[" + _index64 + "]",
|
|
4732
|
+
expected: "(\"owner\" | \"pathPrefix\" | \"tags\" | \"visibility\" | ExternalURL)",
|
|
4733
|
+
value: elem
|
|
4734
|
+
}, _errorFactory)) && ("tags" === elem || "owner" === elem || "visibility" === elem || "pathPrefix" === elem || ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4735
|
+
method: "createAssert",
|
|
4736
|
+
path: _path + ".searchableFields[" + _index64 + "]",
|
|
4737
|
+
expected: "(\"owner\" | \"pathPrefix\" | \"tags\" | \"visibility\" | ExternalURL)",
|
|
4738
|
+
value: elem
|
|
4739
|
+
}, _errorFactory)) && _ao0(elem, _path + ".searchableFields[" + _index64 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4740
|
+
method: "createAssert",
|
|
4741
|
+
path: _path + ".searchableFields[" + _index64 + "]",
|
|
4742
|
+
expected: "(\"owner\" | \"pathPrefix\" | \"tags\" | \"visibility\" | ExternalURL)",
|
|
4743
|
+
value: elem
|
|
4744
|
+
}, _errorFactory))) || "object" === typeof input.searchableFields && null !== input.searchableFields && _ao0(input.searchableFields, _path + ".searchableFields", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4745
|
+
method: "createAssert",
|
|
4746
|
+
path: _path + ".searchableFields",
|
|
4747
|
+
expected: "(Array<\"tags\" | ExternalURL | \"owner\" | \"visibility\" | \"pathPrefix\"> | ExternalURL | undefined)",
|
|
4748
|
+
value: input.searchableFields
|
|
4749
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4750
|
+
method: "createAssert",
|
|
4751
|
+
path: _path + ".searchableFields",
|
|
4752
|
+
expected: "(Array<\"tags\" | ExternalURL | \"owner\" | \"visibility\" | \"pathPrefix\"> | ExternalURL | undefined)",
|
|
4753
|
+
value: input.searchableFields
|
|
4754
|
+
}, _errorFactory))); const _ao37 = (input, _path, _exceptionable = true) => (null !== input.put || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4755
|
+
method: "createAssert",
|
|
4756
|
+
path: _path + ".put",
|
|
4757
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4758
|
+
value: input.put
|
|
4759
|
+
}, _errorFactory)) && (undefined === input.put || "string" === typeof input.put || ("object" === typeof input.put && null !== input.put || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4760
|
+
method: "createAssert",
|
|
4761
|
+
path: _path + ".put",
|
|
4762
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4763
|
+
value: input.put
|
|
4764
|
+
}, _errorFactory)) && _au22(input.put, _path + ".put", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4765
|
+
method: "createAssert",
|
|
4766
|
+
path: _path + ".put",
|
|
4767
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4768
|
+
value: input.put
|
|
4769
|
+
}, _errorFactory)) && ((null !== input.get || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4770
|
+
method: "createAssert",
|
|
4771
|
+
path: _path + ".get",
|
|
4772
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4773
|
+
value: input.get
|
|
4774
|
+
}, _errorFactory)) && (undefined === input.get || "string" === typeof input.get || ("object" === typeof input.get && null !== input.get || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4775
|
+
method: "createAssert",
|
|
4776
|
+
path: _path + ".get",
|
|
4777
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4778
|
+
value: input.get
|
|
4779
|
+
}, _errorFactory)) && _au22(input.get, _path + ".get", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4780
|
+
method: "createAssert",
|
|
4781
|
+
path: _path + ".get",
|
|
4782
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4783
|
+
value: input.get
|
|
4784
|
+
}, _errorFactory))) && ((null !== input["delete"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4785
|
+
method: "createAssert",
|
|
4786
|
+
path: _path + "[\"delete\"]",
|
|
4787
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4788
|
+
value: input["delete"]
|
|
4789
|
+
}, _errorFactory)) && (undefined === input["delete"] || "string" === typeof input["delete"] || ("object" === typeof input["delete"] && null !== input["delete"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4790
|
+
method: "createAssert",
|
|
4791
|
+
path: _path + "[\"delete\"]",
|
|
4792
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4793
|
+
value: input["delete"]
|
|
4794
|
+
}, _errorFactory)) && _au22(input["delete"], _path + "[\"delete\"]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4795
|
+
method: "createAssert",
|
|
4796
|
+
path: _path + "[\"delete\"]",
|
|
4797
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4798
|
+
value: input["delete"]
|
|
4799
|
+
}, _errorFactory))) && ((null !== input.metadata || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4800
|
+
method: "createAssert",
|
|
4801
|
+
path: _path + ".metadata",
|
|
4802
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4803
|
+
value: input.metadata
|
|
4804
|
+
}, _errorFactory)) && (undefined === input.metadata || "string" === typeof input.metadata || ("object" === typeof input.metadata && null !== input.metadata || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4805
|
+
method: "createAssert",
|
|
4806
|
+
path: _path + ".metadata",
|
|
4807
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4808
|
+
value: input.metadata
|
|
4809
|
+
}, _errorFactory)) && _au22(input.metadata, _path + ".metadata", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4810
|
+
method: "createAssert",
|
|
4811
|
+
path: _path + ".metadata",
|
|
4812
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4813
|
+
value: input.metadata
|
|
4814
|
+
}, _errorFactory))) && ((null !== input.search || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4815
|
+
method: "createAssert",
|
|
4816
|
+
path: _path + ".search",
|
|
4817
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4818
|
+
value: input.search
|
|
4819
|
+
}, _errorFactory)) && (undefined === input.search || "string" === typeof input.search || ("object" === typeof input.search && null !== input.search || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4820
|
+
method: "createAssert",
|
|
4821
|
+
path: _path + ".search",
|
|
4822
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4823
|
+
value: input.search
|
|
4824
|
+
}, _errorFactory)) && _au22(input.search, _path + ".search", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4825
|
+
method: "createAssert",
|
|
4826
|
+
path: _path + ".search",
|
|
4827
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4828
|
+
value: input.search
|
|
4829
|
+
}, _errorFactory))) && ((null !== input["public"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4830
|
+
method: "createAssert",
|
|
4831
|
+
path: _path + "[\"public\"]",
|
|
4832
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4833
|
+
value: input["public"]
|
|
4834
|
+
}, _errorFactory)) && (undefined === input["public"] || "string" === typeof input["public"] || ("object" === typeof input["public"] && null !== input["public"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4835
|
+
method: "createAssert",
|
|
4836
|
+
path: _path + "[\"public\"]",
|
|
4837
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4838
|
+
value: input["public"]
|
|
4839
|
+
}, _errorFactory)) && _au22(input["public"], _path + "[\"public\"]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4840
|
+
method: "createAssert",
|
|
4841
|
+
path: _path + "[\"public\"]",
|
|
4842
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4843
|
+
value: input["public"]
|
|
4844
|
+
}, _errorFactory))) && ((null !== input.quota || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4845
|
+
method: "createAssert",
|
|
4846
|
+
path: _path + ".quota",
|
|
4847
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4848
|
+
value: input.quota
|
|
4849
|
+
}, _errorFactory)) && (undefined === input.quota || "string" === typeof input.quota || ("object" === typeof input.quota && null !== input.quota || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4850
|
+
method: "createAssert",
|
|
4851
|
+
path: _path + ".quota",
|
|
4852
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4853
|
+
value: input.quota
|
|
4854
|
+
}, _errorFactory)) && _au22(input.quota, _path + ".quota", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4855
|
+
method: "createAssert",
|
|
4856
|
+
path: _path + ".quota",
|
|
4857
|
+
expected: "(ExternalURL | __type | string | undefined)",
|
|
4858
|
+
value: input.quota
|
|
4859
|
+
}, _errorFactory))); const _ao38 = (input, _path, _exceptionable = true) => (null !== input.maxObjectSize || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4860
|
+
method: "createAssert",
|
|
4861
|
+
path: _path + ".maxObjectSize",
|
|
4862
|
+
expected: "(ExternalURL | number)",
|
|
4863
|
+
value: input.maxObjectSize
|
|
4864
|
+
}, _errorFactory)) && (undefined !== input.maxObjectSize || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4865
|
+
method: "createAssert",
|
|
4866
|
+
path: _path + ".maxObjectSize",
|
|
4867
|
+
expected: "(ExternalURL | number)",
|
|
4868
|
+
value: input.maxObjectSize
|
|
4869
|
+
}, _errorFactory)) && ("number" === typeof input.maxObjectSize || ("object" === typeof input.maxObjectSize && null !== input.maxObjectSize || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4870
|
+
method: "createAssert",
|
|
4871
|
+
path: _path + ".maxObjectSize",
|
|
4872
|
+
expected: "(ExternalURL | number)",
|
|
4873
|
+
value: input.maxObjectSize
|
|
4874
|
+
}, _errorFactory)) && _ao0(input.maxObjectSize, _path + ".maxObjectSize", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4875
|
+
method: "createAssert",
|
|
4876
|
+
path: _path + ".maxObjectSize",
|
|
4877
|
+
expected: "(ExternalURL | number)",
|
|
4878
|
+
value: input.maxObjectSize
|
|
4879
|
+
}, _errorFactory)) && ((null !== input.maxObjectsPerUser || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4880
|
+
method: "createAssert",
|
|
4881
|
+
path: _path + ".maxObjectsPerUser",
|
|
4882
|
+
expected: "(ExternalURL | number)",
|
|
4883
|
+
value: input.maxObjectsPerUser
|
|
4884
|
+
}, _errorFactory)) && (undefined !== input.maxObjectsPerUser || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4885
|
+
method: "createAssert",
|
|
4886
|
+
path: _path + ".maxObjectsPerUser",
|
|
4887
|
+
expected: "(ExternalURL | number)",
|
|
4888
|
+
value: input.maxObjectsPerUser
|
|
4889
|
+
}, _errorFactory)) && ("number" === typeof input.maxObjectsPerUser || ("object" === typeof input.maxObjectsPerUser && null !== input.maxObjectsPerUser || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4890
|
+
method: "createAssert",
|
|
4891
|
+
path: _path + ".maxObjectsPerUser",
|
|
4892
|
+
expected: "(ExternalURL | number)",
|
|
4893
|
+
value: input.maxObjectsPerUser
|
|
4894
|
+
}, _errorFactory)) && _ao0(input.maxObjectsPerUser, _path + ".maxObjectsPerUser", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4895
|
+
method: "createAssert",
|
|
4896
|
+
path: _path + ".maxObjectsPerUser",
|
|
4897
|
+
expected: "(ExternalURL | number)",
|
|
4898
|
+
value: input.maxObjectsPerUser
|
|
4899
|
+
}, _errorFactory))) && ((null !== input.maxStoragePerUser || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4900
|
+
method: "createAssert",
|
|
4901
|
+
path: _path + ".maxStoragePerUser",
|
|
4902
|
+
expected: "(ExternalURL | number)",
|
|
4903
|
+
value: input.maxStoragePerUser
|
|
4904
|
+
}, _errorFactory)) && (undefined !== input.maxStoragePerUser || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4905
|
+
method: "createAssert",
|
|
4906
|
+
path: _path + ".maxStoragePerUser",
|
|
4907
|
+
expected: "(ExternalURL | number)",
|
|
4908
|
+
value: input.maxStoragePerUser
|
|
4909
|
+
}, _errorFactory)) && ("number" === typeof input.maxStoragePerUser || ("object" === typeof input.maxStoragePerUser && null !== input.maxStoragePerUser || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4910
|
+
method: "createAssert",
|
|
4911
|
+
path: _path + ".maxStoragePerUser",
|
|
4912
|
+
expected: "(ExternalURL | number)",
|
|
4913
|
+
value: input.maxStoragePerUser
|
|
4914
|
+
}, _errorFactory)) && _ao0(input.maxStoragePerUser, _path + ".maxStoragePerUser", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4915
|
+
method: "createAssert",
|
|
4916
|
+
path: _path + ".maxStoragePerUser",
|
|
4917
|
+
expected: "(ExternalURL | number)",
|
|
4918
|
+
value: input.maxStoragePerUser
|
|
4919
|
+
}, _errorFactory))) && ((null !== input.maxSearchLimit || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4920
|
+
method: "createAssert",
|
|
4921
|
+
path: _path + ".maxSearchLimit",
|
|
4922
|
+
expected: "(ExternalURL | number)",
|
|
4923
|
+
value: input.maxSearchLimit
|
|
4924
|
+
}, _errorFactory)) && (undefined !== input.maxSearchLimit || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4925
|
+
method: "createAssert",
|
|
4926
|
+
path: _path + ".maxSearchLimit",
|
|
4927
|
+
expected: "(ExternalURL | number)",
|
|
4928
|
+
value: input.maxSearchLimit
|
|
4929
|
+
}, _errorFactory)) && ("number" === typeof input.maxSearchLimit || ("object" === typeof input.maxSearchLimit && null !== input.maxSearchLimit || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4930
|
+
method: "createAssert",
|
|
4931
|
+
path: _path + ".maxSearchLimit",
|
|
4932
|
+
expected: "(ExternalURL | number)",
|
|
4933
|
+
value: input.maxSearchLimit
|
|
4934
|
+
}, _errorFactory)) && _ao0(input.maxSearchLimit, _path + ".maxSearchLimit", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4935
|
+
method: "createAssert",
|
|
4936
|
+
path: _path + ".maxSearchLimit",
|
|
4937
|
+
expected: "(ExternalURL | number)",
|
|
4938
|
+
value: input.maxSearchLimit
|
|
4939
|
+
}, _errorFactory))) && ((null !== input.maxSignedUrlTTL || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4940
|
+
method: "createAssert",
|
|
4941
|
+
path: _path + ".maxSignedUrlTTL",
|
|
4942
|
+
expected: "(ExternalURL | number)",
|
|
4943
|
+
value: input.maxSignedUrlTTL
|
|
4944
|
+
}, _errorFactory)) && (undefined !== input.maxSignedUrlTTL || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4945
|
+
method: "createAssert",
|
|
4946
|
+
path: _path + ".maxSignedUrlTTL",
|
|
4947
|
+
expected: "(ExternalURL | number)",
|
|
4948
|
+
value: input.maxSignedUrlTTL
|
|
4949
|
+
}, _errorFactory)) && ("number" === typeof input.maxSignedUrlTTL || ("object" === typeof input.maxSignedUrlTTL && null !== input.maxSignedUrlTTL || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4950
|
+
method: "createAssert",
|
|
4951
|
+
path: _path + ".maxSignedUrlTTL",
|
|
4952
|
+
expected: "(ExternalURL | number)",
|
|
4953
|
+
value: input.maxSignedUrlTTL
|
|
4954
|
+
}, _errorFactory)) && _ao0(input.maxSignedUrlTTL, _path + ".maxSignedUrlTTL", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4955
|
+
method: "createAssert",
|
|
4956
|
+
path: _path + ".maxSignedUrlTTL",
|
|
4957
|
+
expected: "(ExternalURL | number)",
|
|
4958
|
+
value: input.maxSignedUrlTTL
|
|
4959
|
+
}, _errorFactory))); const _au0 = (input, _path, _exceptionable = true) => (() => {
|
|
4337
4960
|
if (undefined !== input.external)
|
|
4338
4961
|
return _ao0(input, _path, true && _exceptionable);
|
|
4339
4962
|
else if (undefined !== input.currencyCodes)
|
|
@@ -4349,74 +4972,96 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
4349
4972
|
if (undefined !== input.external)
|
|
4350
4973
|
return _ao0(input, _path, true && _exceptionable);
|
|
4351
4974
|
else if (undefined !== input.asset)
|
|
4352
|
-
return
|
|
4975
|
+
return _ao23(input, _path, true && _exceptionable);
|
|
4353
4976
|
else
|
|
4354
4977
|
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4355
4978
|
method: "createAssert",
|
|
4356
4979
|
path: _path,
|
|
4357
|
-
expected: "(ExternalURL | ToJSONValuizableObject<
|
|
4980
|
+
expected: "(ExternalURL | ToJSONValuizableObject<SupportedAssetsMetadata>)",
|
|
4358
4981
|
value: input
|
|
4359
4982
|
}, _errorFactory);
|
|
4360
4983
|
})(); const _au2 = (input, _path, _exceptionable = true) => (() => {
|
|
4361
4984
|
if (undefined !== input.external)
|
|
4362
4985
|
return _ao0(input, _path, true && _exceptionable);
|
|
4363
4986
|
else if (undefined !== input.pair)
|
|
4364
|
-
return
|
|
4987
|
+
return _ao24(input, _path, true && _exceptionable);
|
|
4365
4988
|
else
|
|
4366
4989
|
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4367
4990
|
method: "createAssert",
|
|
4368
4991
|
path: _path,
|
|
4369
|
-
expected: "(ExternalURL | ToJSONValuizableObject<
|
|
4992
|
+
expected: "(ExternalURL | ToJSONValuizableObject<AssetPath>)",
|
|
4370
4993
|
value: input
|
|
4371
4994
|
}, _errorFactory);
|
|
4372
4995
|
})(); const _au3 = (input, _path, _exceptionable = true) => (() => {
|
|
4373
|
-
if (undefined !== input.
|
|
4996
|
+
if (undefined !== input.rail)
|
|
4997
|
+
return _ao27(input, _path, true && _exceptionable);
|
|
4998
|
+
else if (undefined !== input.external)
|
|
4374
4999
|
return _ao0(input, _path, true && _exceptionable);
|
|
4375
|
-
else if (undefined !== input.location)
|
|
4376
|
-
return _ao22(input, _path, true && _exceptionable);
|
|
4377
5000
|
else
|
|
4378
5001
|
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4379
5002
|
method: "createAssert",
|
|
4380
5003
|
path: _path,
|
|
4381
|
-
expected: "(
|
|
5004
|
+
expected: "(RailWithExtendedDetails | ExternalURL)",
|
|
4382
5005
|
value: input
|
|
4383
5006
|
}, _errorFactory);
|
|
4384
5007
|
})(); const _au4 = (input, _path, _exceptionable = true) => (() => {
|
|
4385
5008
|
if (undefined !== input.external)
|
|
4386
5009
|
return _ao0(input, _path, true && _exceptionable);
|
|
5010
|
+
else if (undefined !== input.rails)
|
|
5011
|
+
return _ao25(input, _path, true && _exceptionable);
|
|
4387
5012
|
else
|
|
4388
|
-
return
|
|
5013
|
+
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5014
|
+
method: "createAssert",
|
|
5015
|
+
path: _path,
|
|
5016
|
+
expected: "(ExternalURL | ToJSONValuizableObject<AssetWithRails>)",
|
|
5017
|
+
value: input
|
|
5018
|
+
}, _errorFactory);
|
|
4389
5019
|
})(); const _au5 = (input, _path, _exceptionable = true) => (() => {
|
|
4390
5020
|
if (undefined !== input.external)
|
|
4391
5021
|
return _ao0(input, _path, true && _exceptionable);
|
|
4392
5022
|
else
|
|
4393
|
-
return
|
|
5023
|
+
return _ao2(input, _path, true && _exceptionable);
|
|
4394
5024
|
})(); const _au6 = (input, _path, _exceptionable = true) => (() => {
|
|
4395
5025
|
if (undefined !== input.external)
|
|
4396
5026
|
return _ao0(input, _path, true && _exceptionable);
|
|
4397
5027
|
else
|
|
4398
|
-
return
|
|
5028
|
+
return _ao3(input, _path, true && _exceptionable);
|
|
4399
5029
|
})(); const _au7 = (input, _path, _exceptionable = true) => (() => {
|
|
4400
5030
|
if (undefined !== input.external)
|
|
4401
5031
|
return _ao0(input, _path, true && _exceptionable);
|
|
4402
5032
|
else
|
|
4403
|
-
return
|
|
5033
|
+
return _ao4(input, _path, true && _exceptionable);
|
|
4404
5034
|
})(); const _au8 = (input, _path, _exceptionable = true) => (() => {
|
|
4405
5035
|
if (undefined !== input.external)
|
|
4406
5036
|
return _ao0(input, _path, true && _exceptionable);
|
|
4407
5037
|
else
|
|
4408
|
-
return
|
|
5038
|
+
return _ao7(input, _path, true && _exceptionable);
|
|
4409
5039
|
})(); const _au9 = (input, _path, _exceptionable = true) => (() => {
|
|
4410
5040
|
if (undefined !== input.external)
|
|
4411
5041
|
return _ao0(input, _path, true && _exceptionable);
|
|
4412
5042
|
else
|
|
4413
|
-
return
|
|
5043
|
+
return _ao10(input, _path, true && _exceptionable);
|
|
4414
5044
|
})(); const _au10 = (input, _path, _exceptionable = true) => (() => {
|
|
4415
5045
|
if (undefined !== input.external)
|
|
4416
5046
|
return _ao0(input, _path, true && _exceptionable);
|
|
4417
5047
|
else
|
|
4418
|
-
return
|
|
5048
|
+
return _ao14(input, _path, true && _exceptionable);
|
|
4419
5049
|
})(); const _au11 = (input, _path, _exceptionable = true) => (() => {
|
|
5050
|
+
if (undefined !== input.external)
|
|
5051
|
+
return _ao0(input, _path, true && _exceptionable);
|
|
5052
|
+
else
|
|
5053
|
+
return _ao20(input, _path, true && _exceptionable);
|
|
5054
|
+
})(); const _au12 = (input, _path, _exceptionable = true) => (() => {
|
|
5055
|
+
if (undefined !== input.external)
|
|
5056
|
+
return _ao0(input, _path, true && _exceptionable);
|
|
5057
|
+
else
|
|
5058
|
+
return _ao33(input, _path, true && _exceptionable);
|
|
5059
|
+
})(); const _au13 = (input, _path, _exceptionable = true) => (() => {
|
|
5060
|
+
if (undefined !== input.external)
|
|
5061
|
+
return _ao0(input, _path, true && _exceptionable);
|
|
5062
|
+
else
|
|
5063
|
+
return _ao35(input, _path, true && _exceptionable);
|
|
5064
|
+
})(); const _au14 = (input, _path, _exceptionable = true) => (() => {
|
|
4420
5065
|
if (undefined !== input.external)
|
|
4421
5066
|
return _ao0(input, _path, true && _exceptionable);
|
|
4422
5067
|
else if (undefined !== input.operations)
|
|
@@ -4428,12 +5073,12 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
4428
5073
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o3)",
|
|
4429
5074
|
value: input
|
|
4430
5075
|
}, _errorFactory);
|
|
4431
|
-
})(); const
|
|
5076
|
+
})(); const _au15 = (input, _path, _exceptionable = true) => (() => {
|
|
4432
5077
|
if (undefined !== input.external)
|
|
4433
5078
|
return _ao0(input, _path, true && _exceptionable);
|
|
4434
5079
|
else
|
|
4435
5080
|
return _ao6(input, _path, true && _exceptionable);
|
|
4436
|
-
})(); const
|
|
5081
|
+
})(); const _au16 = (input, _path, _exceptionable = true) => (() => {
|
|
4437
5082
|
if (undefined !== input.external)
|
|
4438
5083
|
return _ao0(input, _path, true && _exceptionable);
|
|
4439
5084
|
else if (undefined !== input.operations)
|
|
@@ -4445,12 +5090,12 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
4445
5090
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o6)",
|
|
4446
5091
|
value: input
|
|
4447
5092
|
}, _errorFactory);
|
|
4448
|
-
})(); const
|
|
5093
|
+
})(); const _au17 = (input, _path, _exceptionable = true) => (() => {
|
|
4449
5094
|
if (undefined !== input.external)
|
|
4450
5095
|
return _ao0(input, _path, true && _exceptionable);
|
|
4451
5096
|
else
|
|
4452
5097
|
return _ao9(input, _path, true && _exceptionable);
|
|
4453
|
-
})(); const
|
|
5098
|
+
})(); const _au18 = (input, _path, _exceptionable = true) => (() => {
|
|
4454
5099
|
if (undefined !== input.external)
|
|
4455
5100
|
return _ao0(input, _path, true && _exceptionable);
|
|
4456
5101
|
else if (undefined !== input.operations)
|
|
@@ -4462,7 +5107,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
4462
5107
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o9)",
|
|
4463
5108
|
value: input
|
|
4464
5109
|
}, _errorFactory);
|
|
4465
|
-
})(); const
|
|
5110
|
+
})(); const _au19 = (input, _path, _exceptionable = true) => (() => {
|
|
4466
5111
|
if (undefined !== input.external)
|
|
4467
5112
|
return _ao0(input, _path, true && _exceptionable);
|
|
4468
5113
|
else if (undefined !== input.getQuote)
|
|
@@ -4474,7 +5119,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
4474
5119
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o10)",
|
|
4475
5120
|
value: input
|
|
4476
5121
|
}, _errorFactory);
|
|
4477
|
-
})(); const
|
|
5122
|
+
})(); const _au20 = (input, _path, _exceptionable = true) => (() => {
|
|
4478
5123
|
if (undefined !== input.external)
|
|
4479
5124
|
return _ao0(input, _path, true && _exceptionable);
|
|
4480
5125
|
else if (undefined !== input.operations)
|
|
@@ -4486,32 +5131,85 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
4486
5131
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o13)",
|
|
4487
5132
|
value: input
|
|
4488
5133
|
}, _errorFactory);
|
|
4489
|
-
})(); const
|
|
5134
|
+
})(); const _au21 = (input, _path, _exceptionable = true) => (() => {
|
|
4490
5135
|
if (undefined !== input.external)
|
|
4491
5136
|
return _ao0(input, _path, true && _exceptionable);
|
|
4492
|
-
else
|
|
5137
|
+
else if (undefined !== input.resolve)
|
|
4493
5138
|
return _ao16(input, _path, true && _exceptionable);
|
|
4494
|
-
|
|
5139
|
+
else
|
|
5140
|
+
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5141
|
+
method: "createAssert",
|
|
5142
|
+
path: _path,
|
|
5143
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o14)",
|
|
5144
|
+
value: input
|
|
5145
|
+
}, _errorFactory);
|
|
5146
|
+
})(); const _au22 = (input, _path, _exceptionable = true) => (() => {
|
|
4495
5147
|
if (undefined !== input.external)
|
|
4496
5148
|
return _ao0(input, _path, true && _exceptionable);
|
|
4497
5149
|
else
|
|
4498
5150
|
return _ao17(input, _path, true && _exceptionable);
|
|
4499
|
-
})(); const
|
|
5151
|
+
})(); const _au23 = (input, _path, _exceptionable = true) => (() => {
|
|
4500
5152
|
if (undefined !== input.external)
|
|
4501
5153
|
return _ao0(input, _path, true && _exceptionable);
|
|
5154
|
+
else if (undefined !== input.operations)
|
|
5155
|
+
return _ao21(input, _path, true && _exceptionable);
|
|
4502
5156
|
else
|
|
4503
|
-
return
|
|
5157
|
+
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4504
5158
|
method: "createAssert",
|
|
4505
5159
|
path: _path,
|
|
4506
|
-
expected: "(
|
|
5160
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o16)",
|
|
4507
5161
|
value: input
|
|
4508
5162
|
}, _errorFactory);
|
|
4509
|
-
})(); const
|
|
5163
|
+
})(); const _au24 = (input, _path, _exceptionable = true) => (() => {
|
|
4510
5164
|
if (undefined !== input.external)
|
|
4511
5165
|
return _ao0(input, _path, true && _exceptionable);
|
|
4512
5166
|
else
|
|
4513
|
-
return
|
|
4514
|
-
})(); const
|
|
5167
|
+
return _ao22(input, _path, true && _exceptionable);
|
|
5168
|
+
})(); const _au25 = (input, _path, _exceptionable = true) => (() => {
|
|
5169
|
+
if (undefined !== input.external)
|
|
5170
|
+
return _ao0(input, _path, true && _exceptionable);
|
|
5171
|
+
else
|
|
5172
|
+
return _ao32(input, _path, false && _exceptionable) || _ao31(input, _path, false && _exceptionable) || _ao26(input, _path, false && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5173
|
+
method: "createAssert",
|
|
5174
|
+
path: _path,
|
|
5175
|
+
expected: "(ToJSONValuizableObject<{ inbound?: never; outbound?: never; } & { common?: RailOrRailWithExtendedDetails[]; }> | ToJSONValuizableObject<{ inbound?: RailOrRailWithExtendedDetails[]; outbound: RailOrRailWithExtendedDetails[]; } & { common?: RailOrRailWithExtendedDetails[]; }> | ToJSONValuizableObject<{ inbound: RailOrRailWithExtendedDetails[]; outbound?: RailOrRailWithExtendedDetails[]; } & { common?: RailOrRailWithExtendedDetails[]; }>)",
|
|
5176
|
+
value: input
|
|
5177
|
+
}, _errorFactory);
|
|
5178
|
+
})(); const _au26 = (input, _path, _exceptionable = true) => (() => {
|
|
5179
|
+
if (undefined !== input.external)
|
|
5180
|
+
return _ao0(input, _path, true && _exceptionable);
|
|
5181
|
+
else
|
|
5182
|
+
return _ao34(input, _path, true && _exceptionable);
|
|
5183
|
+
})(); const _au27 = (input, _path, _exceptionable = true) => (() => {
|
|
5184
|
+
if (undefined !== input.external)
|
|
5185
|
+
return _ao0(input, _path, true && _exceptionable);
|
|
5186
|
+
else if (undefined !== input.operations)
|
|
5187
|
+
return _ao36(input, _path, true && _exceptionable);
|
|
5188
|
+
else
|
|
5189
|
+
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5190
|
+
method: "createAssert",
|
|
5191
|
+
path: _path,
|
|
5192
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o21)",
|
|
5193
|
+
value: input
|
|
5194
|
+
}, _errorFactory);
|
|
5195
|
+
})(); const _au28 = (input, _path, _exceptionable = true) => (() => {
|
|
5196
|
+
if (undefined !== input.external)
|
|
5197
|
+
return _ao0(input, _path, true && _exceptionable);
|
|
5198
|
+
else
|
|
5199
|
+
return _ao37(input, _path, true && _exceptionable);
|
|
5200
|
+
})(); const _au29 = (input, _path, _exceptionable = true) => (() => {
|
|
5201
|
+
if (undefined !== input.external)
|
|
5202
|
+
return _ao0(input, _path, true && _exceptionable);
|
|
5203
|
+
else if (undefined !== input.maxObjectSize)
|
|
5204
|
+
return _ao38(input, _path, true && _exceptionable);
|
|
5205
|
+
else
|
|
5206
|
+
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5207
|
+
method: "createAssert",
|
|
5208
|
+
path: _path,
|
|
5209
|
+
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o23)",
|
|
5210
|
+
value: input
|
|
5211
|
+
}, _errorFactory);
|
|
5212
|
+
})(); const _au30 = (input, _path, _exceptionable = true) => (() => {
|
|
4515
5213
|
if (undefined !== input.external)
|
|
4516
5214
|
return _ao0(input, _path, true && _exceptionable);
|
|
4517
5215
|
else if (undefined !== input.version)
|
|
@@ -4523,7 +5221,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
4523
5221
|
expected: "(ExternalURL | ToJSONValuizableObject<ServiceMetadata>)",
|
|
4524
5222
|
value: input
|
|
4525
5223
|
}, _errorFactory);
|
|
4526
|
-
})(); const __is = input => "object" === typeof input && null !== input &&
|
|
5224
|
+
})(); const __is = input => "object" === typeof input && null !== input && _iu30(input); let _errorFactory; return (input, errorFactory) => {
|
|
4527
5225
|
if (false === __is(input)) {
|
|
4528
5226
|
_errorFactory = errorFactory;
|
|
4529
5227
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || __typia_transform__assertGuard._assertGuard(true, {
|
|
@@ -4531,7 +5229,7 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
4531
5229
|
path: _path + "",
|
|
4532
5230
|
expected: "(ExternalURL | ToJSONValuizableObject<ServiceMetadata>)",
|
|
4533
5231
|
value: input
|
|
4534
|
-
}, _errorFactory)) &&
|
|
5232
|
+
}, _errorFactory)) && _au30(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
4535
5233
|
method: "createAssert",
|
|
4536
5234
|
path: _path + "",
|
|
4537
5235
|
expected: "(ExternalURL | ToJSONValuizableObject<ServiceMetadata>)",
|
|
@@ -4540,321 +5238,6 @@ const assertServiceMetadata = (() => { const _iv10 = new Set(["AFN", "EUR", "ALL
|
|
|
4540
5238
|
}
|
|
4541
5239
|
return input;
|
|
4542
5240
|
}; })();
|
|
4543
|
-
const assertKeetaSupportedAssets = (() => { const _iv2 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _iv3 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _iv4 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _iv8 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv10 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv12 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv14 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv16 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv18 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _iv20 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av22 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _av23 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _av24 = new Set(["AFN", "EUR", "ALL", "DZD", "USD", "AOA", "XCD", "ARS", "AMD", "AWG", "AUD", "AZN", "BSD", "BHD", "BDT", "BBD", "BYN", "BZD", "XOF", "BMD", "INR", "BTN", "BOB", "BOV", "BAM", "BWP", "NOK", "BRL", "BND", "BGN", "BIF", "CVE", "KHR", "XAF", "CAD", "KYD", "CLP", "CLF", "CNY", "COP", "COU", "KMF", "CDF", "NZD", "CRC", "CUP", "CUC", "ANG", "CZK", "DKK", "DJF", "DOP", "EGP", "SVC", "ERN", "SZL", "ETB", "FKP", "FJD", "XPF", "GMD", "GEL", "GHS", "GIP", "GTQ", "GBP", "GNF", "GYD", "HTG", "HNL", "HKD", "HUF", "ISK", "IDR", "IRR", "IQD", "ILS", "JMD", "JPY", "JOD", "KZT", "KES", "KPW", "KRW", "KWD", "KGS", "LAK", "LBP", "LSL", "ZAR", "LRD", "LYD", "CHF", "MOP", "MKD", "MGA", "MWK", "MYR", "MVR", "MRU", "MUR", "MXN", "MXV", "MDL", "MNT", "MAD", "MZN", "MMK", "NAD", "NPR", "NIO", "NGN", "OMR", "PKR", "PAB", "PGK", "PYG", "PEN", "PHP", "PLN", "QAR", "RON", "RUB", "RWF", "SHP", "WST", "STN", "SAR", "RSD", "SCR", "SLL", "SLE", "SGD", "SBD", "SOS", "SSP", "LKR", "SDG", "SRD", "SEK", "CHE", "CHW", "SYP", "TWD", "TJS", "TZS", "THB", "TOP", "TTD", "TND", "TRY", "TMT", "UGX", "UAH", "AED", "USN", "UYU", "UYI", "UYW", "UZS", "VUV", "VES", "VED", "VND", "YER", "ZMW", "ZWL"]); const _av28 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av30 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av32 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av34 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av36 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av38 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _av40 = new Set(["ACH", "ACH_DEBIT", "WIRE", "WIRE_RECEIVE", "PIX_PUSH", "SPEI_PUSH", "WIRE_INTL_PUSH", "CLABE_PUSH", "SEPA_PUSH", "KEETA_SEND", "EVM_SEND", "EVM_CALL", "SOLANA_SEND", "BITCOIN_SEND", "TRON_SEND"]); const _io0 = input => null !== input.asset && undefined !== input.asset && (true === _iv2.has(input.asset) || "string" === typeof input.asset && (RegExp(/^\$(.*)/).test(input.asset) || RegExp(/^keeta_am(.*)/).test(input.asset) || RegExp(/^keeta_an(.*)/).test(input.asset) || RegExp(/^keeta_ao(.*)/).test(input.asset) || RegExp(/^keeta_ap(.*)/).test(input.asset) || RegExp(/^tyblocks_am(.*)/).test(input.asset) || RegExp(/^tyblocks_an(.*)/).test(input.asset) || RegExp(/^tyblocks_ao(.*)/).test(input.asset) || RegExp(/^tyblocks_ap(.*)/).test(input.asset)) || Array.isArray(input.asset) && (input.asset.length === 2 && (null !== input.asset[0] && undefined !== input.asset[0] && (true === _iv3.has(input.asset[0]) || "string" === typeof input.asset[0] && (RegExp(/^\$(.*)/).test(input.asset[0]) || RegExp(/^keeta_am(.*)/).test(input.asset[0]) || RegExp(/^keeta_an(.*)/).test(input.asset[0]) || RegExp(/^keeta_ao(.*)/).test(input.asset[0]) || RegExp(/^keeta_ap(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_am(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_an(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_ao(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_ap(.*)/).test(input.asset[0])))) && (null !== input.asset[1] && undefined !== input.asset[1] && (true === _iv4.has(input.asset[1]) || "string" === typeof input.asset[1] && (RegExp(/^\$(.*)/).test(input.asset[1]) || RegExp(/^keeta_am(.*)/).test(input.asset[1]) || RegExp(/^keeta_an(.*)/).test(input.asset[1]) || RegExp(/^keeta_ao(.*)/).test(input.asset[1]) || RegExp(/^keeta_ap(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_am(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_an(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_ao(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_ap(.*)/).test(input.asset[1])))))) && (Array.isArray(input.paths) && input.paths.every(elem => "object" === typeof elem && null !== elem && _io1(elem))); const _io1 = input => Array.isArray(input.pair) && (input.pair.length === 2 && ("object" === typeof input.pair[0] && null !== input.pair[0] && _io2(input.pair[0])) && ("object" === typeof input.pair[1] && null !== input.pair[1] && _io2(input.pair[1]))) && (undefined === input.kycProviders || Array.isArray(input.kycProviders) && input.kycProviders.every(elem => "string" === typeof elem)); const _io2 = input => "object" === typeof input.rails && null !== input.rails && false === Array.isArray(input.rails) && _iu0(input.rails) && (null !== input.location && (undefined === input.location || "bank-account:us" === input.location || "bank-account:iban-swift" === input.location || "bank-account:clabe" === input.location || "bank-account:pix" === input.location || "string" === typeof input.location && (RegExp(/^chain:keeta:[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.location) || RegExp(/^chain:evm:[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.location) || RegExp(/^chain:solana:(.*)/).test(input.location) || RegExp(/^chain:bitcoin:(.*)/).test(input.location) || RegExp(/^chain:tron:(.*)/).test(input.location)))) && "string" === typeof input.id; const _io3 = input => Array.isArray(input.inbound) && input.inbound.every(elem => true === _iv8.has(elem)) && (undefined === input.outbound || Array.isArray(input.outbound) && input.outbound.every(elem => true === _iv10.has(elem))) && (undefined === input.common || Array.isArray(input.common) && input.common.every(elem => true === _iv12.has(elem))); const _io4 = input => (undefined === input.inbound || Array.isArray(input.inbound) && input.inbound.every(elem => true === _iv14.has(elem))) && (Array.isArray(input.outbound) && input.outbound.every(elem => true === _iv16.has(elem))) && (undefined === input.common || Array.isArray(input.common) && input.common.every(elem => true === _iv18.has(elem))); const _io5 = input => null !== input.inbound && undefined === input.inbound && (null !== input.outbound && undefined === input.outbound) && (undefined === input.common || Array.isArray(input.common) && input.common.every(elem => true === _iv20.has(elem))); const _iu0 = input => (() => {
|
|
4544
|
-
if (_io5(input))
|
|
4545
|
-
return _io5(input);
|
|
4546
|
-
if (_io4(input))
|
|
4547
|
-
return _io4(input);
|
|
4548
|
-
if (_io3(input))
|
|
4549
|
-
return _io3(input);
|
|
4550
|
-
return false;
|
|
4551
|
-
})(); const _ao0 = (input, _path, _exceptionable = true) => (null !== input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4552
|
-
method: "createAssert",
|
|
4553
|
-
path: _path + ".asset",
|
|
4554
|
-
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | [AssetMetadataTargetValue, AssetMetadataTargetValue] | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
4555
|
-
value: input.asset
|
|
4556
|
-
}, _errorFactory)) && (undefined !== input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4557
|
-
method: "createAssert",
|
|
4558
|
-
path: _path + ".asset",
|
|
4559
|
-
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | [AssetMetadataTargetValue, AssetMetadataTargetValue] | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
4560
|
-
value: input.asset
|
|
4561
|
-
}, _errorFactory)) && (true === _av22.has(input.asset) || "string" === typeof input.asset && (RegExp(/^\$(.*)/).test(input.asset) || RegExp(/^keeta_am(.*)/).test(input.asset) || RegExp(/^keeta_an(.*)/).test(input.asset) || RegExp(/^keeta_ao(.*)/).test(input.asset) || RegExp(/^keeta_ap(.*)/).test(input.asset) || RegExp(/^tyblocks_am(.*)/).test(input.asset) || RegExp(/^tyblocks_an(.*)/).test(input.asset) || RegExp(/^tyblocks_ao(.*)/).test(input.asset) || RegExp(/^tyblocks_ap(.*)/).test(input.asset)) || (Array.isArray(input.asset) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4562
|
-
method: "createAssert",
|
|
4563
|
-
path: _path + ".asset",
|
|
4564
|
-
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | [AssetMetadataTargetValue, AssetMetadataTargetValue] | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
4565
|
-
value: input.asset
|
|
4566
|
-
}, _errorFactory)) && ((input.asset.length === 2 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4567
|
-
method: "createAssert",
|
|
4568
|
-
path: _path + ".asset",
|
|
4569
|
-
expected: "[(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`), (\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)]",
|
|
4570
|
-
value: input.asset
|
|
4571
|
-
}, _errorFactory)) && ((null !== input.asset[0] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4572
|
-
method: "createAssert",
|
|
4573
|
-
path: _path + ".asset[0]",
|
|
4574
|
-
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
4575
|
-
value: input.asset[0]
|
|
4576
|
-
}, _errorFactory)) && (undefined !== input.asset[0] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4577
|
-
method: "createAssert",
|
|
4578
|
-
path: _path + ".asset[0]",
|
|
4579
|
-
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
4580
|
-
value: input.asset[0]
|
|
4581
|
-
}, _errorFactory)) && (true === _av23.has(input.asset[0]) || "string" === typeof input.asset[0] && (RegExp(/^\$(.*)/).test(input.asset[0]) || RegExp(/^keeta_am(.*)/).test(input.asset[0]) || RegExp(/^keeta_an(.*)/).test(input.asset[0]) || RegExp(/^keeta_ao(.*)/).test(input.asset[0]) || RegExp(/^keeta_ap(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_am(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_an(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_ao(.*)/).test(input.asset[0]) || RegExp(/^tyblocks_ap(.*)/).test(input.asset[0])) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4582
|
-
method: "createAssert",
|
|
4583
|
-
path: _path + ".asset[0]",
|
|
4584
|
-
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
4585
|
-
value: input.asset[0]
|
|
4586
|
-
}, _errorFactory))) && ((null !== input.asset[1] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4587
|
-
method: "createAssert",
|
|
4588
|
-
path: _path + ".asset[1]",
|
|
4589
|
-
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
4590
|
-
value: input.asset[1]
|
|
4591
|
-
}, _errorFactory)) && (undefined !== input.asset[1] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4592
|
-
method: "createAssert",
|
|
4593
|
-
path: _path + ".asset[1]",
|
|
4594
|
-
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
4595
|
-
value: input.asset[1]
|
|
4596
|
-
}, _errorFactory)) && (true === _av24.has(input.asset[1]) || "string" === typeof input.asset[1] && (RegExp(/^\$(.*)/).test(input.asset[1]) || RegExp(/^keeta_am(.*)/).test(input.asset[1]) || RegExp(/^keeta_an(.*)/).test(input.asset[1]) || RegExp(/^keeta_ao(.*)/).test(input.asset[1]) || RegExp(/^keeta_ap(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_am(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_an(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_ao(.*)/).test(input.asset[1]) || RegExp(/^tyblocks_ap(.*)/).test(input.asset[1])) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4597
|
-
method: "createAssert",
|
|
4598
|
-
path: _path + ".asset[1]",
|
|
4599
|
-
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
4600
|
-
value: input.asset[1]
|
|
4601
|
-
}, _errorFactory)))) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4602
|
-
method: "createAssert",
|
|
4603
|
-
path: _path + ".asset",
|
|
4604
|
-
expected: "(\"AED\" | \"AFN\" | \"ALL\" | \"AMD\" | \"ANG\" | \"AOA\" | \"ARS\" | \"AUD\" | \"AWG\" | \"AZN\" | \"BAM\" | \"BBD\" | \"BDT\" | \"BGN\" | \"BHD\" | \"BIF\" | \"BMD\" | \"BND\" | \"BOB\" | \"BOV\" | \"BRL\" | \"BSD\" | \"BTN\" | \"BWP\" | \"BYN\" | \"BZD\" | \"CAD\" | \"CDF\" | \"CHE\" | \"CHF\" | \"CHW\" | \"CLF\" | \"CLP\" | \"CNY\" | \"COP\" | \"COU\" | \"CRC\" | \"CUC\" | \"CUP\" | \"CVE\" | \"CZK\" | \"DJF\" | \"DKK\" | \"DOP\" | \"DZD\" | \"EGP\" | \"ERN\" | \"ETB\" | \"EUR\" | \"FJD\" | \"FKP\" | \"GBP\" | \"GEL\" | \"GHS\" | \"GIP\" | \"GMD\" | \"GNF\" | \"GTQ\" | \"GYD\" | \"HKD\" | \"HNL\" | \"HTG\" | \"HUF\" | \"IDR\" | \"ILS\" | \"INR\" | \"IQD\" | \"IRR\" | \"ISK\" | \"JMD\" | \"JOD\" | \"JPY\" | \"KES\" | \"KGS\" | \"KHR\" | \"KMF\" | \"KPW\" | \"KRW\" | \"KWD\" | \"KYD\" | \"KZT\" | \"LAK\" | \"LBP\" | \"LKR\" | \"LRD\" | \"LSL\" | \"LYD\" | \"MAD\" | \"MDL\" | \"MGA\" | \"MKD\" | \"MMK\" | \"MNT\" | \"MOP\" | \"MRU\" | \"MUR\" | \"MVR\" | \"MWK\" | \"MXN\" | \"MXV\" | \"MYR\" | \"MZN\" | \"NAD\" | \"NGN\" | \"NIO\" | \"NOK\" | \"NPR\" | \"NZD\" | \"OMR\" | \"PAB\" | \"PEN\" | \"PGK\" | \"PHP\" | \"PKR\" | \"PLN\" | \"PYG\" | \"QAR\" | \"RON\" | \"RSD\" | \"RUB\" | \"RWF\" | \"SAR\" | \"SBD\" | \"SCR\" | \"SDG\" | \"SEK\" | \"SGD\" | \"SHP\" | \"SLE\" | \"SLL\" | \"SOS\" | \"SRD\" | \"SSP\" | \"STN\" | \"SVC\" | \"SYP\" | \"SZL\" | \"THB\" | \"TJS\" | \"TMT\" | \"TND\" | \"TOP\" | \"TRY\" | \"TTD\" | \"TWD\" | \"TZS\" | \"UAH\" | \"UGX\" | \"USD\" | \"USN\" | \"UYI\" | \"UYU\" | \"UYW\" | \"UZS\" | \"VED\" | \"VES\" | \"VND\" | \"VUV\" | \"WST\" | \"XAF\" | \"XCD\" | \"XOF\" | \"XPF\" | \"YER\" | \"ZAR\" | \"ZMW\" | \"ZWL\" | [AssetMetadataTargetValue, AssetMetadataTargetValue] | `$${string}` | `keeta_am${string}` | `keeta_an${string}` | `keeta_ao${string}` | `keeta_ap${string}` | `tyblocks_am${string}` | `tyblocks_an${string}` | `tyblocks_ao${string}` | `tyblocks_ap${string}`)",
|
|
4605
|
-
value: input.asset
|
|
4606
|
-
}, _errorFactory)) && ((Array.isArray(input.paths) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4607
|
-
method: "createAssert",
|
|
4608
|
-
path: _path + ".paths",
|
|
4609
|
-
expected: "Array<AssetPath>",
|
|
4610
|
-
value: input.paths
|
|
4611
|
-
}, _errorFactory)) && input.paths.every((elem, _index25) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4612
|
-
method: "createAssert",
|
|
4613
|
-
path: _path + ".paths[" + _index25 + "]",
|
|
4614
|
-
expected: "AssetPath",
|
|
4615
|
-
value: elem
|
|
4616
|
-
}, _errorFactory)) && _ao1(elem, _path + ".paths[" + _index25 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4617
|
-
method: "createAssert",
|
|
4618
|
-
path: _path + ".paths[" + _index25 + "]",
|
|
4619
|
-
expected: "AssetPath",
|
|
4620
|
-
value: elem
|
|
4621
|
-
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4622
|
-
method: "createAssert",
|
|
4623
|
-
path: _path + ".paths",
|
|
4624
|
-
expected: "Array<AssetPath>",
|
|
4625
|
-
value: input.paths
|
|
4626
|
-
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => ((Array.isArray(input.pair) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4627
|
-
method: "createAssert",
|
|
4628
|
-
path: _path + ".pair",
|
|
4629
|
-
expected: "[AssetWithRails, AssetWithRails]",
|
|
4630
|
-
value: input.pair
|
|
4631
|
-
}, _errorFactory)) && ((input.pair.length === 2 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4632
|
-
method: "createAssert",
|
|
4633
|
-
path: _path + ".pair",
|
|
4634
|
-
expected: "[AssetWithRails, AssetWithRails]",
|
|
4635
|
-
value: input.pair
|
|
4636
|
-
}, _errorFactory)) && (("object" === typeof input.pair[0] && null !== input.pair[0] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4637
|
-
method: "createAssert",
|
|
4638
|
-
path: _path + ".pair[0]",
|
|
4639
|
-
expected: "AssetWithRails",
|
|
4640
|
-
value: input.pair[0]
|
|
4641
|
-
}, _errorFactory)) && _ao2(input.pair[0], _path + ".pair[0]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4642
|
-
method: "createAssert",
|
|
4643
|
-
path: _path + ".pair[0]",
|
|
4644
|
-
expected: "AssetWithRails",
|
|
4645
|
-
value: input.pair[0]
|
|
4646
|
-
}, _errorFactory)) && (("object" === typeof input.pair[1] && null !== input.pair[1] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4647
|
-
method: "createAssert",
|
|
4648
|
-
path: _path + ".pair[1]",
|
|
4649
|
-
expected: "AssetWithRails",
|
|
4650
|
-
value: input.pair[1]
|
|
4651
|
-
}, _errorFactory)) && _ao2(input.pair[1], _path + ".pair[1]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4652
|
-
method: "createAssert",
|
|
4653
|
-
path: _path + ".pair[1]",
|
|
4654
|
-
expected: "AssetWithRails",
|
|
4655
|
-
value: input.pair[1]
|
|
4656
|
-
}, _errorFactory))) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4657
|
-
method: "createAssert",
|
|
4658
|
-
path: _path + ".pair",
|
|
4659
|
-
expected: "[AssetWithRails, AssetWithRails]",
|
|
4660
|
-
value: input.pair
|
|
4661
|
-
}, _errorFactory)) && (undefined === input.kycProviders || (Array.isArray(input.kycProviders) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4662
|
-
method: "createAssert",
|
|
4663
|
-
path: _path + ".kycProviders",
|
|
4664
|
-
expected: "(Array<string> | undefined)",
|
|
4665
|
-
value: input.kycProviders
|
|
4666
|
-
}, _errorFactory)) && input.kycProviders.every((elem, _index26) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4667
|
-
method: "createAssert",
|
|
4668
|
-
path: _path + ".kycProviders[" + _index26 + "]",
|
|
4669
|
-
expected: "string",
|
|
4670
|
-
value: elem
|
|
4671
|
-
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4672
|
-
method: "createAssert",
|
|
4673
|
-
path: _path + ".kycProviders",
|
|
4674
|
-
expected: "(Array<string> | undefined)",
|
|
4675
|
-
value: input.kycProviders
|
|
4676
|
-
}, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => (("object" === typeof input.rails && null !== input.rails && false === Array.isArray(input.rails) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4677
|
-
method: "createAssert",
|
|
4678
|
-
path: _path + ".rails",
|
|
4679
|
-
expected: "({ inbound: Rail[]; outbound?: Rail[]; } & { common?: Rail[]; } | { inbound?: Rail[]; outbound: Rail[]; } & { common?: Rail[]; } | { inbound?: never; outbound?: never; } & { common?: Rail[]; })",
|
|
4680
|
-
value: input.rails
|
|
4681
|
-
}, _errorFactory)) && _au0(input.rails, _path + ".rails", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4682
|
-
method: "createAssert",
|
|
4683
|
-
path: _path + ".rails",
|
|
4684
|
-
expected: "({ inbound: Rail[]; outbound?: Rail[]; } & { common?: Rail[]; } | { inbound?: Rail[]; outbound: Rail[]; } & { common?: Rail[]; } | { inbound?: never; outbound?: never; } & { common?: Rail[]; })",
|
|
4685
|
-
value: input.rails
|
|
4686
|
-
}, _errorFactory)) && ((null !== input.location || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4687
|
-
method: "createAssert",
|
|
4688
|
-
path: _path + ".location",
|
|
4689
|
-
expected: "(\"bank-account:clabe\" | \"bank-account:iban-swift\" | \"bank-account:pix\" | \"bank-account:us\" | `chain:bitcoin:${string}` | `chain:evm:${bigint}` | `chain:keeta:${bigint}` | `chain:solana:${string}` | `chain:tron:${string}` | undefined)",
|
|
4690
|
-
value: input.location
|
|
4691
|
-
}, _errorFactory)) && (undefined === input.location || "bank-account:us" === input.location || "bank-account:iban-swift" === input.location || "bank-account:clabe" === input.location || "bank-account:pix" === input.location || "string" === typeof input.location && (RegExp(/^chain:keeta:[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.location) || RegExp(/^chain:evm:[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.location) || RegExp(/^chain:solana:(.*)/).test(input.location) || RegExp(/^chain:bitcoin:(.*)/).test(input.location) || RegExp(/^chain:tron:(.*)/).test(input.location)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4692
|
-
method: "createAssert",
|
|
4693
|
-
path: _path + ".location",
|
|
4694
|
-
expected: "(\"bank-account:clabe\" | \"bank-account:iban-swift\" | \"bank-account:pix\" | \"bank-account:us\" | `chain:bitcoin:${string}` | `chain:evm:${bigint}` | `chain:keeta:${bigint}` | `chain:solana:${string}` | `chain:tron:${string}` | undefined)",
|
|
4695
|
-
value: input.location
|
|
4696
|
-
}, _errorFactory))) && ("string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4697
|
-
method: "createAssert",
|
|
4698
|
-
path: _path + ".id",
|
|
4699
|
-
expected: "string",
|
|
4700
|
-
value: input.id
|
|
4701
|
-
}, _errorFactory)); const _ao3 = (input, _path, _exceptionable = true) => ((Array.isArray(input.inbound) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4702
|
-
method: "createAssert",
|
|
4703
|
-
path: _path + ".inbound",
|
|
4704
|
-
expected: "Array<Rail>",
|
|
4705
|
-
value: input.inbound
|
|
4706
|
-
}, _errorFactory)) && input.inbound.every((elem, _index27) => true === _av28.has(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4707
|
-
method: "createAssert",
|
|
4708
|
-
path: _path + ".inbound[" + _index27 + "]",
|
|
4709
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\")",
|
|
4710
|
-
value: elem
|
|
4711
|
-
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4712
|
-
method: "createAssert",
|
|
4713
|
-
path: _path + ".inbound",
|
|
4714
|
-
expected: "Array<Rail>",
|
|
4715
|
-
value: input.inbound
|
|
4716
|
-
}, _errorFactory)) && (undefined === input.outbound || (Array.isArray(input.outbound) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4717
|
-
method: "createAssert",
|
|
4718
|
-
path: _path + ".outbound",
|
|
4719
|
-
expected: "(Array<Rail> | undefined)",
|
|
4720
|
-
value: input.outbound
|
|
4721
|
-
}, _errorFactory)) && input.outbound.every((elem, _index29) => true === _av30.has(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4722
|
-
method: "createAssert",
|
|
4723
|
-
path: _path + ".outbound[" + _index29 + "]",
|
|
4724
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\")",
|
|
4725
|
-
value: elem
|
|
4726
|
-
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4727
|
-
method: "createAssert",
|
|
4728
|
-
path: _path + ".outbound",
|
|
4729
|
-
expected: "(Array<Rail> | undefined)",
|
|
4730
|
-
value: input.outbound
|
|
4731
|
-
}, _errorFactory)) && (undefined === input.common || (Array.isArray(input.common) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4732
|
-
method: "createAssert",
|
|
4733
|
-
path: _path + ".common",
|
|
4734
|
-
expected: "(Array<Rail> | undefined)",
|
|
4735
|
-
value: input.common
|
|
4736
|
-
}, _errorFactory)) && input.common.every((elem, _index31) => true === _av32.has(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4737
|
-
method: "createAssert",
|
|
4738
|
-
path: _path + ".common[" + _index31 + "]",
|
|
4739
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\")",
|
|
4740
|
-
value: elem
|
|
4741
|
-
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4742
|
-
method: "createAssert",
|
|
4743
|
-
path: _path + ".common",
|
|
4744
|
-
expected: "(Array<Rail> | undefined)",
|
|
4745
|
-
value: input.common
|
|
4746
|
-
}, _errorFactory)); const _ao4 = (input, _path, _exceptionable = true) => (undefined === input.inbound || (Array.isArray(input.inbound) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4747
|
-
method: "createAssert",
|
|
4748
|
-
path: _path + ".inbound",
|
|
4749
|
-
expected: "(Array<Rail> | undefined)",
|
|
4750
|
-
value: input.inbound
|
|
4751
|
-
}, _errorFactory)) && input.inbound.every((elem, _index33) => true === _av34.has(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4752
|
-
method: "createAssert",
|
|
4753
|
-
path: _path + ".inbound[" + _index33 + "]",
|
|
4754
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\")",
|
|
4755
|
-
value: elem
|
|
4756
|
-
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4757
|
-
method: "createAssert",
|
|
4758
|
-
path: _path + ".inbound",
|
|
4759
|
-
expected: "(Array<Rail> | undefined)",
|
|
4760
|
-
value: input.inbound
|
|
4761
|
-
}, _errorFactory)) && ((Array.isArray(input.outbound) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4762
|
-
method: "createAssert",
|
|
4763
|
-
path: _path + ".outbound",
|
|
4764
|
-
expected: "Array<Rail>",
|
|
4765
|
-
value: input.outbound
|
|
4766
|
-
}, _errorFactory)) && input.outbound.every((elem, _index35) => true === _av36.has(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4767
|
-
method: "createAssert",
|
|
4768
|
-
path: _path + ".outbound[" + _index35 + "]",
|
|
4769
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\")",
|
|
4770
|
-
value: elem
|
|
4771
|
-
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4772
|
-
method: "createAssert",
|
|
4773
|
-
path: _path + ".outbound",
|
|
4774
|
-
expected: "Array<Rail>",
|
|
4775
|
-
value: input.outbound
|
|
4776
|
-
}, _errorFactory)) && (undefined === input.common || (Array.isArray(input.common) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4777
|
-
method: "createAssert",
|
|
4778
|
-
path: _path + ".common",
|
|
4779
|
-
expected: "(Array<Rail> | undefined)",
|
|
4780
|
-
value: input.common
|
|
4781
|
-
}, _errorFactory)) && input.common.every((elem, _index37) => true === _av38.has(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4782
|
-
method: "createAssert",
|
|
4783
|
-
path: _path + ".common[" + _index37 + "]",
|
|
4784
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\")",
|
|
4785
|
-
value: elem
|
|
4786
|
-
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4787
|
-
method: "createAssert",
|
|
4788
|
-
path: _path + ".common",
|
|
4789
|
-
expected: "(Array<Rail> | undefined)",
|
|
4790
|
-
value: input.common
|
|
4791
|
-
}, _errorFactory)); const _ao5 = (input, _path, _exceptionable = true) => (null !== input.inbound || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4792
|
-
method: "createAssert",
|
|
4793
|
-
path: _path + ".inbound",
|
|
4794
|
-
expected: "undefined",
|
|
4795
|
-
value: input.inbound
|
|
4796
|
-
}, _errorFactory)) && (undefined === input.inbound || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4797
|
-
method: "createAssert",
|
|
4798
|
-
path: _path + ".inbound",
|
|
4799
|
-
expected: "undefined",
|
|
4800
|
-
value: input.inbound
|
|
4801
|
-
}, _errorFactory)) && ((null !== input.outbound || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4802
|
-
method: "createAssert",
|
|
4803
|
-
path: _path + ".outbound",
|
|
4804
|
-
expected: "undefined",
|
|
4805
|
-
value: input.outbound
|
|
4806
|
-
}, _errorFactory)) && (undefined === input.outbound || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4807
|
-
method: "createAssert",
|
|
4808
|
-
path: _path + ".outbound",
|
|
4809
|
-
expected: "undefined",
|
|
4810
|
-
value: input.outbound
|
|
4811
|
-
}, _errorFactory))) && (undefined === input.common || (Array.isArray(input.common) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4812
|
-
method: "createAssert",
|
|
4813
|
-
path: _path + ".common",
|
|
4814
|
-
expected: "(Array<Rail> | undefined)",
|
|
4815
|
-
value: input.common
|
|
4816
|
-
}, _errorFactory)) && input.common.every((elem, _index39) => true === _av40.has(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4817
|
-
method: "createAssert",
|
|
4818
|
-
path: _path + ".common[" + _index39 + "]",
|
|
4819
|
-
expected: "(\"ACH\" | \"ACH_DEBIT\" | \"BITCOIN_SEND\" | \"CLABE_PUSH\" | \"EVM_CALL\" | \"EVM_SEND\" | \"KEETA_SEND\" | \"PIX_PUSH\" | \"SEPA_PUSH\" | \"SOLANA_SEND\" | \"SPEI_PUSH\" | \"TRON_SEND\" | \"WIRE\" | \"WIRE_INTL_PUSH\" | \"WIRE_RECEIVE\")",
|
|
4820
|
-
value: elem
|
|
4821
|
-
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4822
|
-
method: "createAssert",
|
|
4823
|
-
path: _path + ".common",
|
|
4824
|
-
expected: "(Array<Rail> | undefined)",
|
|
4825
|
-
value: input.common
|
|
4826
|
-
}, _errorFactory)); const _au0 = (input, _path, _exceptionable = true) => _ao5(input, _path, false && _exceptionable) || _ao4(input, _path, false && _exceptionable) || _ao3(input, _path, false && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4827
|
-
method: "createAssert",
|
|
4828
|
-
path: _path,
|
|
4829
|
-
expected: "({ inbound?: never; outbound?: never; } & { common?: Rail[]; } | { inbound?: Rail[]; outbound: Rail[]; } & { common?: Rail[]; } | { inbound: Rail[]; outbound?: Rail[]; } & { common?: Rail[]; })",
|
|
4830
|
-
value: input
|
|
4831
|
-
}, _errorFactory); const __is = input => Array.isArray(input) && input.every(elem => "object" === typeof elem && null !== elem && _io0(elem)); let _errorFactory; return (input, errorFactory) => {
|
|
4832
|
-
if (false === __is(input)) {
|
|
4833
|
-
_errorFactory = errorFactory;
|
|
4834
|
-
((input, _path, _exceptionable = true) => (Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
4835
|
-
method: "createAssert",
|
|
4836
|
-
path: _path + "",
|
|
4837
|
-
expected: "Array<SupportedAssets>",
|
|
4838
|
-
value: input
|
|
4839
|
-
}, _errorFactory)) && input.every((elem, _index21) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(true, {
|
|
4840
|
-
method: "createAssert",
|
|
4841
|
-
path: _path + "[" + _index21 + "]",
|
|
4842
|
-
expected: "SupportedAssets",
|
|
4843
|
-
value: elem
|
|
4844
|
-
}, _errorFactory)) && _ao0(elem, _path + "[" + _index21 + "]", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
4845
|
-
method: "createAssert",
|
|
4846
|
-
path: _path + "[" + _index21 + "]",
|
|
4847
|
-
expected: "SupportedAssets",
|
|
4848
|
-
value: elem
|
|
4849
|
-
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(true, {
|
|
4850
|
-
method: "createAssert",
|
|
4851
|
-
path: _path + "",
|
|
4852
|
-
expected: "Array<SupportedAssets>",
|
|
4853
|
-
value: input
|
|
4854
|
-
}, _errorFactory))(input, "$input", true);
|
|
4855
|
-
}
|
|
4856
|
-
return input;
|
|
4857
|
-
}; })();
|
|
4858
5241
|
/**
|
|
4859
5242
|
* Instance type ID for anonymous Valuizable methods created dynamically
|
|
4860
5243
|
*/
|
|
@@ -5297,11 +5680,17 @@ class Resolver {
|
|
|
5297
5680
|
'assetMovement': {
|
|
5298
5681
|
search: this.lookupAssetMovementServices.bind(this)
|
|
5299
5682
|
},
|
|
5683
|
+
'username': {
|
|
5684
|
+
search: this.lookupUsernameServices.bind(this)
|
|
5685
|
+
},
|
|
5300
5686
|
'cards': {
|
|
5301
5687
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
5302
5688
|
search: async (_input, _criteria) => {
|
|
5303
5689
|
throw (new Error('not implemented'));
|
|
5304
5690
|
}
|
|
5691
|
+
},
|
|
5692
|
+
'storage': {
|
|
5693
|
+
search: this.lookupStorageServices.bind(this)
|
|
5305
5694
|
}
|
|
5306
5695
|
};
|
|
5307
5696
|
constructor(config) {
|
|
@@ -5534,7 +5923,7 @@ class Resolver {
|
|
|
5534
5923
|
const fromCanonical = criteria.from ? convertAssetLocationInputToCanonical(criteria.from) : undefined;
|
|
5535
5924
|
const toCanonical = criteria.to ? convertAssetLocationInputToCanonical(criteria.to) : undefined;
|
|
5536
5925
|
const resolvedService = await Metadata.fullyResolveValuizable(assetService.supportedAssets);
|
|
5537
|
-
const supportedAssets =
|
|
5926
|
+
const supportedAssets = assertKeetaSupportedAssetsMetadata(resolvedService);
|
|
5538
5927
|
const filteredAssetMovement = [];
|
|
5539
5928
|
for (const supportedAsset of supportedAssets) {
|
|
5540
5929
|
let matchFound = false;
|
|
@@ -5582,23 +5971,36 @@ class Resolver {
|
|
|
5582
5971
|
if (supportedRails.length === 0) {
|
|
5583
5972
|
continue;
|
|
5584
5973
|
}
|
|
5974
|
+
const checkSupportedRailIncludes = (searchFor, searchIn) => {
|
|
5975
|
+
for (const checkRail of searchIn) {
|
|
5976
|
+
if (typeof checkRail === 'string') {
|
|
5977
|
+
if (checkRail === searchFor) {
|
|
5978
|
+
return (true);
|
|
5979
|
+
}
|
|
5980
|
+
}
|
|
5981
|
+
else {
|
|
5982
|
+
if (checkRail.rail === searchFor) {
|
|
5983
|
+
return (true);
|
|
5984
|
+
}
|
|
5985
|
+
}
|
|
5986
|
+
}
|
|
5987
|
+
return (false);
|
|
5988
|
+
};
|
|
5585
5989
|
if (criteria.rail !== undefined) {
|
|
5990
|
+
let railMatchFound = false;
|
|
5586
5991
|
if (typeof criteria.rail === 'string') {
|
|
5587
|
-
|
|
5588
|
-
continue;
|
|
5589
|
-
}
|
|
5992
|
+
railMatchFound = checkSupportedRailIncludes(criteria.rail, supportedRails);
|
|
5590
5993
|
}
|
|
5591
5994
|
else {
|
|
5592
|
-
let railMatchFound = false;
|
|
5593
5995
|
for (const checkRail of criteria.rail) {
|
|
5594
|
-
|
|
5595
|
-
|
|
5996
|
+
railMatchFound = checkSupportedRailIncludes(checkRail, supportedRails);
|
|
5997
|
+
if (railMatchFound) {
|
|
5596
5998
|
break;
|
|
5597
5999
|
}
|
|
5598
6000
|
}
|
|
5599
|
-
|
|
5600
|
-
|
|
5601
|
-
|
|
6001
|
+
}
|
|
6002
|
+
if (!railMatchFound) {
|
|
6003
|
+
continue;
|
|
5602
6004
|
}
|
|
5603
6005
|
}
|
|
5604
6006
|
matchFound = true;
|
|
@@ -5643,6 +6045,50 @@ class Resolver {
|
|
|
5643
6045
|
}
|
|
5644
6046
|
return (retval);
|
|
5645
6047
|
}
|
|
6048
|
+
async lookupUsernameServices(usernameServices, _ignore_criteria) {
|
|
6049
|
+
if (usernameServices === undefined) {
|
|
6050
|
+
return (undefined);
|
|
6051
|
+
}
|
|
6052
|
+
const retval = {};
|
|
6053
|
+
for (const checkUsernameServiceID in usernameServices) {
|
|
6054
|
+
try {
|
|
6055
|
+
const checkUsernameService = await usernameServices[checkUsernameServiceID]?.('object');
|
|
6056
|
+
if (checkUsernameService === undefined) {
|
|
6057
|
+
continue;
|
|
6058
|
+
}
|
|
6059
|
+
retval[checkUsernameServiceID] = assertResolverLookupUsernameResult(checkUsernameService);
|
|
6060
|
+
}
|
|
6061
|
+
catch (checkUsernameServiceError) {
|
|
6062
|
+
this.#logger?.debug(`Resolver:${this.id}`, 'Error checking username service', checkUsernameServiceID, ':', checkUsernameServiceError, ' -- ignoring');
|
|
6063
|
+
}
|
|
6064
|
+
}
|
|
6065
|
+
if (Object.keys(retval).length === 0) {
|
|
6066
|
+
return (undefined);
|
|
6067
|
+
}
|
|
6068
|
+
return (retval);
|
|
6069
|
+
}
|
|
6070
|
+
async lookupStorageServices(storageServices, _ignore_criteria) {
|
|
6071
|
+
if (storageServices === undefined) {
|
|
6072
|
+
return (undefined);
|
|
6073
|
+
}
|
|
6074
|
+
const retval = {};
|
|
6075
|
+
for (const checkStorageServiceID in storageServices) {
|
|
6076
|
+
try {
|
|
6077
|
+
const checkStorageService = await isValidOperations(await storageServices[checkStorageServiceID]?.('object'));
|
|
6078
|
+
if (!checkStorageService) {
|
|
6079
|
+
continue;
|
|
6080
|
+
}
|
|
6081
|
+
retval[checkStorageServiceID] = checkStorageService;
|
|
6082
|
+
}
|
|
6083
|
+
catch (checkStorageServiceError) {
|
|
6084
|
+
this.#logger?.debug(`Resolver:${this.id}`, 'Error checking storage service', checkStorageServiceID, ':', checkStorageServiceError, ' -- ignoring');
|
|
6085
|
+
}
|
|
6086
|
+
}
|
|
6087
|
+
if (Object.keys(retval).length === 0) {
|
|
6088
|
+
return (undefined);
|
|
6089
|
+
}
|
|
6090
|
+
return (retval);
|
|
6091
|
+
}
|
|
5646
6092
|
async #getRootMetadata() {
|
|
5647
6093
|
// Fetch metadata from all roots
|
|
5648
6094
|
const allRootMetadata = [];
|