@etherisc/gif-next 0.0.2-94237b7-984 → 0.0.2-94b4fbc-830

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