@keetanetwork/anchor 0.0.14 → 0.0.16
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/lib/certificates.d.ts.map +1 -1
- package/lib/certificates.js +20 -100
- package/lib/certificates.js.map +1 -1
- package/lib/http-server.js +1 -1
- package/lib/http-server.js.map +1 -1
- package/lib/index.d.ts +2 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +2 -1
- package/lib/index.js.map +1 -1
- package/lib/log/index.d.ts +6 -57
- package/lib/log/index.d.ts.map +1 -1
- package/lib/log/index.js +5 -205
- package/lib/log/index.js.map +1 -1
- package/lib/log/target_console.d.ts +3 -11
- package/lib/log/target_console.d.ts.map +1 -1
- package/lib/log/target_console.js +3 -42
- package/lib/log/target_console.js.map +1 -1
- package/lib/resolver.js +22 -22
- package/lib/uri.d.ts +28 -0
- package/lib/uri.d.ts.map +1 -0
- package/lib/uri.js +100 -0
- package/lib/uri.js.map +1 -0
- package/lib/utils/asn1.d.ts +9 -1
- package/lib/utils/asn1.d.ts.map +1 -1
- package/lib/utils/asn1.js +1413 -0
- package/lib/utils/asn1.js.map +1 -1
- package/lib/utils/buffer.d.ts +1 -1
- package/lib/utils/buffer.d.ts.map +1 -1
- package/lib/utils/buffer.js +8 -2
- package/lib/utils/buffer.js.map +1 -1
- package/lib/utils/external.d.ts +43 -0
- package/lib/utils/external.d.ts.map +1 -0
- package/lib/utils/external.js +115 -0
- package/lib/utils/external.js.map +1 -0
- package/npm-shrinkwrap.json +9 -9
- package/package.json +2 -2
- package/services/asset-movement/common.js +7 -7
- package/services/kyc/iso20022.generated.d.ts +89 -28
- package/services/kyc/iso20022.generated.d.ts.map +1 -1
- package/services/kyc/iso20022.generated.js +191 -88
- package/services/kyc/iso20022.generated.js.map +1 -1
- package/services/kyc/oids.generated.d.ts +24 -9
- package/services/kyc/oids.generated.d.ts.map +1 -1
- package/services/kyc/oids.generated.js +38 -15
- package/services/kyc/oids.generated.js.map +1 -1
- package/services/kyc/utils/generate-kyc-schema.js +305 -75
- package/services/kyc/utils/generate-kyc-schema.js.map +1 -1
- package/lib/log/common.d.ts +0 -35
- package/lib/log/common.d.ts.map +0 -1
- package/lib/log/common.js +0 -19
- package/lib/log/common.js.map +0 -1
package/lib/resolver.js
CHANGED
|
@@ -8,7 +8,7 @@ import crypto from './utils/crypto.js';
|
|
|
8
8
|
import { createIs, createAssert } from 'typia';
|
|
9
9
|
import { convertAssetLocationInputToCanonical, convertAssetSearchInputToCanonical } from '../services/asset-movement/common.js';
|
|
10
10
|
const KeetaNetAccount = KeetaNetClient.lib.Account;
|
|
11
|
-
const isCurrencySearchCanonical = (() => { const _iv1 = new Set(["
|
|
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) {
|
|
13
13
|
if (typeof input !== 'object' || input === null) {
|
|
14
14
|
throw (new Error(`Expected an object, got ${typeof input}`));
|
|
@@ -257,8 +257,8 @@ const isExternalURL = (() => { const _io0 = input => "2b828e33-2692-46e9-817e-9b
|
|
|
257
257
|
* access the mutable stats object.
|
|
258
258
|
*/
|
|
259
259
|
const statsAccessToken = Symbol('statsAccessToken');
|
|
260
|
-
const assertServiceMetadata = (() => { 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.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.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.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
|
-
if (["
|
|
260
|
+
const assertServiceMetadata = (() => { 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 => {
|
|
261
|
+
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
262
|
return true;
|
|
263
263
|
const value = input[key];
|
|
264
264
|
if (undefined === value)
|
|
@@ -479,22 +479,7 @@ const assertServiceMetadata = (() => { const _io0 = input => "2b828e33-2692-46e9
|
|
|
479
479
|
path: _path + ".services",
|
|
480
480
|
expected: "(ExternalURL | ToJSONValuizableObject<__type>.o1)",
|
|
481
481
|
value: input.services
|
|
482
|
-
}, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => (null !== input.
|
|
483
|
-
method: "createAssert",
|
|
484
|
-
path: _path + ".ALL",
|
|
485
|
-
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}` | undefined)",
|
|
486
|
-
value: input.ALL
|
|
487
|
-
}, _errorFactory)) && (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 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
488
|
-
method: "createAssert",
|
|
489
|
-
path: _path + ".ALL",
|
|
490
|
-
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}` | undefined)",
|
|
491
|
-
value: input.ALL
|
|
492
|
-
}, _errorFactory)) && _ao0(input.ALL, _path + ".ALL", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
493
|
-
method: "createAssert",
|
|
494
|
-
path: _path + ".ALL",
|
|
495
|
-
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}` | undefined)",
|
|
496
|
-
value: input.ALL
|
|
497
|
-
}, _errorFactory)) && ((null !== input.AFN || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
482
|
+
}, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => (null !== input.AFN || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
498
483
|
method: "createAssert",
|
|
499
484
|
path: _path + ".AFN",
|
|
500
485
|
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}` | undefined)",
|
|
@@ -509,7 +494,7 @@ const assertServiceMetadata = (() => { const _io0 = input => "2b828e33-2692-46e9
|
|
|
509
494
|
path: _path + ".AFN",
|
|
510
495
|
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}` | undefined)",
|
|
511
496
|
value: input.AFN
|
|
512
|
-
}, _errorFactory))
|
|
497
|
+
}, _errorFactory)) && ((null !== input.EUR || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
513
498
|
method: "createAssert",
|
|
514
499
|
path: _path + ".EUR",
|
|
515
500
|
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}` | undefined)",
|
|
@@ -524,6 +509,21 @@ const assertServiceMetadata = (() => { const _io0 = input => "2b828e33-2692-46e9
|
|
|
524
509
|
path: _path + ".EUR",
|
|
525
510
|
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}` | undefined)",
|
|
526
511
|
value: input.EUR
|
|
512
|
+
}, _errorFactory))) && ((null !== input.ALL || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
513
|
+
method: "createAssert",
|
|
514
|
+
path: _path + ".ALL",
|
|
515
|
+
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}` | undefined)",
|
|
516
|
+
value: input.ALL
|
|
517
|
+
}, _errorFactory)) && (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 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
518
|
+
method: "createAssert",
|
|
519
|
+
path: _path + ".ALL",
|
|
520
|
+
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}` | undefined)",
|
|
521
|
+
value: input.ALL
|
|
522
|
+
}, _errorFactory)) && _ao0(input.ALL, _path + ".ALL", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
523
|
+
method: "createAssert",
|
|
524
|
+
path: _path + ".ALL",
|
|
525
|
+
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}` | undefined)",
|
|
526
|
+
value: input.ALL
|
|
527
527
|
}, _errorFactory))) && ((null !== input.DZD || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
528
528
|
method: "createAssert",
|
|
529
529
|
path: _path + ".DZD",
|
|
@@ -2985,7 +2985,7 @@ const assertServiceMetadata = (() => { const _io0 = input => "2b828e33-2692-46e9
|
|
|
2985
2985
|
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}` | undefined)",
|
|
2986
2986
|
value: input.ZWL
|
|
2987
2987
|
}, _errorFactory))) && (false === _exceptionable || Object.keys(input).every(key => {
|
|
2988
|
-
if (["
|
|
2988
|
+
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))
|
|
2989
2989
|
return true;
|
|
2990
2990
|
const value = input[key];
|
|
2991
2991
|
if (undefined === value)
|
|
@@ -5254,7 +5254,7 @@ class Resolver {
|
|
|
5254
5254
|
if (fxServices === undefined) {
|
|
5255
5255
|
return (undefined);
|
|
5256
5256
|
}
|
|
5257
|
-
const isCurrencySearchInput = (() => { const _iv1 = new Set(["
|
|
5257
|
+
const isCurrencySearchInput = (() => { 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", "971", "978", "8", "12", "840", "973", "951", "32", "51", "533", "36", "944", "44", "48", "50", "52", "933", "84", "952", "60", "356", "64", "68", "984", "977", "72", "578", "986", "96", "975", "108", "132", "116", "950", "124", "136", "152", "990", "156", "170", "970", "174", "976", "554", "188", "192", "931", "532", "203", "208", "262", "214", "818", "222", "232", "748", "230", "238", "242", "953", "270", "981", "936", "292", "320", "826", "324", "328", "332", "340", "344", "348", "352", "360", "364", "368", "376", "388", "392", "400", "398", "404", "408", "410", "414", "417", "418", "422", "426", "710", "430", "434", "756", "446", "807", "969", "454", "458", "462", "929", "480", "484", "979", "498", "496", "504", "943", "104", "516", "524", "558", "566", "512", "586", "590", "598", "600", "604", "608", "985", "634", "946", "643", "646", "654", "882", "930", "682", "941", "690", "694", "925", "702", "90", "706", "728", "144", "938", "968", "752", "947", "948", "760", "901", "972", "834", "764", "776", "780", "788", "949", "934", "800", "980", "784", "997", "858", "940", "927", "860", "548", "928", "926", "704", "886", "967", "932"]); 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(["971", "978", "8", "12", "840", "973", "951", "32", "51", "533", "36", "944", "44", "48", "50", "52", "933", "84", "952", "60", "356", "64", "68", "984", "977", "72", "578", "986", "96", "975", "108", "132", "116", "950", "124", "136", "152", "990", "156", "170", "970", "174", "976", "554", "188", "192", "931", "532", "203", "208", "262", "214", "818", "222", "232", "748", "230", "238", "242", "953", "270", "981", "936", "292", "320", "826", "324", "328", "332", "340", "344", "348", "352", "360", "364", "368", "376", "388", "392", "400", "398", "404", "408", "410", "414", "417", "418", "422", "426", "710", "430", "434", "756", "446", "807", "969", "454", "458", "462", "929", "480", "484", "979", "498", "496", "504", "943", "104", "516", "524", "558", "566", "512", "586", "590", "598", "600", "604", "608", "985", "634", "946", "643", "646", "654", "882", "930", "682", "941", "690", "694", "925", "702", "90", "706", "728", "144", "938", "968", "752", "947", "948", "760", "901", "972", "834", "764", "776", "780", "788", "949", "934", "800", "980", "784", "997", "858", "940", "927", "860", "548", "928", "926", "704", "886", "967", "932"]); const _io0 = input => true && true === _iv2.has(input.code) && "string" === typeof input.name && "string" === typeof input.precision && true === _iv3.has(input.isoNumber); return input => null !== input && undefined !== input && (true === _iv1.has(input) || "string" === typeof input && RegExp(/^\$(.*)/).test(input) || "object" === typeof input && null !== input && _io0(input)); })();
|
|
5258
5258
|
// if currency code is provided then convert to canonical format otherwise token public key string was provided
|
|
5259
5259
|
const canonicalInputCurrencyCriteria = isCurrencySearchInput(criteria.inputCurrencyCode) ? convertToCurrencySearchCanonical(criteria.inputCurrencyCode) : criteria.inputCurrencyCode;
|
|
5260
5260
|
const canonicalOutputCurrencyCriteria = isCurrencySearchInput(criteria.outputCurrencyCode) ? convertToCurrencySearchCanonical(criteria.outputCurrencyCode) : criteria.outputCurrencyCode;
|