@etherisc/gif-next 0.0.2-a8ee67b-545 → 0.0.2-a996a07-088

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 (663) hide show
  1. package/README.md +250 -14
  2. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  3. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1416 -0
  4. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  5. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1445 -0
  6. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  7. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +866 -0
  8. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +975 -0
  10. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  11. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +814 -0
  12. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  13. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +709 -0
  14. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  15. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +315 -1509
  16. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  17. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +650 -0
  18. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  19. package/artifacts/contracts/instance/Instance.sol/Instance.json +496 -1664
  20. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  21. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +708 -0
  22. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
  23. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +316 -0
  24. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  25. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1765 -0
  26. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  27. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1101 -0
  28. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  29. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +758 -0
  30. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  31. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3678 -0
  32. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  33. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  34. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  35. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
  36. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  37. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  38. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  39. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +187 -0
  40. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  41. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
  42. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  43. package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
  44. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  45. package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IComponents.sol/IComponents.json} +2 -2
  46. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  47. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  48. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  49. package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
  50. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  51. package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
  52. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  53. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  54. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  55. package/artifacts/contracts/{instance/base/ModuleBase.sol/ModuleBase.json → oracle/IOracle.sol/IOracle.json} +2 -2
  56. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  57. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +759 -0
  58. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  59. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +662 -0
  60. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  61. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1146 -0
  62. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  63. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1077 -0
  64. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  65. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +758 -0
  66. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  67. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1193 -0
  68. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  69. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +790 -0
  70. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  71. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +690 -0
  72. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  73. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1154 -0
  74. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  75. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1065 -0
  76. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  77. package/artifacts/contracts/pool/Pool.sol/Pool.json +1565 -0
  78. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  79. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1528 -0
  80. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  81. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +786 -0
  82. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  83. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +938 -0
  84. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  85. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +774 -0
  86. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  87. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1366 -0
  88. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  89. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +854 -0
  90. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  91. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +252 -230
  92. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  93. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +759 -0
  94. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  95. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +707 -0
  96. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  97. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +536 -0
  98. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  99. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +995 -0
  100. package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
  101. package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IProductService.sol/IProductService.json} +197 -174
  102. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  103. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1266 -0
  104. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  105. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +814 -0
  106. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  107. package/artifacts/contracts/product/PricingService.sol/PricingService.json +1071 -0
  108. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  109. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +822 -0
  110. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  111. package/artifacts/contracts/product/Product.sol/Product.json +1397 -0
  112. package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
  113. package/artifacts/contracts/product/ProductService.sol/ProductService.json +767 -0
  114. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  115. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +738 -0
  116. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  117. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +199 -12
  118. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  119. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +678 -77
  120. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  121. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1110 -0
  122. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  123. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
  124. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  125. package/artifacts/contracts/registry/Registry.sol/Registry.json +1064 -186
  126. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  127. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1627 -0
  128. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  129. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1519 -0
  130. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  131. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +761 -0
  132. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  133. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1348 -0
  134. package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.dbg.json +4 -0
  135. package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.json +249 -0
  136. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  137. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
  138. package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  139. package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.json +1492 -0
  140. package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +4 -0
  141. package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +1193 -0
  142. package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +4 -0
  143. package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +1747 -0
  144. package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +4 -0
  145. package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +1760 -0
  146. package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +4 -0
  147. package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +1838 -0
  148. package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +4 -0
  149. package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +1856 -0
  150. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  151. package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
  152. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  153. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1578 -0
  154. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  155. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +836 -0
  156. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  157. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +526 -0
  158. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  159. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
  160. package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  161. package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.json +1126 -0
  162. package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +4 -0
  163. package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +1562 -0
  164. package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +4 -0
  165. package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +1600 -0
  166. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  167. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
  168. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  169. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +867 -0
  170. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  171. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +705 -0
  172. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  173. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -138
  174. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  175. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -1
  176. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  177. package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +37 -80
  178. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  179. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
  180. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  181. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +91 -31
  182. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  183. package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
  184. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  185. package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/IService.sol/IService.json} +158 -151
  186. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  187. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +16 -125
  188. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  189. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  190. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  191. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1036 -0
  192. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  193. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +635 -0
  194. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  195. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +258 -0
  196. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
  197. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
  198. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  199. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
  200. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  201. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
  202. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  203. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +617 -0
  204. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  205. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +255 -23
  206. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  207. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
  208. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  209. package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +260 -218
  210. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  211. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -0
  212. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  213. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  214. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  215. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +29 -115
  216. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  217. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
  218. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  219. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +993 -0
  220. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  221. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +444 -0
  222. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  223. package/artifacts/contracts/staking/Staking.sol/Staking.json +2061 -0
  224. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  225. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +785 -0
  226. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  227. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +616 -0
  228. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  229. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1388 -0
  230. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  231. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +758 -0
  232. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  233. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2261 -0
  234. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  235. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +619 -0
  236. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  237. package/artifacts/contracts/{types → type}/AddressSet.sol/LibAddressSet.json +3 -3
  238. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  239. package/artifacts/contracts/type/Amount.sol/AmountLib.json +345 -0
  240. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  241. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  242. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  243. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +195 -0
  244. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  245. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +120 -0
  246. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  247. package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
  248. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  249. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  250. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  251. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  252. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  253. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  254. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  255. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +148 -0
  256. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  257. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +225 -0
  258. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  259. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +158 -0
  260. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  261. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +220 -0
  262. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  263. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +102 -0
  264. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  265. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +191 -0
  266. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  267. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
  268. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  269. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  270. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  271. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  272. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  273. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  274. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  275. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  276. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  277. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +293 -0
  278. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  279. package/artifacts/contracts/{types/ChainId.sol/ChainIdLib.json → type/UFixed.sol/MathLib.json} +4 -4
  280. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  281. package/artifacts/contracts/{types/UFixed.sol/UFixedMathLib.json → type/UFixed.sol/UFixedLib.json} +4 -4
  282. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  283. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  284. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  285. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
  286. package/contracts/distribution/Distribution.sol +261 -0
  287. package/contracts/distribution/DistributionService.sol +298 -0
  288. package/contracts/distribution/DistributionServiceManager.sol +42 -0
  289. package/contracts/distribution/IDistributionComponent.sol +66 -0
  290. package/contracts/distribution/IDistributionService.sol +81 -0
  291. package/contracts/instance/BundleManager.sol +126 -0
  292. package/contracts/instance/IInstance.sol +74 -44
  293. package/contracts/instance/IInstanceService.sol +81 -0
  294. package/contracts/instance/Instance.sol +220 -52
  295. package/contracts/instance/InstanceAdmin.sol +331 -0
  296. package/contracts/instance/InstanceAuthorizationsLib.sol +377 -0
  297. package/contracts/instance/InstanceReader.sol +392 -0
  298. package/contracts/instance/InstanceService.sol +362 -0
  299. package/contracts/instance/InstanceServiceManager.sol +44 -0
  300. package/contracts/instance/InstanceStore.sol +269 -0
  301. package/contracts/instance/base/BalanceStore.sol +123 -0
  302. package/contracts/instance/base/Cloneable.sol +28 -0
  303. package/contracts/instance/base/ObjectCounter.sol +21 -0
  304. package/contracts/instance/base/ObjectManager.sol +80 -0
  305. package/contracts/instance/module/IAccess.sol +46 -0
  306. package/contracts/instance/module/IBundle.sol +20 -0
  307. package/contracts/instance/module/IComponents.sol +52 -0
  308. package/contracts/instance/module/IDistribution.sol +42 -0
  309. package/contracts/instance/module/IPolicy.sol +84 -0
  310. package/contracts/instance/module/IRisk.sol +11 -0
  311. package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
  312. package/contracts/oracle/IOracle.sol +20 -0
  313. package/contracts/oracle/IOracleComponent.sol +32 -0
  314. package/contracts/oracle/IOracleService.sol +65 -0
  315. package/contracts/oracle/Oracle.sol +145 -0
  316. package/contracts/oracle/OracleService.sol +277 -0
  317. package/contracts/oracle/OracleServiceManager.sol +42 -0
  318. package/contracts/pool/BundleService.sol +296 -0
  319. package/contracts/pool/BundleServiceManager.sol +42 -0
  320. package/contracts/pool/IBundleService.sol +106 -0
  321. package/contracts/pool/IPoolComponent.sol +112 -0
  322. package/contracts/pool/IPoolService.sol +150 -0
  323. package/contracts/pool/Pool.sol +299 -0
  324. package/contracts/pool/PoolService.sol +453 -0
  325. package/contracts/pool/PoolServiceManager.sol +42 -0
  326. package/contracts/product/ApplicationService.sol +254 -0
  327. package/contracts/product/ApplicationServiceManager.sol +38 -0
  328. package/contracts/product/ClaimService.sol +442 -0
  329. package/contracts/product/ClaimServiceManager.sol +38 -0
  330. package/contracts/product/IApplicationService.sol +62 -0
  331. package/contracts/product/IClaimService.sol +99 -0
  332. package/contracts/product/IPolicyService.sol +78 -0
  333. package/contracts/product/IPricingService.sol +39 -0
  334. package/contracts/product/IProductComponent.sol +42 -0
  335. package/contracts/product/IProductService.sol +33 -0
  336. package/contracts/product/PolicyService.sol +475 -0
  337. package/contracts/product/PolicyServiceManager.sol +42 -0
  338. package/contracts/product/PricingService.sol +301 -0
  339. package/contracts/product/PricingServiceManager.sol +42 -0
  340. package/contracts/product/Product.sol +377 -0
  341. package/contracts/product/ProductService.sol +124 -0
  342. package/contracts/product/ProductServiceManager.sol +42 -0
  343. package/contracts/registry/ChainNft.sol +95 -37
  344. package/contracts/registry/IRegistry.sol +95 -28
  345. package/contracts/registry/IRegistryService.sol +69 -0
  346. package/contracts/registry/ITransferInterceptor.sol +7 -0
  347. package/contracts/registry/Registry.sol +476 -281
  348. package/contracts/registry/RegistryAdmin.sol +126 -0
  349. package/contracts/registry/RegistryService.sol +266 -0
  350. package/contracts/registry/RegistryServiceManager.sol +58 -0
  351. package/contracts/registry/ReleaseManager.sol +590 -0
  352. package/contracts/registry/ServiceAuthorizationsLib.sol +173 -0
  353. package/contracts/registry/TokenRegistry.sol +315 -0
  354. package/contracts/shared/AccessAdmin.sol +696 -0
  355. package/contracts/shared/AccessManagerCustom.sol +741 -0
  356. package/contracts/shared/AccessManagerExtended.sol +481 -0
  357. package/contracts/shared/AccessManagerExtendedInitializeable.sol +13 -0
  358. package/contracts/shared/AccessManagerExtendedWithDisable.sol +137 -0
  359. package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +14 -0
  360. package/contracts/shared/Component.sol +281 -0
  361. package/contracts/shared/ComponentService.sol +618 -0
  362. package/contracts/shared/ComponentServiceManager.sol +35 -0
  363. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  364. package/contracts/shared/ERC165.sol +15 -9
  365. package/contracts/shared/IAccessAdmin.sol +146 -0
  366. package/contracts/shared/IAccessManagerExtended.sol +74 -0
  367. package/contracts/shared/IAccessManagerExtendedWithDisable.sol +18 -0
  368. package/contracts/shared/IComponent.sol +70 -0
  369. package/contracts/shared/IComponentService.sol +102 -0
  370. package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
  371. package/contracts/shared/IKeyValueStore.sol +53 -0
  372. package/contracts/{instance/base → shared}/ILifecycle.sol +4 -4
  373. package/contracts/shared/INftOwnable.sol +23 -0
  374. package/contracts/shared/IPolicyHolder.sol +45 -0
  375. package/contracts/shared/IRegisterable.sol +10 -19
  376. package/contracts/shared/IRegistryLinked.sol +11 -0
  377. package/contracts/shared/IService.sol +18 -0
  378. package/contracts/shared/IVersionable.sol +38 -37
  379. package/contracts/shared/InitializableCustom.sol +177 -0
  380. package/contracts/shared/InstanceLinkedComponent.sol +144 -0
  381. package/contracts/shared/KeyValueStore.sol +127 -0
  382. package/contracts/shared/Lifecycle.sol +130 -0
  383. package/contracts/shared/NftIdSetManager.sol +65 -0
  384. package/contracts/shared/NftOwnable.sol +107 -0
  385. package/contracts/shared/PolicyHolder.sol +102 -0
  386. package/contracts/shared/ProxyManager.sol +199 -0
  387. package/contracts/shared/Registerable.sol +54 -65
  388. package/contracts/shared/RegistryLinked.sol +43 -0
  389. package/contracts/shared/Service.sol +77 -0
  390. package/contracts/shared/TokenHandler.sol +58 -0
  391. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  392. package/contracts/shared/Versionable.sol +38 -68
  393. package/contracts/staking/IStaking.sol +168 -0
  394. package/contracts/staking/IStakingService.sol +149 -0
  395. package/contracts/staking/StakeManagerLib.sol +179 -0
  396. package/contracts/staking/Staking.sol +550 -0
  397. package/contracts/staking/StakingManager.sol +54 -0
  398. package/contracts/staking/StakingReader.sol +187 -0
  399. package/contracts/staking/StakingService.sol +406 -0
  400. package/contracts/staking/StakingServiceManager.sol +45 -0
  401. package/contracts/staking/StakingStore.sol +572 -0
  402. package/contracts/staking/TargetManagerLib.sol +207 -0
  403. package/contracts/{types → type}/AddressSet.sol +1 -1
  404. package/contracts/type/Amount.sol +128 -0
  405. package/contracts/{types → type}/Blocknumber.sol +21 -3
  406. package/contracts/type/ClaimId.sol +75 -0
  407. package/contracts/type/DistributorType.sol +55 -0
  408. package/contracts/type/Fee.sol +66 -0
  409. package/contracts/{types → type}/Key32.sol +8 -3
  410. package/contracts/{types → type}/NftId.sol +21 -15
  411. package/contracts/type/NftIdSet.sol +62 -0
  412. package/contracts/type/ObjectType.sol +170 -0
  413. package/contracts/type/PayoutId.sol +82 -0
  414. package/contracts/type/Referral.sol +89 -0
  415. package/contracts/type/RequestId.sol +75 -0
  416. package/contracts/type/RiskId.sol +43 -0
  417. package/contracts/type/RoleId.sol +156 -0
  418. package/contracts/type/Seconds.sol +81 -0
  419. package/contracts/type/Selector.sol +102 -0
  420. package/contracts/{types → type}/StateId.sol +39 -5
  421. package/contracts/type/String.sol +53 -0
  422. package/contracts/{types → type}/Timestamp.sol +27 -14
  423. package/contracts/{types → type}/UFixed.sol +129 -12
  424. package/contracts/{types → type}/Version.sol +15 -2
  425. package/package.json +8 -7
  426. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  427. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
  428. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  429. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  430. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -356
  431. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  432. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -279
  433. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  434. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -387
  435. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  436. package/artifacts/contracts/components/Product.sol/Product.json +0 -305
  437. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  438. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  439. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  440. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  441. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  442. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  443. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  444. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  445. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  446. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  447. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  448. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  449. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  450. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  451. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  452. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  453. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  454. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  455. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  456. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  457. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  458. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  459. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  460. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  461. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  462. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  463. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  464. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  465. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  466. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  467. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  468. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  469. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  470. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  471. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
  472. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
  473. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  474. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
  475. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  476. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -63
  477. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  478. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  479. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
  480. package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
  481. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  482. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  483. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -692
  484. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  485. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  486. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
  487. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  488. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
  489. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
  490. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
  491. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
  492. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  493. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
  494. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
  495. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -296
  496. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
  497. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
  498. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -296
  499. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
  500. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
  501. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
  502. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
  503. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
  504. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
  505. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  506. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -188
  507. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
  508. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
  509. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  510. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -188
  511. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  512. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  513. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -261
  514. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  515. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -261
  516. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  517. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
  518. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  519. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -149
  520. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  521. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -149
  522. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
  523. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
  524. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
  525. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
  526. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
  527. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  528. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
  529. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  530. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -533
  531. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  532. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
  533. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  534. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -533
  535. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  536. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -523
  537. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  538. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  539. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -376
  540. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  541. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  542. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -471
  543. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  544. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -673
  545. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  546. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
  547. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
  548. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
  549. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  550. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  551. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
  552. package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -387
  553. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
  554. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -393
  555. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  556. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
  557. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  558. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  559. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  560. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -379
  561. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  562. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
  563. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  564. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  565. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  566. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -206
  567. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  568. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
  569. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  570. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  571. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  572. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  573. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  574. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -218
  575. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  576. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -111
  577. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  578. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  579. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  580. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
  581. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  582. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  583. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  584. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -30
  585. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  586. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  587. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -236
  588. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  589. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  590. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -139
  591. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  592. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
  593. package/contracts/components/BaseComponent.sol +0 -88
  594. package/contracts/components/IBaseComponent.sol +0 -19
  595. package/contracts/components/IPoolComponent.sol +0 -57
  596. package/contracts/components/IProductComponent.sol +0 -19
  597. package/contracts/components/Pool.sol +0 -174
  598. package/contracts/components/Product.sol +0 -117
  599. package/contracts/experiment/errors/Require.sol +0 -38
  600. package/contracts/experiment/errors/Revert.sol +0 -44
  601. package/contracts/experiment/inheritance/A.sol +0 -53
  602. package/contracts/experiment/inheritance/B.sol +0 -28
  603. package/contracts/experiment/inheritance/C.sol +0 -34
  604. package/contracts/experiment/inheritance/IA.sol +0 -13
  605. package/contracts/experiment/inheritance/IB.sol +0 -10
  606. package/contracts/experiment/inheritance/IC.sol +0 -12
  607. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  608. package/contracts/experiment/statemachine/ISM.sol +0 -25
  609. package/contracts/experiment/statemachine/README.md +0 -112
  610. package/contracts/experiment/statemachine/SM.sol +0 -57
  611. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  612. package/contracts/experiment/types/TypeA.sol +0 -47
  613. package/contracts/experiment/types/TypeB.sol +0 -29
  614. package/contracts/instance/IInstanceLinked.sol +0 -8
  615. package/contracts/instance/base/ComponentServiceBase.sol +0 -42
  616. package/contracts/instance/base/IInstanceBase.sol +0 -14
  617. package/contracts/instance/base/IKeyValueStore.sol +0 -49
  618. package/contracts/instance/base/IService.sol +0 -15
  619. package/contracts/instance/base/InstanceBase.sol +0 -80
  620. package/contracts/instance/base/KeyValueStore.sol +0 -156
  621. package/contracts/instance/base/Lifecycle.sol +0 -95
  622. package/contracts/instance/base/ModuleBase.sol +0 -52
  623. package/contracts/instance/base/ServiceBase.sol +0 -37
  624. package/contracts/instance/module/access/Access.sol +0 -149
  625. package/contracts/instance/module/access/IAccess.sol +0 -53
  626. package/contracts/instance/module/bundle/BundleModule.sol +0 -136
  627. package/contracts/instance/module/bundle/IBundle.sol +0 -58
  628. package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
  629. package/contracts/instance/module/compensation/ICompensation.sol +0 -10
  630. package/contracts/instance/module/component/ComponentModule.sol +0 -95
  631. package/contracts/instance/module/component/IComponent.sol +0 -53
  632. package/contracts/instance/module/policy/IPolicy.sol +0 -60
  633. package/contracts/instance/module/policy/PolicyModule.sol +0 -76
  634. package/contracts/instance/module/pool/IPoolModule.sol +0 -41
  635. package/contracts/instance/module/pool/PoolModule.sol +0 -87
  636. package/contracts/instance/module/risk/IRisk.sol +0 -10
  637. package/contracts/instance/module/risk/RiskModule.sol +0 -8
  638. package/contracts/instance/module/treasury/ITreasury.sol +0 -103
  639. package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
  640. package/contracts/instance/module/treasury/TreasuryModule.sol +0 -152
  641. package/contracts/instance/service/ComponentOwnerService.sol +0 -170
  642. package/contracts/instance/service/IComponentOwnerService.sol +0 -22
  643. package/contracts/instance/service/IPoolService.sol +0 -30
  644. package/contracts/instance/service/IProductService.sol +0 -58
  645. package/contracts/instance/service/PoolService.sol +0 -123
  646. package/contracts/instance/service/ProductService.sol +0 -354
  647. package/contracts/registry/IChainNft.sol +0 -21
  648. package/contracts/registry/IRegistryLinked.sol +0 -8
  649. package/contracts/shared/IOwnable.sol +0 -6
  650. package/contracts/test/TestFee.sol +0 -25
  651. package/contracts/test/TestPool.sol +0 -22
  652. package/contracts/test/TestProduct.sol +0 -44
  653. package/contracts/test/TestRegisterable.sol +0 -19
  654. package/contracts/test/TestRoleId.sol +0 -14
  655. package/contracts/test/TestService.sol +0 -32
  656. package/contracts/test/TestToken.sol +0 -26
  657. package/contracts/test/TestVersion.sol +0 -44
  658. package/contracts/test/TestVersionable.sol +0 -17
  659. package/contracts/types/ChainId.sol +0 -38
  660. package/contracts/types/Fee.sol +0 -51
  661. package/contracts/types/NftIdSet.sol +0 -60
  662. package/contracts/types/ObjectType.sol +0 -115
  663. package/contracts/types/RoleId.sol +0 -38
@@ -0,0 +1,1528 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "PoolService",
4
+ "sourceName": "contracts/pool/PoolService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "NftId",
48
+ "name": "componentNftId",
49
+ "type": "uint96"
50
+ }
51
+ ],
52
+ "name": "ErrorComponentVerifyingServiceComponentIsLocked",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "NftId",
59
+ "name": "componentNftId",
60
+ "type": "uint96"
61
+ },
62
+ {
63
+ "internalType": "ObjectType",
64
+ "name": "expectedType",
65
+ "type": "uint8"
66
+ },
67
+ {
68
+ "internalType": "ObjectType",
69
+ "name": "actualType",
70
+ "type": "uint8"
71
+ }
72
+ ],
73
+ "name": "ErrorComponentVerifyingServiceComponentTypeInvalid",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [
78
+ {
79
+ "internalType": "NftId",
80
+ "name": "nftId",
81
+ "type": "uint96"
82
+ }
83
+ ],
84
+ "name": "ErrorNftOwnableAlreadyLinked",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "internalType": "address",
91
+ "name": "contractAddress",
92
+ "type": "address"
93
+ }
94
+ ],
95
+ "name": "ErrorNftOwnableContractNotRegistered",
96
+ "type": "error"
97
+ },
98
+ {
99
+ "inputs": [],
100
+ "name": "ErrorNftOwnableInitialOwnerZero",
101
+ "type": "error"
102
+ },
103
+ {
104
+ "inputs": [
105
+ {
106
+ "internalType": "address",
107
+ "name": "account",
108
+ "type": "address"
109
+ }
110
+ ],
111
+ "name": "ErrorNftOwnableNotOwner",
112
+ "type": "error"
113
+ },
114
+ {
115
+ "inputs": [
116
+ {
117
+ "internalType": "address",
118
+ "name": "registryAddress",
119
+ "type": "address"
120
+ }
121
+ ],
122
+ "name": "ErrorNotRegistry",
123
+ "type": "error"
124
+ },
125
+ {
126
+ "inputs": [
127
+ {
128
+ "internalType": "NftId",
129
+ "name": "poolNftId",
130
+ "type": "uint96"
131
+ }
132
+ ],
133
+ "name": "ErrorPoolServiceBundleOwnerRoleAlreadySet",
134
+ "type": "error"
135
+ },
136
+ {
137
+ "inputs": [
138
+ {
139
+ "internalType": "Amount",
140
+ "name": "expectedAmount",
141
+ "type": "uint96"
142
+ },
143
+ {
144
+ "internalType": "Amount",
145
+ "name": "actualAmount",
146
+ "type": "uint96"
147
+ }
148
+ ],
149
+ "name": "ErrorPoolServiceInvalidTransferAmount",
150
+ "type": "error"
151
+ },
152
+ {
153
+ "inputs": [],
154
+ "name": "ErrorServiceNotImplemented",
155
+ "type": "error"
156
+ },
157
+ {
158
+ "inputs": [],
159
+ "name": "InvalidInitialization",
160
+ "type": "error"
161
+ },
162
+ {
163
+ "inputs": [],
164
+ "name": "NotInitializing",
165
+ "type": "error"
166
+ },
167
+ {
168
+ "anonymous": false,
169
+ "inputs": [
170
+ {
171
+ "indexed": false,
172
+ "internalType": "address",
173
+ "name": "authority",
174
+ "type": "address"
175
+ }
176
+ ],
177
+ "name": "AuthorityUpdated",
178
+ "type": "event"
179
+ },
180
+ {
181
+ "anonymous": false,
182
+ "inputs": [
183
+ {
184
+ "indexed": false,
185
+ "internalType": "uint64",
186
+ "name": "version",
187
+ "type": "uint64"
188
+ }
189
+ ],
190
+ "name": "Initialized",
191
+ "type": "event"
192
+ },
193
+ {
194
+ "anonymous": false,
195
+ "inputs": [
196
+ {
197
+ "indexed": false,
198
+ "internalType": "NftId",
199
+ "name": "instanceNftId",
200
+ "type": "uint96"
201
+ },
202
+ {
203
+ "indexed": false,
204
+ "internalType": "NftId",
205
+ "name": "poolNftId",
206
+ "type": "uint96"
207
+ },
208
+ {
209
+ "indexed": false,
210
+ "internalType": "NftId",
211
+ "name": "bundleNftId",
212
+ "type": "uint96"
213
+ }
214
+ ],
215
+ "name": "LogPoolServiceBundleClosed",
216
+ "type": "event"
217
+ },
218
+ {
219
+ "anonymous": false,
220
+ "inputs": [
221
+ {
222
+ "indexed": false,
223
+ "internalType": "NftId",
224
+ "name": "instanceNftId",
225
+ "type": "uint96"
226
+ },
227
+ {
228
+ "indexed": false,
229
+ "internalType": "NftId",
230
+ "name": "poolNftId",
231
+ "type": "uint96"
232
+ },
233
+ {
234
+ "indexed": false,
235
+ "internalType": "NftId",
236
+ "name": "bundleNftId",
237
+ "type": "uint96"
238
+ }
239
+ ],
240
+ "name": "LogPoolServiceBundleCreated",
241
+ "type": "event"
242
+ },
243
+ {
244
+ "anonymous": false,
245
+ "inputs": [
246
+ {
247
+ "indexed": false,
248
+ "internalType": "NftId",
249
+ "name": "poolNftId",
250
+ "type": "uint96"
251
+ },
252
+ {
253
+ "indexed": false,
254
+ "internalType": "RoleId",
255
+ "name": "bundleOwnerRole",
256
+ "type": "uint64"
257
+ }
258
+ ],
259
+ "name": "LogPoolServiceBundleOwnerRoleSet",
260
+ "type": "event"
261
+ },
262
+ {
263
+ "anonymous": false,
264
+ "inputs": [
265
+ {
266
+ "indexed": false,
267
+ "internalType": "NftId",
268
+ "name": "poolNftId",
269
+ "type": "uint96"
270
+ },
271
+ {
272
+ "indexed": false,
273
+ "internalType": "Amount",
274
+ "name": "previousMaxCapitalAmount",
275
+ "type": "uint96"
276
+ },
277
+ {
278
+ "indexed": false,
279
+ "internalType": "Amount",
280
+ "name": "currentMaxCapitalAmount",
281
+ "type": "uint96"
282
+ }
283
+ ],
284
+ "name": "LogPoolServiceMaxCapitalAmountUpdated",
285
+ "type": "event"
286
+ },
287
+ {
288
+ "inputs": [],
289
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
290
+ "outputs": [
291
+ {
292
+ "internalType": "bytes32",
293
+ "name": "",
294
+ "type": "bytes32"
295
+ }
296
+ ],
297
+ "stateMutability": "view",
298
+ "type": "function"
299
+ },
300
+ {
301
+ "inputs": [],
302
+ "name": "REGISTERABLE_LOCATION_V1",
303
+ "outputs": [
304
+ {
305
+ "internalType": "bytes32",
306
+ "name": "",
307
+ "type": "bytes32"
308
+ }
309
+ ],
310
+ "stateMutability": "view",
311
+ "type": "function"
312
+ },
313
+ {
314
+ "inputs": [],
315
+ "name": "authority",
316
+ "outputs": [
317
+ {
318
+ "internalType": "address",
319
+ "name": "",
320
+ "type": "address"
321
+ }
322
+ ],
323
+ "stateMutability": "view",
324
+ "type": "function"
325
+ },
326
+ {
327
+ "inputs": [
328
+ {
329
+ "internalType": "UFixed",
330
+ "name": "collateralizationLevel",
331
+ "type": "uint256"
332
+ },
333
+ {
334
+ "internalType": "UFixed",
335
+ "name": "retentionLevel",
336
+ "type": "uint256"
337
+ },
338
+ {
339
+ "internalType": "Amount",
340
+ "name": "sumInsuredAmount",
341
+ "type": "uint96"
342
+ }
343
+ ],
344
+ "name": "calculateRequiredCollateral",
345
+ "outputs": [
346
+ {
347
+ "internalType": "Amount",
348
+ "name": "localCollateralAmount",
349
+ "type": "uint96"
350
+ },
351
+ {
352
+ "internalType": "Amount",
353
+ "name": "totalCollateralAmount",
354
+ "type": "uint96"
355
+ }
356
+ ],
357
+ "stateMutability": "pure",
358
+ "type": "function"
359
+ },
360
+ {
361
+ "inputs": [
362
+ {
363
+ "internalType": "contract InstanceReader",
364
+ "name": "instanceReader",
365
+ "type": "address"
366
+ },
367
+ {
368
+ "internalType": "NftId",
369
+ "name": "productNftId",
370
+ "type": "uint96"
371
+ },
372
+ {
373
+ "internalType": "Amount",
374
+ "name": "sumInsuredAmount",
375
+ "type": "uint96"
376
+ }
377
+ ],
378
+ "name": "calculateRequiredCollateral",
379
+ "outputs": [
380
+ {
381
+ "internalType": "Amount",
382
+ "name": "localCollateralAmount",
383
+ "type": "uint96"
384
+ },
385
+ {
386
+ "internalType": "Amount",
387
+ "name": "totalCollateralAmount",
388
+ "type": "uint96"
389
+ }
390
+ ],
391
+ "stateMutability": "view",
392
+ "type": "function"
393
+ },
394
+ {
395
+ "inputs": [
396
+ {
397
+ "internalType": "NftId",
398
+ "name": "bundleNftId",
399
+ "type": "uint96"
400
+ }
401
+ ],
402
+ "name": "closeBundle",
403
+ "outputs": [],
404
+ "stateMutability": "nonpayable",
405
+ "type": "function"
406
+ },
407
+ {
408
+ "inputs": [
409
+ {
410
+ "internalType": "address",
411
+ "name": "bundleOwner",
412
+ "type": "address"
413
+ },
414
+ {
415
+ "components": [
416
+ {
417
+ "internalType": "UFixed",
418
+ "name": "fractionalFee",
419
+ "type": "uint256"
420
+ },
421
+ {
422
+ "internalType": "uint256",
423
+ "name": "fixedFee",
424
+ "type": "uint256"
425
+ }
426
+ ],
427
+ "internalType": "struct Fee",
428
+ "name": "fee",
429
+ "type": "tuple"
430
+ },
431
+ {
432
+ "internalType": "Amount",
433
+ "name": "stakingAmount",
434
+ "type": "uint96"
435
+ },
436
+ {
437
+ "internalType": "Seconds",
438
+ "name": "lifetime",
439
+ "type": "uint40"
440
+ },
441
+ {
442
+ "internalType": "bytes",
443
+ "name": "filter",
444
+ "type": "bytes"
445
+ }
446
+ ],
447
+ "name": "createBundle",
448
+ "outputs": [
449
+ {
450
+ "internalType": "NftId",
451
+ "name": "bundleNftId",
452
+ "type": "uint96"
453
+ }
454
+ ],
455
+ "stateMutability": "nonpayable",
456
+ "type": "function"
457
+ },
458
+ {
459
+ "inputs": [],
460
+ "name": "getDomain",
461
+ "outputs": [
462
+ {
463
+ "internalType": "ObjectType",
464
+ "name": "",
465
+ "type": "uint8"
466
+ }
467
+ ],
468
+ "stateMutability": "pure",
469
+ "type": "function"
470
+ },
471
+ {
472
+ "inputs": [],
473
+ "name": "getInitialInfo",
474
+ "outputs": [
475
+ {
476
+ "components": [
477
+ {
478
+ "internalType": "NftId",
479
+ "name": "nftId",
480
+ "type": "uint96"
481
+ },
482
+ {
483
+ "internalType": "NftId",
484
+ "name": "parentNftId",
485
+ "type": "uint96"
486
+ },
487
+ {
488
+ "internalType": "ObjectType",
489
+ "name": "objectType",
490
+ "type": "uint8"
491
+ },
492
+ {
493
+ "internalType": "bool",
494
+ "name": "isInterceptor",
495
+ "type": "bool"
496
+ },
497
+ {
498
+ "internalType": "address",
499
+ "name": "objectAddress",
500
+ "type": "address"
501
+ },
502
+ {
503
+ "internalType": "address",
504
+ "name": "initialOwner",
505
+ "type": "address"
506
+ },
507
+ {
508
+ "internalType": "bytes",
509
+ "name": "data",
510
+ "type": "bytes"
511
+ }
512
+ ],
513
+ "internalType": "struct IRegistry.ObjectInfo",
514
+ "name": "info",
515
+ "type": "tuple"
516
+ }
517
+ ],
518
+ "stateMutability": "view",
519
+ "type": "function"
520
+ },
521
+ {
522
+ "inputs": [],
523
+ "name": "getNftId",
524
+ "outputs": [
525
+ {
526
+ "internalType": "NftId",
527
+ "name": "",
528
+ "type": "uint96"
529
+ }
530
+ ],
531
+ "stateMutability": "view",
532
+ "type": "function"
533
+ },
534
+ {
535
+ "inputs": [],
536
+ "name": "getOwner",
537
+ "outputs": [
538
+ {
539
+ "internalType": "address",
540
+ "name": "",
541
+ "type": "address"
542
+ }
543
+ ],
544
+ "stateMutability": "view",
545
+ "type": "function"
546
+ },
547
+ {
548
+ "inputs": [],
549
+ "name": "getRegistry",
550
+ "outputs": [
551
+ {
552
+ "internalType": "contract IRegistry",
553
+ "name": "",
554
+ "type": "address"
555
+ }
556
+ ],
557
+ "stateMutability": "view",
558
+ "type": "function"
559
+ },
560
+ {
561
+ "inputs": [],
562
+ "name": "getVersion",
563
+ "outputs": [
564
+ {
565
+ "internalType": "Version",
566
+ "name": "",
567
+ "type": "uint24"
568
+ }
569
+ ],
570
+ "stateMutability": "pure",
571
+ "type": "function"
572
+ },
573
+ {
574
+ "inputs": [],
575
+ "name": "initializeERC165",
576
+ "outputs": [],
577
+ "stateMutability": "nonpayable",
578
+ "type": "function"
579
+ },
580
+ {
581
+ "inputs": [
582
+ {
583
+ "internalType": "address",
584
+ "name": "initialOwner",
585
+ "type": "address"
586
+ },
587
+ {
588
+ "internalType": "address",
589
+ "name": "registryAddress",
590
+ "type": "address"
591
+ }
592
+ ],
593
+ "name": "initializeNftOwnable",
594
+ "outputs": [],
595
+ "stateMutability": "nonpayable",
596
+ "type": "function"
597
+ },
598
+ {
599
+ "inputs": [
600
+ {
601
+ "internalType": "address",
602
+ "name": "registryAddress",
603
+ "type": "address"
604
+ },
605
+ {
606
+ "internalType": "NftId",
607
+ "name": "parentNftId",
608
+ "type": "uint96"
609
+ },
610
+ {
611
+ "internalType": "ObjectType",
612
+ "name": "objectType",
613
+ "type": "uint8"
614
+ },
615
+ {
616
+ "internalType": "bool",
617
+ "name": "isInterceptor",
618
+ "type": "bool"
619
+ },
620
+ {
621
+ "internalType": "address",
622
+ "name": "initialOwner",
623
+ "type": "address"
624
+ },
625
+ {
626
+ "internalType": "bytes",
627
+ "name": "registryData",
628
+ "type": "bytes"
629
+ }
630
+ ],
631
+ "name": "initializeRegisterable",
632
+ "outputs": [],
633
+ "stateMutability": "nonpayable",
634
+ "type": "function"
635
+ },
636
+ {
637
+ "inputs": [
638
+ {
639
+ "internalType": "address",
640
+ "name": "registryAddress",
641
+ "type": "address"
642
+ }
643
+ ],
644
+ "name": "initializeRegistryLinked",
645
+ "outputs": [],
646
+ "stateMutability": "nonpayable",
647
+ "type": "function"
648
+ },
649
+ {
650
+ "inputs": [
651
+ {
652
+ "internalType": "address",
653
+ "name": "registry",
654
+ "type": "address"
655
+ },
656
+ {
657
+ "internalType": "address",
658
+ "name": "authority",
659
+ "type": "address"
660
+ },
661
+ {
662
+ "internalType": "address",
663
+ "name": "initialOwner",
664
+ "type": "address"
665
+ }
666
+ ],
667
+ "name": "initializeService",
668
+ "outputs": [],
669
+ "stateMutability": "nonpayable",
670
+ "type": "function"
671
+ },
672
+ {
673
+ "inputs": [
674
+ {
675
+ "internalType": "address",
676
+ "name": "activatedBy",
677
+ "type": "address"
678
+ },
679
+ {
680
+ "internalType": "bytes",
681
+ "name": "data",
682
+ "type": "bytes"
683
+ }
684
+ ],
685
+ "name": "initializeVersionable",
686
+ "outputs": [],
687
+ "stateMutability": "nonpayable",
688
+ "type": "function"
689
+ },
690
+ {
691
+ "inputs": [],
692
+ "name": "isConsumingScheduledOp",
693
+ "outputs": [
694
+ {
695
+ "internalType": "bytes4",
696
+ "name": "",
697
+ "type": "bytes4"
698
+ }
699
+ ],
700
+ "stateMutability": "view",
701
+ "type": "function"
702
+ },
703
+ {
704
+ "inputs": [],
705
+ "name": "linkToRegisteredNftId",
706
+ "outputs": [
707
+ {
708
+ "internalType": "NftId",
709
+ "name": "nftId",
710
+ "type": "uint96"
711
+ }
712
+ ],
713
+ "stateMutability": "nonpayable",
714
+ "type": "function"
715
+ },
716
+ {
717
+ "inputs": [
718
+ {
719
+ "internalType": "contract IInstance",
720
+ "name": "instance",
721
+ "type": "address"
722
+ },
723
+ {
724
+ "internalType": "address",
725
+ "name": "token",
726
+ "type": "address"
727
+ },
728
+ {
729
+ "internalType": "NftId",
730
+ "name": "productNftId",
731
+ "type": "uint96"
732
+ },
733
+ {
734
+ "internalType": "NftId",
735
+ "name": "applicationNftId",
736
+ "type": "uint96"
737
+ },
738
+ {
739
+ "internalType": "NftId",
740
+ "name": "bundleNftId",
741
+ "type": "uint96"
742
+ },
743
+ {
744
+ "internalType": "Amount",
745
+ "name": "sumInsuredAmount",
746
+ "type": "uint96"
747
+ }
748
+ ],
749
+ "name": "lockCollateral",
750
+ "outputs": [
751
+ {
752
+ "internalType": "Amount",
753
+ "name": "localCollateralAmount",
754
+ "type": "uint96"
755
+ },
756
+ {
757
+ "internalType": "Amount",
758
+ "name": "totalCollateralAmount",
759
+ "type": "uint96"
760
+ }
761
+ ],
762
+ "stateMutability": "nonpayable",
763
+ "type": "function"
764
+ },
765
+ {
766
+ "inputs": [
767
+ {
768
+ "internalType": "NftId",
769
+ "name": "bundleNftId",
770
+ "type": "uint96"
771
+ },
772
+ {
773
+ "components": [
774
+ {
775
+ "internalType": "Amount",
776
+ "name": "productFeeAmount",
777
+ "type": "uint96"
778
+ },
779
+ {
780
+ "internalType": "Amount",
781
+ "name": "distributionFeeAndCommissionAmount",
782
+ "type": "uint96"
783
+ },
784
+ {
785
+ "internalType": "Amount",
786
+ "name": "poolPremiumAndFeeAmount",
787
+ "type": "uint96"
788
+ },
789
+ {
790
+ "internalType": "uint256",
791
+ "name": "netPremiumAmount",
792
+ "type": "uint256"
793
+ },
794
+ {
795
+ "internalType": "uint256",
796
+ "name": "fullPremiumAmount",
797
+ "type": "uint256"
798
+ },
799
+ {
800
+ "internalType": "uint256",
801
+ "name": "premiumAmount",
802
+ "type": "uint256"
803
+ },
804
+ {
805
+ "internalType": "uint256",
806
+ "name": "productFeeFixAmount",
807
+ "type": "uint256"
808
+ },
809
+ {
810
+ "internalType": "uint256",
811
+ "name": "poolFeeFixAmount",
812
+ "type": "uint256"
813
+ },
814
+ {
815
+ "internalType": "uint256",
816
+ "name": "bundleFeeFixAmount",
817
+ "type": "uint256"
818
+ },
819
+ {
820
+ "internalType": "uint256",
821
+ "name": "distributionFeeFixAmount",
822
+ "type": "uint256"
823
+ },
824
+ {
825
+ "internalType": "uint256",
826
+ "name": "productFeeVarAmount",
827
+ "type": "uint256"
828
+ },
829
+ {
830
+ "internalType": "uint256",
831
+ "name": "poolFeeVarAmount",
832
+ "type": "uint256"
833
+ },
834
+ {
835
+ "internalType": "uint256",
836
+ "name": "bundleFeeVarAmount",
837
+ "type": "uint256"
838
+ },
839
+ {
840
+ "internalType": "uint256",
841
+ "name": "distributionFeeVarAmount",
842
+ "type": "uint256"
843
+ },
844
+ {
845
+ "internalType": "uint256",
846
+ "name": "distributionOwnerFeeFixAmount",
847
+ "type": "uint256"
848
+ },
849
+ {
850
+ "internalType": "uint256",
851
+ "name": "distributionOwnerFeeVarAmount",
852
+ "type": "uint256"
853
+ },
854
+ {
855
+ "internalType": "uint256",
856
+ "name": "commissionAmount",
857
+ "type": "uint256"
858
+ },
859
+ {
860
+ "internalType": "uint256",
861
+ "name": "discountAmount",
862
+ "type": "uint256"
863
+ }
864
+ ],
865
+ "internalType": "struct IPolicy.Premium",
866
+ "name": "premium",
867
+ "type": "tuple"
868
+ }
869
+ ],
870
+ "name": "processSale",
871
+ "outputs": [],
872
+ "stateMutability": "nonpayable",
873
+ "type": "function"
874
+ },
875
+ {
876
+ "inputs": [
877
+ {
878
+ "internalType": "contract IInstance",
879
+ "name": "instance",
880
+ "type": "address"
881
+ },
882
+ {
883
+ "internalType": "address",
884
+ "name": "token",
885
+ "type": "address"
886
+ },
887
+ {
888
+ "internalType": "NftId",
889
+ "name": "policyNftId",
890
+ "type": "uint96"
891
+ },
892
+ {
893
+ "components": [
894
+ {
895
+ "internalType": "NftId",
896
+ "name": "productNftId",
897
+ "type": "uint96"
898
+ },
899
+ {
900
+ "internalType": "NftId",
901
+ "name": "bundleNftId",
902
+ "type": "uint96"
903
+ },
904
+ {
905
+ "internalType": "ReferralId",
906
+ "name": "referralId",
907
+ "type": "bytes8"
908
+ },
909
+ {
910
+ "internalType": "RiskId",
911
+ "name": "riskId",
912
+ "type": "bytes8"
913
+ },
914
+ {
915
+ "internalType": "Amount",
916
+ "name": "sumInsuredAmount",
917
+ "type": "uint96"
918
+ },
919
+ {
920
+ "internalType": "Amount",
921
+ "name": "premiumAmount",
922
+ "type": "uint96"
923
+ },
924
+ {
925
+ "internalType": "Amount",
926
+ "name": "premiumPaidAmount",
927
+ "type": "uint96"
928
+ },
929
+ {
930
+ "internalType": "Seconds",
931
+ "name": "lifetime",
932
+ "type": "uint40"
933
+ },
934
+ {
935
+ "internalType": "bytes",
936
+ "name": "applicationData",
937
+ "type": "bytes"
938
+ },
939
+ {
940
+ "internalType": "bytes",
941
+ "name": "processData",
942
+ "type": "bytes"
943
+ },
944
+ {
945
+ "internalType": "uint16",
946
+ "name": "claimsCount",
947
+ "type": "uint16"
948
+ },
949
+ {
950
+ "internalType": "uint16",
951
+ "name": "openClaimsCount",
952
+ "type": "uint16"
953
+ },
954
+ {
955
+ "internalType": "Amount",
956
+ "name": "claimAmount",
957
+ "type": "uint96"
958
+ },
959
+ {
960
+ "internalType": "Amount",
961
+ "name": "payoutAmount",
962
+ "type": "uint96"
963
+ },
964
+ {
965
+ "internalType": "Timestamp",
966
+ "name": "activatedAt",
967
+ "type": "uint40"
968
+ },
969
+ {
970
+ "internalType": "Timestamp",
971
+ "name": "expiredAt",
972
+ "type": "uint40"
973
+ },
974
+ {
975
+ "internalType": "Timestamp",
976
+ "name": "closedAt",
977
+ "type": "uint40"
978
+ }
979
+ ],
980
+ "internalType": "struct IPolicy.PolicyInfo",
981
+ "name": "policyInfo",
982
+ "type": "tuple"
983
+ },
984
+ {
985
+ "internalType": "Amount",
986
+ "name": "payoutAmount",
987
+ "type": "uint96"
988
+ }
989
+ ],
990
+ "name": "reduceCollateral",
991
+ "outputs": [],
992
+ "stateMutability": "nonpayable",
993
+ "type": "function"
994
+ },
995
+ {
996
+ "inputs": [
997
+ {
998
+ "internalType": "bytes4",
999
+ "name": "interfaceId",
1000
+ "type": "bytes4"
1001
+ }
1002
+ ],
1003
+ "name": "registerInterface",
1004
+ "outputs": [],
1005
+ "stateMutability": "nonpayable",
1006
+ "type": "function"
1007
+ },
1008
+ {
1009
+ "inputs": [
1010
+ {
1011
+ "internalType": "contract IInstance",
1012
+ "name": "instance",
1013
+ "type": "address"
1014
+ },
1015
+ {
1016
+ "internalType": "address",
1017
+ "name": "token",
1018
+ "type": "address"
1019
+ },
1020
+ {
1021
+ "internalType": "NftId",
1022
+ "name": "policyNftId",
1023
+ "type": "uint96"
1024
+ },
1025
+ {
1026
+ "components": [
1027
+ {
1028
+ "internalType": "NftId",
1029
+ "name": "productNftId",
1030
+ "type": "uint96"
1031
+ },
1032
+ {
1033
+ "internalType": "NftId",
1034
+ "name": "bundleNftId",
1035
+ "type": "uint96"
1036
+ },
1037
+ {
1038
+ "internalType": "ReferralId",
1039
+ "name": "referralId",
1040
+ "type": "bytes8"
1041
+ },
1042
+ {
1043
+ "internalType": "RiskId",
1044
+ "name": "riskId",
1045
+ "type": "bytes8"
1046
+ },
1047
+ {
1048
+ "internalType": "Amount",
1049
+ "name": "sumInsuredAmount",
1050
+ "type": "uint96"
1051
+ },
1052
+ {
1053
+ "internalType": "Amount",
1054
+ "name": "premiumAmount",
1055
+ "type": "uint96"
1056
+ },
1057
+ {
1058
+ "internalType": "Amount",
1059
+ "name": "premiumPaidAmount",
1060
+ "type": "uint96"
1061
+ },
1062
+ {
1063
+ "internalType": "Seconds",
1064
+ "name": "lifetime",
1065
+ "type": "uint40"
1066
+ },
1067
+ {
1068
+ "internalType": "bytes",
1069
+ "name": "applicationData",
1070
+ "type": "bytes"
1071
+ },
1072
+ {
1073
+ "internalType": "bytes",
1074
+ "name": "processData",
1075
+ "type": "bytes"
1076
+ },
1077
+ {
1078
+ "internalType": "uint16",
1079
+ "name": "claimsCount",
1080
+ "type": "uint16"
1081
+ },
1082
+ {
1083
+ "internalType": "uint16",
1084
+ "name": "openClaimsCount",
1085
+ "type": "uint16"
1086
+ },
1087
+ {
1088
+ "internalType": "Amount",
1089
+ "name": "claimAmount",
1090
+ "type": "uint96"
1091
+ },
1092
+ {
1093
+ "internalType": "Amount",
1094
+ "name": "payoutAmount",
1095
+ "type": "uint96"
1096
+ },
1097
+ {
1098
+ "internalType": "Timestamp",
1099
+ "name": "activatedAt",
1100
+ "type": "uint40"
1101
+ },
1102
+ {
1103
+ "internalType": "Timestamp",
1104
+ "name": "expiredAt",
1105
+ "type": "uint40"
1106
+ },
1107
+ {
1108
+ "internalType": "Timestamp",
1109
+ "name": "closedAt",
1110
+ "type": "uint40"
1111
+ }
1112
+ ],
1113
+ "internalType": "struct IPolicy.PolicyInfo",
1114
+ "name": "policyInfo",
1115
+ "type": "tuple"
1116
+ }
1117
+ ],
1118
+ "name": "releaseCollateral",
1119
+ "outputs": [],
1120
+ "stateMutability": "nonpayable",
1121
+ "type": "function"
1122
+ },
1123
+ {
1124
+ "inputs": [
1125
+ {
1126
+ "internalType": "address",
1127
+ "name": "newAuthority",
1128
+ "type": "address"
1129
+ }
1130
+ ],
1131
+ "name": "setAuthority",
1132
+ "outputs": [],
1133
+ "stateMutability": "nonpayable",
1134
+ "type": "function"
1135
+ },
1136
+ {
1137
+ "inputs": [
1138
+ {
1139
+ "internalType": "RoleId",
1140
+ "name": "bundleOwnerRole",
1141
+ "type": "uint64"
1142
+ }
1143
+ ],
1144
+ "name": "setBundleOwnerRole",
1145
+ "outputs": [],
1146
+ "stateMutability": "nonpayable",
1147
+ "type": "function"
1148
+ },
1149
+ {
1150
+ "inputs": [
1151
+ {
1152
+ "components": [
1153
+ {
1154
+ "internalType": "UFixed",
1155
+ "name": "fractionalFee",
1156
+ "type": "uint256"
1157
+ },
1158
+ {
1159
+ "internalType": "uint256",
1160
+ "name": "fixedFee",
1161
+ "type": "uint256"
1162
+ }
1163
+ ],
1164
+ "internalType": "struct Fee",
1165
+ "name": "poolFee",
1166
+ "type": "tuple"
1167
+ },
1168
+ {
1169
+ "components": [
1170
+ {
1171
+ "internalType": "UFixed",
1172
+ "name": "fractionalFee",
1173
+ "type": "uint256"
1174
+ },
1175
+ {
1176
+ "internalType": "uint256",
1177
+ "name": "fixedFee",
1178
+ "type": "uint256"
1179
+ }
1180
+ ],
1181
+ "internalType": "struct Fee",
1182
+ "name": "stakingFee",
1183
+ "type": "tuple"
1184
+ },
1185
+ {
1186
+ "components": [
1187
+ {
1188
+ "internalType": "UFixed",
1189
+ "name": "fractionalFee",
1190
+ "type": "uint256"
1191
+ },
1192
+ {
1193
+ "internalType": "uint256",
1194
+ "name": "fixedFee",
1195
+ "type": "uint256"
1196
+ }
1197
+ ],
1198
+ "internalType": "struct Fee",
1199
+ "name": "performanceFee",
1200
+ "type": "tuple"
1201
+ }
1202
+ ],
1203
+ "name": "setFees",
1204
+ "outputs": [],
1205
+ "stateMutability": "nonpayable",
1206
+ "type": "function"
1207
+ },
1208
+ {
1209
+ "inputs": [
1210
+ {
1211
+ "internalType": "Amount",
1212
+ "name": "maxCapitalAmount",
1213
+ "type": "uint96"
1214
+ }
1215
+ ],
1216
+ "name": "setMaxCapitalAmount",
1217
+ "outputs": [],
1218
+ "stateMutability": "nonpayable",
1219
+ "type": "function"
1220
+ },
1221
+ {
1222
+ "inputs": [
1223
+ {
1224
+ "internalType": "bytes4",
1225
+ "name": "interfaceId",
1226
+ "type": "bytes4"
1227
+ }
1228
+ ],
1229
+ "name": "supportsInterface",
1230
+ "outputs": [
1231
+ {
1232
+ "internalType": "bool",
1233
+ "name": "",
1234
+ "type": "bool"
1235
+ }
1236
+ ],
1237
+ "stateMutability": "view",
1238
+ "type": "function"
1239
+ },
1240
+ {
1241
+ "inputs": [
1242
+ {
1243
+ "internalType": "bytes",
1244
+ "name": "data",
1245
+ "type": "bytes"
1246
+ }
1247
+ ],
1248
+ "name": "upgradeVersionable",
1249
+ "outputs": [],
1250
+ "stateMutability": "nonpayable",
1251
+ "type": "function"
1252
+ }
1253
+ ],
1254
+ "bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b614b8d80620000e66000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80637738eb861161010f5780638fb36037116100a2578063b68d180911610071578063b68d1809146104ac578063bf7e214f146104c6578063d0d63b09146104ce578063f7c34ee0146104e157600080fd5b80638fb3603714610450578063a3c2605214610471578063a5f4c73114610484578063ada9652e1461049757600080fd5b806384a710fa116100de57806384a710fa1461040f57806384d1f7cf14610422578063893d20e8146104355780638e32e9791461043d57600080fd5b80637738eb86146103c35780637a9e5e4b146103d65780637d42d397146103e957806382678766146103fc57600080fd5b8063329d6e7411610187578063644c45e011610156578063644c45e01461034b578063673ad94f14610369578063675393bf1461037a5780637225ed011461038d57600080fd5b8063329d6e74146102f857806336fc697e1461030b57806349bb9e4b146103135780635ab1bd531461032657600080fd5b80631ddb9757116101c35780631ddb9757146102885780631eff4b221461029d578063214cdb80146102d257806327bb7a33146102e557600080fd5b806301ffc9a7146101f55780630d8e6e2c146102375780630fec111c14610253578063138461e014610268575b600080fd5b6102226102033660046136db565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61023f6104f4565b60405162ffffff909116815260200161022e565b61025b61057e565b60405161022e9190613755565b61027061070f565b6040516001600160601b03909116815260200161022e565b61029b610296366004613b97565b61071a565b005b6102c47f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161022e565b61029b6102e03660046136db565b6108a1565b61029b6102f3366004613c3d565b6108ce565b61029b610306366004613cd5565b610973565b61029b610ac1565b61029b610321366004613d09565b610b07565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161022e565b600080516020614af8833981519152546001600160601b0316610270565b61029b610377366004613d58565b50565b61029b610388366004613d75565b610c06565b6103a361039b366004613d92565b928392509050565b604080516001600160601b0393841681529290911660208301520161022e565b6102706103d1366004613dfb565b610d18565b61029b6103e4366004613d75565b611072565b61029b6103f7366004613eb5565b6110f5565b61029b61040a366004613fde565b611591565b6103a361041d366004614024565b611768565b6103a3610430366004614064565b61186b565b610333611a6d565b61029b61044b3660046140e6565b611ba4565b610458611de9565b6040516001600160e01b0319909116815260200161022e565b61029b61047f36600461413b565b611e21565b61029b610492366004614158565b6120a9565b6102c4600080516020614af883398151915281565b6104b4612176565b60405160ff909116815260200161022e565b610333612180565b61029b6104dc366004613d58565b61219c565b61029b6104ef3660046141cc565b6122cb565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610555573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105799190614205565b905090565b61058661369d565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156105ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106239190614235565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161066b611a6d565b6001600160a01b0316815260200182600101805461068890614252565b80601f01602080910402602001604051908101604052809291908181526020018280546106b490614252565b80156107015780601f106106d657610100808354040283529160200191610701565b820191906000526020600020905b8154815290600101906020018083116106e457829003601f168201915b505050505081525091505090565b600061057930612342565b610727335b600036612543565b600254602083015160405163ad328d9f60e01b81526001600160a01b039092169163ad328d9f916107609189918891879060040161428c565b600060405180830381600087803b15801561077a57600080fd5b505af115801561078e573d6000803e3d6000fd5b50505050600660009054906101000a90046001600160a01b03166001600160a01b031663d44f8a4b866001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108189190614235565b6040516001600160e01b031960e084901b1681526001600160601b0391821660048201526001600160a01b038816602482015290841660448201526064016020604051808303816000875af1158015610875573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108999190614235565b505050505050565b6108a9612641565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6108d6612641565b6108e082876122cb565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3016109698382614304565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6109956104f4565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156109d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f991906143ce565b600080516020614b388339815191528054600160401b900460ff1680610a2c575080546001600160401b03808416911610155b15610a4a5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a748361267a565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a1505050565b610ac9612641565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080516020614b388339815191528054600160401b810460ff1615906001600160401b0316600081158015610b3a5750825b90506000826001600160401b03166001148015610b565750303b155b905081158015610b64575080155b15610b825760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610bac57845460ff60401b1916600160401b1785555b610bb68787612682565b8315610bfd57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610c0e612641565b806001600160a01b03163b600003610c495760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e607072160e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610cc3575060408051601f3d908101601f19168201909252610cc0918101906143f6565b60015b610ceb5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c40565b80610d145760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610c40565b5050565b6000806000610d2d610d286128d4565b61294c565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d969190614413565b905060008073__$58e11c6004c5796aaa8c56e718245e69a2$__639ed246ea610dbf85886129ec565b6040516001600160e01b031960e084901b1681528151600482015260209091015160248201526001600160601b038d1660448201526064016040805180830381865af4158015610e13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e379190614430565b91509150600260009054906101000a90046001600160a01b03166001600160a01b031663e283b4a985878f8f868f8f8f6040518963ffffffff1660e01b8152600401610e8a989796959493929190614488565b6020604051808303816000875af1158015610ea9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ecd9190614235565b9550600360009054906101000a90046001600160a01b03166001600160a01b031663d56cd3d5856001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f559190614413565b878d866040518563ffffffff1660e01b8152600401610f77949392919061428c565b600060405180830381600087803b158015610f9157600080fd5b505af1158015610fa5573d6000803e3d6000fd5b50505050610fb583868e8d612afa565b7f0dcadf661b8b2888423f78a848a77785b4dc0138395b12584835f6a65dfcea79846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611014573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110389190614235565b604080516001600160601b03928316815282891660208201529189169082015260600160405180910390a150505050509695505050505050565b3361107b612180565b6001600160a01b0316816001600160a01b0316146110b65760405162d1953b60e31b81526001600160a01b0382166004820152602401610c40565b816001600160a01b03163b6000036110ec576040516361798f2f60e11b81526001600160a01b0383166004820152602401610c40565b610d1482612c7d565b6110fe3361071f565b60006111126001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611165573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261118d919081019061455e565b60208101516040516305247a1760e51b81526001600160601b0390911660048201529091506000906001600160a01b0384169063a48f42e090602401600060405180830381865afa1580156111e6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261120e919081019061455e565b60208101516040516305247a1760e51b81526001600160601b0390911660048201529091506000906001600160a01b0385169063a48f42e090602401600060405180830381865afa158015611267573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261128f919081019061455e565b9050600081608001519050600073__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968861016001518960e001516112cb9190614630565b6040518263ffffffff1660e01b81526004016112e991815260200190565b602060405180830381865af4158015611306573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132a9190614235565b9050600073__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968961018001518a610100015161135e9190614630565b6040518263ffffffff1660e01b815260040161137c91815260200190565b602060405180830381865af4158015611399573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113bd9190614235565b9050600073__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968a606001516040518263ffffffff1660e01b81526004016113fe91815260200190565b602060405180830381865af415801561141b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143f9190614235565b90506000846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611481573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a59190614413565b60035488519192506001600160a01b03169063d56cd3d59083906114c98688612cde565b886040518563ffffffff1660e01b81526004016114e9949392919061428c565b600060405180830381600087803b15801561150357600080fd5b505af1158015611517573d6000803e3d6000fd5b50506003548a516040516325e451d360e01b81526001600160a01b0390921693506325e451d39250611552918591908790899060040161428c565b600060405180830381600087803b15801561156c57600080fd5b505af1158015611580573d6000803e3d6000fd5b505050505050505050505050505050565b60008061159f610d286128d4565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116089190614413565b6040516357f80bbf60e01b81526001600160601b03851660048201526001600160a01b0391909116906357f80bbf906024016101c060405180830381865afa158015611658573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167c9190614681565b9050858161010001819052508481610120018190525083816101400181905250816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fe9190614413565b6001600160a01b031663763bb754848360ff6040518463ffffffff1660e01b815260040161172e93929190614751565b600060405180830381600087803b15801561174857600080fd5b505af115801561175c573d6000803e3d6000fd5b50505050505050505050565b6040516302d764c760e21b81526001600160601b0383166004820152600090819081906001600160a01b03871690630b5d931c9060240161020060405180830381865afa1580156117bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e19190614833565b602001516040516357f80bbf60e01b81526001600160601b03821660048201529091506000906001600160a01b038816906357f80bbf906024016101c060405180830381865afa158015611839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185d9190614681565b509396879650945050505050565b6000806118773361071f565b6118e3886001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118dc9190614413565b8785611768565b600254604051634adcf90960e01b81529294509092506001600160a01b031690634adcf9099061191d908b9089908990889060040161428c565b600060405180830381600087803b15801561193757600080fd5b505af115801561194b573d6000803e3d6000fd5b50505050600660009054906101000a90046001600160a01b03166001600160a01b031663ea48ce9b896001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d59190614235565b6040516001600160e01b031960e084901b1681526001600160601b0391821660048201526001600160a01b038b16602482015290841660448201526064016020604051808303816000875af1158015611a32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a569190614235565b50611a618183612d6d565b50965096945050505050565b600080600080516020614af883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611add573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0191906143f6565b15611b8e576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611b64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b889190614413565b91505090565b54600160601b90046001600160a01b0316919050565b611bac612641565b611c3283846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c129190614235565b611c1a612df5565b600085604051806020016040528060008152506108ce565b6001600160a01b03821615611c4f57611c4a82612e30565b611dc4565b6000611c636001546001600160a01b031690565b6001600160a01b031663d39e6043611c79612e41565b604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611cc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ced91906148e8565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611d32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d569190614413565b9050611dc2816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dbd9190614413565b612e30565b505b611dd4634a531f3360e01b6108a1565b611de463b68d180960e01b6108a1565b505050565b600080516020614b18833981519152805460009190600160a01b900460ff16611e13576000611b88565b638fb3603760e01b91505090565b600080611e2f610d286128d4565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e989190614413565b60405163f0ea17c360e01b81526001600160601b03851660048201529091506000906001600160a01b0383169063f0ea17c390602401600060405180830381865afa158015611eeb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f139190810190614905565b905060008160a00151806020019051810190611f2f9190614681565b9050611f538160200151611f41612e7c565b6001600160401b039081169116141590565b15611f7c5760405163eff765ff60e01b81526001600160601b0386166004820152602401610c40565b6001600160401b03861660208083019190915260408051631a99b41b60e31b815290516001600160a01b0387169263d4cda0d892600480820193918290030181865afa158015611fd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ff49190614413565b6001600160a01b031663763bb754868360ff6040518463ffffffff1660e01b815260040161202493929190614751565b600060405180830381600087803b15801561203e57600080fd5b505af1158015612052573d6000803e3d6000fd5b5050604080516001600160601b03891681526001600160401b038a1660208201527fe7e6a7a42cbdb2d274dfaaac06073a09d6095ca3745ce71fe5a137f8247ea23e935001905060405180910390a1505050505050565b6120b23361071f565b60006120c78260800151836101800151612ef9565b600254602084015160405163ad328d9f60e01b81529293506001600160a01b039091169163ad328d9f916121039189918891879060040161428c565b600060405180830381600087803b15801561211d57600080fd5b505af1158015612131573d6000803e3d6000fd5b50506002546040516301d90a6f60e61b81526001600160a01b0389811660048301526001600160601b038816602483015290911692506376429bc09150604401610760565b60006105796128d4565b600080516020614b18833981519152546001600160a01b031690565b6000806121aa610d286128d4565b600254604051632aa6b2cb60e21b81526001600160a01b0380841660048301526001600160601b0389166024830152949650919450929092169163aa9acb2c9150604401600060405180830381600087803b15801561220857600080fd5b505af115801561221c573d6000803e3d6000fd5b505050507f64c75a4392ba38fee1b5a44b61e3dd0cae424d2d43eb2b0c99772efe31e1c042816001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561227f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a39190614235565b604080516001600160601b039283168152828616602082015291861690820152606001610ab4565b6122d3612641565b6122dc81610c06565b6122e4610ac1565b6001600160a01b03821661230b5760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020614af883398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600080600080516020614af883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156123b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123d691906143f6565b156124025780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610c40565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612456573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247a91906143f6565b6124a25760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610c40565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa1580156124f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061251a9190614235565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b600080516020614b1883398151915260008061257e612560612180565b8730612570600460008a8c6149d9565b61257991614a03565b612f44565b91509150816108995763ffffffff81161561261e57825460ff60a01b1916600160a01b1783556125ac612180565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016125db93929190614a33565b600060405180830381600087803b1580156125f557600080fd5b505af1158015612609573d6000803e3d6000fd5b5050845460ff60a01b19168555506108999050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610c40565b600080516020614b3883398151915254600160401b900460ff1661267857604051631afcd79f60e31b815260040160405180910390fd5b565b6101f0612641565b600080516020614b388339815191528054600160401b810460ff1615906001600160401b03166000811580156126b55750825b90506000826001600160401b031660011480156126d15750303b155b9050811580156126df575080155b156126fd5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561272757845460ff60401b1916600160401b1785555b6000808780602001905181019061273e9190614a61565b925050915061274e82828b611ba4565b61275e612759612e41565b613050565b600580546001600160a01b0319166001600160a01b039290921691909117905561278961275961315d565b600280546001600160a01b0319166001600160a01b03929092169190911790556127b4612759613198565b600480546001600160a01b0319166001600160a01b03929092169190911790556127df6127596131d3565b600380546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b0316630e9ed68b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561283c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128609190614413565b600680546001600160a01b0319166001600160a01b039290921691909117905561289063564f673160e01b6108a1565b50508315610bfd57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610bf4565b604051630dd958dd60e31b8152608c600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024015b602060405180830381865af4158015612928573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057991906148e8565b600061295661369d565b600061296a6001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa1580156129b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129d49190614235565b92506129e28385600161320e565b9395909450915050565b60408051808201909152600080825260208201526040516357f80bbf60e01b81526001600160601b03831660048201526000906001600160a01b038516906357f80bbf906024016101c060405180830381865afa158015612a51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a759190614681565b516040516357f80bbf60e01b81526001600160601b03821660048201529091506001600160a01b038516906357f80bbf906024016101c060405180830381865afa158015612ac7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aeb9190614681565b61012001519150505b92915050565b60405163f0ea17c360e01b81526001600160601b03841660048201526000906001600160a01b0386169063f0ea17c390602401600060405180830381865afa158015612b4a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612b729190810190614905565b606081015160808201516040516330b8415f60e01b81526001600160601b0386166004820152929350909173__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bfd91906143f6565b15610bfd5760405163c661667d60e01b81526001600160a01b03868116600483015282811660248301526001600160601b038616604483015283169063c661667d90606401600060405180830381600087803b158015612c5c57600080fd5b505af1158015612c70573d6000803e3d6000fd5b5050505050505050505050565b600080516020614b1883398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015612d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d669190614235565b9392505050565b604051632601631360e21b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c906044015b602060405180830381865af4158015612dd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d6691906143f6565b604051630dd958dd60e31b8152603c600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b612e38612641565b610377816134bc565b604051630dd958dd60e31b81526028600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b6040516368aebf7b60e01b81526001600160401b03600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401602060405180830381865af4158015612ed5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057991906143ce565b6040516363cf551160e11b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401612d25565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612fb39190614aa3565b600060405180830381855afa9150503d8060008114612fee576040519150601f19603f3d011682016040523d82523d6000602084013e612ff3565b606091505b50915091508115613045576040815110613025578080602001905181019061301b9190614abf565b9094509250613045565b6020815110613045578080602001905181019061304291906143f6565b93505b505094509492505050565b60006130646001546001600160a01b031690565b6001600160a01b031663d39e60438361307b6104f4565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af41580156130d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130f491906148e8565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613139573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612af49190614413565b604051630dd958dd60e31b815260dc600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b604051630dd958dd60e31b81526046600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b604051630dd958dd60e31b81526064600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b61321661369d565b60008061322b6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e090602401600060405180830381865afa15801561327b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526132a3919081019061455e565b92506132b6856132b16131d3565b6134cd565b1561330e576132c98360400151866134cd565b1561330957604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610c40565b6133a4565b613323836040015161331e613512565b61354d565b806133395750613339836040015161331e6128d4565b8061334f575061334f836040015161331e613592565b806133655750613365836040015161331e6135cd565b6133a457604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610c40565b6133b18360200151613608565b915083156134b357816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061341b9190614413565b608084015160405163a166aa8960e01b81526001600160a01b03918216600482015291169063a166aa8990602401602060405180830381865afa158015613466573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061348a91906143f6565b156134b357604051637d71120960e11b81526001600160601b0387166004820152602401610c40565b50935093915050565b6134c4612641565b61037781612c7d565b604051637adad14f60e01b815260ff80841660048301528216602482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90637adad14f90604401612db4565b604051630dd958dd60e31b8152606e600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b604051632c2f8a6760e01b815260ff80841660048301528216602482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90632c2f8a6790604401612db4565b604051630dd958dd60e31b81526078600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b604051630dd958dd60e31b81526082600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b600061361c6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801561366b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613693919081019061455e565b6080015192915050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6000602082840312156136ed57600080fd5b81356001600160e01b031981168114612d6657600080fd5b60005b83811015613720578181015183820152602001613708565b50506000910152565b60008151808452613741816020860160208601613705565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516137be60c08401826001600160a01b03169052565b5060c083015160e0808401526137d8610100840182613729565b949350505050565b6001600160a01b038116811461037757600080fd5b6001600160601b038116811461037757600080fd5b8035613815816137f5565b919050565b634e487b7160e01b600052604160045260246000fd5b60405161022081016001600160401b03811182821017156138535761385361381a565b60405290565b604080519081016001600160401b03811182821017156138535761385361381a565b60405161024081016001600160401b03811182821017156138535761385361381a565b60405160e081016001600160401b03811182821017156138535761385361381a565b60405161016081016001600160401b03811182821017156138535761385361381a565b60405161012081016001600160401b03811182821017156138535761385361381a565b60405160c081016001600160401b03811182821017156138535761385361381a565b604051601f8201601f191681016001600160401b03811182821017156139505761395061381a565b604052919050565b80356001600160c01b03198116811461381557600080fd5b64ffffffffff8116811461037757600080fd5b803561381581613970565b60006001600160401b038211156139a7576139a761381a565b50601f01601f191660200190565b600082601f8301126139c657600080fd5b81356139d96139d48261398e565b613928565b8181528460208386010111156139ee57600080fd5b816020850160208301376000918101602001919091529392505050565b803561ffff8116811461381557600080fd5b60006102208284031215613a3057600080fd5b613a38613830565b9050613a438261380a565b8152613a516020830161380a565b6020820152613a6260408301613958565b6040820152613a7360608301613958565b6060820152613a846080830161380a565b6080820152613a9560a0830161380a565b60a0820152613aa660c0830161380a565b60c0820152613ab760e08301613983565b60e0820152610100808301356001600160401b0380821115613ad857600080fd5b613ae4868387016139b5565b83850152610120925082850135915080821115613b0057600080fd5b50613b0d858286016139b5565b828401525050610140613b21818401613a0b565b90820152610160613b33838201613a0b565b90820152610180613b4583820161380a565b908201526101a0613b5783820161380a565b908201526101c0613b69838201613983565b908201526101e0613b7b838201613983565b90820152610200613b8d838201613983565b9082015292915050565b600080600080600060a08688031215613baf57600080fd5b8535613bba816137e0565b94506020860135613bca816137e0565b93506040860135613bda816137f5565b925060608601356001600160401b03811115613bf557600080fd5b613c0188828901613a1d565b9250506080860135613c12816137f5565b809150509295509295909350565b60ff8116811461037757600080fd5b801515811461037757600080fd5b60008060008060008060c08789031215613c5657600080fd5b8635613c61816137e0565b95506020870135613c71816137f5565b94506040870135613c8181613c20565b93506060870135613c9181613c2f565b92506080870135613ca1816137e0565b915060a08701356001600160401b03811115613cbc57600080fd5b613cc889828a016139b5565b9150509295509295509295565b600060208284031215613ce757600080fd5b81356001600160401b03811115613cfd57600080fd5b6137d8848285016139b5565b60008060408385031215613d1c57600080fd5b8235613d27816137e0565b915060208301356001600160401b03811115613d4257600080fd5b613d4e858286016139b5565b9150509250929050565b600060208284031215613d6a57600080fd5b8135612d66816137f5565b600060208284031215613d8757600080fd5b8135612d66816137e0565b600080600060608486031215613da757600080fd5b83359250602084013591506040840135613dc0816137f5565b809150509250925092565b600060408284031215613ddd57600080fd5b613de5613859565b9050813581526020820135602082015292915050565b60008060008060008060c08789031215613e1457600080fd5b8635613e1f816137e0565b9550613e2e8860208901613dcb565b94506060870135613e3e816137f5565b93506080870135613e4e81613970565b925060a08701356001600160401b0380821115613e6a57600080fd5b818901915089601f830112613e7e57600080fd5b813581811115613e8d57600080fd5b8a6020828501011115613e9f57600080fd5b6020830194508093505050509295509295509295565b600080828403610260811215613eca57600080fd5b8335613ed5816137f5565b9250610240601f198201811315613eeb57600080fd5b613ef361387b565b9150613f016020860161380a565b8252613f0f6040860161380a565b6020830152613f206060860161380a565b60408301526080850135606083015260a0850135608083015260c085013560a083015260e085013560c08301526101008086013560e084015261012080870135828501526101409150818701358185015250610160808701358285015261018091508187013581850152506101a080870135828501526101c091508187013581850152506101e08087013582850152610200915081870135818501525061022080870135828501528287013581850152505050809150509250929050565b600080600060c08486031215613ff357600080fd5b613ffd8585613dcb565b925061400c8560408601613dcb565b915061401b8560808601613dcb565b90509250925092565b60008060006060848603121561403957600080fd5b8335614044816137e0565b92506020840135614054816137f5565b91506040840135613dc0816137f5565b60008060008060008060c0878903121561407d57600080fd5b8635614088816137e0565b95506020870135614098816137e0565b945060408701356140a8816137f5565b935060608701356140b8816137f5565b925060808701356140c8816137f5565b915060a08701356140d8816137f5565b809150509295509295509295565b6000806000606084860312156140fb57600080fd5b8335614106816137e0565b92506020840135614116816137e0565b91506040840135613dc0816137e0565b6001600160401b038116811461037757600080fd5b60006020828403121561414d57600080fd5b8135612d6681614126565b6000806000806080858703121561416e57600080fd5b8435614179816137e0565b93506020850135614189816137e0565b92506040850135614199816137f5565b915060608501356001600160401b038111156141b457600080fd5b6141c087828801613a1d565b91505092959194509250565b600080604083850312156141df57600080fd5b82356141ea816137e0565b915060208301356141fa816137e0565b809150509250929050565b60006020828403121561421757600080fd5b815162ffffff81168114612d6657600080fd5b8051613815816137f5565b60006020828403121561424757600080fd5b8151612d66816137f5565b600181811c9082168061426657607f821691505b60208210810361428657634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b601f821115611de457600081815260208120601f850160051c810160208610156142e55750805b601f850160051c820191505b81811015610899578281556001016142f1565b81516001600160401b0381111561431d5761431d61381a565b6143318161432b8454614252565b846142be565b602080601f831160018114614366576000841561434e5750858301515b600019600386901b1c1916600185901b178555610899565b600085815260208120601f198616915b8281101561439557888601518255948401946001909101908401614376565b50858210156143b35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b805161381581614126565b6000602082840312156143e057600080fd5b8151612d6681614126565b805161381581613c2f565b60006020828403121561440857600080fd5b8151612d6681613c2f565b60006020828403121561442557600080fd5b8151612d66816137e0565b6000806040838503121561444357600080fd5b825161444e816137f5565b60208401519092506141fa816137f5565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6001600160a01b0389811682526001600160601b0389811660208401528882166040840152600091610100916144cb606086018b80518252602090810151910152565b881660a08501525064ffffffffff861660c084015260e083018190526144f4818401858761445f565b9b9a5050505050505050505050565b805161381581613c20565b8051613815816137e0565b600082601f83011261452a57600080fd5b81516145386139d48261398e565b81815284602083860101111561454d57600080fd5b6137d8826020830160208701613705565b60006020828403121561457057600080fd5b81516001600160401b038082111561458757600080fd5b9083019060e0828603121561459b57600080fd5b6145a361389e565b6145ac8361422a565b81526145ba6020840161422a565b60208201526145cb60408401614503565b60408201526145dc606084016143eb565b60608201526145ed6080840161450e565b60808201526145fe60a0840161450e565b60a082015260c08301518281111561461557600080fd5b61462187828601614519565b60c08301525095945050505050565b80820180821115612af457634e487b7160e01b600052601160045260246000fd5b60006040828403121561466357600080fd5b61466b613859565b9050815181526020820151602082015292915050565b60006101c0828403121561469457600080fd5b61469c6138c0565b6146a58361422a565b81526146b3602084016143c3565b60208201526146c46040840161422a565b60408201526146d5606084016143eb565b60608201526146e6608084016143eb565b60808201526146f760a084016143eb565b60a082015260c083015160c082015260e083015160e082015261010061471f85828601614651565b9082015261014061473285858301614651565b610120830152614746856101808601614651565b908201529392505050565b6001600160601b0384811682528351166020820152610200810160208401516001600160401b03811660408401525060408401516001600160601b0381166060840152506060840151801515608084015250608084015180151560a08401525060a084015180151560c08401525060c084015160e083015260e08401516101008181850152808601519150506101206147f68185018380518252602090810151910152565b850151805161016085015260209081015161018085015261014086015180516101a086015201516101c08401525060ff83166101e08301526137d8565b6000610200828403121561484657600080fd5b61484e6138e3565b6148578361422a565b81526148656020840161422a565b60208201526148778460408501614651565b60408201526148898460808501614651565b606082015261489b8460c08501614651565b60808201526101006148af85828601614651565b60a08301526148c2856101408601614651565b60c08301526148d5856101808601614651565b60e0830152614746856101c08601614651565b6000602082840312156148fa57600080fd5b8151612d6681613c20565b60006020828403121561491757600080fd5b81516001600160401b038082111561492e57600080fd5b9083019060c0828603121561494257600080fd5b61494a613906565b82518281111561495957600080fd5b61496587828601614519565b8252506149746020840161422a565b60208201526149856040840161450e565b60408201526149966060840161450e565b60608201526149a76080840161450e565b608082015260a0830151828111156149be57600080fd5b6149ca87828601614519565b60a08301525095945050505050565b600080858511156149e957600080fd5b838611156149f657600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015614a2b5780818660040360031b1b83161692505b505092915050565b6001600160a01b0384168152604060208201819052600090614a58908301848661445f565b95945050505050565b600080600060608486031215614a7657600080fd5b8351614a81816137e0565b6020850151909350614a92816137e0565b6040850151909250613dc0816137e0565b60008251614ab5818460208701613705565b9190910192915050565b60008060408385031215614ad257600080fd5b8251614add81613c2f565b602084015190925063ffffffff811681146141fa57600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220e5591328e4092c9d2df59b485a61ecbd35016c1063ef614ab7eaf7612197835064736f6c63430008140033",
1255
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80637738eb861161010f5780638fb36037116100a2578063b68d180911610071578063b68d1809146104ac578063bf7e214f146104c6578063d0d63b09146104ce578063f7c34ee0146104e157600080fd5b80638fb3603714610450578063a3c2605214610471578063a5f4c73114610484578063ada9652e1461049757600080fd5b806384a710fa116100de57806384a710fa1461040f57806384d1f7cf14610422578063893d20e8146104355780638e32e9791461043d57600080fd5b80637738eb86146103c35780637a9e5e4b146103d65780637d42d397146103e957806382678766146103fc57600080fd5b8063329d6e7411610187578063644c45e011610156578063644c45e01461034b578063673ad94f14610369578063675393bf1461037a5780637225ed011461038d57600080fd5b8063329d6e74146102f857806336fc697e1461030b57806349bb9e4b146103135780635ab1bd531461032657600080fd5b80631ddb9757116101c35780631ddb9757146102885780631eff4b221461029d578063214cdb80146102d257806327bb7a33146102e557600080fd5b806301ffc9a7146101f55780630d8e6e2c146102375780630fec111c14610253578063138461e014610268575b600080fd5b6102226102033660046136db565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61023f6104f4565b60405162ffffff909116815260200161022e565b61025b61057e565b60405161022e9190613755565b61027061070f565b6040516001600160601b03909116815260200161022e565b61029b610296366004613b97565b61071a565b005b6102c47f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161022e565b61029b6102e03660046136db565b6108a1565b61029b6102f3366004613c3d565b6108ce565b61029b610306366004613cd5565b610973565b61029b610ac1565b61029b610321366004613d09565b610b07565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161022e565b600080516020614af8833981519152546001600160601b0316610270565b61029b610377366004613d58565b50565b61029b610388366004613d75565b610c06565b6103a361039b366004613d92565b928392509050565b604080516001600160601b0393841681529290911660208301520161022e565b6102706103d1366004613dfb565b610d18565b61029b6103e4366004613d75565b611072565b61029b6103f7366004613eb5565b6110f5565b61029b61040a366004613fde565b611591565b6103a361041d366004614024565b611768565b6103a3610430366004614064565b61186b565b610333611a6d565b61029b61044b3660046140e6565b611ba4565b610458611de9565b6040516001600160e01b0319909116815260200161022e565b61029b61047f36600461413b565b611e21565b61029b610492366004614158565b6120a9565b6102c4600080516020614af883398151915281565b6104b4612176565b60405160ff909116815260200161022e565b610333612180565b61029b6104dc366004613d58565b61219c565b61029b6104ef3660046141cc565b6122cb565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610555573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105799190614205565b905090565b61058661369d565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156105ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106239190614235565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161066b611a6d565b6001600160a01b0316815260200182600101805461068890614252565b80601f01602080910402602001604051908101604052809291908181526020018280546106b490614252565b80156107015780601f106106d657610100808354040283529160200191610701565b820191906000526020600020905b8154815290600101906020018083116106e457829003601f168201915b505050505081525091505090565b600061057930612342565b610727335b600036612543565b600254602083015160405163ad328d9f60e01b81526001600160a01b039092169163ad328d9f916107609189918891879060040161428c565b600060405180830381600087803b15801561077a57600080fd5b505af115801561078e573d6000803e3d6000fd5b50505050600660009054906101000a90046001600160a01b03166001600160a01b031663d44f8a4b866001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108189190614235565b6040516001600160e01b031960e084901b1681526001600160601b0391821660048201526001600160a01b038816602482015290841660448201526064016020604051808303816000875af1158015610875573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108999190614235565b505050505050565b6108a9612641565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6108d6612641565b6108e082876122cb565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3016109698382614304565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6109956104f4565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156109d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f991906143ce565b600080516020614b388339815191528054600160401b900460ff1680610a2c575080546001600160401b03808416911610155b15610a4a5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a748361267a565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a1505050565b610ac9612641565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080516020614b388339815191528054600160401b810460ff1615906001600160401b0316600081158015610b3a5750825b90506000826001600160401b03166001148015610b565750303b155b905081158015610b64575080155b15610b825760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610bac57845460ff60401b1916600160401b1785555b610bb68787612682565b8315610bfd57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610c0e612641565b806001600160a01b03163b600003610c495760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e607072160e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610cc3575060408051601f3d908101601f19168201909252610cc0918101906143f6565b60015b610ceb5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c40565b80610d145760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610c40565b5050565b6000806000610d2d610d286128d4565b61294c565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d969190614413565b905060008073__$58e11c6004c5796aaa8c56e718245e69a2$__639ed246ea610dbf85886129ec565b6040516001600160e01b031960e084901b1681528151600482015260209091015160248201526001600160601b038d1660448201526064016040805180830381865af4158015610e13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e379190614430565b91509150600260009054906101000a90046001600160a01b03166001600160a01b031663e283b4a985878f8f868f8f8f6040518963ffffffff1660e01b8152600401610e8a989796959493929190614488565b6020604051808303816000875af1158015610ea9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ecd9190614235565b9550600360009054906101000a90046001600160a01b03166001600160a01b031663d56cd3d5856001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f559190614413565b878d866040518563ffffffff1660e01b8152600401610f77949392919061428c565b600060405180830381600087803b158015610f9157600080fd5b505af1158015610fa5573d6000803e3d6000fd5b50505050610fb583868e8d612afa565b7f0dcadf661b8b2888423f78a848a77785b4dc0138395b12584835f6a65dfcea79846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611014573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110389190614235565b604080516001600160601b03928316815282891660208201529189169082015260600160405180910390a150505050509695505050505050565b3361107b612180565b6001600160a01b0316816001600160a01b0316146110b65760405162d1953b60e31b81526001600160a01b0382166004820152602401610c40565b816001600160a01b03163b6000036110ec576040516361798f2f60e11b81526001600160a01b0383166004820152602401610c40565b610d1482612c7d565b6110fe3361071f565b60006111126001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611165573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261118d919081019061455e565b60208101516040516305247a1760e51b81526001600160601b0390911660048201529091506000906001600160a01b0384169063a48f42e090602401600060405180830381865afa1580156111e6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261120e919081019061455e565b60208101516040516305247a1760e51b81526001600160601b0390911660048201529091506000906001600160a01b0385169063a48f42e090602401600060405180830381865afa158015611267573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261128f919081019061455e565b9050600081608001519050600073__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968861016001518960e001516112cb9190614630565b6040518263ffffffff1660e01b81526004016112e991815260200190565b602060405180830381865af4158015611306573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132a9190614235565b9050600073__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968961018001518a610100015161135e9190614630565b6040518263ffffffff1660e01b815260040161137c91815260200190565b602060405180830381865af4158015611399573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113bd9190614235565b9050600073__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968a606001516040518263ffffffff1660e01b81526004016113fe91815260200190565b602060405180830381865af415801561141b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143f9190614235565b90506000846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611481573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114a59190614413565b60035488519192506001600160a01b03169063d56cd3d59083906114c98688612cde565b886040518563ffffffff1660e01b81526004016114e9949392919061428c565b600060405180830381600087803b15801561150357600080fd5b505af1158015611517573d6000803e3d6000fd5b50506003548a516040516325e451d360e01b81526001600160a01b0390921693506325e451d39250611552918591908790899060040161428c565b600060405180830381600087803b15801561156c57600080fd5b505af1158015611580573d6000803e3d6000fd5b505050505050505050505050505050565b60008061159f610d286128d4565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116089190614413565b6040516357f80bbf60e01b81526001600160601b03851660048201526001600160a01b0391909116906357f80bbf906024016101c060405180830381865afa158015611658573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167c9190614681565b9050858161010001819052508481610120018190525083816101400181905250816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fe9190614413565b6001600160a01b031663763bb754848360ff6040518463ffffffff1660e01b815260040161172e93929190614751565b600060405180830381600087803b15801561174857600080fd5b505af115801561175c573d6000803e3d6000fd5b50505050505050505050565b6040516302d764c760e21b81526001600160601b0383166004820152600090819081906001600160a01b03871690630b5d931c9060240161020060405180830381865afa1580156117bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e19190614833565b602001516040516357f80bbf60e01b81526001600160601b03821660048201529091506000906001600160a01b038816906357f80bbf906024016101c060405180830381865afa158015611839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185d9190614681565b509396879650945050505050565b6000806118773361071f565b6118e3886001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118dc9190614413565b8785611768565b600254604051634adcf90960e01b81529294509092506001600160a01b031690634adcf9099061191d908b9089908990889060040161428c565b600060405180830381600087803b15801561193757600080fd5b505af115801561194b573d6000803e3d6000fd5b50505050600660009054906101000a90046001600160a01b03166001600160a01b031663ea48ce9b896001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d59190614235565b6040516001600160e01b031960e084901b1681526001600160601b0391821660048201526001600160a01b038b16602482015290841660448201526064016020604051808303816000875af1158015611a32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a569190614235565b50611a618183612d6d565b50965096945050505050565b600080600080516020614af883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611add573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0191906143f6565b15611b8e576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611b64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b889190614413565b91505090565b54600160601b90046001600160a01b0316919050565b611bac612641565b611c3283846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c129190614235565b611c1a612df5565b600085604051806020016040528060008152506108ce565b6001600160a01b03821615611c4f57611c4a82612e30565b611dc4565b6000611c636001546001600160a01b031690565b6001600160a01b031663d39e6043611c79612e41565b604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015611cc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ced91906148e8565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611d32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d569190614413565b9050611dc2816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dbd9190614413565b612e30565b505b611dd4634a531f3360e01b6108a1565b611de463b68d180960e01b6108a1565b505050565b600080516020614b18833981519152805460009190600160a01b900460ff16611e13576000611b88565b638fb3603760e01b91505090565b600080611e2f610d286128d4565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e989190614413565b60405163f0ea17c360e01b81526001600160601b03851660048201529091506000906001600160a01b0383169063f0ea17c390602401600060405180830381865afa158015611eeb573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f139190810190614905565b905060008160a00151806020019051810190611f2f9190614681565b9050611f538160200151611f41612e7c565b6001600160401b039081169116141590565b15611f7c5760405163eff765ff60e01b81526001600160601b0386166004820152602401610c40565b6001600160401b03861660208083019190915260408051631a99b41b60e31b815290516001600160a01b0387169263d4cda0d892600480820193918290030181865afa158015611fd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ff49190614413565b6001600160a01b031663763bb754868360ff6040518463ffffffff1660e01b815260040161202493929190614751565b600060405180830381600087803b15801561203e57600080fd5b505af1158015612052573d6000803e3d6000fd5b5050604080516001600160601b03891681526001600160401b038a1660208201527fe7e6a7a42cbdb2d274dfaaac06073a09d6095ca3745ce71fe5a137f8247ea23e935001905060405180910390a1505050505050565b6120b23361071f565b60006120c78260800151836101800151612ef9565b600254602084015160405163ad328d9f60e01b81529293506001600160a01b039091169163ad328d9f916121039189918891879060040161428c565b600060405180830381600087803b15801561211d57600080fd5b505af1158015612131573d6000803e3d6000fd5b50506002546040516301d90a6f60e61b81526001600160a01b0389811660048301526001600160601b038816602483015290911692506376429bc09150604401610760565b60006105796128d4565b600080516020614b18833981519152546001600160a01b031690565b6000806121aa610d286128d4565b600254604051632aa6b2cb60e21b81526001600160a01b0380841660048301526001600160601b0389166024830152949650919450929092169163aa9acb2c9150604401600060405180830381600087803b15801561220857600080fd5b505af115801561221c573d6000803e3d6000fd5b505050507f64c75a4392ba38fee1b5a44b61e3dd0cae424d2d43eb2b0c99772efe31e1c042816001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561227f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a39190614235565b604080516001600160601b039283168152828616602082015291861690820152606001610ab4565b6122d3612641565b6122dc81610c06565b6122e4610ac1565b6001600160a01b03821661230b5760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020614af883398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600080600080516020614af883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156123b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123d691906143f6565b156124025780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610c40565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612456573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247a91906143f6565b6124a25760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610c40565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa1580156124f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061251a9190614235565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b600080516020614b1883398151915260008061257e612560612180565b8730612570600460008a8c6149d9565b61257991614a03565b612f44565b91509150816108995763ffffffff81161561261e57825460ff60a01b1916600160a01b1783556125ac612180565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016125db93929190614a33565b600060405180830381600087803b1580156125f557600080fd5b505af1158015612609573d6000803e3d6000fd5b5050845460ff60a01b19168555506108999050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610c40565b600080516020614b3883398151915254600160401b900460ff1661267857604051631afcd79f60e31b815260040160405180910390fd5b565b6101f0612641565b600080516020614b388339815191528054600160401b810460ff1615906001600160401b03166000811580156126b55750825b90506000826001600160401b031660011480156126d15750303b155b9050811580156126df575080155b156126fd5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561272757845460ff60401b1916600160401b1785555b6000808780602001905181019061273e9190614a61565b925050915061274e82828b611ba4565b61275e612759612e41565b613050565b600580546001600160a01b0319166001600160a01b039290921691909117905561278961275961315d565b600280546001600160a01b0319166001600160a01b03929092169190911790556127b4612759613198565b600480546001600160a01b0319166001600160a01b03929092169190911790556127df6127596131d3565b600380546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b0316630e9ed68b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561283c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128609190614413565b600680546001600160a01b0319166001600160a01b039290921691909117905561289063564f673160e01b6108a1565b50508315610bfd57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610bf4565b604051630dd958dd60e31b8152608c600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024015b602060405180830381865af4158015612928573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057991906148e8565b600061295661369d565b600061296a6001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa1580156129b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129d49190614235565b92506129e28385600161320e565b9395909450915050565b60408051808201909152600080825260208201526040516357f80bbf60e01b81526001600160601b03831660048201526000906001600160a01b038516906357f80bbf906024016101c060405180830381865afa158015612a51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a759190614681565b516040516357f80bbf60e01b81526001600160601b03821660048201529091506001600160a01b038516906357f80bbf906024016101c060405180830381865afa158015612ac7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aeb9190614681565b61012001519150505b92915050565b60405163f0ea17c360e01b81526001600160601b03841660048201526000906001600160a01b0386169063f0ea17c390602401600060405180830381865afa158015612b4a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612b729190810190614905565b606081015160808201516040516330b8415f60e01b81526001600160601b0386166004820152929350909173__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015612bd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bfd91906143f6565b15610bfd5760405163c661667d60e01b81526001600160a01b03868116600483015282811660248301526001600160601b038616604483015283169063c661667d90606401600060405180830381600087803b158015612c5c57600080fd5b505af1158015612c70573d6000803e3d6000fd5b5050505050505050505050565b600080516020614b1883398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af4158015612d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d669190614235565b9392505050565b604051632601631360e21b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c906044015b602060405180830381865af4158015612dd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d6691906143f6565b604051630dd958dd60e31b8152603c600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b612e38612641565b610377816134bc565b604051630dd958dd60e31b81526028600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b6040516368aebf7b60e01b81526001600160401b03600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401602060405180830381865af4158015612ed5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057991906143ce565b6040516363cf551160e11b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401612d25565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612fb39190614aa3565b600060405180830381855afa9150503d8060008114612fee576040519150601f19603f3d011682016040523d82523d6000602084013e612ff3565b606091505b50915091508115613045576040815110613025578080602001905181019061301b9190614abf565b9094509250613045565b6020815110613045578080602001905181019061304291906143f6565b93505b505094509492505050565b60006130646001546001600160a01b031690565b6001600160a01b031663d39e60438361307b6104f4565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af41580156130d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130f491906148e8565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613139573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612af49190614413565b604051630dd958dd60e31b815260dc600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b604051630dd958dd60e31b81526046600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b604051630dd958dd60e31b81526064600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b61321661369d565b60008061322b6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e090602401600060405180830381865afa15801561327b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526132a3919081019061455e565b92506132b6856132b16131d3565b6134cd565b1561330e576132c98360400151866134cd565b1561330957604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610c40565b6133a4565b613323836040015161331e613512565b61354d565b806133395750613339836040015161331e6128d4565b8061334f575061334f836040015161331e613592565b806133655750613365836040015161331e6135cd565b6133a457604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610c40565b6133b18360200151613608565b915083156134b357816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061341b9190614413565b608084015160405163a166aa8960e01b81526001600160a01b03918216600482015291169063a166aa8990602401602060405180830381865afa158015613466573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061348a91906143f6565b156134b357604051637d71120960e11b81526001600160601b0387166004820152602401610c40565b50935093915050565b6134c4612641565b61037781612c7d565b604051637adad14f60e01b815260ff80841660048301528216602482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90637adad14f90604401612db4565b604051630dd958dd60e31b8152606e600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b604051632c2f8a6760e01b815260ff80841660048301528216602482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90632c2f8a6790604401612db4565b604051630dd958dd60e31b81526078600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b604051630dd958dd60e31b81526082600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240161290b565b600061361c6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801561366b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613693919081019061455e565b6080015192915050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6000602082840312156136ed57600080fd5b81356001600160e01b031981168114612d6657600080fd5b60005b83811015613720578181015183820152602001613708565b50506000910152565b60008151808452613741816020860160208601613705565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516137be60c08401826001600160a01b03169052565b5060c083015160e0808401526137d8610100840182613729565b949350505050565b6001600160a01b038116811461037757600080fd5b6001600160601b038116811461037757600080fd5b8035613815816137f5565b919050565b634e487b7160e01b600052604160045260246000fd5b60405161022081016001600160401b03811182821017156138535761385361381a565b60405290565b604080519081016001600160401b03811182821017156138535761385361381a565b60405161024081016001600160401b03811182821017156138535761385361381a565b60405160e081016001600160401b03811182821017156138535761385361381a565b60405161016081016001600160401b03811182821017156138535761385361381a565b60405161012081016001600160401b03811182821017156138535761385361381a565b60405160c081016001600160401b03811182821017156138535761385361381a565b604051601f8201601f191681016001600160401b03811182821017156139505761395061381a565b604052919050565b80356001600160c01b03198116811461381557600080fd5b64ffffffffff8116811461037757600080fd5b803561381581613970565b60006001600160401b038211156139a7576139a761381a565b50601f01601f191660200190565b600082601f8301126139c657600080fd5b81356139d96139d48261398e565b613928565b8181528460208386010111156139ee57600080fd5b816020850160208301376000918101602001919091529392505050565b803561ffff8116811461381557600080fd5b60006102208284031215613a3057600080fd5b613a38613830565b9050613a438261380a565b8152613a516020830161380a565b6020820152613a6260408301613958565b6040820152613a7360608301613958565b6060820152613a846080830161380a565b6080820152613a9560a0830161380a565b60a0820152613aa660c0830161380a565b60c0820152613ab760e08301613983565b60e0820152610100808301356001600160401b0380821115613ad857600080fd5b613ae4868387016139b5565b83850152610120925082850135915080821115613b0057600080fd5b50613b0d858286016139b5565b828401525050610140613b21818401613a0b565b90820152610160613b33838201613a0b565b90820152610180613b4583820161380a565b908201526101a0613b5783820161380a565b908201526101c0613b69838201613983565b908201526101e0613b7b838201613983565b90820152610200613b8d838201613983565b9082015292915050565b600080600080600060a08688031215613baf57600080fd5b8535613bba816137e0565b94506020860135613bca816137e0565b93506040860135613bda816137f5565b925060608601356001600160401b03811115613bf557600080fd5b613c0188828901613a1d565b9250506080860135613c12816137f5565b809150509295509295909350565b60ff8116811461037757600080fd5b801515811461037757600080fd5b60008060008060008060c08789031215613c5657600080fd5b8635613c61816137e0565b95506020870135613c71816137f5565b94506040870135613c8181613c20565b93506060870135613c9181613c2f565b92506080870135613ca1816137e0565b915060a08701356001600160401b03811115613cbc57600080fd5b613cc889828a016139b5565b9150509295509295509295565b600060208284031215613ce757600080fd5b81356001600160401b03811115613cfd57600080fd5b6137d8848285016139b5565b60008060408385031215613d1c57600080fd5b8235613d27816137e0565b915060208301356001600160401b03811115613d4257600080fd5b613d4e858286016139b5565b9150509250929050565b600060208284031215613d6a57600080fd5b8135612d66816137f5565b600060208284031215613d8757600080fd5b8135612d66816137e0565b600080600060608486031215613da757600080fd5b83359250602084013591506040840135613dc0816137f5565b809150509250925092565b600060408284031215613ddd57600080fd5b613de5613859565b9050813581526020820135602082015292915050565b60008060008060008060c08789031215613e1457600080fd5b8635613e1f816137e0565b9550613e2e8860208901613dcb565b94506060870135613e3e816137f5565b93506080870135613e4e81613970565b925060a08701356001600160401b0380821115613e6a57600080fd5b818901915089601f830112613e7e57600080fd5b813581811115613e8d57600080fd5b8a6020828501011115613e9f57600080fd5b6020830194508093505050509295509295509295565b600080828403610260811215613eca57600080fd5b8335613ed5816137f5565b9250610240601f198201811315613eeb57600080fd5b613ef361387b565b9150613f016020860161380a565b8252613f0f6040860161380a565b6020830152613f206060860161380a565b60408301526080850135606083015260a0850135608083015260c085013560a083015260e085013560c08301526101008086013560e084015261012080870135828501526101409150818701358185015250610160808701358285015261018091508187013581850152506101a080870135828501526101c091508187013581850152506101e08087013582850152610200915081870135818501525061022080870135828501528287013581850152505050809150509250929050565b600080600060c08486031215613ff357600080fd5b613ffd8585613dcb565b925061400c8560408601613dcb565b915061401b8560808601613dcb565b90509250925092565b60008060006060848603121561403957600080fd5b8335614044816137e0565b92506020840135614054816137f5565b91506040840135613dc0816137f5565b60008060008060008060c0878903121561407d57600080fd5b8635614088816137e0565b95506020870135614098816137e0565b945060408701356140a8816137f5565b935060608701356140b8816137f5565b925060808701356140c8816137f5565b915060a08701356140d8816137f5565b809150509295509295509295565b6000806000606084860312156140fb57600080fd5b8335614106816137e0565b92506020840135614116816137e0565b91506040840135613dc0816137e0565b6001600160401b038116811461037757600080fd5b60006020828403121561414d57600080fd5b8135612d6681614126565b6000806000806080858703121561416e57600080fd5b8435614179816137e0565b93506020850135614189816137e0565b92506040850135614199816137f5565b915060608501356001600160401b038111156141b457600080fd5b6141c087828801613a1d565b91505092959194509250565b600080604083850312156141df57600080fd5b82356141ea816137e0565b915060208301356141fa816137e0565b809150509250929050565b60006020828403121561421757600080fd5b815162ffffff81168114612d6657600080fd5b8051613815816137f5565b60006020828403121561424757600080fd5b8151612d66816137f5565b600181811c9082168061426657607f821691505b60208210810361428657634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b601f821115611de457600081815260208120601f850160051c810160208610156142e55750805b601f850160051c820191505b81811015610899578281556001016142f1565b81516001600160401b0381111561431d5761431d61381a565b6143318161432b8454614252565b846142be565b602080601f831160018114614366576000841561434e5750858301515b600019600386901b1c1916600185901b178555610899565b600085815260208120601f198616915b8281101561439557888601518255948401946001909101908401614376565b50858210156143b35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b805161381581614126565b6000602082840312156143e057600080fd5b8151612d6681614126565b805161381581613c2f565b60006020828403121561440857600080fd5b8151612d6681613c2f565b60006020828403121561442557600080fd5b8151612d66816137e0565b6000806040838503121561444357600080fd5b825161444e816137f5565b60208401519092506141fa816137f5565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6001600160a01b0389811682526001600160601b0389811660208401528882166040840152600091610100916144cb606086018b80518252602090810151910152565b881660a08501525064ffffffffff861660c084015260e083018190526144f4818401858761445f565b9b9a5050505050505050505050565b805161381581613c20565b8051613815816137e0565b600082601f83011261452a57600080fd5b81516145386139d48261398e565b81815284602083860101111561454d57600080fd5b6137d8826020830160208701613705565b60006020828403121561457057600080fd5b81516001600160401b038082111561458757600080fd5b9083019060e0828603121561459b57600080fd5b6145a361389e565b6145ac8361422a565b81526145ba6020840161422a565b60208201526145cb60408401614503565b60408201526145dc606084016143eb565b60608201526145ed6080840161450e565b60808201526145fe60a0840161450e565b60a082015260c08301518281111561461557600080fd5b61462187828601614519565b60c08301525095945050505050565b80820180821115612af457634e487b7160e01b600052601160045260246000fd5b60006040828403121561466357600080fd5b61466b613859565b9050815181526020820151602082015292915050565b60006101c0828403121561469457600080fd5b61469c6138c0565b6146a58361422a565b81526146b3602084016143c3565b60208201526146c46040840161422a565b60408201526146d5606084016143eb565b60608201526146e6608084016143eb565b60808201526146f760a084016143eb565b60a082015260c083015160c082015260e083015160e082015261010061471f85828601614651565b9082015261014061473285858301614651565b610120830152614746856101808601614651565b908201529392505050565b6001600160601b0384811682528351166020820152610200810160208401516001600160401b03811660408401525060408401516001600160601b0381166060840152506060840151801515608084015250608084015180151560a08401525060a084015180151560c08401525060c084015160e083015260e08401516101008181850152808601519150506101206147f68185018380518252602090810151910152565b850151805161016085015260209081015161018085015261014086015180516101a086015201516101c08401525060ff83166101e08301526137d8565b6000610200828403121561484657600080fd5b61484e6138e3565b6148578361422a565b81526148656020840161422a565b60208201526148778460408501614651565b60408201526148898460808501614651565b606082015261489b8460c08501614651565b60808201526101006148af85828601614651565b60a08301526148c2856101408601614651565b60c08301526148d5856101808601614651565b60e0830152614746856101c08601614651565b6000602082840312156148fa57600080fd5b8151612d6681613c20565b60006020828403121561491757600080fd5b81516001600160401b038082111561492e57600080fd5b9083019060c0828603121561494257600080fd5b61494a613906565b82518281111561495957600080fd5b61496587828601614519565b8252506149746020840161422a565b60208201526149856040840161450e565b60408201526149966060840161450e565b60608201526149a76080840161450e565b608082015260a0830151828111156149be57600080fd5b6149ca87828601614519565b60a08301525095945050505050565b600080858511156149e957600080fd5b838611156149f657600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015614a2b5780818660040360031b1b83161692505b505092915050565b6001600160a01b0384168152604060208201819052600090614a58908301848661445f565b95945050505050565b600080600060608486031215614a7657600080fd5b8351614a81816137e0565b6020850151909350614a92816137e0565b6040850151909250613dc0816137e0565b60008251614ab5818460208701613705565b9190910192915050565b60008060408385031215614ad257600080fd5b8251614add81613c2f565b602084015190925063ffffffff811681146141fa57600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220e5591328e4092c9d2df59b485a61ecbd35016c1063ef614ab7eaf7612197835064736f6c63430008140033",
1256
+ "linkReferences": {
1257
+ "contracts/type/Amount.sol": {
1258
+ "AmountLib": [
1259
+ {
1260
+ "length": 20,
1261
+ "start": 4996
1262
+ },
1263
+ {
1264
+ "length": 20,
1265
+ "start": 5142
1266
+ },
1267
+ {
1268
+ "length": 20,
1269
+ "start": 5289
1270
+ },
1271
+ {
1272
+ "length": 20,
1273
+ "start": 11397
1274
+ },
1275
+ {
1276
+ "length": 20,
1277
+ "start": 11757
1278
+ },
1279
+ {
1280
+ "length": 20,
1281
+ "start": 11900
1282
+ },
1283
+ {
1284
+ "length": 20,
1285
+ "start": 12296
1286
+ }
1287
+ ]
1288
+ },
1289
+ "contracts/type/Fee.sol": {
1290
+ "FeeLib": [
1291
+ {
1292
+ "length": 20,
1293
+ "start": 3715
1294
+ }
1295
+ ]
1296
+ },
1297
+ "contracts/type/NftId.sol": {
1298
+ "NftIdLib": [
1299
+ {
1300
+ "length": 20,
1301
+ "start": 1694
1302
+ },
1303
+ {
1304
+ "length": 20,
1305
+ "start": 7049
1306
+ },
1307
+ {
1308
+ "length": 20,
1309
+ "start": 9310
1310
+ }
1311
+ ]
1312
+ },
1313
+ "contracts/type/ObjectType.sol": {
1314
+ "ObjectTypeLib": [
1315
+ {
1316
+ "length": 20,
1317
+ "start": 10707
1318
+ },
1319
+ {
1320
+ "length": 20,
1321
+ "start": 12020
1322
+ },
1323
+ {
1324
+ "length": 20,
1325
+ "start": 12096
1326
+ },
1327
+ {
1328
+ "length": 20,
1329
+ "start": 12892
1330
+ },
1331
+ {
1332
+ "length": 20,
1333
+ "start": 12951
1334
+ },
1335
+ {
1336
+ "length": 20,
1337
+ "start": 13010
1338
+ },
1339
+ {
1340
+ "length": 20,
1341
+ "start": 13782
1342
+ },
1343
+ {
1344
+ "length": 20,
1345
+ "start": 13841
1346
+ },
1347
+ {
1348
+ "length": 20,
1349
+ "start": 13910
1350
+ },
1351
+ {
1352
+ "length": 20,
1353
+ "start": 13969
1354
+ },
1355
+ {
1356
+ "length": 20,
1357
+ "start": 14028
1358
+ }
1359
+ ]
1360
+ },
1361
+ "contracts/type/RoleId.sol": {
1362
+ "RoleIdLib": [
1363
+ {
1364
+ "length": 20,
1365
+ "start": 12161
1366
+ }
1367
+ ]
1368
+ },
1369
+ "contracts/type/Version.sol": {
1370
+ "VersionLib": [
1371
+ {
1372
+ "length": 20,
1373
+ "start": 1537
1374
+ },
1375
+ {
1376
+ "length": 20,
1377
+ "start": 2651
1378
+ },
1379
+ {
1380
+ "length": 20,
1381
+ "start": 12668
1382
+ }
1383
+ ],
1384
+ "VersionPartLib": [
1385
+ {
1386
+ "length": 20,
1387
+ "start": 7541
1388
+ }
1389
+ ]
1390
+ }
1391
+ },
1392
+ "deployedLinkReferences": {
1393
+ "contracts/type/Amount.sol": {
1394
+ "AmountLib": [
1395
+ {
1396
+ "length": 20,
1397
+ "start": 4766
1398
+ },
1399
+ {
1400
+ "length": 20,
1401
+ "start": 4912
1402
+ },
1403
+ {
1404
+ "length": 20,
1405
+ "start": 5059
1406
+ },
1407
+ {
1408
+ "length": 20,
1409
+ "start": 11167
1410
+ },
1411
+ {
1412
+ "length": 20,
1413
+ "start": 11527
1414
+ },
1415
+ {
1416
+ "length": 20,
1417
+ "start": 11670
1418
+ },
1419
+ {
1420
+ "length": 20,
1421
+ "start": 12066
1422
+ }
1423
+ ]
1424
+ },
1425
+ "contracts/type/Fee.sol": {
1426
+ "FeeLib": [
1427
+ {
1428
+ "length": 20,
1429
+ "start": 3485
1430
+ }
1431
+ ]
1432
+ },
1433
+ "contracts/type/NftId.sol": {
1434
+ "NftIdLib": [
1435
+ {
1436
+ "length": 20,
1437
+ "start": 1464
1438
+ },
1439
+ {
1440
+ "length": 20,
1441
+ "start": 6819
1442
+ },
1443
+ {
1444
+ "length": 20,
1445
+ "start": 9080
1446
+ }
1447
+ ]
1448
+ },
1449
+ "contracts/type/ObjectType.sol": {
1450
+ "ObjectTypeLib": [
1451
+ {
1452
+ "length": 20,
1453
+ "start": 10477
1454
+ },
1455
+ {
1456
+ "length": 20,
1457
+ "start": 11790
1458
+ },
1459
+ {
1460
+ "length": 20,
1461
+ "start": 11866
1462
+ },
1463
+ {
1464
+ "length": 20,
1465
+ "start": 12662
1466
+ },
1467
+ {
1468
+ "length": 20,
1469
+ "start": 12721
1470
+ },
1471
+ {
1472
+ "length": 20,
1473
+ "start": 12780
1474
+ },
1475
+ {
1476
+ "length": 20,
1477
+ "start": 13552
1478
+ },
1479
+ {
1480
+ "length": 20,
1481
+ "start": 13611
1482
+ },
1483
+ {
1484
+ "length": 20,
1485
+ "start": 13680
1486
+ },
1487
+ {
1488
+ "length": 20,
1489
+ "start": 13739
1490
+ },
1491
+ {
1492
+ "length": 20,
1493
+ "start": 13798
1494
+ }
1495
+ ]
1496
+ },
1497
+ "contracts/type/RoleId.sol": {
1498
+ "RoleIdLib": [
1499
+ {
1500
+ "length": 20,
1501
+ "start": 11931
1502
+ }
1503
+ ]
1504
+ },
1505
+ "contracts/type/Version.sol": {
1506
+ "VersionLib": [
1507
+ {
1508
+ "length": 20,
1509
+ "start": 1307
1510
+ },
1511
+ {
1512
+ "length": 20,
1513
+ "start": 2421
1514
+ },
1515
+ {
1516
+ "length": 20,
1517
+ "start": 12438
1518
+ }
1519
+ ],
1520
+ "VersionPartLib": [
1521
+ {
1522
+ "length": 20,
1523
+ "start": 7311
1524
+ }
1525
+ ]
1526
+ }
1527
+ }
1528
+ }