@etherisc/gif-next 0.0.2-f831797-539 → 0.0.2-f981ede-436

Sign up to get free protection for your applications and to get access to all the features.
Files changed (628) hide show
  1. package/README.md +38 -86
  2. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  3. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -0
  4. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  5. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
  6. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  7. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
  8. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  9. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  10. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1032 -0
  12. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
  14. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
  16. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  17. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
  18. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
  20. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
  22. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  23. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1548 -0
  24. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
  26. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  27. package/artifacts/contracts/{components → distribution}/Distribution.sol/Distribution.json +251 -318
  28. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1557 -0
  30. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +854 -0
  32. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  33. package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +300 -208
  34. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/{instance/service → distribution}/IDistributionService.sol/IDistributionService.json +233 -301
  36. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  37. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
  38. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  39. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +278 -1906
  40. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  41. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +318 -70
  42. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  43. package/artifacts/contracts/instance/Instance.sol/Instance.json +402 -2689
  44. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  45. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1626 -0
  46. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  47. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
  48. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  49. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +781 -335
  50. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  51. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +379 -265
  52. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  53. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +115 -74
  54. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  55. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3581 -0
  56. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  57. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  58. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  59. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
  60. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  61. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  62. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  63. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
  64. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  65. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
  66. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  67. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +25 -150
  68. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  69. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  70. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  71. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  72. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  73. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  74. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  75. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  76. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1185 -0
  77. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  78. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
  79. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  80. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  81. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  82. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +802 -0
  83. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  84. package/artifacts/contracts/{instance/service/IBundleService.sol/IBundleService.json → oracle/IOracleService.sol/IOracleService.json} +301 -256
  85. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  86. package/artifacts/contracts/{components/Product.sol/Product.json → oracle/Oracle.sol/Oracle.json} +251 -297
  87. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  88. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
  89. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  90. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
  91. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  92. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1520 -0
  93. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  94. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
  95. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  96. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1402 -0
  97. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  98. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +794 -0
  99. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  100. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +891 -0
  101. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  102. package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +310 -244
  103. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  104. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1179 -0
  105. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  106. package/artifacts/contracts/{components → pool}/Pool.sol/Pool.json +281 -307
  107. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  108. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1594 -0
  109. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  110. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +762 -0
  111. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  112. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +863 -0
  113. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  114. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +730 -0
  115. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  116. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1318 -0
  117. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  118. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
  119. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  120. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1315 -0
  121. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  122. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
  123. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  124. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IApplicationService.sol/IApplicationService.json} +174 -202
  125. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  126. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +772 -0
  127. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  128. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +720 -0
  129. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  130. package/artifacts/contracts/{instance/service/IApplicationService.sol/IApplicationService.json → product/IPricingService.sol/IPricingService.json} +146 -153
  131. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  132. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +985 -0
  133. package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
  134. package/artifacts/contracts/{instance/service → product}/IProductService.sol/IProductService.json +80 -64
  135. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  136. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1183 -0
  137. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  138. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +766 -0
  139. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  140. package/artifacts/contracts/product/PricingService.sol/PricingService.json +1017 -0
  141. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  142. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
  143. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  144. package/artifacts/contracts/product/Product.sol/Product.json +1276 -0
  145. package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
  146. package/artifacts/contracts/product/ProductService.sol/ProductService.json +708 -0
  147. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  148. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +702 -0
  149. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  150. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
  151. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  152. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +191 -18
  153. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  154. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +199 -149
  155. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  156. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
  157. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  158. package/artifacts/contracts/registry/Registry.sol/Registry.json +453 -34
  159. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  160. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1746 -0
  161. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  162. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +372 -97
  163. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  164. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +105 -54
  165. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  166. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
  167. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  168. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1159 -0
  169. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  170. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
  171. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  172. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +316 -153
  173. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  174. package/artifacts/contracts/{components → shared}/Component.sol/Component.json +160 -78
  175. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  176. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1696 -0
  177. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  178. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +812 -0
  179. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  180. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +100 -113
  181. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  182. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
  183. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  184. package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +196 -52
  185. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  186. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
  187. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  188. package/artifacts/contracts/{components/IProductComponent.sol/IProductComponent.json → shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json} +223 -198
  189. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  190. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +59 -14
  191. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  192. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -6
  193. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  194. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +3 -10
  195. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  196. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +87 -9
  197. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  198. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +3 -10
  199. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  200. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
  201. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  202. package/artifacts/contracts/shared/IService.sol/IService.json +96 -19
  203. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  204. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  205. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  206. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1015 -0
  207. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  208. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
  209. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  210. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +133 -0
  211. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  212. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  213. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  214. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +15 -22
  215. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  216. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +98 -26
  217. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  218. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +23 -22
  219. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  220. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
  221. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  222. package/artifacts/contracts/shared/Service.sol/Service.json +103 -21
  223. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  224. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +60 -6
  225. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  226. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
  227. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  228. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
  229. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  230. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +470 -0
  231. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  232. package/artifacts/contracts/staking/Staking.sol/Staking.json +2005 -0
  233. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  234. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
  235. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  236. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
  237. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  238. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
  239. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  240. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
  241. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  242. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
  243. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  244. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
  245. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  246. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +576 -0
  247. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  248. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  249. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  250. package/artifacts/contracts/type/Amount.sol/AmountLib.json +374 -0
  251. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  252. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  253. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  254. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
  255. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  256. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  257. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  258. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  259. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  260. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  261. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  262. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  263. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  264. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  265. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  266. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  267. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  268. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  269. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  270. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  271. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  272. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  273. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  274. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
  275. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  276. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
  277. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  278. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
  279. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  280. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  281. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  282. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  283. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  284. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  285. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  286. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  287. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  288. package/artifacts/contracts/{types → type}/Timestamp.sol/TimestampLib.json +33 -7
  289. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  290. package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
  291. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  292. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +535 -0
  293. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  294. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  295. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  296. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
  297. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  298. package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
  299. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  300. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +617 -0
  301. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  302. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  303. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  304. package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
  305. package/contracts/authorization/AccessAdmin.sol +591 -0
  306. package/contracts/authorization/AccessManagerCloneable.sol +16 -0
  307. package/contracts/authorization/Authorization.sol +218 -0
  308. package/contracts/authorization/IAccess.sol +48 -0
  309. package/contracts/authorization/IAccessAdmin.sol +136 -0
  310. package/contracts/authorization/IAuthorization.sol +54 -0
  311. package/contracts/authorization/IModuleAuthorization.sol +21 -0
  312. package/contracts/authorization/IServiceAuthorization.sol +38 -0
  313. package/contracts/authorization/ModuleAuthorization.sol +78 -0
  314. package/contracts/authorization/ServiceAuthorization.sol +90 -0
  315. package/contracts/distribution/BasicDistribution.sol +149 -0
  316. package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
  317. package/contracts/{components → distribution}/Distribution.sol +178 -157
  318. package/contracts/distribution/DistributionService.sol +337 -0
  319. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  320. package/contracts/distribution/IDistributionComponent.sol +52 -0
  321. package/contracts/{instance/service → distribution}/IDistributionService.sol +37 -38
  322. package/contracts/instance/{BundleManager.sol → BundleSet.sol} +30 -31
  323. package/contracts/instance/IInstance.sol +60 -67
  324. package/contracts/instance/IInstanceService.sol +56 -24
  325. package/contracts/instance/Instance.sol +175 -216
  326. package/contracts/instance/InstanceAdmin.sol +266 -0
  327. package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
  328. package/contracts/instance/InstanceReader.sol +172 -61
  329. package/contracts/instance/InstanceService.sol +310 -356
  330. package/contracts/instance/InstanceServiceManager.sol +12 -26
  331. package/contracts/instance/InstanceStore.sol +277 -0
  332. package/contracts/instance/base/BalanceStore.sol +123 -0
  333. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
  334. package/contracts/instance/base/ObjectCounter.sol +21 -0
  335. package/contracts/instance/base/ObjectLifecycle.sol +106 -0
  336. package/contracts/instance/{ObjectManager.sol → base/ObjectSet.sol} +19 -24
  337. package/contracts/instance/module/IAccess.sol +19 -20
  338. package/contracts/instance/module/IBundle.sol +9 -9
  339. package/contracts/instance/module/IComponents.sol +21 -5
  340. package/contracts/instance/module/IDistribution.sol +6 -6
  341. package/contracts/instance/module/IPolicy.sol +28 -16
  342. package/contracts/instance/module/IRisk.sol +1 -1
  343. package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
  344. package/contracts/oracle/BasicOracle.sol +48 -0
  345. package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
  346. package/contracts/oracle/IOracle.sol +36 -0
  347. package/contracts/oracle/IOracleComponent.sol +33 -0
  348. package/contracts/oracle/IOracleService.sol +65 -0
  349. package/contracts/oracle/Oracle.sol +170 -0
  350. package/contracts/oracle/OracleService.sol +278 -0
  351. package/contracts/oracle/OracleServiceManager.sol +39 -0
  352. package/contracts/pool/BasicPool.sol +164 -0
  353. package/contracts/pool/BasicPoolAuthorization.sol +55 -0
  354. package/contracts/pool/BundleService.sol +405 -0
  355. package/contracts/pool/BundleServiceManager.sol +39 -0
  356. package/contracts/pool/IBundleService.sol +127 -0
  357. package/contracts/pool/IPoolComponent.sol +58 -0
  358. package/contracts/pool/IPoolService.sol +152 -0
  359. package/contracts/pool/Pool.sol +332 -0
  360. package/contracts/pool/PoolService.sol +536 -0
  361. package/contracts/pool/PoolServiceManager.sol +39 -0
  362. package/contracts/product/ApplicationService.sol +230 -0
  363. package/contracts/{instance/service → product}/ApplicationServiceManager.sol +11 -8
  364. package/contracts/product/BasicProduct.sol +82 -0
  365. package/contracts/product/BasicProductAuthorization.sol +43 -0
  366. package/contracts/product/ClaimService.sol +417 -0
  367. package/contracts/{instance/service → product}/ClaimServiceManager.sol +11 -8
  368. package/contracts/{instance/service → product}/IApplicationService.sol +15 -35
  369. package/contracts/product/IClaimService.sol +99 -0
  370. package/contracts/{instance/service → product}/IPolicyService.sol +37 -31
  371. package/contracts/product/IPricingService.sol +39 -0
  372. package/contracts/product/IProductComponent.sol +40 -0
  373. package/contracts/product/IProductService.sol +33 -0
  374. package/contracts/product/PolicyService.sol +476 -0
  375. package/contracts/product/PolicyServiceManager.sol +39 -0
  376. package/contracts/product/PricingService.sol +300 -0
  377. package/contracts/product/PricingServiceManager.sol +39 -0
  378. package/contracts/{components → product}/Product.sol +209 -110
  379. package/contracts/product/ProductService.sol +99 -0
  380. package/contracts/product/ProductServiceManager.sol +39 -0
  381. package/contracts/registry/ChainNft.sol +16 -1
  382. package/contracts/registry/IRegistry.sol +61 -26
  383. package/contracts/registry/IRegistryService.sol +44 -42
  384. package/contracts/registry/ITransferInterceptor.sol +1 -0
  385. package/contracts/registry/Registry.sol +251 -139
  386. package/contracts/registry/RegistryAdmin.sol +365 -0
  387. package/contracts/registry/RegistryService.sol +70 -101
  388. package/contracts/registry/RegistryServiceManager.sol +23 -32
  389. package/contracts/registry/ReleaseLifecycle.sol +27 -0
  390. package/contracts/registry/ReleaseRegistry.sol +487 -0
  391. package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
  392. package/contracts/registry/TokenRegistry.sol +261 -62
  393. package/contracts/shared/Component.sol +280 -0
  394. package/contracts/shared/ComponentService.sol +651 -0
  395. package/contracts/shared/ComponentServiceManager.sol +35 -0
  396. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  397. package/contracts/shared/ERC165.sol +1 -1
  398. package/contracts/{components → shared}/IComponent.sol +23 -27
  399. package/contracts/shared/IComponentService.sol +108 -0
  400. package/contracts/shared/IInstanceLinkedComponent.sol +56 -0
  401. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  402. package/contracts/{instance/base → shared}/ILifecycle.sol +3 -4
  403. package/contracts/shared/INftOwnable.sol +2 -2
  404. package/contracts/shared/IPolicyHolder.sol +29 -10
  405. package/contracts/shared/IRegistryLinked.sol +0 -1
  406. package/contracts/shared/IService.sol +15 -8
  407. package/contracts/shared/InitializableCustom.sol +177 -0
  408. package/contracts/shared/InstanceLinkedComponent.sol +172 -0
  409. package/contracts/shared/KeyValueStore.sol +131 -0
  410. package/contracts/shared/Lifecycle.sol +77 -0
  411. package/contracts/shared/NftIdSet.sol +65 -0
  412. package/contracts/shared/NftOwnable.sol +3 -16
  413. package/contracts/shared/PolicyHolder.sol +40 -19
  414. package/contracts/shared/Registerable.sol +13 -12
  415. package/contracts/shared/RegistryLinked.sol +0 -5
  416. package/contracts/shared/Service.sol +47 -23
  417. package/contracts/shared/TokenHandler.sol +27 -2
  418. package/contracts/staking/IStaking.sol +167 -0
  419. package/contracts/staking/IStakingService.sol +160 -0
  420. package/contracts/staking/StakeManagerLib.sol +231 -0
  421. package/contracts/staking/Staking.sol +516 -0
  422. package/contracts/staking/StakingLifecycle.sol +23 -0
  423. package/contracts/staking/StakingManager.sol +50 -0
  424. package/contracts/staking/StakingReader.sol +183 -0
  425. package/contracts/staking/StakingService.sol +411 -0
  426. package/contracts/staking/StakingServiceManager.sol +44 -0
  427. package/contracts/staking/StakingStore.sol +605 -0
  428. package/contracts/staking/TargetManagerLib.sol +207 -0
  429. package/contracts/{types → type}/AddressSet.sol +1 -1
  430. package/contracts/type/Amount.sol +135 -0
  431. package/contracts/{types → type}/Blocknumber.sol +20 -3
  432. package/contracts/{types → type}/ClaimId.sol +25 -2
  433. package/contracts/{types → type}/Fee.sol +33 -24
  434. package/contracts/{types → type}/NftId.sol +14 -16
  435. package/contracts/{types → type}/NftIdSet.sol +2 -2
  436. package/contracts/type/ObjectType.sol +271 -0
  437. package/contracts/{types → type}/PayoutId.sol +33 -5
  438. package/contracts/{types → type}/Referral.sol +2 -1
  439. package/contracts/type/RequestId.sol +75 -0
  440. package/contracts/{types → type}/RiskId.sol +1 -1
  441. package/contracts/type/RoleId.sol +174 -0
  442. package/contracts/{types → type}/Seconds.sol +27 -0
  443. package/contracts/type/Selector.sol +102 -0
  444. package/contracts/{types → type}/StateId.sol +33 -4
  445. package/contracts/type/String.sol +53 -0
  446. package/contracts/{types → type}/Timestamp.sol +10 -1
  447. package/contracts/{types → type}/UFixed.sol +34 -9
  448. package/contracts/{types → type}/Version.sol +4 -2
  449. package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
  450. package/contracts/{shared → upgradeability}/ProxyManager.sol +36 -7
  451. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  452. package/contracts/{shared → upgradeability}/Versionable.sol +1 -1
  453. package/package.json +8 -5
  454. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  455. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  456. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  457. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  458. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  459. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  460. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  461. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  462. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  463. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -783
  464. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  465. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  466. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -984
  467. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  468. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -261
  469. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  470. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  471. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  472. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  473. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -532
  474. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  475. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -194
  476. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  477. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  478. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +0 -10
  479. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
  480. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -968
  481. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
  482. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -665
  483. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  484. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1093
  485. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  486. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -661
  487. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
  488. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -754
  489. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
  490. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
  491. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  492. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -1724
  493. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  494. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -801
  495. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
  496. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  497. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
  498. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +0 -409
  499. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  500. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  501. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  502. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -428
  503. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  504. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  505. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1021
  506. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  507. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -689
  508. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  509. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -816
  510. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  511. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -653
  512. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  513. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -777
  514. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  515. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
  516. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  517. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  518. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  519. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -547
  520. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  521. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  522. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  523. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  524. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
  525. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  526. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  527. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  528. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  529. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  530. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  531. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
  532. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  533. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  534. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  535. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -521
  536. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  537. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  538. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  539. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  540. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  541. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
  542. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  543. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  544. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  545. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  546. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  547. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  548. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  549. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  550. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
  551. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
  552. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  553. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  554. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  555. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  556. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  557. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  558. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  559. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -166
  560. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  561. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  562. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  563. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  564. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  565. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  566. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
  567. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
  568. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  569. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -142
  570. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  571. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  572. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  573. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  574. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
  575. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
  576. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  577. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  578. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  579. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  580. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  581. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  582. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  583. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  584. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  585. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  586. package/contracts/components/Component.sol +0 -241
  587. package/contracts/components/IDistributionComponent.sol +0 -71
  588. package/contracts/components/IPoolComponent.sol +0 -113
  589. package/contracts/components/IProductComponent.sol +0 -40
  590. package/contracts/components/Pool.sol +0 -299
  591. package/contracts/instance/InstanceAccessManager.sol +0 -297
  592. package/contracts/instance/base/ComponentService.sol +0 -134
  593. package/contracts/instance/base/KeyValueStore.sol +0 -175
  594. package/contracts/instance/base/Lifecycle.sol +0 -109
  595. package/contracts/instance/module/ISetup.sol +0 -33
  596. package/contracts/instance/module/ITreasury.sol +0 -23
  597. package/contracts/instance/service/ApplicationService.sol +0 -350
  598. package/contracts/instance/service/BundleService.sol +0 -336
  599. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  600. package/contracts/instance/service/ClaimService.sol +0 -151
  601. package/contracts/instance/service/DistributionService.sol +0 -450
  602. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  603. package/contracts/instance/service/IBundleService.sol +0 -62
  604. package/contracts/instance/service/IClaimService.sol +0 -61
  605. package/contracts/instance/service/IPoolService.sol +0 -35
  606. package/contracts/instance/service/IProductService.sol +0 -40
  607. package/contracts/instance/service/PolicyService.sol +0 -403
  608. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  609. package/contracts/instance/service/PoolService.sol +0 -163
  610. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  611. package/contracts/instance/service/ProductService.sol +0 -233
  612. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  613. package/contracts/registry/RegistryAccessManager.sol +0 -216
  614. package/contracts/registry/ReleaseManager.sol +0 -322
  615. package/contracts/shared/ContractDeployerLib.sol +0 -72
  616. package/contracts/test/TestFee.sol +0 -25
  617. package/contracts/test/TestRegisterable.sol +0 -18
  618. package/contracts/test/TestRoleId.sol +0 -14
  619. package/contracts/test/TestService.sol +0 -25
  620. package/contracts/test/TestToken.sol +0 -26
  621. package/contracts/test/TestVersion.sol +0 -44
  622. package/contracts/test/TestVersionable.sol +0 -17
  623. package/contracts/types/ChainId.sol +0 -38
  624. package/contracts/types/NumberId.sol +0 -52
  625. package/contracts/types/ObjectType.sol +0 -157
  626. package/contracts/types/RoleId.sol +0 -95
  627. /package/contracts/{types → type}/DistributorType.sol +0 -0
  628. /package/contracts/{types → type}/Key32.sol +0 -0
@@ -0,0 +1,1402 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "BundleService",
4
+ "sourceName": "contracts/pool/BundleService.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": "bundleNftId",
49
+ "type": "uint96"
50
+ },
51
+ {
52
+ "internalType": "StateId",
53
+ "name": "state",
54
+ "type": "uint8"
55
+ },
56
+ {
57
+ "internalType": "Timestamp",
58
+ "name": "expiredAt",
59
+ "type": "uint40"
60
+ }
61
+ ],
62
+ "name": "ErrorBundleServiceBundleNotOpen",
63
+ "type": "error"
64
+ },
65
+ {
66
+ "inputs": [
67
+ {
68
+ "internalType": "NftId",
69
+ "name": "bundleNftId",
70
+ "type": "uint96"
71
+ },
72
+ {
73
+ "internalType": "NftId",
74
+ "name": "expectedPool",
75
+ "type": "uint96"
76
+ },
77
+ {
78
+ "internalType": "NftId",
79
+ "name": "actualPool",
80
+ "type": "uint96"
81
+ }
82
+ ],
83
+ "name": "ErrorBundleServiceBundlePoolMismatch",
84
+ "type": "error"
85
+ },
86
+ {
87
+ "inputs": [
88
+ {
89
+ "internalType": "NftId",
90
+ "name": "bundleNftId",
91
+ "type": "uint96"
92
+ }
93
+ ],
94
+ "name": "ErrorBundleServiceBundleUnknown",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "inputs": [
99
+ {
100
+ "internalType": "NftId",
101
+ "name": "bundleNftId",
102
+ "type": "uint96"
103
+ },
104
+ {
105
+ "internalType": "uint256",
106
+ "name": "openPoliciesCount",
107
+ "type": "uint256"
108
+ }
109
+ ],
110
+ "name": "ErrorBundleServiceBundleWithOpenPolicies",
111
+ "type": "error"
112
+ },
113
+ {
114
+ "inputs": [
115
+ {
116
+ "internalType": "NftId",
117
+ "name": "bundleNftId",
118
+ "type": "uint96"
119
+ },
120
+ {
121
+ "internalType": "Amount",
122
+ "name": "capacityAmount",
123
+ "type": "uint96"
124
+ },
125
+ {
126
+ "internalType": "Amount",
127
+ "name": "collateralAmount",
128
+ "type": "uint96"
129
+ }
130
+ ],
131
+ "name": "ErrorBundleServiceCapacityInsufficient",
132
+ "type": "error"
133
+ },
134
+ {
135
+ "inputs": [
136
+ {
137
+ "internalType": "Amount",
138
+ "name": "amount",
139
+ "type": "uint96"
140
+ },
141
+ {
142
+ "internalType": "Amount",
143
+ "name": "limit",
144
+ "type": "uint96"
145
+ }
146
+ ],
147
+ "name": "ErrorBundleServiceFeesWithdrawAmountExceedsLimit",
148
+ "type": "error"
149
+ },
150
+ {
151
+ "inputs": [],
152
+ "name": "ErrorBundleServiceFeesWithdrawAmountIsZero",
153
+ "type": "error"
154
+ },
155
+ {
156
+ "inputs": [
157
+ {
158
+ "internalType": "address",
159
+ "name": "bundleOwner",
160
+ "type": "address"
161
+ },
162
+ {
163
+ "internalType": "address",
164
+ "name": "tokenHandlerAddress",
165
+ "type": "address"
166
+ },
167
+ {
168
+ "internalType": "Amount",
169
+ "name": "amount",
170
+ "type": "uint96"
171
+ }
172
+ ],
173
+ "name": "ErrorBundleServiceInsufficientAllowance",
174
+ "type": "error"
175
+ },
176
+ {
177
+ "inputs": [
178
+ {
179
+ "internalType": "NftId",
180
+ "name": "policyNftId",
181
+ "type": "uint96"
182
+ }
183
+ ],
184
+ "name": "ErrorBundleServicePolicyNotCloseable",
185
+ "type": "error"
186
+ },
187
+ {
188
+ "inputs": [
189
+ {
190
+ "internalType": "Amount",
191
+ "name": "amount",
192
+ "type": "uint96"
193
+ },
194
+ {
195
+ "internalType": "Amount",
196
+ "name": "limit",
197
+ "type": "uint96"
198
+ }
199
+ ],
200
+ "name": "ErrorBundleServiceStakeAmountExceedsLimit",
201
+ "type": "error"
202
+ },
203
+ {
204
+ "inputs": [
205
+ {
206
+ "internalType": "address",
207
+ "name": "wallet",
208
+ "type": "address"
209
+ },
210
+ {
211
+ "internalType": "address",
212
+ "name": "tokenHandler",
213
+ "type": "address"
214
+ },
215
+ {
216
+ "internalType": "uint256",
217
+ "name": "allowance",
218
+ "type": "uint256"
219
+ },
220
+ {
221
+ "internalType": "uint256",
222
+ "name": "amount",
223
+ "type": "uint256"
224
+ }
225
+ ],
226
+ "name": "ErrorBundleServiceWalletAllowanceTooSmall",
227
+ "type": "error"
228
+ },
229
+ {
230
+ "inputs": [
231
+ {
232
+ "internalType": "NftId",
233
+ "name": "policyNftId",
234
+ "type": "uint96"
235
+ }
236
+ ],
237
+ "name": "ErrorBundleSetPolicyAlreadyActivated",
238
+ "type": "error"
239
+ },
240
+ {
241
+ "inputs": [
242
+ {
243
+ "internalType": "NftId",
244
+ "name": "componentNftId",
245
+ "type": "uint96"
246
+ }
247
+ ],
248
+ "name": "ErrorComponentVerifyingServiceComponentIsLocked",
249
+ "type": "error"
250
+ },
251
+ {
252
+ "inputs": [
253
+ {
254
+ "internalType": "NftId",
255
+ "name": "componentNftId",
256
+ "type": "uint96"
257
+ },
258
+ {
259
+ "internalType": "ObjectType",
260
+ "name": "expectedType",
261
+ "type": "uint8"
262
+ },
263
+ {
264
+ "internalType": "ObjectType",
265
+ "name": "actualType",
266
+ "type": "uint8"
267
+ }
268
+ ],
269
+ "name": "ErrorComponentVerifyingServiceComponentTypeInvalid",
270
+ "type": "error"
271
+ },
272
+ {
273
+ "inputs": [
274
+ {
275
+ "internalType": "NftId",
276
+ "name": "nftId",
277
+ "type": "uint96"
278
+ }
279
+ ],
280
+ "name": "ErrorNftOwnableAlreadyLinked",
281
+ "type": "error"
282
+ },
283
+ {
284
+ "inputs": [
285
+ {
286
+ "internalType": "address",
287
+ "name": "contractAddress",
288
+ "type": "address"
289
+ }
290
+ ],
291
+ "name": "ErrorNftOwnableContractNotRegistered",
292
+ "type": "error"
293
+ },
294
+ {
295
+ "inputs": [],
296
+ "name": "ErrorNftOwnableInitialOwnerZero",
297
+ "type": "error"
298
+ },
299
+ {
300
+ "inputs": [
301
+ {
302
+ "internalType": "address",
303
+ "name": "account",
304
+ "type": "address"
305
+ }
306
+ ],
307
+ "name": "ErrorNftOwnableNotOwner",
308
+ "type": "error"
309
+ },
310
+ {
311
+ "inputs": [
312
+ {
313
+ "internalType": "address",
314
+ "name": "registryAddress",
315
+ "type": "address"
316
+ }
317
+ ],
318
+ "name": "ErrorNotRegistry",
319
+ "type": "error"
320
+ },
321
+ {
322
+ "inputs": [],
323
+ "name": "ErrorServiceNotImplemented",
324
+ "type": "error"
325
+ },
326
+ {
327
+ "inputs": [],
328
+ "name": "InvalidInitialization",
329
+ "type": "error"
330
+ },
331
+ {
332
+ "inputs": [],
333
+ "name": "NotInitializing",
334
+ "type": "error"
335
+ },
336
+ {
337
+ "anonymous": false,
338
+ "inputs": [
339
+ {
340
+ "indexed": false,
341
+ "internalType": "address",
342
+ "name": "authority",
343
+ "type": "address"
344
+ }
345
+ ],
346
+ "name": "AuthorityUpdated",
347
+ "type": "event"
348
+ },
349
+ {
350
+ "anonymous": false,
351
+ "inputs": [
352
+ {
353
+ "indexed": false,
354
+ "internalType": "uint64",
355
+ "name": "version",
356
+ "type": "uint64"
357
+ }
358
+ ],
359
+ "name": "Initialized",
360
+ "type": "event"
361
+ },
362
+ {
363
+ "anonymous": false,
364
+ "inputs": [
365
+ {
366
+ "indexed": false,
367
+ "internalType": "NftId",
368
+ "name": "bundleNftId",
369
+ "type": "uint96"
370
+ }
371
+ ],
372
+ "name": "LogBundleServiceBundleActivated",
373
+ "type": "event"
374
+ },
375
+ {
376
+ "anonymous": false,
377
+ "inputs": [
378
+ {
379
+ "indexed": false,
380
+ "internalType": "NftId",
381
+ "name": "bundleNftId",
382
+ "type": "uint96"
383
+ }
384
+ ],
385
+ "name": "LogBundleServiceBundleLocked",
386
+ "type": "event"
387
+ },
388
+ {
389
+ "anonymous": false,
390
+ "inputs": [
391
+ {
392
+ "indexed": false,
393
+ "internalType": "NftId",
394
+ "name": "bundleNftId",
395
+ "type": "uint96"
396
+ },
397
+ {
398
+ "indexed": false,
399
+ "internalType": "address",
400
+ "name": "recipient",
401
+ "type": "address"
402
+ },
403
+ {
404
+ "indexed": false,
405
+ "internalType": "address",
406
+ "name": "tokenAddress",
407
+ "type": "address"
408
+ },
409
+ {
410
+ "indexed": false,
411
+ "internalType": "Amount",
412
+ "name": "amount",
413
+ "type": "uint96"
414
+ }
415
+ ],
416
+ "name": "LogBundleServiceFeesWithdrawn",
417
+ "type": "event"
418
+ },
419
+ {
420
+ "inputs": [],
421
+ "name": "NAME",
422
+ "outputs": [
423
+ {
424
+ "internalType": "string",
425
+ "name": "",
426
+ "type": "string"
427
+ }
428
+ ],
429
+ "stateMutability": "view",
430
+ "type": "function"
431
+ },
432
+ {
433
+ "inputs": [],
434
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
435
+ "outputs": [
436
+ {
437
+ "internalType": "bytes32",
438
+ "name": "",
439
+ "type": "bytes32"
440
+ }
441
+ ],
442
+ "stateMutability": "view",
443
+ "type": "function"
444
+ },
445
+ {
446
+ "inputs": [],
447
+ "name": "REGISTERABLE_LOCATION_V1",
448
+ "outputs": [
449
+ {
450
+ "internalType": "bytes32",
451
+ "name": "",
452
+ "type": "bytes32"
453
+ }
454
+ ],
455
+ "stateMutability": "view",
456
+ "type": "function"
457
+ },
458
+ {
459
+ "inputs": [],
460
+ "name": "authority",
461
+ "outputs": [
462
+ {
463
+ "internalType": "address",
464
+ "name": "",
465
+ "type": "address"
466
+ }
467
+ ],
468
+ "stateMutability": "view",
469
+ "type": "function"
470
+ },
471
+ {
472
+ "inputs": [
473
+ {
474
+ "internalType": "contract IInstance",
475
+ "name": "instance",
476
+ "type": "address"
477
+ },
478
+ {
479
+ "internalType": "NftId",
480
+ "name": "bundleNftId",
481
+ "type": "uint96"
482
+ }
483
+ ],
484
+ "name": "close",
485
+ "outputs": [],
486
+ "stateMutability": "nonpayable",
487
+ "type": "function"
488
+ },
489
+ {
490
+ "inputs": [
491
+ {
492
+ "internalType": "contract IInstance",
493
+ "name": "instance",
494
+ "type": "address"
495
+ },
496
+ {
497
+ "internalType": "NftId",
498
+ "name": "poolNftId",
499
+ "type": "uint96"
500
+ },
501
+ {
502
+ "internalType": "address",
503
+ "name": "owner",
504
+ "type": "address"
505
+ },
506
+ {
507
+ "components": [
508
+ {
509
+ "internalType": "UFixed",
510
+ "name": "fractionalFee",
511
+ "type": "uint256"
512
+ },
513
+ {
514
+ "internalType": "uint256",
515
+ "name": "fixedFee",
516
+ "type": "uint256"
517
+ }
518
+ ],
519
+ "internalType": "struct Fee",
520
+ "name": "bundleFee",
521
+ "type": "tuple"
522
+ },
523
+ {
524
+ "internalType": "Amount",
525
+ "name": "stakingAmount",
526
+ "type": "uint96"
527
+ },
528
+ {
529
+ "internalType": "Seconds",
530
+ "name": "lifetime",
531
+ "type": "uint40"
532
+ },
533
+ {
534
+ "internalType": "bytes",
535
+ "name": "filter",
536
+ "type": "bytes"
537
+ }
538
+ ],
539
+ "name": "create",
540
+ "outputs": [
541
+ {
542
+ "internalType": "NftId",
543
+ "name": "bundleNftId",
544
+ "type": "uint96"
545
+ }
546
+ ],
547
+ "stateMutability": "nonpayable",
548
+ "type": "function"
549
+ },
550
+ {
551
+ "inputs": [
552
+ {
553
+ "internalType": "NftId",
554
+ "name": "bundleNftId",
555
+ "type": "uint96"
556
+ },
557
+ {
558
+ "internalType": "Seconds",
559
+ "name": "lifetimeExtension",
560
+ "type": "uint40"
561
+ }
562
+ ],
563
+ "name": "extend",
564
+ "outputs": [
565
+ {
566
+ "internalType": "Timestamp",
567
+ "name": "extendedExpiredAt",
568
+ "type": "uint40"
569
+ }
570
+ ],
571
+ "stateMutability": "nonpayable",
572
+ "type": "function"
573
+ },
574
+ {
575
+ "inputs": [],
576
+ "name": "getDomain",
577
+ "outputs": [
578
+ {
579
+ "internalType": "ObjectType",
580
+ "name": "serviceDomain",
581
+ "type": "uint8"
582
+ }
583
+ ],
584
+ "stateMutability": "pure",
585
+ "type": "function"
586
+ },
587
+ {
588
+ "inputs": [],
589
+ "name": "getInitialInfo",
590
+ "outputs": [
591
+ {
592
+ "components": [
593
+ {
594
+ "internalType": "NftId",
595
+ "name": "nftId",
596
+ "type": "uint96"
597
+ },
598
+ {
599
+ "internalType": "NftId",
600
+ "name": "parentNftId",
601
+ "type": "uint96"
602
+ },
603
+ {
604
+ "internalType": "ObjectType",
605
+ "name": "objectType",
606
+ "type": "uint8"
607
+ },
608
+ {
609
+ "internalType": "bool",
610
+ "name": "isInterceptor",
611
+ "type": "bool"
612
+ },
613
+ {
614
+ "internalType": "address",
615
+ "name": "objectAddress",
616
+ "type": "address"
617
+ },
618
+ {
619
+ "internalType": "address",
620
+ "name": "initialOwner",
621
+ "type": "address"
622
+ },
623
+ {
624
+ "internalType": "bytes",
625
+ "name": "data",
626
+ "type": "bytes"
627
+ }
628
+ ],
629
+ "internalType": "struct IRegistry.ObjectInfo",
630
+ "name": "info",
631
+ "type": "tuple"
632
+ }
633
+ ],
634
+ "stateMutability": "view",
635
+ "type": "function"
636
+ },
637
+ {
638
+ "inputs": [],
639
+ "name": "getNftId",
640
+ "outputs": [
641
+ {
642
+ "internalType": "NftId",
643
+ "name": "",
644
+ "type": "uint96"
645
+ }
646
+ ],
647
+ "stateMutability": "view",
648
+ "type": "function"
649
+ },
650
+ {
651
+ "inputs": [],
652
+ "name": "getOwner",
653
+ "outputs": [
654
+ {
655
+ "internalType": "address",
656
+ "name": "",
657
+ "type": "address"
658
+ }
659
+ ],
660
+ "stateMutability": "view",
661
+ "type": "function"
662
+ },
663
+ {
664
+ "inputs": [],
665
+ "name": "getRegistry",
666
+ "outputs": [
667
+ {
668
+ "internalType": "contract IRegistry",
669
+ "name": "",
670
+ "type": "address"
671
+ }
672
+ ],
673
+ "stateMutability": "view",
674
+ "type": "function"
675
+ },
676
+ {
677
+ "inputs": [],
678
+ "name": "getRoleId",
679
+ "outputs": [
680
+ {
681
+ "internalType": "RoleId",
682
+ "name": "serviceRoleId",
683
+ "type": "uint64"
684
+ }
685
+ ],
686
+ "stateMutability": "pure",
687
+ "type": "function"
688
+ },
689
+ {
690
+ "inputs": [],
691
+ "name": "getVersion",
692
+ "outputs": [
693
+ {
694
+ "internalType": "Version",
695
+ "name": "",
696
+ "type": "uint24"
697
+ }
698
+ ],
699
+ "stateMutability": "pure",
700
+ "type": "function"
701
+ },
702
+ {
703
+ "inputs": [],
704
+ "name": "initializeERC165",
705
+ "outputs": [],
706
+ "stateMutability": "nonpayable",
707
+ "type": "function"
708
+ },
709
+ {
710
+ "inputs": [
711
+ {
712
+ "internalType": "address",
713
+ "name": "initialOwner",
714
+ "type": "address"
715
+ },
716
+ {
717
+ "internalType": "address",
718
+ "name": "registryAddress",
719
+ "type": "address"
720
+ }
721
+ ],
722
+ "name": "initializeNftOwnable",
723
+ "outputs": [],
724
+ "stateMutability": "nonpayable",
725
+ "type": "function"
726
+ },
727
+ {
728
+ "inputs": [
729
+ {
730
+ "internalType": "address",
731
+ "name": "registryAddress",
732
+ "type": "address"
733
+ },
734
+ {
735
+ "internalType": "NftId",
736
+ "name": "parentNftId",
737
+ "type": "uint96"
738
+ },
739
+ {
740
+ "internalType": "ObjectType",
741
+ "name": "objectType",
742
+ "type": "uint8"
743
+ },
744
+ {
745
+ "internalType": "bool",
746
+ "name": "isInterceptor",
747
+ "type": "bool"
748
+ },
749
+ {
750
+ "internalType": "address",
751
+ "name": "initialOwner",
752
+ "type": "address"
753
+ },
754
+ {
755
+ "internalType": "bytes",
756
+ "name": "registryData",
757
+ "type": "bytes"
758
+ }
759
+ ],
760
+ "name": "initializeRegisterable",
761
+ "outputs": [],
762
+ "stateMutability": "nonpayable",
763
+ "type": "function"
764
+ },
765
+ {
766
+ "inputs": [
767
+ {
768
+ "internalType": "address",
769
+ "name": "registryAddress",
770
+ "type": "address"
771
+ }
772
+ ],
773
+ "name": "initializeRegistryLinked",
774
+ "outputs": [],
775
+ "stateMutability": "nonpayable",
776
+ "type": "function"
777
+ },
778
+ {
779
+ "inputs": [
780
+ {
781
+ "internalType": "address",
782
+ "name": "registry",
783
+ "type": "address"
784
+ },
785
+ {
786
+ "internalType": "address",
787
+ "name": "authority",
788
+ "type": "address"
789
+ },
790
+ {
791
+ "internalType": "address",
792
+ "name": "initialOwner",
793
+ "type": "address"
794
+ }
795
+ ],
796
+ "name": "initializeService",
797
+ "outputs": [],
798
+ "stateMutability": "nonpayable",
799
+ "type": "function"
800
+ },
801
+ {
802
+ "inputs": [
803
+ {
804
+ "internalType": "address",
805
+ "name": "activatedBy",
806
+ "type": "address"
807
+ },
808
+ {
809
+ "internalType": "bytes",
810
+ "name": "data",
811
+ "type": "bytes"
812
+ }
813
+ ],
814
+ "name": "initializeVersionable",
815
+ "outputs": [],
816
+ "stateMutability": "nonpayable",
817
+ "type": "function"
818
+ },
819
+ {
820
+ "inputs": [],
821
+ "name": "isConsumingScheduledOp",
822
+ "outputs": [
823
+ {
824
+ "internalType": "bytes4",
825
+ "name": "",
826
+ "type": "bytes4"
827
+ }
828
+ ],
829
+ "stateMutability": "view",
830
+ "type": "function"
831
+ },
832
+ {
833
+ "inputs": [],
834
+ "name": "linkToRegisteredNftId",
835
+ "outputs": [
836
+ {
837
+ "internalType": "NftId",
838
+ "name": "nftId",
839
+ "type": "uint96"
840
+ }
841
+ ],
842
+ "stateMutability": "nonpayable",
843
+ "type": "function"
844
+ },
845
+ {
846
+ "inputs": [
847
+ {
848
+ "internalType": "NftId",
849
+ "name": "bundleNftId",
850
+ "type": "uint96"
851
+ }
852
+ ],
853
+ "name": "lock",
854
+ "outputs": [],
855
+ "stateMutability": "nonpayable",
856
+ "type": "function"
857
+ },
858
+ {
859
+ "inputs": [
860
+ {
861
+ "internalType": "contract IInstance",
862
+ "name": "instance",
863
+ "type": "address"
864
+ },
865
+ {
866
+ "internalType": "NftId",
867
+ "name": "policyNftId",
868
+ "type": "uint96"
869
+ },
870
+ {
871
+ "internalType": "NftId",
872
+ "name": "bundleNftId",
873
+ "type": "uint96"
874
+ },
875
+ {
876
+ "internalType": "Amount",
877
+ "name": "collateralAmount",
878
+ "type": "uint96"
879
+ }
880
+ ],
881
+ "name": "lockCollateral",
882
+ "outputs": [],
883
+ "stateMutability": "nonpayable",
884
+ "type": "function"
885
+ },
886
+ {
887
+ "inputs": [
888
+ {
889
+ "internalType": "bytes4",
890
+ "name": "interfaceId",
891
+ "type": "bytes4"
892
+ }
893
+ ],
894
+ "name": "registerInterface",
895
+ "outputs": [],
896
+ "stateMutability": "nonpayable",
897
+ "type": "function"
898
+ },
899
+ {
900
+ "inputs": [
901
+ {
902
+ "internalType": "contract IInstance",
903
+ "name": "instance",
904
+ "type": "address"
905
+ },
906
+ {
907
+ "internalType": "NftId",
908
+ "name": "policyNftId",
909
+ "type": "uint96"
910
+ },
911
+ {
912
+ "internalType": "NftId",
913
+ "name": "bundleNftId",
914
+ "type": "uint96"
915
+ },
916
+ {
917
+ "internalType": "Amount",
918
+ "name": "collateralAmount",
919
+ "type": "uint96"
920
+ }
921
+ ],
922
+ "name": "releaseCollateral",
923
+ "outputs": [],
924
+ "stateMutability": "nonpayable",
925
+ "type": "function"
926
+ },
927
+ {
928
+ "inputs": [
929
+ {
930
+ "internalType": "address",
931
+ "name": "newAuthority",
932
+ "type": "address"
933
+ }
934
+ ],
935
+ "name": "setAuthority",
936
+ "outputs": [],
937
+ "stateMutability": "nonpayable",
938
+ "type": "function"
939
+ },
940
+ {
941
+ "inputs": [
942
+ {
943
+ "internalType": "NftId",
944
+ "name": "bundleNftId",
945
+ "type": "uint96"
946
+ },
947
+ {
948
+ "components": [
949
+ {
950
+ "internalType": "UFixed",
951
+ "name": "fractionalFee",
952
+ "type": "uint256"
953
+ },
954
+ {
955
+ "internalType": "uint256",
956
+ "name": "fixedFee",
957
+ "type": "uint256"
958
+ }
959
+ ],
960
+ "internalType": "struct Fee",
961
+ "name": "fee",
962
+ "type": "tuple"
963
+ }
964
+ ],
965
+ "name": "setFee",
966
+ "outputs": [],
967
+ "stateMutability": "nonpayable",
968
+ "type": "function"
969
+ },
970
+ {
971
+ "inputs": [
972
+ {
973
+ "internalType": "contract IInstance",
974
+ "name": "instance",
975
+ "type": "address"
976
+ },
977
+ {
978
+ "internalType": "NftId",
979
+ "name": "bundleNftId",
980
+ "type": "uint96"
981
+ },
982
+ {
983
+ "internalType": "Amount",
984
+ "name": "amount",
985
+ "type": "uint96"
986
+ }
987
+ ],
988
+ "name": "stake",
989
+ "outputs": [],
990
+ "stateMutability": "nonpayable",
991
+ "type": "function"
992
+ },
993
+ {
994
+ "inputs": [
995
+ {
996
+ "internalType": "bytes4",
997
+ "name": "interfaceId",
998
+ "type": "bytes4"
999
+ }
1000
+ ],
1001
+ "name": "supportsInterface",
1002
+ "outputs": [
1003
+ {
1004
+ "internalType": "bool",
1005
+ "name": "",
1006
+ "type": "bool"
1007
+ }
1008
+ ],
1009
+ "stateMutability": "view",
1010
+ "type": "function"
1011
+ },
1012
+ {
1013
+ "inputs": [
1014
+ {
1015
+ "internalType": "contract IInstance",
1016
+ "name": "instance",
1017
+ "type": "address"
1018
+ },
1019
+ {
1020
+ "internalType": "NftId",
1021
+ "name": "policyNftId",
1022
+ "type": "uint96"
1023
+ }
1024
+ ],
1025
+ "name": "unlinkPolicy",
1026
+ "outputs": [],
1027
+ "stateMutability": "nonpayable",
1028
+ "type": "function"
1029
+ },
1030
+ {
1031
+ "inputs": [
1032
+ {
1033
+ "internalType": "NftId",
1034
+ "name": "bundleNftId",
1035
+ "type": "uint96"
1036
+ }
1037
+ ],
1038
+ "name": "unlock",
1039
+ "outputs": [],
1040
+ "stateMutability": "nonpayable",
1041
+ "type": "function"
1042
+ },
1043
+ {
1044
+ "inputs": [
1045
+ {
1046
+ "internalType": "contract IInstance",
1047
+ "name": "instance",
1048
+ "type": "address"
1049
+ },
1050
+ {
1051
+ "internalType": "NftId",
1052
+ "name": "bundleNftId",
1053
+ "type": "uint96"
1054
+ },
1055
+ {
1056
+ "internalType": "Amount",
1057
+ "name": "amount",
1058
+ "type": "uint96"
1059
+ }
1060
+ ],
1061
+ "name": "unstake",
1062
+ "outputs": [],
1063
+ "stateMutability": "nonpayable",
1064
+ "type": "function"
1065
+ },
1066
+ {
1067
+ "inputs": [
1068
+ {
1069
+ "internalType": "bytes",
1070
+ "name": "data",
1071
+ "type": "bytes"
1072
+ }
1073
+ ],
1074
+ "name": "upgradeVersionable",
1075
+ "outputs": [],
1076
+ "stateMutability": "nonpayable",
1077
+ "type": "function"
1078
+ },
1079
+ {
1080
+ "inputs": [
1081
+ {
1082
+ "internalType": "NftId",
1083
+ "name": "bundleNftId",
1084
+ "type": "uint96"
1085
+ },
1086
+ {
1087
+ "internalType": "Amount",
1088
+ "name": "amount",
1089
+ "type": "uint96"
1090
+ }
1091
+ ],
1092
+ "name": "withdrawBundleFees",
1093
+ "outputs": [
1094
+ {
1095
+ "internalType": "Amount",
1096
+ "name": "withdrawnAmount",
1097
+ "type": "uint96"
1098
+ }
1099
+ ],
1100
+ "stateMutability": "nonpayable",
1101
+ "type": "function"
1102
+ }
1103
+ ],
1104
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b61544a806100d65f395ff3fe608060405234801561000f575f80fd5b5060043610610208575f3560e01c8063644c45e01161011f578063aa9acb2c116100a9578063b68d180911610079578063b68d1809146104f8578063bf7e214f14610507578063e283b4a91461050f578063f3d0e5d214610522578063f7c34ee01461054b575f80fd5b8063aa9acb2c146104ab578063ad328d9f146104be578063ada9652e146104d1578063b5346af5146104e5575f80fd5b80637a9e5e4b116100ef5780637a9e5e4b14610423578063893d20e8146104365780638e32e9791461043e5780638fb3603714610451578063a3f4df7e14610472575f80fd5b8063644c45e0146103c0578063675393bf146103dd5780636c741e78146103f057806376429bc014610410575f80fd5b806325fa796b116101a057806336fc697e1161017057806336fc697e1461035a57806349bb9e4b146103625780634adcf9091461037557806354e50779146103885780635ab1bd531461039b575f80fd5b806325fa796b1461030e57806327bb7a33146103215780632d2cf22214610334578063329d6e7414610347575f80fd5b8063138461e0116101db578063138461e0146102935780631eff4b22146102b35780631f8e8f36146102e8578063214cdb80146102fb575f80fd5b806301ffc9a71461020c57806306fa45651461024d5780630d8e6e2c146102625780630fec111c1461027e575b5f80fd5b61023861021a36600461431c565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61026061025b366004614357565b61055e565b005b61026a61073e565b60405162ffffff9091168152602001610244565b6102866107c5565b60405161024491906143a0565b61029b610951565b6040516001600160601b039091168152602001610244565b6102da7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610244565b6102606102f6366004614536565b61095b565b61026061030936600461431c565b610c07565b61026061031c36600461457e565b610c33565b61026061032f366004614659565b610d6e565b61026061034236600461457e565b610e13565b6102606103553660046146ec565b611033565b610260611175565b61026061037036600461471d565b6111ba565b610260610383366004614769565b6112b5565b61029b6103963660046147c2565b611734565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610244565b5f805160206153b5833981519152546001600160601b031661029b565b6102606103eb3660046147f9565b61219d565b6103f86122aa565b6040516001600160401b039091168152602001610244565b61026061041e366004614814565b6123a0565b6102606104313660046147f9565b612565565b6103a86125e7565b61026061044c366004614830565b612718565b610459612855565b6040516001600160e01b03199091168152602001610244565b61049e6040518060400160405280600d81526020016c42756e646c655365727669636560981b81525081565b604051610244919061486d565b6102606104b9366004614814565b61288a565b6102606104cc366004614769565b612ac1565b6102da5f805160206153b583398151915281565b6102606104f3366004614357565b612bab565b604051601e8152602001610244565b6103a8612d82565b61029b61051d366004614891565b612d9d565b610535610530366004614969565b6132dd565b60405164ffffffffff9091168152602001610244565b610260610559366004614995565b613325565b5f610569600f61339b565b92505050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105cd91906149c1565b6001600160a01b031663fe1f18d68360046040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015610624575f80fd5b505af1158015610636573d5f803e3d5ffd5b505050505f816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015610677573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069b91906149c1565b6040516306fa456560e01b81526001600160601b03851660048201529091506001600160a01b038216906306fa4565906024015f604051808303815f87803b1580156106e5575f80fd5b505af11580156106f7573d5f803e3d5ffd5b50506040516001600160601b03861681527f87cfb697b5d649751f13ba6e2e51778a1fd0a1f260df7281952986c453708e71925060200190505b60405180910390a1505050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801561079c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c091906149dc565b905090565b6107cd6142df565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610843573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108679190614a0e565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016108af6125e7565b6001600160a01b031681526020018260010180546108cc90614a29565b80601f01602080910402602001604051908101604052809291908181526020018280546108f890614a29565b80156109435780601f1061091a57610100808354040283529160200191610943565b820191905f5260205f20905b81548152906001019060200180831161092657829003601f168201915b505050505081525091505090565b5f6107c030613437565b5f80610967600f61339b565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109cd91906149c1565b604051634793b4ab60e01b81526001600160601b03871660048201529091505f906001600160a01b03831690634793b4ab906024015f60405180830381865afa158015610a1c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610a439190810190614abb565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015610a9f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ac39190614ba6565b15610af1576040516349e9f38360e01b81526001600160601b03871660048201526024015b60405180910390fd5b8051610afd9085613630565b15610b3957805160405163dab86e4560e01b81526001600160601b03808916600483015291821660248201529085166044820152606401610ae8565b848160200181905250826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b7e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba291906149c1565b6001600160a01b03166351dd844b878360ff6040518463ffffffff1660e01b8152600401610bd293929190614c45565b5f604051808303815f87803b158015610be9575f80fd5b505af1158015610bfb573d5f803e3d5ffd5b50505050505050505050565b610c0f6136bc565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b610c3f335b5f366136f4565b6004805460408051631a99b41b60e31b815290516001600160a01b03928316936325e451d39388169263d4cda0d892818301926020928290030181865afa158015610c8c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cb091906149c1565b848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610cf9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d1d9190614a0e565b6040518563ffffffff1660e01b8152600401610d3c9493929190614c79565b5f604051808303815f87803b158015610d53575f80fd5b505af1158015610d65573d5f803e3d5ffd5b50505050505050565b610d766136bc565b610d808287613325565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610e098382614cef565b5050505050505050565b610e1c33610c38565b5f836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e7d91906149c1565b6040516317bb785d60e21b81526001600160601b03851660048201529091505f90819081906001600160a01b03851690635eede17490602401606060405180830381865afa158015610ed1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ef59190614da9565b9250925092505f610f0f84610f0a85856137ea565b61386f565b9050610f1b81876138b9565b15610f4c57604051630e9326bb60e01b81526001600160601b03808816600483015282166024820152604401610ae8565b60045f9054906101000a90046001600160a01b03166001600160a01b031663e618053f86898973__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610fb9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fdd9190614a0e565b6040518563ffffffff1660e01b8152600401610ffc9493929190614c79565b5f604051808303815f87803b158015611013575f80fd5b505af1158015611025573d5f803e3d5ffd5b505050505050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61105561073e565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611093573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110b79190614dfc565b5f805160206153f58339815191528054600160401b900460ff16806110e9575080546001600160401b03808416911610155b156111075760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561113183613903565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610731565b61117d6136bc565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f805160206153f58339815191528054600160401b810460ff1615906001600160401b03165f811580156111eb5750825b90505f826001600160401b031660011480156112065750303b155b905081158015611214575080155b156112325760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561125c57845460ff60401b1916600160401b1785555b611266878761390b565b8315610d6557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a150505050505050565b6112be33610c38565b5f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112fb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061131f91906149c1565b90505f6001600160a01b03821663a5961b4c73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038816601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156113a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c59190614e17565b6040518263ffffffff1660e01b81526004016113e391815260200190565b608060405180830381865afa1580156113fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114229190614e4a565b60200151604051634793b4ab60e01b81526001600160601b03861660048201529091505f906001600160a01b03841690634793b4ab906024015f60405180830381865afa158015611475573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261149c9190810190614abb565b90506114b18260045b60ff9081169116141590565b806115395750611539816080015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611506573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061152a9190614ece565b64ffffffffff90811691161090565b1561157e57608081015160405163bf5b8f0960e01b81526001600160601b038716600482015260ff8416602482015264ffffffffff9091166044820152606401610ae8565b5f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115df91906149c1565b6040516317bb785d60e21b81526001600160601b03881660048201529091505f90819081906001600160a01b03851690635eede17490602401606060405180830381865afa158015611633573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116579190614da9565b9250925092505f61166c84610f0a85856137ea565b9050611678818a6138b9565b156116b15760405163826a5ff960e01b81526001600160601b03808c16600483015280831660248301528a166044820152606401610ae8565b60405163248a77dd60e01b81526001600160601b03808c1660048301528a1660248201526001600160a01b0386169063248a77dd906044016020604051808303815f875af1158015611705573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117299190614a0e565b506110258c8c613a7b565b5f8080611741600f61339b565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611783573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117a791906149c1565b60405163f0ea17c360e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063f0ea17c3906024015f60405180830381865afa1580156117f6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261181d9190810190614ef4565b6080810151604051634793b4ab60e01b81526001600160601b038a166004820152919250905f906001600160a01b03851690634793b4ab906024015f60405180830381865afa158015611872573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526118999190810190614abb565b9050879650866001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af415801561190b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061192f9190614a0e565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015611978573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061199c9190614ba6565b15611a1757604051630232ca4960e01b81526001600160601b038a1660048201526001600160a01b03851690630232ca4990602401602060405180830381865afa1580156119ec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a109190614a0e565b9650611bb5565b604051630232ca4960e01b81526001600160601b038a8116600483015273__$3bac17678db7ae928afa209f2f44deec9c$__916398058c4c918a16906001600160a01b03881690630232ca4990602401602060405180830381865afa158015611a82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aa69190614a0e565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015611aef573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b139190614ba6565b15611bb557604051630232ca4960e01b81526001600160601b038a16600482015287906001600160a01b03861690630232ca4990602401602060405180830381865afa158015611b65573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b899190614a0e565b60405163d98a83b760e01b81526001600160601b03928316600482015291166024820152604401610ae8565b604051630a4d29dd60e31b81526001600160601b038816600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af4158015611c0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c2f9190614ba6565b15611c4d5760405163707dd03960e01b815260040160405180910390fd5b60408381015160608501519151636eb1769f60e11b81526001600160a01b038581166004830152928316602482015290915f919083169063dd62ed3e90604401602060405180830381865afa158015611ca8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ccc9190614e17565b60405163046e44af60e11b81526001600160601b038b16600482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015611d25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d499190614e17565b811015611e0c57606085015160405163046e44af60e11b81526001600160601b038b166004820152859190839073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015611db0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dd49190614e17565b60405163047d3a6160e51b81526001600160a01b03948516600482015293909216602484015260448301526064820152608401610ae8565b5f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6d91906149c1565b905060045f9054906101000a90046001600160a01b03166001600160a01b031663e618053f828e73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611edb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eff9190614a0e565b8e6040518563ffffffff1660e01b8152600401611f1f9493929190614c79565b5f604051808303815f87803b158015611f36575f80fd5b505af1158015611f48573d5f803e3d5ffd5b5050505060045f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a2828b8d73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611fb9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fdd9190614a0e565b6040518563ffffffff1660e01b8152600401611ffc9493929190614c79565b5f604051808303815f87803b158015612013575f80fd5b505af1158015612025573d5f803e3d5ffd5b50505050505f61203d6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038e1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561208a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120ae91906149c1565b606087015160405163c661667d60e01b81526001600160a01b03888116600483015280841660248301526001600160601b038e16604483015292935091169063c661667d906064015f604051808303815f87803b15801561210d575f80fd5b505af115801561211f573d5f803e3d5ffd5b505050507fc3eff56dd5436528da6d208eff7a92ed71cafc177d49a9c55303bff3b1bcf8d28c82858d60405161218694939291906001600160601b0394851681526001600160a01b0393841660208201529190921660408201529116606082015260800190565b60405180910390a150505050505050505092915050565b6121a56136bc565b806001600160a01b03163b5f036121da5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610ae8565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015612254575060408051601f3d908101601f1916820190925261225191810190614ba6565b60015b61227c5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610ae8565b806122a55760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610ae8565b505b50565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3601e604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015612315573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123399190614fcc565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af415801561237c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c09190614dfc565b6123a933610c38565b816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123e5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061240991906149c1565b6040516375d357df60e01b81526001600160601b03831660048201526001600160a01b0391909116906375d357df90602401602060405180830381865afa158015612456573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061247a9190614ba6565b6124a2576040516392bb4dff60e01b81526001600160601b0382166004820152602401610ae8565b816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124de573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061250291906149c1565b604051631351fccf60e31b81526001600160601b03831660048201526001600160a01b039190911690639a8fe678906024015f604051808303815f87803b15801561254b575f80fd5b505af115801561255d573d5f803e3d5ffd5b505050505050565b3361256e612d82565b6001600160a01b0316816001600160a01b0316146125a95760405162d1953b60e31b81526001600160a01b0382166004820152602401610ae8565b816001600160a01b03163b5f036125de576040516361798f2f60e11b81526001600160a01b0383166004820152602401610ae8565b6122a582613d1c565b5f805f805160206153b583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612653573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126779190614ba6565b15612702576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156126d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126fc91906149c1565b91505090565b54600160601b90046001600160a01b0316919050565b6127206136bc565b61279c83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612760573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127849190614a0e565b60085f8560405180602001604052805f815250610d6e565b6001600160a01b038216156127b9576127b482613d7c565b612830565b5f6127c46002613d8d565b905061282e816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612805573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061282991906149c1565b613d7c565b505b612840634a531f3360e01b610c07565b61285063daf9067160e01b610c07565b505050565b5f805160206153d583398151915280545f9190600160a01b900460ff1661287c575f6126fc565b638fb3603760e01b91505090565b61289333610c38565b816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128f391906149c1565b6001600160a01b031663fe1f18d68260c86040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b15801561294a575f80fd5b505af115801561295c573d5f803e3d5ffd5b505050505f826001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa15801561299d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129c191906149c1565b6040516322cc1d4560e11b81526001600160601b03841660048201529091505f906001600160a01b038316906345983a8a90602401602060405180830381865afa158015612a11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a359190614e17565b90508015612a68576040516356a410b760e01b81526001600160601b038416600482015260248101829052604401610ae8565b60405163b5346af560e01b81526001600160601b03841660048201526001600160a01b0383169063b5346af5906024015f604051808303815f87803b158015612aaf575f80fd5b505af1158015610e09573d5f803e3d5ffd5b612aca33610c38565b836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b06573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b2a91906149c1565b6040516353ebe12960e01b81526001600160601b038085166004830152831660248201526001600160a01b0391909116906353ebe129906044016020604051808303815f875af1158015612b80573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ba49190614a0e565b5050505050565b5f612bb6600f61339b565b92505050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bf6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c1a91906149c1565b6001600160a01b031663fe1f18d683606e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015612c71575f80fd5b505af1158015612c83573d5f803e3d5ffd5b505050505f816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cc4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ce891906149c1565b60405163b5346af560e01b81526001600160601b03851660048201529091506001600160a01b0382169063b5346af5906024015f604051808303815f87803b158015612d32575f80fd5b505af1158015612d44573d5f803e3d5ffd5b50506040516001600160601b03861681527f6764112d27879e5bb12f07fde08a48629ec22e603c75c9942ba62a06c95a55f492506020019050610731565b5f805160206153d5833981519152546001600160a01b031690565b5f612da733610c38565b60035f9054906101000a90046001600160a01b03166001600160a01b031663c2bf08c86040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e1c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e409190614a0e565b6001600160601b031681526020018b6001600160601b03168152602001612e65601e90565b60ff1681526020015f151581526020015f6001600160a01b031681526020018a6001600160a01b0316815260200160405180602001604052805f8152508152506040518263ffffffff1660e01b8152600401612ec191906143a0565b6020604051808303815f875af1158015612edd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f019190614a0e565b90505f896001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f6491906149c1565b9050806001600160a01b031663a46eb8dc836040518060c001604052808d6001600160601b031681526020018b815260200188888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050509082525064ffffffffff8a16602080830191909152604080516356db0c1960e11b81528151919093019273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9263adb61832926004808401938290030181865af415801561302d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130519190614ece565b6040516352bcc5a760e11b815264ffffffffff9182166004820152908b16602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af41580156130ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130d29190614ece565b64ffffffffff1681525f6020909101526040516001600160e01b031960e085901b168152613104929190600401614fe7565b5f604051808303815f87803b15801561311b575f80fd5b505af115801561312d573d5f803e3d5ffd5b5050505060045f9054906101000a90046001600160a01b03166001600160a01b03166325e451d382848973__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561319e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131c29190614a0e565b6040518563ffffffff1660e01b81526004016131e19493929190614c79565b5f604051808303815f87803b1580156131f8575f80fd5b505af115801561320a573d5f803e3d5ffd5b505050505f8a6001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa15801561324b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061326f91906149c1565b6040516346f0e8a760e11b81526001600160601b03851660048201529091506001600160a01b03821690638de1d14e906024015f604051808303815f87803b1580156132b9575f80fd5b505af11580156132cb573d5f803e3d5ffd5b50505050505098975050505050505050565b5f6132e733610c38565b60405162461bcd60e51b8152602060048201526013602482015272139bdd081a5b5c1b195b595b9d1959081e595d606a1b6044820152606401610ae8565b61332d6136bc565b6133368161219d565b61333e611175565b6001600160a01b0382166133655760405163f17ef42d60e01b815260040160405180910390fd5b505f805160206153b583398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f6133a46142df565b5f6133b76001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa1580156133fb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061341f9190614a0e565b925061342d83856001613e94565b9395909450915050565b5f805f805160206153b583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156134a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134c79190614ba6565b156134f35780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610ae8565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613545573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135699190614ba6565b6135915760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610ae8565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa1580156135e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136079190614a0e565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044015b602060405180830381865af4158015613691573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136b59190614ba6565b9392505050565b5f805160206153f583398151915254600160401b900460ff166136f257604051631afcd79f60e31b815260040160405180910390fd5b565b5f805160206153d58339815191525f8061372c61370f612d82565b873061371e60045f8a8c615008565b6137279161502f565b614136565b915091508161255d5763ffffffff8116156137c757825460ff60a01b1916600160a01b17835561375a612d82565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161378993929190615067565b5f604051808303815f87803b1580156137a0575f80fd5b505af11580156137b2573d5f803e3d5ffd5b5050845460ff60a01b191685555061255d9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610ae8565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af415801561384b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136b59190614a0e565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401613830565b6040516304d40eb160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906309a81d6290604401613676565b6102086136bc565b5f805160206153f58339815191528054600160401b810460ff1615906001600160401b03165f8115801561393c5750825b90505f826001600160401b031660011480156139575750303b155b905081158015613965575080155b156139835760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156139ad57845460ff60401b1916600160401b1785555b5f80878060200190518101906139c391906150a6565b90925090506139d3825f8b612718565b6139dd6002613d8d565b600380546001600160a01b0319166001600160a01b0392909216919091179055613a07600b613d8d565b600480546001600160a01b0319166001600160a01b0392909216919091179055613a3763da16599760e01b610c07565b50508315610d6557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016112a4565b5f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ab8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613adc91906149c1565b60405163bd7d9d8560e01b81526001600160601b03841660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015613b2b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613b5291908101906150fb565b6101c0810151604051638d38cd4b60e01b815264ffffffffff909116600482015290915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015613bb0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bd49190614ba6565b8015613c2b5750613c2b816101c0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611506573d5f803e3d5ffd5b15613c54576040516311db797560e31b81526001600160601b0384166004820152602401610ae8565b5f846001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c91573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cb591906149c1565b604051630331f98560e21b81526001600160601b03861660048201529091506001600160a01b03821690630cc7e614906024015f604051808303815f87803b158015613cff575f80fd5b505af1158015613d11573d5f803e3d5ffd5b505050505050505050565b5f805160206153d583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b613d846136bc565b6122a78161423e565b5f613da06001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015613e03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e279190614fcc565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613e6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e8e91906149c1565b92915050565b613e9c6142df565b5f80613eb06001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613efd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613f2491908101906152a1565b9250613f3185600b6114a5565b15613f8757604083015160ff868116911614613f8257604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610ae8565b614023565b613fa28360400151613f97600c90565b60ff90811691161490565b80613fb85750613fb88360400151613f97600f90565b80613fce5750613fce8360400151613f97600e90565b80613fe45750613fe48360400151613f97600d90565b61402357604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610ae8565b614030836020015161424f565b9150831561412d57816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015614074573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061409891906149c1565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa1580156140e0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141049190614ba6565b1561412d57604051637d71120960e11b81526001600160601b0387166004820152602401610ae8565b50935093915050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516141a49190615371565b5f60405180830381855afa9150503d805f81146141dc576040519150601f19603f3d011682016040523d82523d5f602084013e6141e1565b606091505b5091509150811561423357604081511061421357808060200190518101906142099190615387565b9094509250614233565b602081511061423357808060200190518101906142309190614ba6565b93505b505094509492505050565b6142466136bc565b6122a781613d1c565b5f6142626001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa1580156142ae573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526142d591908101906152a1565b6080015192915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f6020828403121561432c575f80fd5b81356001600160e01b0319811681146136b5575f80fd5b6001600160601b03811681146122a7575f80fd5b5f60208284031215614367575f80fd5b81356136b581614343565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516143e8608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261442c610100840182614372565b949350505050565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b038111828210171561446a5761446a614434565b60405290565b60405160c081016001600160401b038111828210171561446a5761446a614434565b60405161022081016001600160401b038111828210171561446a5761446a614434565b60405160e081016001600160401b038111828210171561446a5761446a614434565b604051601f8201601f191681016001600160401b03811182821017156144ff576144ff614434565b604052919050565b5f60408284031215614517575f80fd5b61451f614448565b823581526020928301359281019290925250919050565b5f8060608385031215614547575f80fd5b823561455281614343565b91506145618460208501614507565b90509250929050565b6001600160a01b03811681146122a7575f80fd5b5f805f60608486031215614590575f80fd5b833561459b8161456a565b925060208401356145ab81614343565b915060408401356145bb81614343565b809150509250925092565b60ff811681146122a7575f80fd5b80151581146122a7575f80fd5b5f6001600160401b038211156145f9576145f9614434565b50601f01601f191660200190565b5f82601f830112614616575f80fd5b8135614629614624826145e1565b6144d7565b81815284602083860101111561463d575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f805f8060c0878903121561466e575f80fd5b86356146798161456a565b9550602087013561468981614343565b94506040870135614699816145c6565b935060608701356146a9816145d4565b925060808701356146b98161456a565b915060a08701356001600160401b038111156146d3575f80fd5b6146df89828a01614607565b9150509295509295509295565b5f602082840312156146fc575f80fd5b81356001600160401b03811115614711575f80fd5b61442c84828501614607565b5f806040838503121561472e575f80fd5b82356147398161456a565b915060208301356001600160401b03811115614753575f80fd5b61475f85828601614607565b9150509250929050565b5f805f806080858703121561477c575f80fd5b84356147878161456a565b9350602085013561479781614343565b925060408501356147a781614343565b915060608501356147b781614343565b939692955090935050565b5f80604083850312156147d3575f80fd5b82356147de81614343565b915060208301356147ee81614343565b809150509250929050565b5f60208284031215614809575f80fd5b81356136b58161456a565b5f8060408385031215614825575f80fd5b82356147de8161456a565b5f805f60608486031215614842575f80fd5b833561484d8161456a565b9250602084013561485d8161456a565b915060408401356145bb8161456a565b602081525f6136b56020830184614372565b64ffffffffff811681146122a7575f80fd5b5f805f805f805f80610100898b0312156148a9575f80fd5b88356148b48161456a565b975060208901356148c481614343565b965060408901356148d48161456a565b95506148e38a60608b01614507565b945060a08901356148f381614343565b935060c08901356149038161487f565b925060e08901356001600160401b0381111561491d575f80fd5b8901601f81018b1361492d575f80fd5b80356001600160401b03811115614942575f80fd5b8b6020828401011115614953575f80fd5b989b979a50959850939692959194602001935050565b5f806040838503121561497a575f80fd5b823561498581614343565b915060208301356147ee8161487f565b5f80604083850312156149a6575f80fd5b82356149b18161456a565b915060208301356147ee8161456a565b5f602082840312156149d1575f80fd5b81516136b58161456a565b5f602082840312156149ec575f80fd5b815162ffffff811681146136b5575f80fd5b8051614a0981614343565b919050565b5f60208284031215614a1e575f80fd5b81516136b581614343565b600181811c90821680614a3d57607f821691505b602082108103614a5b57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f82601f830112614a70575f80fd5b8151602083015f614a83614624846145e1565b9050828152858383011115614a96575f80fd5b8282602083015e5f92810160200192909252509392505050565b8051614a098161487f565b5f60208284031215614acb575f80fd5b81516001600160401b03811115614ae0575f80fd5b820180840360e0811215614af2575f80fd5b614afa614470565b8251614b0581614343565b81526040601f1983011215614b18575f80fd5b614b20614448565b6020848101518252604085015181830152820152606083015191506001600160401b03821115614b4e575f80fd5b614b5a86838501614a61565b6040820152614b6b60808401614ab0565b6060820152614b7c60a08401614ab0565b6080820152614b8d60c08401614ab0565b60a082015295945050505050565b8051614a09816145d4565b5f60208284031215614bb6575f80fd5b81516136b5816145d4565b6001600160601b0381511682525f6020820151805160208501526020810151604085015250604082015160e06060850152614bff60e0850182614372565b905064ffffffffff60608401511660808501526080830151614c2a60a086018264ffffffffff169052565b5060a083015164ffffffffff811660c0860152509392505050565b6001600160601b0384168152606060208201525f614c666060830185614bc1565b905060ff83166040830152949350505050565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b601f82111561285057805f5260205f20601f840160051c81016020851015614cd05750805b601f840160051c820191505b81811015612ba4575f8155600101614cdc565b81516001600160401b03811115614d0857614d08614434565b614d1c81614d168454614a29565b84614cab565b6020601f821160018114614d4e575f8315614d375750848201515b5f19600385901b1c1916600184901b178455612ba4565b5f84815260208120601f198516915b82811015614d7d5787850151825560209485019460019092019101614d5d565b5084821015614d9a57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f805f60608486031215614dbb575f80fd5b8351614dc681614343565b6020850151909350614dd781614343565b60408501519092506145bb81614343565b6001600160401b03811681146122a7575f80fd5b5f60208284031215614e0c575f80fd5b81516136b581614de8565b5f60208284031215614e27575f80fd5b5051919050565b8051614a09816145c6565b63ffffffff811681146122a7575f80fd5b5f6080828403128015614e5b575f80fd5b50604051608081016001600160401b0381118282101715614e7e57614e7e614434565b6040528251614e8c816145c6565b81526020830151614e9c816145c6565b60208201526040830151614eaf81614e39565b60408201526060830151614ec281614e39565b60608201529392505050565b5f60208284031215614ede575f80fd5b81516136b58161487f565b8051614a098161456a565b5f60208284031215614f04575f80fd5b81516001600160401b03811115614f19575f80fd5b820160c08185031215614f2a575f80fd5b614f32614470565b81516001600160401b03811115614f47575f80fd5b614f5386828501614a61565b825250614f62602083016149fe565b6020820152614f7360408301614ee9565b6040820152614f8460608301614ee9565b6060820152614f9560808301614ee9565b608082015260a08201516001600160401b03811115614fb2575f80fd5b614fbe86828501614a61565b60a083015250949350505050565b5f60208284031215614fdc575f80fd5b81516136b5816145c6565b6001600160601b0383168152604060208201525f61442c6040830184614bc1565b5f8085851115615016575f80fd5b83861115615022575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615060576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f80604083850312156150b7575f80fd5b82516150c28161456a565b60208401519092506147ee8161456a565b80516001600160c01b031981168114614a09575f80fd5b805161ffff81168114614a09575f80fd5b5f6020828403121561510b575f80fd5b81516001600160401b03811115615120575f80fd5b82016102208185031215615132575f80fd5b61513a614492565b615143826149fe565b8152615151602083016149fe565b6020820152615162604083016150d3565b6040820152615173606083016150d3565b6060820152615184608083016149fe565b608082015261519560a083016149fe565b60a08201526151a660c083016149fe565b60c08201526151b760e08301614ab0565b60e08201526101008201516001600160401b038111156151d5575f80fd5b6151e186828501614a61565b610100830152506101208201516001600160401b03811115615201575f80fd5b61520d86828501614a61565b6101208301525061522161014083016150ea565b61014082015261523461016083016150ea565b61016082015261524761018083016149fe565b61018082015261525a6101a083016149fe565b6101a082015261526d6101c08301614ab0565b6101c08201526152806101e08301614ab0565b6101e08201526152936102008301614ab0565b610200820152949350505050565b5f602082840312156152b1575f80fd5b81516001600160401b038111156152c6575f80fd5b820160e081850312156152d7575f80fd5b6152df6144b5565b6152e8826149fe565b81526152f6602083016149fe565b602082015261530760408301614e2e565b604082015261531860608301614b9b565b606082015261532960808301614ee9565b608082015261533a60a08301614ee9565b60a082015260c08201516001600160401b03811115615357575f80fd5b61536386828501614a61565b60c083015250949350505050565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615398575f80fd5b82516153a3816145d4565b60208401519092506147ee81614e3956fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220d40cc4da0da129f69a795fcf8cf31d030a99993ec60d543065cecd634c7cb5fb64736f6c634300081a0033",
1105
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610208575f3560e01c8063644c45e01161011f578063aa9acb2c116100a9578063b68d180911610079578063b68d1809146104f8578063bf7e214f14610507578063e283b4a91461050f578063f3d0e5d214610522578063f7c34ee01461054b575f80fd5b8063aa9acb2c146104ab578063ad328d9f146104be578063ada9652e146104d1578063b5346af5146104e5575f80fd5b80637a9e5e4b116100ef5780637a9e5e4b14610423578063893d20e8146104365780638e32e9791461043e5780638fb3603714610451578063a3f4df7e14610472575f80fd5b8063644c45e0146103c0578063675393bf146103dd5780636c741e78146103f057806376429bc014610410575f80fd5b806325fa796b116101a057806336fc697e1161017057806336fc697e1461035a57806349bb9e4b146103625780634adcf9091461037557806354e50779146103885780635ab1bd531461039b575f80fd5b806325fa796b1461030e57806327bb7a33146103215780632d2cf22214610334578063329d6e7414610347575f80fd5b8063138461e0116101db578063138461e0146102935780631eff4b22146102b35780631f8e8f36146102e8578063214cdb80146102fb575f80fd5b806301ffc9a71461020c57806306fa45651461024d5780630d8e6e2c146102625780630fec111c1461027e575b5f80fd5b61023861021a36600461431c565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61026061025b366004614357565b61055e565b005b61026a61073e565b60405162ffffff9091168152602001610244565b6102866107c5565b60405161024491906143a0565b61029b610951565b6040516001600160601b039091168152602001610244565b6102da7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610244565b6102606102f6366004614536565b61095b565b61026061030936600461431c565b610c07565b61026061031c36600461457e565b610c33565b61026061032f366004614659565b610d6e565b61026061034236600461457e565b610e13565b6102606103553660046146ec565b611033565b610260611175565b61026061037036600461471d565b6111ba565b610260610383366004614769565b6112b5565b61029b6103963660046147c2565b611734565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610244565b5f805160206153b5833981519152546001600160601b031661029b565b6102606103eb3660046147f9565b61219d565b6103f86122aa565b6040516001600160401b039091168152602001610244565b61026061041e366004614814565b6123a0565b6102606104313660046147f9565b612565565b6103a86125e7565b61026061044c366004614830565b612718565b610459612855565b6040516001600160e01b03199091168152602001610244565b61049e6040518060400160405280600d81526020016c42756e646c655365727669636560981b81525081565b604051610244919061486d565b6102606104b9366004614814565b61288a565b6102606104cc366004614769565b612ac1565b6102da5f805160206153b583398151915281565b6102606104f3366004614357565b612bab565b604051601e8152602001610244565b6103a8612d82565b61029b61051d366004614891565b612d9d565b610535610530366004614969565b6132dd565b60405164ffffffffff9091168152602001610244565b610260610559366004614995565b613325565b5f610569600f61339b565b92505050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105cd91906149c1565b6001600160a01b031663fe1f18d68360046040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015610624575f80fd5b505af1158015610636573d5f803e3d5ffd5b505050505f816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015610677573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069b91906149c1565b6040516306fa456560e01b81526001600160601b03851660048201529091506001600160a01b038216906306fa4565906024015f604051808303815f87803b1580156106e5575f80fd5b505af11580156106f7573d5f803e3d5ffd5b50506040516001600160601b03861681527f87cfb697b5d649751f13ba6e2e51778a1fd0a1f260df7281952986c453708e71925060200190505b60405180910390a1505050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801561079c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c091906149dc565b905090565b6107cd6142df565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610843573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108679190614a0e565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016108af6125e7565b6001600160a01b031681526020018260010180546108cc90614a29565b80601f01602080910402602001604051908101604052809291908181526020018280546108f890614a29565b80156109435780601f1061091a57610100808354040283529160200191610943565b820191905f5260205f20905b81548152906001019060200180831161092657829003601f168201915b505050505081525091505090565b5f6107c030613437565b5f80610967600f61339b565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109cd91906149c1565b604051634793b4ab60e01b81526001600160601b03871660048201529091505f906001600160a01b03831690634793b4ab906024015f60405180830381865afa158015610a1c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610a439190810190614abb565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015610a9f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ac39190614ba6565b15610af1576040516349e9f38360e01b81526001600160601b03871660048201526024015b60405180910390fd5b8051610afd9085613630565b15610b3957805160405163dab86e4560e01b81526001600160601b03808916600483015291821660248201529085166044820152606401610ae8565b848160200181905250826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b7e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ba291906149c1565b6001600160a01b03166351dd844b878360ff6040518463ffffffff1660e01b8152600401610bd293929190614c45565b5f604051808303815f87803b158015610be9575f80fd5b505af1158015610bfb573d5f803e3d5ffd5b50505050505050505050565b610c0f6136bc565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b610c3f335b5f366136f4565b6004805460408051631a99b41b60e31b815290516001600160a01b03928316936325e451d39388169263d4cda0d892818301926020928290030181865afa158015610c8c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cb091906149c1565b848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610cf9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d1d9190614a0e565b6040518563ffffffff1660e01b8152600401610d3c9493929190614c79565b5f604051808303815f87803b158015610d53575f80fd5b505af1158015610d65573d5f803e3d5ffd5b50505050505050565b610d766136bc565b610d808287613325565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610e098382614cef565b5050505050505050565b610e1c33610c38565b5f836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e59573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e7d91906149c1565b6040516317bb785d60e21b81526001600160601b03851660048201529091505f90819081906001600160a01b03851690635eede17490602401606060405180830381865afa158015610ed1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ef59190614da9565b9250925092505f610f0f84610f0a85856137ea565b61386f565b9050610f1b81876138b9565b15610f4c57604051630e9326bb60e01b81526001600160601b03808816600483015282166024820152604401610ae8565b60045f9054906101000a90046001600160a01b03166001600160a01b031663e618053f86898973__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610fb9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fdd9190614a0e565b6040518563ffffffff1660e01b8152600401610ffc9493929190614c79565b5f604051808303815f87803b158015611013575f80fd5b505af1158015611025573d5f803e3d5ffd5b505050505050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61105561073e565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611093573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110b79190614dfc565b5f805160206153f58339815191528054600160401b900460ff16806110e9575080546001600160401b03808416911610155b156111075760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561113183613903565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610731565b61117d6136bc565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f805160206153f58339815191528054600160401b810460ff1615906001600160401b03165f811580156111eb5750825b90505f826001600160401b031660011480156112065750303b155b905081158015611214575080155b156112325760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561125c57845460ff60401b1916600160401b1785555b611266878761390b565b8315610d6557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a150505050505050565b6112be33610c38565b5f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112fb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061131f91906149c1565b90505f6001600160a01b03821663a5961b4c73__$94a2c899be079b00d952d0d84fffaa5c34$__633889a4c86001600160601b038816601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156113a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c59190614e17565b6040518263ffffffff1660e01b81526004016113e391815260200190565b608060405180830381865afa1580156113fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114229190614e4a565b60200151604051634793b4ab60e01b81526001600160601b03861660048201529091505f906001600160a01b03841690634793b4ab906024015f60405180830381865afa158015611475573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261149c9190810190614abb565b90506114b18260045b60ff9081169116141590565b806115395750611539816080015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611506573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061152a9190614ece565b64ffffffffff90811691161090565b1561157e57608081015160405163bf5b8f0960e01b81526001600160601b038716600482015260ff8416602482015264ffffffffff9091166044820152606401610ae8565b5f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115df91906149c1565b6040516317bb785d60e21b81526001600160601b03881660048201529091505f90819081906001600160a01b03851690635eede17490602401606060405180830381865afa158015611633573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116579190614da9565b9250925092505f61166c84610f0a85856137ea565b9050611678818a6138b9565b156116b15760405163826a5ff960e01b81526001600160601b03808c16600483015280831660248301528a166044820152606401610ae8565b60405163248a77dd60e01b81526001600160601b03808c1660048301528a1660248201526001600160a01b0386169063248a77dd906044016020604051808303815f875af1158015611705573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117299190614a0e565b506110258c8c613a7b565b5f8080611741600f61339b565b92505091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611783573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117a791906149c1565b60405163f0ea17c360e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063f0ea17c3906024015f60405180830381865afa1580156117f6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261181d9190810190614ef4565b6080810151604051634793b4ab60e01b81526001600160601b038a166004820152919250905f906001600160a01b03851690634793b4ab906024015f60405180830381865afa158015611872573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526118999190810190614abb565b9050879650866001600160601b031673__$3bac17678db7ae928afa209f2f44deec9c$__63262b32d2909173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af415801561190b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061192f9190614a0e565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015611978573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061199c9190614ba6565b15611a1757604051630232ca4960e01b81526001600160601b038a1660048201526001600160a01b03851690630232ca4990602401602060405180830381865afa1580156119ec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a109190614a0e565b9650611bb5565b604051630232ca4960e01b81526001600160601b038a8116600483015273__$3bac17678db7ae928afa209f2f44deec9c$__916398058c4c918a16906001600160a01b03881690630232ca4990602401602060405180830381865afa158015611a82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aa69190614a0e565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015611aef573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b139190614ba6565b15611bb557604051630232ca4960e01b81526001600160601b038a16600482015287906001600160a01b03861690630232ca4990602401602060405180830381865afa158015611b65573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b899190614a0e565b60405163d98a83b760e01b81526001600160601b03928316600482015291166024820152604401610ae8565b604051630a4d29dd60e31b81526001600160601b038816600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af4158015611c0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c2f9190614ba6565b15611c4d5760405163707dd03960e01b815260040160405180910390fd5b60408381015160608501519151636eb1769f60e11b81526001600160a01b038581166004830152928316602482015290915f919083169063dd62ed3e90604401602060405180830381865afa158015611ca8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ccc9190614e17565b60405163046e44af60e11b81526001600160601b038b16600482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015611d25573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d499190614e17565b811015611e0c57606085015160405163046e44af60e11b81526001600160601b038b166004820152859190839073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015611db0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dd49190614e17565b60405163047d3a6160e51b81526001600160a01b03948516600482015293909216602484015260448301526064820152608401610ae8565b5f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6d91906149c1565b905060045f9054906101000a90046001600160a01b03166001600160a01b031663e618053f828e73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611edb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eff9190614a0e565b8e6040518563ffffffff1660e01b8152600401611f1f9493929190614c79565b5f604051808303815f87803b158015611f36575f80fd5b505af1158015611f48573d5f803e3d5ffd5b5050505060045f9054906101000a90046001600160a01b03166001600160a01b03166389fad8a2828b8d73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611fb9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fdd9190614a0e565b6040518563ffffffff1660e01b8152600401611ffc9493929190614c79565b5f604051808303815f87803b158015612013575f80fd5b505af1158015612025573d5f803e3d5ffd5b50505050505f61203d6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038e1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561208a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120ae91906149c1565b606087015160405163c661667d60e01b81526001600160a01b03888116600483015280841660248301526001600160601b038e16604483015292935091169063c661667d906064015f604051808303815f87803b15801561210d575f80fd5b505af115801561211f573d5f803e3d5ffd5b505050507fc3eff56dd5436528da6d208eff7a92ed71cafc177d49a9c55303bff3b1bcf8d28c82858d60405161218694939291906001600160601b0394851681526001600160a01b0393841660208201529190921660408201529116606082015260800190565b60405180910390a150505050505050505092915050565b6121a56136bc565b806001600160a01b03163b5f036121da5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610ae8565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015612254575060408051601f3d908101601f1916820190925261225191810190614ba6565b60015b61227c5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610ae8565b806122a55760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610ae8565b505b50565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3601e604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015612315573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123399190614fcc565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af415801561237c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c09190614dfc565b6123a933610c38565b816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123e5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061240991906149c1565b6040516375d357df60e01b81526001600160601b03831660048201526001600160a01b0391909116906375d357df90602401602060405180830381865afa158015612456573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061247a9190614ba6565b6124a2576040516392bb4dff60e01b81526001600160601b0382166004820152602401610ae8565b816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124de573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061250291906149c1565b604051631351fccf60e31b81526001600160601b03831660048201526001600160a01b039190911690639a8fe678906024015f604051808303815f87803b15801561254b575f80fd5b505af115801561255d573d5f803e3d5ffd5b505050505050565b3361256e612d82565b6001600160a01b0316816001600160a01b0316146125a95760405162d1953b60e31b81526001600160a01b0382166004820152602401610ae8565b816001600160a01b03163b5f036125de576040516361798f2f60e11b81526001600160a01b0383166004820152602401610ae8565b6122a582613d1c565b5f805f805160206153b583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612653573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126779190614ba6565b15612702576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156126d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126fc91906149c1565b91505090565b54600160601b90046001600160a01b0316919050565b6127206136bc565b61279c83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612760573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127849190614a0e565b60085f8560405180602001604052805f815250610d6e565b6001600160a01b038216156127b9576127b482613d7c565b612830565b5f6127c46002613d8d565b905061282e816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612805573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061282991906149c1565b613d7c565b505b612840634a531f3360e01b610c07565b61285063daf9067160e01b610c07565b505050565b5f805160206153d583398151915280545f9190600160a01b900460ff1661287c575f6126fc565b638fb3603760e01b91505090565b61289333610c38565b816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128f391906149c1565b6001600160a01b031663fe1f18d68260c86040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b15801561294a575f80fd5b505af115801561295c573d5f803e3d5ffd5b505050505f826001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa15801561299d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129c191906149c1565b6040516322cc1d4560e11b81526001600160601b03841660048201529091505f906001600160a01b038316906345983a8a90602401602060405180830381865afa158015612a11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a359190614e17565b90508015612a68576040516356a410b760e01b81526001600160601b038416600482015260248101829052604401610ae8565b60405163b5346af560e01b81526001600160601b03841660048201526001600160a01b0383169063b5346af5906024015f604051808303815f87803b158015612aaf575f80fd5b505af1158015610e09573d5f803e3d5ffd5b612aca33610c38565b836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b06573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b2a91906149c1565b6040516353ebe12960e01b81526001600160601b038085166004830152831660248201526001600160a01b0391909116906353ebe129906044016020604051808303815f875af1158015612b80573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ba49190614a0e565b5050505050565b5f612bb6600f61339b565b92505050806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bf6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c1a91906149c1565b6001600160a01b031663fe1f18d683606e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015612c71575f80fd5b505af1158015612c83573d5f803e3d5ffd5b505050505f816001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cc4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ce891906149c1565b60405163b5346af560e01b81526001600160601b03851660048201529091506001600160a01b0382169063b5346af5906024015f604051808303815f87803b158015612d32575f80fd5b505af1158015612d44573d5f803e3d5ffd5b50506040516001600160601b03861681527f6764112d27879e5bb12f07fde08a48629ec22e603c75c9942ba62a06c95a55f492506020019050610731565b5f805160206153d5833981519152546001600160a01b031690565b5f612da733610c38565b60035f9054906101000a90046001600160a01b03166001600160a01b031663c2bf08c86040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015612e1c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e409190614a0e565b6001600160601b031681526020018b6001600160601b03168152602001612e65601e90565b60ff1681526020015f151581526020015f6001600160a01b031681526020018a6001600160a01b0316815260200160405180602001604052805f8152508152506040518263ffffffff1660e01b8152600401612ec191906143a0565b6020604051808303815f875af1158015612edd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f019190614a0e565b90505f896001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f6491906149c1565b9050806001600160a01b031663a46eb8dc836040518060c001604052808d6001600160601b031681526020018b815260200188888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050509082525064ffffffffff8a16602080830191909152604080516356db0c1960e11b81528151919093019273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9263adb61832926004808401938290030181865af415801561302d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130519190614ece565b6040516352bcc5a760e11b815264ffffffffff9182166004820152908b16602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af41580156130ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130d29190614ece565b64ffffffffff1681525f6020909101526040516001600160e01b031960e085901b168152613104929190600401614fe7565b5f604051808303815f87803b15801561311b575f80fd5b505af115801561312d573d5f803e3d5ffd5b5050505060045f9054906101000a90046001600160a01b03166001600160a01b03166325e451d382848973__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561319e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131c29190614a0e565b6040518563ffffffff1660e01b81526004016131e19493929190614c79565b5f604051808303815f87803b1580156131f8575f80fd5b505af115801561320a573d5f803e3d5ffd5b505050505f8a6001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa15801561324b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061326f91906149c1565b6040516346f0e8a760e11b81526001600160601b03851660048201529091506001600160a01b03821690638de1d14e906024015f604051808303815f87803b1580156132b9575f80fd5b505af11580156132cb573d5f803e3d5ffd5b50505050505098975050505050505050565b5f6132e733610c38565b60405162461bcd60e51b8152602060048201526013602482015272139bdd081a5b5c1b195b595b9d1959081e595d606a1b6044820152606401610ae8565b61332d6136bc565b6133368161219d565b61333e611175565b6001600160a01b0382166133655760405163f17ef42d60e01b815260040160405180910390fd5b505f805160206153b583398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f6133a46142df565b5f6133b76001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa1580156133fb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061341f9190614a0e565b925061342d83856001613e94565b9395909450915050565b5f805f805160206153b583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156134a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134c79190614ba6565b156134f35780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610ae8565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613545573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135699190614ba6565b6135915760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610ae8565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa1580156135e3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136079190614a0e565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044015b602060405180830381865af4158015613691573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136b59190614ba6565b9392505050565b5f805160206153f583398151915254600160401b900460ff166136f257604051631afcd79f60e31b815260040160405180910390fd5b565b5f805160206153d58339815191525f8061372c61370f612d82565b873061371e60045f8a8c615008565b6137279161502f565b614136565b915091508161255d5763ffffffff8116156137c757825460ff60a01b1916600160a01b17835561375a612d82565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161378993929190615067565b5f604051808303815f87803b1580156137a0575f80fd5b505af11580156137b2573d5f803e3d5ffd5b5050845460ff60a01b191685555061255d9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610ae8565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb35906044015b602060405180830381865af415801561384b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136b59190614a0e565b6040516363cf551160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c79eaa2290604401613830565b6040516304d40eb160e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906309a81d6290604401613676565b6102086136bc565b5f805160206153f58339815191528054600160401b810460ff1615906001600160401b03165f8115801561393c5750825b90505f826001600160401b031660011480156139575750303b155b905081158015613965575080155b156139835760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156139ad57845460ff60401b1916600160401b1785555b5f80878060200190518101906139c391906150a6565b90925090506139d3825f8b612718565b6139dd6002613d8d565b600380546001600160a01b0319166001600160a01b0392909216919091179055613a07600b613d8d565b600480546001600160a01b0319166001600160a01b0392909216919091179055613a3763da16599760e01b610c07565b50508315610d6557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016112a4565b5f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ab8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613adc91906149c1565b60405163bd7d9d8560e01b81526001600160601b03841660048201529091505f906001600160a01b0383169063bd7d9d85906024015f60405180830381865afa158015613b2b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613b5291908101906150fb565b6101c0810151604051638d38cd4b60e01b815264ffffffffff909116600482015290915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015613bb0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bd49190614ba6565b8015613c2b5750613c2b816101c0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611506573d5f803e3d5ffd5b15613c54576040516311db797560e31b81526001600160601b0384166004820152602401610ae8565b5f846001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c91573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cb591906149c1565b604051630331f98560e21b81526001600160601b03861660048201529091506001600160a01b03821690630cc7e614906024015f604051808303815f87803b158015613cff575f80fd5b505af1158015613d11573d5f803e3d5ffd5b505050505050505050565b5f805160206153d583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b613d846136bc565b6122a78161423e565b5f613da06001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015613e03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e279190614fcc565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613e6a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e8e91906149c1565b92915050565b613e9c6142df565b5f80613eb06001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e0906024015f60405180830381865afa158015613efd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613f2491908101906152a1565b9250613f3185600b6114a5565b15613f8757604083015160ff868116911614613f8257604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610ae8565b614023565b613fa28360400151613f97600c90565b60ff90811691161490565b80613fb85750613fb88360400151613f97600f90565b80613fce5750613fce8360400151613f97600e90565b80613fe45750613fe48360400151613f97600d90565b61402357604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610ae8565b614030836020015161424f565b9150831561412d57816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015614074573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061409891906149c1565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa1580156140e0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141049190614ba6565b1561412d57604051637d71120960e11b81526001600160601b0387166004820152602401610ae8565b50935093915050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516141a49190615371565b5f60405180830381855afa9150503d805f81146141dc576040519150601f19603f3d011682016040523d82523d5f602084013e6141e1565b606091505b5091509150811561423357604081511061421357808060200190518101906142099190615387565b9094509250614233565b602081511061423357808060200190518101906142309190614ba6565b93505b505094509492505050565b6142466136bc565b6122a781613d1c565b5f6142626001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e0906024015f60405180830381865afa1580156142ae573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526142d591908101906152a1565b6080015192915050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b5f6020828403121561432c575f80fd5b81356001600160e01b0319811681146136b5575f80fd5b6001600160601b03811681146122a7575f80fd5b5f60208284031215614367575f80fd5b81356136b581614343565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516143e8608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e08084015261442c610100840182614372565b949350505050565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b038111828210171561446a5761446a614434565b60405290565b60405160c081016001600160401b038111828210171561446a5761446a614434565b60405161022081016001600160401b038111828210171561446a5761446a614434565b60405160e081016001600160401b038111828210171561446a5761446a614434565b604051601f8201601f191681016001600160401b03811182821017156144ff576144ff614434565b604052919050565b5f60408284031215614517575f80fd5b61451f614448565b823581526020928301359281019290925250919050565b5f8060608385031215614547575f80fd5b823561455281614343565b91506145618460208501614507565b90509250929050565b6001600160a01b03811681146122a7575f80fd5b5f805f60608486031215614590575f80fd5b833561459b8161456a565b925060208401356145ab81614343565b915060408401356145bb81614343565b809150509250925092565b60ff811681146122a7575f80fd5b80151581146122a7575f80fd5b5f6001600160401b038211156145f9576145f9614434565b50601f01601f191660200190565b5f82601f830112614616575f80fd5b8135614629614624826145e1565b6144d7565b81815284602083860101111561463d575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f805f8060c0878903121561466e575f80fd5b86356146798161456a565b9550602087013561468981614343565b94506040870135614699816145c6565b935060608701356146a9816145d4565b925060808701356146b98161456a565b915060a08701356001600160401b038111156146d3575f80fd5b6146df89828a01614607565b9150509295509295509295565b5f602082840312156146fc575f80fd5b81356001600160401b03811115614711575f80fd5b61442c84828501614607565b5f806040838503121561472e575f80fd5b82356147398161456a565b915060208301356001600160401b03811115614753575f80fd5b61475f85828601614607565b9150509250929050565b5f805f806080858703121561477c575f80fd5b84356147878161456a565b9350602085013561479781614343565b925060408501356147a781614343565b915060608501356147b781614343565b939692955090935050565b5f80604083850312156147d3575f80fd5b82356147de81614343565b915060208301356147ee81614343565b809150509250929050565b5f60208284031215614809575f80fd5b81356136b58161456a565b5f8060408385031215614825575f80fd5b82356147de8161456a565b5f805f60608486031215614842575f80fd5b833561484d8161456a565b9250602084013561485d8161456a565b915060408401356145bb8161456a565b602081525f6136b56020830184614372565b64ffffffffff811681146122a7575f80fd5b5f805f805f805f80610100898b0312156148a9575f80fd5b88356148b48161456a565b975060208901356148c481614343565b965060408901356148d48161456a565b95506148e38a60608b01614507565b945060a08901356148f381614343565b935060c08901356149038161487f565b925060e08901356001600160401b0381111561491d575f80fd5b8901601f81018b1361492d575f80fd5b80356001600160401b03811115614942575f80fd5b8b6020828401011115614953575f80fd5b989b979a50959850939692959194602001935050565b5f806040838503121561497a575f80fd5b823561498581614343565b915060208301356147ee8161487f565b5f80604083850312156149a6575f80fd5b82356149b18161456a565b915060208301356147ee8161456a565b5f602082840312156149d1575f80fd5b81516136b58161456a565b5f602082840312156149ec575f80fd5b815162ffffff811681146136b5575f80fd5b8051614a0981614343565b919050565b5f60208284031215614a1e575f80fd5b81516136b581614343565b600181811c90821680614a3d57607f821691505b602082108103614a5b57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f82601f830112614a70575f80fd5b8151602083015f614a83614624846145e1565b9050828152858383011115614a96575f80fd5b8282602083015e5f92810160200192909252509392505050565b8051614a098161487f565b5f60208284031215614acb575f80fd5b81516001600160401b03811115614ae0575f80fd5b820180840360e0811215614af2575f80fd5b614afa614470565b8251614b0581614343565b81526040601f1983011215614b18575f80fd5b614b20614448565b6020848101518252604085015181830152820152606083015191506001600160401b03821115614b4e575f80fd5b614b5a86838501614a61565b6040820152614b6b60808401614ab0565b6060820152614b7c60a08401614ab0565b6080820152614b8d60c08401614ab0565b60a082015295945050505050565b8051614a09816145d4565b5f60208284031215614bb6575f80fd5b81516136b5816145d4565b6001600160601b0381511682525f6020820151805160208501526020810151604085015250604082015160e06060850152614bff60e0850182614372565b905064ffffffffff60608401511660808501526080830151614c2a60a086018264ffffffffff169052565b5060a083015164ffffffffff811660c0860152509392505050565b6001600160601b0384168152606060208201525f614c666060830185614bc1565b905060ff83166040830152949350505050565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b601f82111561285057805f5260205f20601f840160051c81016020851015614cd05750805b601f840160051c820191505b81811015612ba4575f8155600101614cdc565b81516001600160401b03811115614d0857614d08614434565b614d1c81614d168454614a29565b84614cab565b6020601f821160018114614d4e575f8315614d375750848201515b5f19600385901b1c1916600184901b178455612ba4565b5f84815260208120601f198516915b82811015614d7d5787850151825560209485019460019092019101614d5d565b5084821015614d9a57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f805f60608486031215614dbb575f80fd5b8351614dc681614343565b6020850151909350614dd781614343565b60408501519092506145bb81614343565b6001600160401b03811681146122a7575f80fd5b5f60208284031215614e0c575f80fd5b81516136b581614de8565b5f60208284031215614e27575f80fd5b5051919050565b8051614a09816145c6565b63ffffffff811681146122a7575f80fd5b5f6080828403128015614e5b575f80fd5b50604051608081016001600160401b0381118282101715614e7e57614e7e614434565b6040528251614e8c816145c6565b81526020830151614e9c816145c6565b60208201526040830151614eaf81614e39565b60408201526060830151614ec281614e39565b60608201529392505050565b5f60208284031215614ede575f80fd5b81516136b58161487f565b8051614a098161456a565b5f60208284031215614f04575f80fd5b81516001600160401b03811115614f19575f80fd5b820160c08185031215614f2a575f80fd5b614f32614470565b81516001600160401b03811115614f47575f80fd5b614f5386828501614a61565b825250614f62602083016149fe565b6020820152614f7360408301614ee9565b6040820152614f8460608301614ee9565b6060820152614f9560808301614ee9565b608082015260a08201516001600160401b03811115614fb2575f80fd5b614fbe86828501614a61565b60a083015250949350505050565b5f60208284031215614fdc575f80fd5b81516136b5816145c6565b6001600160601b0383168152604060208201525f61442c6040830184614bc1565b5f8085851115615016575f80fd5b83861115615022575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615060576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f80604083850312156150b7575f80fd5b82516150c28161456a565b60208401519092506147ee8161456a565b80516001600160c01b031981168114614a09575f80fd5b805161ffff81168114614a09575f80fd5b5f6020828403121561510b575f80fd5b81516001600160401b03811115615120575f80fd5b82016102208185031215615132575f80fd5b61513a614492565b615143826149fe565b8152615151602083016149fe565b6020820152615162604083016150d3565b6040820152615173606083016150d3565b6060820152615184608083016149fe565b608082015261519560a083016149fe565b60a08201526151a660c083016149fe565b60c08201526151b760e08301614ab0565b60e08201526101008201516001600160401b038111156151d5575f80fd5b6151e186828501614a61565b610100830152506101208201516001600160401b03811115615201575f80fd5b61520d86828501614a61565b6101208301525061522161014083016150ea565b61014082015261523461016083016150ea565b61016082015261524761018083016149fe565b61018082015261525a6101a083016149fe565b6101a082015261526d6101c08301614ab0565b6101c08201526152806101e08301614ab0565b6101e08201526152936102008301614ab0565b610200820152949350505050565b5f602082840312156152b1575f80fd5b81516001600160401b038111156152c6575f80fd5b820160e081850312156152d7575f80fd5b6152df6144b5565b6152e8826149fe565b81526152f6602083016149fe565b602082015261530760408301614e2e565b604082015261531860608301614b9b565b606082015261532960808301614ee9565b608082015261533a60a08301614ee9565b60a082015260c08201516001600160401b03811115615357575f80fd5b61536386828501614a61565b60c083015250949350505050565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615398575f80fd5b82516153a3816145d4565b60208401519092506147ee81614e3956fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220d40cc4da0da129f69a795fcf8cf31d030a99993ec60d543065cecd634c7cb5fb64736f6c634300081a0033",
1106
+ "linkReferences": {
1107
+ "contracts/type/Amount.sol": {
1108
+ "AmountLib": [
1109
+ {
1110
+ "length": 20,
1111
+ "start": 3466
1112
+ },
1113
+ {
1114
+ "length": 20,
1115
+ "start": 4170
1116
+ },
1117
+ {
1118
+ "length": 20,
1119
+ "start": 6528
1120
+ },
1121
+ {
1122
+ "length": 20,
1123
+ "start": 6556
1124
+ },
1125
+ {
1126
+ "length": 20,
1127
+ "start": 6924
1128
+ },
1129
+ {
1130
+ "length": 20,
1131
+ "start": 7337
1132
+ },
1133
+ {
1134
+ "length": 20,
1135
+ "start": 7619
1136
+ },
1137
+ {
1138
+ "length": 20,
1139
+ "start": 7758
1140
+ },
1141
+ {
1142
+ "length": 20,
1143
+ "start": 8044
1144
+ },
1145
+ {
1146
+ "length": 20,
1147
+ "start": 8266
1148
+ },
1149
+ {
1150
+ "length": 20,
1151
+ "start": 12847
1152
+ },
1153
+ {
1154
+ "length": 20,
1155
+ "start": 14568
1156
+ },
1157
+ {
1158
+ "length": 20,
1159
+ "start": 14701
1160
+ },
1161
+ {
1162
+ "length": 20,
1163
+ "start": 14775
1164
+ }
1165
+ ]
1166
+ },
1167
+ "contracts/type/NftId.sol": {
1168
+ "NftIdLib": [
1169
+ {
1170
+ "length": 20,
1171
+ "start": 2260
1172
+ },
1173
+ {
1174
+ "length": 20,
1175
+ "start": 2877
1176
+ },
1177
+ {
1178
+ "length": 20,
1179
+ "start": 5129
1180
+ },
1181
+ {
1182
+ "length": 20,
1183
+ "start": 9969
1184
+ },
1185
+ {
1186
+ "length": 20,
1187
+ "start": 11949
1188
+ },
1189
+ {
1190
+ "length": 20,
1191
+ "start": 13633
1192
+ },
1193
+ {
1194
+ "length": 20,
1195
+ "start": 14126
1196
+ }
1197
+ ]
1198
+ },
1199
+ "contracts/type/RoleId.sol": {
1200
+ "RoleIdLib": [
1201
+ {
1202
+ "length": 20,
1203
+ "start": 9091
1204
+ }
1205
+ ]
1206
+ },
1207
+ "contracts/type/Timestamp.sol": {
1208
+ "TimestampLib": [
1209
+ {
1210
+ "length": 20,
1211
+ "start": 5527
1212
+ },
1213
+ {
1214
+ "length": 20,
1215
+ "start": 12492
1216
+ },
1217
+ {
1218
+ "length": 20,
1219
+ "start": 12620
1220
+ },
1221
+ {
1222
+ "length": 20,
1223
+ "start": 15438
1224
+ },
1225
+ {
1226
+ "length": 20,
1227
+ "start": 15548
1228
+ }
1229
+ ]
1230
+ },
1231
+ "contracts/type/Version.sol": {
1232
+ "VersionLib": [
1233
+ {
1234
+ "length": 20,
1235
+ "start": 2106
1236
+ },
1237
+ {
1238
+ "length": 20,
1239
+ "start": 4363
1240
+ }
1241
+ ],
1242
+ "VersionPartLib": [
1243
+ {
1244
+ "length": 20,
1245
+ "start": 9139
1246
+ },
1247
+ {
1248
+ "length": 20,
1249
+ "start": 16033
1250
+ }
1251
+ ]
1252
+ }
1253
+ },
1254
+ "deployedLinkReferences": {
1255
+ "contracts/type/Amount.sol": {
1256
+ "AmountLib": [
1257
+ {
1258
+ "length": 20,
1259
+ "start": 3252
1260
+ },
1261
+ {
1262
+ "length": 20,
1263
+ "start": 3956
1264
+ },
1265
+ {
1266
+ "length": 20,
1267
+ "start": 6314
1268
+ },
1269
+ {
1270
+ "length": 20,
1271
+ "start": 6342
1272
+ },
1273
+ {
1274
+ "length": 20,
1275
+ "start": 6710
1276
+ },
1277
+ {
1278
+ "length": 20,
1279
+ "start": 7123
1280
+ },
1281
+ {
1282
+ "length": 20,
1283
+ "start": 7405
1284
+ },
1285
+ {
1286
+ "length": 20,
1287
+ "start": 7544
1288
+ },
1289
+ {
1290
+ "length": 20,
1291
+ "start": 7830
1292
+ },
1293
+ {
1294
+ "length": 20,
1295
+ "start": 8052
1296
+ },
1297
+ {
1298
+ "length": 20,
1299
+ "start": 12633
1300
+ },
1301
+ {
1302
+ "length": 20,
1303
+ "start": 14354
1304
+ },
1305
+ {
1306
+ "length": 20,
1307
+ "start": 14487
1308
+ },
1309
+ {
1310
+ "length": 20,
1311
+ "start": 14561
1312
+ }
1313
+ ]
1314
+ },
1315
+ "contracts/type/NftId.sol": {
1316
+ "NftIdLib": [
1317
+ {
1318
+ "length": 20,
1319
+ "start": 2046
1320
+ },
1321
+ {
1322
+ "length": 20,
1323
+ "start": 2663
1324
+ },
1325
+ {
1326
+ "length": 20,
1327
+ "start": 4915
1328
+ },
1329
+ {
1330
+ "length": 20,
1331
+ "start": 9755
1332
+ },
1333
+ {
1334
+ "length": 20,
1335
+ "start": 11735
1336
+ },
1337
+ {
1338
+ "length": 20,
1339
+ "start": 13419
1340
+ },
1341
+ {
1342
+ "length": 20,
1343
+ "start": 13912
1344
+ }
1345
+ ]
1346
+ },
1347
+ "contracts/type/RoleId.sol": {
1348
+ "RoleIdLib": [
1349
+ {
1350
+ "length": 20,
1351
+ "start": 8877
1352
+ }
1353
+ ]
1354
+ },
1355
+ "contracts/type/Timestamp.sol": {
1356
+ "TimestampLib": [
1357
+ {
1358
+ "length": 20,
1359
+ "start": 5313
1360
+ },
1361
+ {
1362
+ "length": 20,
1363
+ "start": 12278
1364
+ },
1365
+ {
1366
+ "length": 20,
1367
+ "start": 12406
1368
+ },
1369
+ {
1370
+ "length": 20,
1371
+ "start": 15224
1372
+ },
1373
+ {
1374
+ "length": 20,
1375
+ "start": 15334
1376
+ }
1377
+ ]
1378
+ },
1379
+ "contracts/type/Version.sol": {
1380
+ "VersionLib": [
1381
+ {
1382
+ "length": 20,
1383
+ "start": 1892
1384
+ },
1385
+ {
1386
+ "length": 20,
1387
+ "start": 4149
1388
+ }
1389
+ ],
1390
+ "VersionPartLib": [
1391
+ {
1392
+ "length": 20,
1393
+ "start": 8925
1394
+ },
1395
+ {
1396
+ "length": 20,
1397
+ "start": 15819
1398
+ }
1399
+ ]
1400
+ }
1401
+ }
1402
+ }