@paraswap/dex-lib 3.8.1 → 3.8.3

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.
Files changed (213) hide show
  1. package/.vscode/launch.json +9 -49
  2. package/.vscode/settings.json +2 -1
  3. package/build/abi/Uncompressor.json +250 -0
  4. package/build/abi/integral/factory.json +333 -0
  5. package/build/abi/integral/oracle.json +501 -0
  6. package/build/abi/integral/pool.json +1041 -0
  7. package/build/abi/{wombat/pool.json → integral/relayer.json} +720 -473
  8. package/build/abi/oswap/oswap.abi.json +452 -0
  9. package/build/dex/aave-v1/aave-v1.d.ts +1 -2
  10. package/build/dex/aave-v1/aave-v1.js +0 -23
  11. package/build/dex/aave-v1/aave-v1.js.map +1 -1
  12. package/build/dex/aave-v3/aave-v3.js +2 -1
  13. package/build/dex/aave-v3/aave-v3.js.map +1 -1
  14. package/build/dex/aave-v3-stata/aave-v3-stata.js +1 -0
  15. package/build/dex/aave-v3-stata/aave-v3-stata.js.map +1 -1
  16. package/build/dex/angle-staked-stable/angle-staked-stable.js +4 -1
  17. package/build/dex/angle-staked-stable/angle-staked-stable.js.map +1 -1
  18. package/build/dex/compound/compound.js +2 -1
  19. package/build/dex/compound/compound.js.map +1 -1
  20. package/build/dex/compound.js +1 -1
  21. package/build/dex/compound.js.map +1 -1
  22. package/build/dex/etherfi/etherfi.d.ts +26 -0
  23. package/build/dex/etherfi/etherfi.js +96 -0
  24. package/build/dex/etherfi/etherfi.js.map +1 -0
  25. package/build/dex/etherfi.js +4 -1
  26. package/build/dex/etherfi.js.map +1 -1
  27. package/build/dex/idle-dao/idle-dao.js +1 -0
  28. package/build/dex/idle-dao/idle-dao.js.map +1 -1
  29. package/build/dex/integral/config.d.ts +4 -0
  30. package/build/dex/integral/config.js +20 -0
  31. package/build/dex/integral/config.js.map +1 -0
  32. package/build/dex/integral/context.d.ts +33 -0
  33. package/build/dex/integral/context.js +98 -0
  34. package/build/dex/integral/context.js.map +1 -0
  35. package/build/dex/integral/helpers.d.ts +17 -0
  36. package/build/dex/integral/helpers.js +157 -0
  37. package/build/dex/integral/helpers.js.map +1 -0
  38. package/build/dex/integral/integral-factory.d.ts +21 -0
  39. package/build/dex/integral/integral-factory.js +92 -0
  40. package/build/dex/integral/integral-factory.js.map +1 -0
  41. package/build/dex/integral/integral-pool.d.ts +46 -0
  42. package/build/dex/integral/integral-pool.js +143 -0
  43. package/build/dex/integral/integral-pool.js.map +1 -0
  44. package/build/dex/integral/integral-pricing.d.ts +18 -0
  45. package/build/dex/integral/integral-pricing.js +114 -0
  46. package/build/dex/integral/integral-pricing.js.map +1 -0
  47. package/build/dex/integral/integral-relayer.d.ts +39 -0
  48. package/build/dex/integral/integral-relayer.js +189 -0
  49. package/build/dex/integral/integral-relayer.js.map +1 -0
  50. package/build/dex/integral/integral-token.d.ts +22 -0
  51. package/build/dex/integral/integral-token.js +55 -0
  52. package/build/dex/integral/integral-token.js.map +1 -0
  53. package/build/dex/integral/integral.d.ts +41 -0
  54. package/build/dex/integral/integral.js +382 -0
  55. package/build/dex/integral/integral.js.map +1 -0
  56. package/build/dex/integral/types.d.ts +84 -0
  57. package/build/dex/integral/types.js +9 -0
  58. package/build/dex/integral/types.js.map +1 -0
  59. package/build/dex/integral/utils.d.ts +6 -0
  60. package/build/dex/integral/utils.js +23 -0
  61. package/build/dex/integral/utils.js.map +1 -0
  62. package/build/dex/mStable.js +1 -1
  63. package/build/dex/mStable.js.map +1 -1
  64. package/build/dex/oswap/config.d.ts +5 -0
  65. package/build/dex/oswap/config.js +31 -0
  66. package/build/dex/oswap/config.js.map +1 -0
  67. package/build/dex/oswap/oswap-pool.d.ts +51 -0
  68. package/build/dex/oswap/oswap-pool.js +150 -0
  69. package/build/dex/oswap/oswap-pool.js.map +1 -0
  70. package/build/dex/oswap/oswap.d.ts +46 -0
  71. package/build/dex/oswap/oswap.js +266 -0
  72. package/build/dex/oswap/oswap.js.map +1 -0
  73. package/build/dex/oswap/types.d.ts +20 -0
  74. package/build/dex/oswap/types.js +3 -0
  75. package/build/dex/oswap/types.js.map +1 -0
  76. package/build/dex/paraswap-limit-orders/paraswap-limit-orders.js +3 -0
  77. package/build/dex/paraswap-limit-orders/paraswap-limit-orders.js.map +1 -1
  78. package/build/dex/platypus/platypus.d.ts +1 -2
  79. package/build/dex/platypus/platypus.js +0 -45
  80. package/build/dex/platypus/platypus.js.map +1 -1
  81. package/build/dex/sdai/config.d.ts +11 -0
  82. package/build/dex/sdai/config.js +21 -0
  83. package/build/dex/sdai/config.js.map +1 -0
  84. package/build/dex/sdai/constants.d.ts +2 -0
  85. package/build/dex/sdai/constants.js +6 -0
  86. package/build/dex/sdai/constants.js.map +1 -0
  87. package/build/dex/sdai/scripts/validate-state.js +102 -0
  88. package/build/dex/sdai/scripts/validate-state.js.map +1 -0
  89. package/build/dex/sdai/sdai-pool.d.ts +16 -0
  90. package/build/dex/sdai/sdai-pool.js +85 -0
  91. package/build/dex/sdai/sdai-pool.js.map +1 -0
  92. package/build/dex/sdai/sdai.d.ts +51 -0
  93. package/build/dex/sdai/sdai.js +172 -0
  94. package/build/dex/sdai/sdai.js.map +1 -0
  95. package/build/dex/sdai/types.d.ts +21 -0
  96. package/build/dex/sdai/types.js +11 -0
  97. package/build/dex/sdai/types.js.map +1 -0
  98. package/build/dex/sdai/utils.d.ts +4 -0
  99. package/build/dex/sdai/utils.js +39 -0
  100. package/build/dex/sdai/utils.js.map +1 -0
  101. package/build/dex/simple-exchange.d.ts +1 -1
  102. package/build/dex/simple-exchange.js +4 -2
  103. package/build/dex/simple-exchange.js.map +1 -1
  104. package/build/dex/spark/spark.js +2 -1
  105. package/build/dex/spark/spark.js.map +1 -1
  106. package/build/dex/stable-pool.js +8 -1
  107. package/build/dex/stable-pool.js.map +1 -1
  108. package/build/dex/swaap-v1/swaap-v1.d.ts +1 -2
  109. package/build/dex/swaap-v1/swaap-v1.js +0 -14
  110. package/build/dex/swaap-v1/swaap-v1.js.map +1 -1
  111. package/build/executor/Executor01BytecodeBuilder.js +3 -1
  112. package/build/executor/Executor01BytecodeBuilder.js.map +1 -1
  113. package/build/executor/Executor02BytecodeBuilder.js +3 -1
  114. package/build/executor/Executor02BytecodeBuilder.js.map +1 -1
  115. package/build/executor/Executor03BytecodeBuilder.js +2 -0
  116. package/build/executor/Executor03BytecodeBuilder.js.map +1 -1
  117. package/build/executor/ExecutorBytecodeBuilder.js +2 -0
  118. package/build/executor/ExecutorBytecodeBuilder.js.map +1 -1
  119. package/build/executor/compressor/Compressor.d.ts +23 -0
  120. package/build/executor/compressor/Compressor.js +144 -0
  121. package/build/executor/compressor/Compressor.js.map +1 -0
  122. package/build/executor/compressor/compress.d.ts +17 -0
  123. package/build/executor/compressor/compress.js +187 -0
  124. package/build/executor/compressor/compress.js.map +1 -0
  125. package/build/executor/compressor/compress_functions/addressSubstitution.d.ts +6 -0
  126. package/build/executor/compressor/compress_functions/addressSubstitution.js +29 -0
  127. package/build/executor/compressor/compress_functions/addressSubstitution.js.map +1 -0
  128. package/build/executor/compressor/compress_functions/addressSubstitutionFromObject.d.ts +10 -0
  129. package/build/executor/compressor/compress_functions/addressSubstitutionFromObject.js +40 -0
  130. package/build/executor/compressor/compress_functions/addressSubstitutionFromObject.js.map +1 -0
  131. package/build/executor/compressor/compress_functions/byteSubstitution.d.ts +11 -0
  132. package/build/executor/compressor/compress_functions/byteSubstitution.js +64 -0
  133. package/build/executor/compressor/compress_functions/byteSubstitution.js.map +1 -0
  134. package/build/executor/compressor/compress_functions/ffSubstitution.d.ts +7 -0
  135. package/build/executor/compressor/compress_functions/ffSubstitution.js +54 -0
  136. package/build/executor/compressor/compress_functions/ffSubstitution.js.map +1 -0
  137. package/build/executor/compressor/compress_functions/findLongestAndSubstitute.d.ts +8 -0
  138. package/build/executor/compressor/compress_functions/findLongestAndSubstitute.js +67 -0
  139. package/build/executor/compressor/compress_functions/findLongestAndSubstitute.js.map +1 -0
  140. package/build/executor/compressor/compress_functions/findLongestAndSubstitute_old.d.ts +8 -0
  141. package/build/executor/compressor/compress_functions/findLongestAndSubstitute_old.js +61 -0
  142. package/build/executor/compressor/compress_functions/findLongestAndSubstitute_old.js.map +1 -0
  143. package/build/executor/compressor/compress_functions/reverseAddressSubstitution.d.ts +6 -0
  144. package/build/executor/compressor/compress_functions/reverseAddressSubstitution.js +37 -0
  145. package/build/executor/compressor/compress_functions/reverseAddressSubstitution.js.map +1 -0
  146. package/build/executor/compressor/compress_functions/searchUnusedBytes.d.ts +9 -0
  147. package/build/executor/compressor/compress_functions/searchUnusedBytes.js +33 -0
  148. package/build/executor/compressor/compress_functions/searchUnusedBytes.js.map +1 -0
  149. package/build/executor/compressor/fetchSaved.js +17 -0
  150. package/build/executor/compressor/fetchSaved.js.map +1 -0
  151. package/build/executor/compressor/utils/computeCostL2.d.ts +2 -0
  152. package/build/executor/compressor/utils/computeCostL2.js +14 -0
  153. package/build/executor/compressor/utils/computeCostL2.js.map +1 -0
  154. package/build/executor/compressor/utils/findLongestDuplicatedString.d.ts +2 -0
  155. package/build/executor/compressor/utils/findLongestDuplicatedString.js +30 -0
  156. package/build/executor/compressor/utils/findLongestDuplicatedString.js.map +1 -0
  157. package/build/executor/compressor/utils/getAllIndexes.d.ts +2 -0
  158. package/build/executor/compressor/utils/getAllIndexes.js +12 -0
  159. package/build/executor/compressor/utils/getAllIndexes.js.map +1 -0
  160. package/build/executor/compressor/utils/getByteForAddress.d.ts +2 -0
  161. package/build/executor/compressor/utils/getByteForAddress.js +14 -0
  162. package/build/executor/compressor/utils/getByteForAddress.js.map +1 -0
  163. package/build/executor/compressor/utils/intTo2Bytes.d.ts +2 -0
  164. package/build/executor/compressor/utils/intTo2Bytes.js +14 -0
  165. package/build/executor/compressor/utils/intTo2Bytes.js.map +1 -0
  166. package/build/executor/compressor/utils/intTo3Bytes.d.ts +2 -0
  167. package/build/executor/compressor/utils/intTo3Bytes.js +18 -0
  168. package/build/executor/compressor/utils/intTo3Bytes.js.map +1 -0
  169. package/build/executor/compressor/utils/intToByte.d.ts +2 -0
  170. package/build/executor/compressor/utils/intToByte.js +10 -0
  171. package/build/executor/compressor/utils/intToByte.js.map +1 -0
  172. package/build/types.d.ts +1 -0
  173. package/package.json +1 -1
  174. package/src/dex/aave-v3/aave-v3-e2e.test.ts +4 -9
  175. package/src/dex/aave-v3/aave-v3.ts +5 -0
  176. package/src/dex/aave-v3-stata/aave-v3-stata.ts +1 -0
  177. package/src/dex/angle-staked-stable/angle-staked-stable.ts +8 -0
  178. package/src/dex/compound/compound.ts +5 -0
  179. package/src/dex/etherfi.ts +5 -0
  180. package/src/dex/idle-dao/idle-dao.ts +1 -0
  181. package/src/dex/paraswap-limit-orders/paraswap-limit-orders-e2e.test.ts +152 -68
  182. package/src/dex/paraswap-limit-orders/paraswap-limit-orders.ts +3 -0
  183. package/src/dex/simple-exchange.ts +5 -5
  184. package/src/dex/spark/spark-e2e.test.ts +9 -1
  185. package/src/dex/spark/spark.ts +5 -0
  186. package/src/executor/Executor01BytecodeBuilder.ts +3 -1
  187. package/src/executor/Executor02BytecodeBuilder.ts +3 -1
  188. package/src/executor/Executor03BytecodeBuilder.ts +2 -0
  189. package/src/executor/ExecutorBytecodeBuilder.ts +2 -0
  190. package/src/executor/executor01-bytecode-builder-e2e.test.ts +25 -0
  191. package/src/executor/executor02-bytecode-builder-e2e.test.ts +29 -0
  192. package/src/types.ts +1 -0
  193. package/tests/constants-e2e.ts +14 -14
  194. package/tests/utils-e2e.ts +1 -1
  195. package/.vscode/tasks.json +0 -15
  196. package/build/abi/uniswap-v3/AlienBaseV3Router.abi.json +0 -52
  197. package/build/dex/aave-v2/tokens-avalanche.json +0 -44
  198. package/build/dex/aave-v2/tokens-mainnet.json +0 -188
  199. package/build/dex/aave-v2/tokens-polygon.json +0 -44
  200. package/build/dex/maker-psm/scripts/gem.abi.json +0 -136
  201. package/build/dex/maker-psm/scripts/validate-state.js +0 -185
  202. package/build/dex/maker-psm/scripts/validate-state.js.map +0 -1
  203. package/build/dex/maker-psm/scripts/vat.abi.json +0 -243
  204. package/build/dex/solidly-v3/scripts/check-event-pool-event.js +0 -53
  205. package/build/dex/solidly-v3/scripts/check-event-pool-event.js.map +0 -1
  206. package/build/dex/uniswap-v3/forks/alien-base-v3/alien-base-v3.d.ts +0 -17
  207. package/build/dex/uniswap-v3/forks/alien-base-v3/alien-base-v3.js +0 -64
  208. package/build/dex/uniswap-v3/forks/alien-base-v3/alien-base-v3.js.map +0 -1
  209. package/build/dex/uniswap-v3/forks/alien-v3/alien-v3.d.ts +0 -17
  210. package/build/dex/uniswap-v3/forks/alien-v3/alien-v3.js +0 -79
  211. package/build/dex/uniswap-v3/forks/alien-v3/alien-v3.js.map +0 -1
  212. /package/build/dex/{solidly-v3/scripts/check-event-pool-event.d.ts → sdai/scripts/validate-state.d.ts} +0 -0
  213. /package/build/{dex/maker-psm/scripts/validate-state.d.ts → executor/compressor/fetchSaved.d.ts} +0 -0
@@ -1,79 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.AlienV3 = exports.AlienBaseV3Config = void 0;
7
- const abi_1 = require("@ethersproject/abi");
8
- const constants_1 = require("../../../../constants");
9
- const utils_1 = require("../../../../utils");
10
- const types_1 = require("../../types");
11
- const uniswap_v3_1 = require("../../uniswap-v3");
12
- const AlienBaseV3Router_abi_json_1 = __importDefault(require("../../../../abi/uniswap-v3/AlienBaseV3Router.abi.json"));
13
- exports.AlienBaseV3Config = {
14
- AlienV3: {
15
- [constants_1.Network.BASE]: {
16
- factory: '0x0Fd83557b2be93617c9C1C1B6fd549401C74558C',
17
- quoter: '0x4fDBD73aD4B1DDde594BF05497C15f76308eFfb9',
18
- router: '0xB20C411FC84FBB27e78608C24d0056D974ea9411',
19
- supportedFees: [10000n, 3000n, 750n, 200n],
20
- stateMulticall: '0x7160f736c52e1e78e92FD4eE4D73e21A7Cf4F950',
21
- uniswapMulticall: '0x091e99cb1C49331a94dD62755D168E941AbD0693',
22
- chunksCount: 10,
23
- initRetryFrequency: 10,
24
- initHash: `0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54`,
25
- subgraphURL: 'https://api.studio.thegraph.com/query/59130/v3alb/0.3',
26
- },
27
- },
28
- DackieSwapV3: {
29
- [constants_1.Network.BASE]: {
30
- factory: '0x3D237AC6D2f425D2E890Cc99198818cc1FA48870',
31
- quoter: '0x4fDBD73aD4B1DDde594BF05497C15f76308eFfb9',
32
- router: '0x195FBc5B8Fbd5Ac739C1BA57D4Ef6D5a704F34f7',
33
- // supportedFees: [10000n, 2500n, 500n, 100n],
34
- supportedFees: [100n],
35
- stateMulticall: '0x7160f736c52e1e78e92FD4eE4D73e21A7Cf4F950',
36
- uniswapMulticall: '0x091e99cb1C49331a94dD62755D168E941AbD0693',
37
- chunksCount: 10,
38
- initRetryFrequency: 10,
39
- initHash: `0x6ce8eb472fa82df5469c6ab6d485f17c3ad13c8cd7af59b3d4a8026c5ce0f7e2`,
40
- subgraphURL: 'https://api.studio.thegraph.com/query/59130/v3alb/0.3',
41
- },
42
- },
43
- };
44
- class AlienV3 extends uniswap_v3_1.UniswapV3 {
45
- constructor(network, dexKey, dexHelper) {
46
- super(network, dexKey, dexHelper, {}, new abi_1.Interface(AlienBaseV3Router_abi_json_1.default), undefined, exports.AlienBaseV3Config[dexKey][network]);
47
- this.network = network;
48
- this.dexHelper = dexHelper;
49
- }
50
- static getDirectFunctionName() {
51
- return [];
52
- }
53
- async getSimpleParam(srcToken, destToken, srcAmount, destAmount, data, side) {
54
- const swapFunction = side === constants_1.SwapSide.SELL
55
- ? types_1.UniswapV3Functions.exactInput
56
- : types_1.UniswapV3Functions.exactOutput;
57
- const path = this._encodePath(data.path, side);
58
- const swapFunctionParams = side === constants_1.SwapSide.SELL
59
- ? {
60
- recipient: this.augustusAddress,
61
- amountIn: srcAmount,
62
- amountOutMinimum: destAmount,
63
- path,
64
- }
65
- : {
66
- recipient: this.augustusAddress,
67
- amountOut: destAmount,
68
- amountInMaximum: srcAmount,
69
- path,
70
- };
71
- const swapData = this.routerIface.encodeFunctionData(swapFunction, [
72
- swapFunctionParams,
73
- ]);
74
- return this.buildSimpleParamWithoutWETHConversion(srcToken, srcAmount, destToken, destAmount, swapData, this.config.router);
75
- }
76
- }
77
- exports.AlienV3 = AlienV3;
78
- AlienV3.dexKeysWithNetwork = (0, utils_1.getDexKeysWithNetwork)(exports.AlienBaseV3Config);
79
- //# sourceMappingURL=alien-v3.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"alien-v3.js","sourceRoot":"","sources":["../../../../../src/dex/uniswap-v3/forks/alien-v3/alien-v3.ts"],"names":[],"mappings":";;;;;;AAAA,4CAA+C;AAC/C,qDAA0D;AAG1D,6CAA0D;AAC1D,uCAMqB;AACrB,iDAA6C;AAC7C,uHAAyF;AAE5E,QAAA,iBAAiB,GAA4B;IACxD,OAAO,EAAE;QACP,CAAC,mBAAO,CAAC,IAAI,CAAC,EAAE;YACd,OAAO,EAAE,4CAA4C;YACrD,MAAM,EAAE,4CAA4C;YACpD,MAAM,EAAE,4CAA4C;YACpD,aAAa,EAAE,CAAC,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC;YAC1C,cAAc,EAAE,4CAA4C;YAC5D,gBAAgB,EAAE,4CAA4C;YAC9D,WAAW,EAAE,EAAE;YACf,kBAAkB,EAAE,EAAE;YACtB,QAAQ,EAAE,oEAAoE;YAC9E,WAAW,EAAE,uDAAuD;SACrE;KACF;IACD,YAAY,EAAE;QACZ,CAAC,mBAAO,CAAC,IAAI,CAAC,EAAE;YACd,OAAO,EAAE,4CAA4C;YACrD,MAAM,EAAE,4CAA4C;YACpD,MAAM,EAAE,4CAA4C;YACpD,8CAA8C;YAC9C,aAAa,EAAE,CAAC,IAAI,CAAC;YACrB,cAAc,EAAE,4CAA4C;YAC5D,gBAAgB,EAAE,4CAA4C;YAC9D,WAAW,EAAE,EAAE;YACf,kBAAkB,EAAE,EAAE;YACtB,QAAQ,EAAE,oEAAoE;YAC9E,WAAW,EAAE,uDAAuD;SACrE;KACF;CACF,CAAC;AAMF,MAAa,OAAQ,SAAQ,sBAAS;IAIpC,YACY,OAAgB,EAC1B,MAAc,EACJ,SAAqB;QAE/B,KAAK,CACH,OAAO,EACP,MAAM,EACN,SAAS,EACT,EAAE,EACF,IAAI,eAAS,CAAC,oCAAoB,CAAC,EACnC,SAAS,EACT,yBAAiB,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CACnC,CAAC;QAZQ,YAAO,GAAP,OAAO,CAAS;QAEhB,cAAS,GAAT,SAAS,CAAY;IAWjC,CAAC;IAED,MAAM,CAAC,qBAAqB;QAC1B,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,KAAK,CAAC,cAAc,CAClB,QAAgB,EAChB,SAAiB,EACjB,SAAiB,EACjB,UAAkB,EAClB,IAAmB,EACnB,IAAc;QAEd,MAAM,YAAY,GAChB,IAAI,KAAK,oBAAQ,CAAC,IAAI;YACpB,CAAC,CAAC,0BAAkB,CAAC,UAAU;YAC/B,CAAC,CAAC,0BAAkB,CAAC,WAAW,CAAC;QAErC,MAAM,IAAI,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;QAC/C,MAAM,kBAAkB,GACtB,IAAI,KAAK,oBAAQ,CAAC,IAAI;YACpB,CAAC,CAAC;gBACE,SAAS,EAAE,IAAI,CAAC,eAAe;gBAC/B,QAAQ,EAAE,SAAS;gBACnB,gBAAgB,EAAE,UAAU;gBAC5B,IAAI;aACL;YACH,CAAC,CAAC;gBACE,SAAS,EAAE,IAAI,CAAC,eAAe;gBAC/B,SAAS,EAAE,UAAU;gBACrB,eAAe,EAAE,SAAS;gBAC1B,IAAI;aACL,CAAC;QAER,MAAM,QAAQ,GAAG,IAAI,CAAC,WAAW,CAAC,kBAAkB,CAAC,YAAY,EAAE;YACjE,kBAAkB;SACnB,CAAC,CAAC;QAEH,OAAO,IAAI,CAAC,qCAAqC,CAC/C,QAAQ,EACR,SAAS,EACT,SAAS,EACT,UAAU,EACV,QAAQ,EACR,IAAI,CAAC,MAAM,CAAC,MAAM,CACnB,CAAC;IACJ,CAAC;;AAjEH,0BAkEC;AAjEe,0BAAkB,GAC9B,IAAA,6BAAqB,EAAC,yBAAiB,CAAC,CAAC"}