@dynamic-labs-wallet/core 0.0.52 → 0.0.53

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/index.cjs.js CHANGED
@@ -4,10 +4,29 @@ var axios = require('axios');
4
4
 
5
5
  const DYNAMIC_AUTH_PROD_BASE_API_URL = 'https://app.dynamicauth.com';
6
6
  const DYNAMIC_AUTH_PREPROD_BASE_API_URL = 'https://app.dynamic-preprod.xyz';
7
+ const DYNAMIC_AUTH_DEV_BASE_API_URL = 'http://localhost:4200';
8
+ var ENVIRONMENT_ENUM = /*#__PURE__*/ function(ENVIRONMENT_ENUM) {
9
+ ENVIRONMENT_ENUM["development"] = "development";
10
+ ENVIRONMENT_ENUM["preprod"] = "preprod";
11
+ ENVIRONMENT_ENUM["production"] = "production";
12
+ return ENVIRONMENT_ENUM;
13
+ }({});
7
14
  const DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL = 'https://app-dynamicauth-com-app-6e12fc400995.relay.evervault.app';
8
15
  const DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL = 'https://app-dynamic-preprod-xyz-app-32d15525a875.relay.evervault.app';
16
+ const DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL = 'http://localhost:4200';
17
+ const DYNAMIC_AUTH_BASE_API_URL_MAP = {
18
+ ["production"]: DYNAMIC_AUTH_PROD_BASE_API_URL,
19
+ ["preprod"]: DYNAMIC_AUTH_PREPROD_BASE_API_URL,
20
+ ["development"]: DYNAMIC_AUTH_DEV_BASE_API_URL
21
+ };
22
+ const DYNAMIC_CLIENT_RELAY_MAP = {
23
+ ["production"]: DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL,
24
+ ["preprod"]: DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL,
25
+ ["development"]: DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL
26
+ };
9
27
  const MPC_RELAY_PROD_API_URL = 'relay.dynamicauth.com';
10
28
  const MPC_RELAY_PREPROD_API_URL = 'relay.dynamic-preprod.xyz';
29
+ const MPC_RELAY_DEV_API_URL = 'http://localhost:4200';
11
30
  const SOLANA_RPC_URL = 'https://api.devnet.solana.com';
12
31
  const chain = {
13
32
  EVM: 'EVM',
@@ -36,8 +55,11 @@ var BackupLocation = /*#__PURE__*/ function(BackupLocation) {
36
55
  BackupLocation["EXTERNAL"] = "external";
37
56
  return BackupLocation;
38
57
  }({});
39
- // TODO: replace with apiClient proxy and move this to apiClient when ready
40
- const IFRAME_DOMAIN = 'http://localhost:8090';
58
+ const IFRAME_DOMAIN_MAP = {
59
+ development: 'http://localhost:3333',
60
+ preprod: 'https://waas.dynamic-preprod.xyz',
61
+ production: 'https://waas.dynamicauth.com'
62
+ };
41
63
  const ChainEnumToVerifiedCredentialName = {
42
64
  BTC: 'bip122',
43
65
  EVM: 'eip155',
@@ -382,13 +404,30 @@ class BaseClient {
382
404
  const headers = {};
383
405
  headers['Authorization'] = authToken ? `Bearer ${authToken}` : undefined;
384
406
  this.environmentId = environmentId;
385
- const isProd = typeof baseApiUrl === 'undefined' || DYNAMIC_AUTH_PROD_BASE_API_URL === baseApiUrl;
386
- this.baseApiUrl = isProd ? DYNAMIC_AUTH_PROD_BASE_API_URL : baseApiUrl || DYNAMIC_AUTH_PREPROD_BASE_API_URL;
407
+ let environment;
408
+ switch(baseApiUrl){
409
+ case undefined:
410
+ environment = ENVIRONMENT_ENUM.production;
411
+ break;
412
+ case DYNAMIC_AUTH_PROD_BASE_API_URL:
413
+ environment = ENVIRONMENT_ENUM.production;
414
+ break;
415
+ case DYNAMIC_AUTH_PREPROD_BASE_API_URL:
416
+ environment = ENVIRONMENT_ENUM.preprod;
417
+ break;
418
+ case DYNAMIC_AUTH_DEV_BASE_API_URL:
419
+ environment = ENVIRONMENT_ENUM.development;
420
+ break;
421
+ default:
422
+ environment = ENVIRONMENT_ENUM.development;
423
+ break;
424
+ }
425
+ this.baseApiUrl = baseApiUrl != null ? baseApiUrl : DYNAMIC_AUTH_BASE_API_URL_MAP[environment];
387
426
  this.apiClient = axios.create({
388
427
  baseURL: this.baseApiUrl,
389
428
  headers
390
429
  });
391
- this.clientRelayBaseApiUrl = isProd ? DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL : baseClientRelayApiUrl || DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL;
430
+ this.clientRelayBaseApiUrl = baseClientRelayApiUrl != null ? baseClientRelayApiUrl : DYNAMIC_CLIENT_RELAY_MAP[environment];
392
431
  this.clientRelayApiClient = axios.create({
393
432
  baseURL: this.clientRelayBaseApiUrl,
394
433
  headers
@@ -688,14 +727,20 @@ exports.BITCOIN_DERIVATION_PATHS = BITCOIN_DERIVATION_PATHS;
688
727
  exports.BackupLocation = BackupLocation;
689
728
  exports.ChainEnumToVerifiedCredentialName = ChainEnumToVerifiedCredentialName;
690
729
  exports.CreateRoomPartiesOptions = CreateRoomPartiesOptions;
730
+ exports.DYNAMIC_AUTH_BASE_API_URL_MAP = DYNAMIC_AUTH_BASE_API_URL_MAP;
731
+ exports.DYNAMIC_AUTH_DEV_BASE_API_URL = DYNAMIC_AUTH_DEV_BASE_API_URL;
691
732
  exports.DYNAMIC_AUTH_PREPROD_BASE_API_URL = DYNAMIC_AUTH_PREPROD_BASE_API_URL;
692
733
  exports.DYNAMIC_AUTH_PROD_BASE_API_URL = DYNAMIC_AUTH_PROD_BASE_API_URL;
734
+ exports.DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL = DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL;
735
+ exports.DYNAMIC_CLIENT_RELAY_MAP = DYNAMIC_CLIENT_RELAY_MAP;
693
736
  exports.DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL = DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL;
694
737
  exports.DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL = DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL;
695
738
  exports.DynamicApiClient = DynamicApiClient;
696
- exports.IFRAME_DOMAIN = IFRAME_DOMAIN;
739
+ exports.ENVIRONMENT_ENUM = ENVIRONMENT_ENUM;
740
+ exports.IFRAME_DOMAIN_MAP = IFRAME_DOMAIN_MAP;
697
741
  exports.MPC_CHAIN_CONFIG = MPC_CHAIN_CONFIG;
698
742
  exports.MPC_CONFIG = MPC_CONFIG;
743
+ exports.MPC_RELAY_DEV_API_URL = MPC_RELAY_DEV_API_URL;
699
744
  exports.MPC_RELAY_PREPROD_API_URL = MPC_RELAY_PREPROD_API_URL;
700
745
  exports.MPC_RELAY_PROD_API_URL = MPC_RELAY_PROD_API_URL;
701
746
  exports.SOLANA_RPC_URL = SOLANA_RPC_URL;
package/index.esm.js CHANGED
@@ -2,10 +2,29 @@ import axios from 'axios';
2
2
 
3
3
  const DYNAMIC_AUTH_PROD_BASE_API_URL = 'https://app.dynamicauth.com';
4
4
  const DYNAMIC_AUTH_PREPROD_BASE_API_URL = 'https://app.dynamic-preprod.xyz';
5
+ const DYNAMIC_AUTH_DEV_BASE_API_URL = 'http://localhost:4200';
6
+ var ENVIRONMENT_ENUM = /*#__PURE__*/ function(ENVIRONMENT_ENUM) {
7
+ ENVIRONMENT_ENUM["development"] = "development";
8
+ ENVIRONMENT_ENUM["preprod"] = "preprod";
9
+ ENVIRONMENT_ENUM["production"] = "production";
10
+ return ENVIRONMENT_ENUM;
11
+ }({});
5
12
  const DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL = 'https://app-dynamicauth-com-app-6e12fc400995.relay.evervault.app';
6
13
  const DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL = 'https://app-dynamic-preprod-xyz-app-32d15525a875.relay.evervault.app';
14
+ const DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL = 'http://localhost:4200';
15
+ const DYNAMIC_AUTH_BASE_API_URL_MAP = {
16
+ ["production"]: DYNAMIC_AUTH_PROD_BASE_API_URL,
17
+ ["preprod"]: DYNAMIC_AUTH_PREPROD_BASE_API_URL,
18
+ ["development"]: DYNAMIC_AUTH_DEV_BASE_API_URL
19
+ };
20
+ const DYNAMIC_CLIENT_RELAY_MAP = {
21
+ ["production"]: DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL,
22
+ ["preprod"]: DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL,
23
+ ["development"]: DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL
24
+ };
7
25
  const MPC_RELAY_PROD_API_URL = 'relay.dynamicauth.com';
8
26
  const MPC_RELAY_PREPROD_API_URL = 'relay.dynamic-preprod.xyz';
27
+ const MPC_RELAY_DEV_API_URL = 'http://localhost:4200';
9
28
  const SOLANA_RPC_URL = 'https://api.devnet.solana.com';
10
29
  const chain = {
11
30
  EVM: 'EVM',
@@ -34,8 +53,11 @@ var BackupLocation = /*#__PURE__*/ function(BackupLocation) {
34
53
  BackupLocation["EXTERNAL"] = "external";
35
54
  return BackupLocation;
36
55
  }({});
37
- // TODO: replace with apiClient proxy and move this to apiClient when ready
38
- const IFRAME_DOMAIN = 'http://localhost:8090';
56
+ const IFRAME_DOMAIN_MAP = {
57
+ development: 'http://localhost:3333',
58
+ preprod: 'https://waas.dynamic-preprod.xyz',
59
+ production: 'https://waas.dynamicauth.com'
60
+ };
39
61
  const ChainEnumToVerifiedCredentialName = {
40
62
  BTC: 'bip122',
41
63
  EVM: 'eip155',
@@ -380,13 +402,30 @@ class BaseClient {
380
402
  const headers = {};
381
403
  headers['Authorization'] = authToken ? `Bearer ${authToken}` : undefined;
382
404
  this.environmentId = environmentId;
383
- const isProd = typeof baseApiUrl === 'undefined' || DYNAMIC_AUTH_PROD_BASE_API_URL === baseApiUrl;
384
- this.baseApiUrl = isProd ? DYNAMIC_AUTH_PROD_BASE_API_URL : baseApiUrl || DYNAMIC_AUTH_PREPROD_BASE_API_URL;
405
+ let environment;
406
+ switch(baseApiUrl){
407
+ case undefined:
408
+ environment = ENVIRONMENT_ENUM.production;
409
+ break;
410
+ case DYNAMIC_AUTH_PROD_BASE_API_URL:
411
+ environment = ENVIRONMENT_ENUM.production;
412
+ break;
413
+ case DYNAMIC_AUTH_PREPROD_BASE_API_URL:
414
+ environment = ENVIRONMENT_ENUM.preprod;
415
+ break;
416
+ case DYNAMIC_AUTH_DEV_BASE_API_URL:
417
+ environment = ENVIRONMENT_ENUM.development;
418
+ break;
419
+ default:
420
+ environment = ENVIRONMENT_ENUM.development;
421
+ break;
422
+ }
423
+ this.baseApiUrl = baseApiUrl != null ? baseApiUrl : DYNAMIC_AUTH_BASE_API_URL_MAP[environment];
385
424
  this.apiClient = axios.create({
386
425
  baseURL: this.baseApiUrl,
387
426
  headers
388
427
  });
389
- this.clientRelayBaseApiUrl = isProd ? DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL : baseClientRelayApiUrl || DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL;
428
+ this.clientRelayBaseApiUrl = baseClientRelayApiUrl != null ? baseClientRelayApiUrl : DYNAMIC_CLIENT_RELAY_MAP[environment];
390
429
  this.clientRelayApiClient = axios.create({
391
430
  baseURL: this.clientRelayBaseApiUrl,
392
431
  headers
@@ -682,4 +721,4 @@ class DynamicApiClient extends BaseClient {
682
721
  }
683
722
  }
684
723
 
685
- export { BITCOIN_DERIVATION_PATHS, BackupLocation, ChainEnumToVerifiedCredentialName, CreateRoomPartiesOptions, DYNAMIC_AUTH_PREPROD_BASE_API_URL, DYNAMIC_AUTH_PROD_BASE_API_URL, DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL, DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL, DynamicApiClient, IFRAME_DOMAIN, MPC_CHAIN_CONFIG, MPC_CONFIG, MPC_RELAY_PREPROD_API_URL, MPC_RELAY_PROD_API_URL, SOLANA_RPC_URL, SigningAlgorithm, SuccessEventType, ThresholdSignatureScheme, VerifiedCredentialNameToChainEnum, WalletOperation, chain, getClientThreshold, getDynamicServerThreshold, getMPCChainConfig, getReshareConfig, getServerWalletReshareConfig, getTSSConfig };
724
+ export { BITCOIN_DERIVATION_PATHS, BackupLocation, ChainEnumToVerifiedCredentialName, CreateRoomPartiesOptions, DYNAMIC_AUTH_BASE_API_URL_MAP, DYNAMIC_AUTH_DEV_BASE_API_URL, DYNAMIC_AUTH_PREPROD_BASE_API_URL, DYNAMIC_AUTH_PROD_BASE_API_URL, DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL, DYNAMIC_CLIENT_RELAY_MAP, DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL, DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL, DynamicApiClient, ENVIRONMENT_ENUM, IFRAME_DOMAIN_MAP, MPC_CHAIN_CONFIG, MPC_CONFIG, MPC_RELAY_DEV_API_URL, MPC_RELAY_PREPROD_API_URL, MPC_RELAY_PROD_API_URL, SOLANA_RPC_URL, SigningAlgorithm, SuccessEventType, ThresholdSignatureScheme, VerifiedCredentialNameToChainEnum, WalletOperation, chain, getClientThreshold, getDynamicServerThreshold, getMPCChainConfig, getReshareConfig, getServerWalletReshareConfig, getTSSConfig };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs-wallet/core",
3
- "version": "0.0.52",
3
+ "version": "0.0.53",
4
4
  "license": "MIT",
5
5
  "dependencies": {
6
6
  "axios": "1.7.9"
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/api/client.ts"],"names":[],"mappings":"AAAA,OAAc,EAAE,KAAK,aAAa,EAAE,MAAM,OAAO,CAAC;AAQlD,qBAAa,UAAU;IACd,SAAS,EAAE,aAAa,CAAC;IACzB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,oBAAoB,EAAE,aAAa,CAAC;gBAE/B,EACV,aAAa,EACb,UAAU,EACV,SAAS,EACT,qBAAqB,GACtB,EAAE;QACD,aAAa,EAAE,MAAM,CAAC;QACtB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,SAAS,EAAE,MAAM,CAAC;QAClB,qBAAqB,CAAC,EAAE,MAAM,CAAC;KAChC;CA0BF"}
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/api/client.ts"],"names":[],"mappings":"AAAA,OAAc,EAAE,KAAK,aAAa,EAAE,MAAM,OAAO,CAAC;AAUlD,qBAAa,UAAU;IACd,SAAS,EAAE,aAAa,CAAC;IACzB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,oBAAoB,EAAE,aAAa,CAAC;gBAE/B,EACV,aAAa,EACb,UAAU,EACV,SAAS,EACT,qBAAqB,GACtB,EAAE;QACD,aAAa,EAAE,MAAM,CAAC;QACtB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,SAAS,EAAE,MAAM,CAAC;QAClB,qBAAqB,CAAC,EAAE,MAAM,CAAC;KAChC;CAuCF"}
@@ -1,9 +1,27 @@
1
1
  export declare const DYNAMIC_AUTH_PROD_BASE_API_URL = "https://app.dynamicauth.com";
2
2
  export declare const DYNAMIC_AUTH_PREPROD_BASE_API_URL = "https://app.dynamic-preprod.xyz";
3
+ export declare const DYNAMIC_AUTH_DEV_BASE_API_URL = "http://localhost:4200";
4
+ export declare enum ENVIRONMENT_ENUM {
5
+ development = "development",
6
+ preprod = "preprod",
7
+ production = "production"
8
+ }
3
9
  export declare const DYNAMIC_CLIENT_RELAY_PROD_BASE_API_URL = "https://app-dynamicauth-com-app-6e12fc400995.relay.evervault.app";
4
10
  export declare const DYNAMIC_CLIENT_RELAY_PREPROD_BASE_API_URL = "https://app-dynamic-preprod-xyz-app-32d15525a875.relay.evervault.app";
11
+ export declare const DYNAMIC_CLIENT_RELAY_DEV_BASE_API_URL = "http://localhost:4200";
12
+ export declare const DYNAMIC_AUTH_BASE_API_URL_MAP: {
13
+ readonly production: "https://app.dynamicauth.com";
14
+ readonly preprod: "https://app.dynamic-preprod.xyz";
15
+ readonly development: "http://localhost:4200";
16
+ };
17
+ export declare const DYNAMIC_CLIENT_RELAY_MAP: {
18
+ readonly production: "https://app-dynamicauth-com-app-6e12fc400995.relay.evervault.app";
19
+ readonly preprod: "https://app-dynamic-preprod-xyz-app-32d15525a875.relay.evervault.app";
20
+ readonly development: "http://localhost:4200";
21
+ };
5
22
  export declare const MPC_RELAY_PROD_API_URL = "relay.dynamicauth.com";
6
23
  export declare const MPC_RELAY_PREPROD_API_URL = "relay.dynamic-preprod.xyz";
24
+ export declare const MPC_RELAY_DEV_API_URL = "http://localhost:4200";
7
25
  export declare const SOLANA_RPC_URL = "https://api.devnet.solana.com";
8
26
  export declare const chain: {
9
27
  readonly EVM: "EVM";
@@ -31,7 +49,11 @@ export declare enum BackupLocation {
31
49
  USER = "user",
32
50
  EXTERNAL = "external"
33
51
  }
34
- export declare const IFRAME_DOMAIN = "http://localhost:8090";
52
+ export declare const IFRAME_DOMAIN_MAP: {
53
+ readonly development: "http://localhost:3333";
54
+ readonly preprod: "https://waas.dynamic-preprod.xyz";
55
+ readonly production: "https://waas.dynamicauth.com";
56
+ };
35
57
  export declare const ChainEnumToVerifiedCredentialName: {
36
58
  [key: string]: string;
37
59
  };
@@ -1 +1 @@
1
- {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../packages/src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,8BAA8B,gCAAgC,CAAC;AAC5E,eAAO,MAAM,iCAAiC,oCACX,CAAC;AAEpC,eAAO,MAAM,sCAAsC,qEACiB,CAAC;AACrE,eAAO,MAAM,yCAAyC,yEACkB,CAAC;AAEzE,eAAO,MAAM,sBAAsB,0BAA0B,CAAC;AAC9D,eAAO,MAAM,yBAAyB,8BAA8B,CAAC;AAErE,eAAO,MAAM,cAAc,kCAAkC,CAAC;AAE9D,eAAO,MAAM,KAAK;;;;;;;CAOR,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,OAAO,KAAK,CAAC,CAAC;AAE3D,oBAAY,eAAe;IACzB,eAAe,oBAAoB;IACnC,iBAAiB,sBAAsB;IACvC,YAAY,iBAAiB;IAC7B,gBAAgB,qBAAqB;IACrC,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,kBAAkB,uBAAuB;IACzC,YAAY,iBAAiB;CAC9B;AAED,oBAAY,cAAc;IACxB,OAAO,YAAY;IACnB,YAAY,gBAAgB;IAC5B,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,QAAQ,aAAa;CACtB;AAGD,eAAO,MAAM,aAAa,0BAA0B,CAAC;AAErD,eAAO,MAAM,iCAAiC,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CAKtE,CAAC;AAEF,eAAO,MAAM,iCAAiC,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CAItE,CAAC"}
1
+ {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../packages/src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,8BAA8B,gCAAgC,CAAC;AAC5E,eAAO,MAAM,iCAAiC,oCACX,CAAC;AACpC,eAAO,MAAM,6BAA6B,0BAA0B,CAAC;AAErE,oBAAY,gBAAgB;IAC1B,WAAW,gBAAgB;IAC3B,OAAO,YAAY;IACnB,UAAU,eAAe;CAC1B;AAED,eAAO,MAAM,sCAAsC,qEACiB,CAAC;AACrE,eAAO,MAAM,yCAAyC,yEACkB,CAAC;AACzE,eAAO,MAAM,qCAAqC,0BAA0B,CAAC;AAE7E,eAAO,MAAM,6BAA6B;;;;CAIhC,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;CAI3B,CAAC;AAEX,eAAO,MAAM,sBAAsB,0BAA0B,CAAC;AAC9D,eAAO,MAAM,yBAAyB,8BAA8B,CAAC;AACrE,eAAO,MAAM,qBAAqB,0BAA0B,CAAC;AAE7D,eAAO,MAAM,cAAc,kCAAkC,CAAC;AAE9D,eAAO,MAAM,KAAK;;;;;;;CAOR,CAAC;AAEX,MAAM,MAAM,SAAS,GAAG,CAAC,OAAO,KAAK,CAAC,CAAC,MAAM,OAAO,KAAK,CAAC,CAAC;AAE3D,oBAAY,eAAe;IACzB,eAAe,oBAAoB;IACnC,iBAAiB,sBAAsB;IACvC,YAAY,iBAAiB;IAC7B,gBAAgB,qBAAqB;IACrC,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,kBAAkB,uBAAuB;IACzC,YAAY,iBAAiB;CAC9B;AAED,oBAAY,cAAc;IACxB,OAAO,YAAY;IACnB,YAAY,gBAAgB;IAC5B,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,QAAQ,aAAa;CACtB;AAED,eAAO,MAAM,iBAAiB;;;;CAIpB,CAAC;AAEX,eAAO,MAAM,iCAAiC,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CAKtE,CAAC;AAEF,eAAO,MAAM,iCAAiC,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CAItE,CAAC"}