@etherisc/gif-next 0.0.2-f0d86c2-077 → 0.0.2-f0ebcc7-306

Sign up to get free protection for your applications and to get access to all the features.
Files changed (789) hide show
  1. package/README.md +320 -27
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1007 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +744 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +791 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1494 -0
  10. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
  11. package/artifacts/contracts/{shared/IOwnable.sol/IOwnable.json → authorization/AccessAdmin.sol/IAccessManagedChecker.json} +4 -4
  12. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +673 -0
  14. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1403 -0
  16. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  17. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +615 -0
  18. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  19. package/artifacts/contracts/{instance/module/access → authorization}/IAccess.sol/IAccess.json +1 -1
  20. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1224 -0
  22. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +382 -0
  24. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
  26. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  27. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
  28. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1209 -0
  30. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +644 -0
  32. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +930 -0
  34. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1580 -0
  36. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +868 -0
  38. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  39. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +829 -0
  40. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  41. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1071 -0
  42. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  44. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1445 -0
  46. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +644 -0
  48. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2002 -0
  50. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  51. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +644 -0
  52. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  53. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1388 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +644 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1152 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1612 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +644 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2389 -0
  66. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  67. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +644 -0
  68. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  69. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
  70. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  71. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +373 -1390
  72. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  73. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +808 -0
  74. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  75. package/artifacts/contracts/instance/Instance.sol/Instance.json +454 -1613
  76. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2036 -0
  78. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  79. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +716 -0
  80. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  81. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +2458 -0
  82. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  83. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1054 -0
  84. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  85. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +734 -0
  86. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  87. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3728 -0
  88. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  89. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
  90. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  91. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  92. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  93. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
  94. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  95. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  96. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  97. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  98. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  99. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
  100. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  101. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  102. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  103. package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
  104. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  105. package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/IComponents.sol/IComponents.json} +2 -2
  106. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  107. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  108. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  109. package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
  110. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  111. package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
  112. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  113. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  114. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  115. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +938 -0
  116. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  117. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +632 -0
  118. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  119. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  120. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  121. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +753 -0
  122. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  123. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +733 -0
  124. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  125. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +854 -0
  126. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  127. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
  128. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  129. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +764 -0
  130. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  131. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1231 -0
  132. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  133. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +644 -0
  134. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  135. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1261 -0
  136. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  137. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +800 -0
  138. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  139. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +880 -0
  140. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  141. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +886 -0
  142. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  143. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1230 -0
  144. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  145. package/artifacts/contracts/pool/Pool.sol/Pool.json +1006 -0
  146. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  147. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +456 -0
  148. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  149. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1574 -0
  150. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  151. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +808 -0
  152. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  153. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +879 -0
  154. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  155. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +740 -0
  156. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  157. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1140 -0
  158. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  159. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +644 -0
  160. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  161. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1496 -0
  162. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  163. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +848 -0
  164. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  165. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +639 -0
  166. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  167. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1064 -0
  168. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  169. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +981 -0
  170. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  171. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +623 -0
  172. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  173. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +997 -0
  174. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  175. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +233 -230
  176. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  177. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1333 -0
  178. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  179. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +293 -0
  180. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  181. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +808 -0
  182. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  183. package/artifacts/contracts/product/PricingService.sol/PricingService.json +911 -0
  184. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  185. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +764 -0
  186. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  187. package/artifacts/contracts/product/Product.sol/Product.json +1098 -0
  188. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  189. package/artifacts/contracts/product/RiskService.sol/RiskService.json +688 -0
  190. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  191. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +736 -0
  192. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  193. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +242 -12
  194. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  195. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +1024 -119
  196. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  197. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1043 -0
  198. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  199. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  200. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  201. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +39 -0
  202. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  203. package/artifacts/contracts/registry/Registry.sol/Registry.json +1450 -219
  204. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  205. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2018 -0
  206. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  207. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +878 -0
  208. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  209. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1269 -0
  210. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  211. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +735 -0
  212. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  213. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1954 -0
  214. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  215. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  216. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  217. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1337 -0
  218. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  219. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
  220. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  221. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
  222. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  223. package/artifacts/contracts/shared/Component.sol/Component.json +686 -0
  224. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  225. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1556 -0
  226. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  227. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +816 -0
  228. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  229. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +485 -0
  230. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  231. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +597 -0
  232. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  233. package/artifacts/contracts/{instance/IInstanceLinked.sol/IInstanceLinked.json → shared/ContractLib.sol/IInstanceAdminHelper.json} +5 -5
  234. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  235. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  236. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  237. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  238. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  239. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +611 -0
  240. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  241. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1196 -0
  242. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  243. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +688 -0
  244. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  245. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +140 -141
  246. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  247. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  248. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  249. package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +47 -74
  250. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  251. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
  252. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  253. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +229 -21
  254. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  255. package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
  256. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  257. package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → shared/IService.sol/IService.json} +198 -163
  258. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  259. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  260. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  261. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +776 -0
  262. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  263. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
  264. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  265. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  266. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  267. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  268. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  269. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +209 -0
  270. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  271. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
  272. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  273. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +275 -18
  274. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  275. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
  276. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  277. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → shared/Service.sol/Service.json} +248 -171
  278. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  279. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +723 -0
  280. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  281. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  282. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  283. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  284. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  285. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1491 -0
  286. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  287. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1167 -0
  288. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  289. package/artifacts/contracts/staking/Staking.sol/Staking.json +1888 -0
  290. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  291. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +469 -0
  292. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  293. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  294. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  295. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +792 -0
  296. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  297. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +560 -0
  298. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  299. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1380 -0
  300. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  301. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +736 -0
  302. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  303. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2297 -0
  304. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  305. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +617 -0
  306. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  307. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  308. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  309. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  310. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  311. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  312. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  313. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  314. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  315. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  316. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  317. package/artifacts/contracts/type/Fee.sol/FeeLib.json +373 -0
  318. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  319. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  320. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  321. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  322. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  323. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  324. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  325. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  326. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  327. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +241 -0
  328. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  329. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  330. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  331. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  332. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  333. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  334. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  335. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
  336. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  337. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +433 -0
  338. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  339. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  340. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  341. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  342. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  343. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  344. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  345. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  346. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  347. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  348. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  349. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  350. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  351. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -0
  352. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  353. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  354. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  355. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
  356. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  357. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +55 -0
  358. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  359. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
  360. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  361. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  362. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  363. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +78 -0
  364. package/contracts/accounting/AccountingService.sol +262 -0
  365. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  366. package/contracts/accounting/IAccountingService.sol +45 -0
  367. package/contracts/authorization/AccessAdmin.sol +704 -0
  368. package/contracts/authorization/AccessAdminLib.sol +183 -0
  369. package/contracts/authorization/AccessManagerCloneable.sol +158 -0
  370. package/contracts/authorization/Authorization.sol +365 -0
  371. package/contracts/authorization/IAccess.sol +49 -0
  372. package/contracts/authorization/IAccessAdmin.sol +170 -0
  373. package/contracts/authorization/IAuthorization.sol +80 -0
  374. package/contracts/authorization/IServiceAuthorization.sol +40 -0
  375. package/contracts/authorization/ServiceAuthorization.sol +106 -0
  376. package/contracts/distribution/BasicDistribution.sol +141 -0
  377. package/contracts/distribution/BasicDistributionAuthorization.sol +60 -0
  378. package/contracts/distribution/Distribution.sol +244 -0
  379. package/contracts/distribution/DistributionService.sol +385 -0
  380. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  381. package/contracts/distribution/IDistributionComponent.sol +43 -0
  382. package/contracts/distribution/IDistributionService.sol +103 -0
  383. package/contracts/examples/fire/DamageLevel.sol +59 -0
  384. package/contracts/examples/fire/FirePool.sol +86 -0
  385. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  386. package/contracts/examples/fire/FireProduct.sol +433 -0
  387. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  388. package/contracts/examples/fire/FireUSD.sol +26 -0
  389. package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
  390. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  391. package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
  392. package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
  393. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  394. package/contracts/examples/unpermissioned/SimpleProduct.sol +373 -0
  395. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  396. package/contracts/instance/BundleSet.sol +130 -0
  397. package/contracts/instance/IInstance.sol +99 -45
  398. package/contracts/instance/IInstanceService.sol +88 -0
  399. package/contracts/instance/Instance.sol +291 -55
  400. package/contracts/instance/InstanceAdmin.sol +450 -0
  401. package/contracts/instance/InstanceAuthorizationV3.sol +235 -0
  402. package/contracts/instance/InstanceReader.sol +650 -0
  403. package/contracts/instance/InstanceService.sol +459 -0
  404. package/contracts/instance/InstanceServiceManager.sol +39 -0
  405. package/contracts/instance/InstanceStore.sol +298 -0
  406. package/contracts/instance/RiskSet.sol +118 -0
  407. package/contracts/instance/base/BalanceStore.sol +123 -0
  408. package/contracts/instance/base/Cloneable.sol +28 -0
  409. package/contracts/instance/base/ObjectCounter.sol +20 -0
  410. package/contracts/instance/base/ObjectLifecycle.sol +113 -0
  411. package/contracts/instance/base/ObjectSet.sol +77 -0
  412. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  413. package/contracts/instance/module/IBundle.sol +20 -0
  414. package/contracts/instance/module/IComponents.sol +50 -0
  415. package/contracts/instance/module/IDistribution.sol +44 -0
  416. package/contracts/instance/module/IPolicy.sol +85 -0
  417. package/contracts/instance/module/IRisk.sol +14 -0
  418. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  419. package/contracts/oracle/BasicOracle.sol +45 -0
  420. package/contracts/oracle/BasicOracleAuthorization.sol +37 -0
  421. package/contracts/oracle/IOracle.sol +36 -0
  422. package/contracts/oracle/IOracleComponent.sol +33 -0
  423. package/contracts/oracle/IOracleService.sol +66 -0
  424. package/contracts/oracle/Oracle.sol +154 -0
  425. package/contracts/oracle/OracleService.sol +310 -0
  426. package/contracts/oracle/OracleServiceManager.sol +39 -0
  427. package/contracts/pool/BasicPool.sol +173 -0
  428. package/contracts/pool/BasicPoolAuthorization.sol +76 -0
  429. package/contracts/pool/BundleService.sol +395 -0
  430. package/contracts/pool/BundleServiceManager.sol +39 -0
  431. package/contracts/pool/IBundleService.sol +115 -0
  432. package/contracts/pool/IPoolComponent.sol +62 -0
  433. package/contracts/pool/IPoolService.sol +165 -0
  434. package/contracts/pool/Pool.sol +343 -0
  435. package/contracts/pool/PoolLib.sol +216 -0
  436. package/contracts/pool/PoolService.sol +755 -0
  437. package/contracts/pool/PoolServiceManager.sol +39 -0
  438. package/contracts/product/ApplicationService.sol +274 -0
  439. package/contracts/product/ApplicationServiceManager.sol +38 -0
  440. package/contracts/product/BasicProduct.sol +49 -0
  441. package/contracts/product/BasicProductAuthorization.sol +56 -0
  442. package/contracts/product/ClaimService.sol +632 -0
  443. package/contracts/product/ClaimServiceManager.sol +38 -0
  444. package/contracts/product/IApplicationService.sol +69 -0
  445. package/contracts/product/IClaimService.sol +135 -0
  446. package/contracts/product/IPolicyService.sol +95 -0
  447. package/contracts/product/IPricingService.sol +40 -0
  448. package/contracts/product/IProductComponent.sol +62 -0
  449. package/contracts/product/IRiskService.sol +33 -0
  450. package/contracts/product/PolicyService.sol +664 -0
  451. package/contracts/product/PolicyServiceLib.sol +65 -0
  452. package/contracts/product/PolicyServiceManager.sol +39 -0
  453. package/contracts/product/PricingService.sol +309 -0
  454. package/contracts/product/PricingServiceManager.sol +39 -0
  455. package/contracts/product/Product.sol +467 -0
  456. package/contracts/product/RiskService.sol +154 -0
  457. package/contracts/product/RiskServiceManager.sol +39 -0
  458. package/contracts/registry/ChainNft.sol +130 -40
  459. package/contracts/registry/IRegistry.sol +138 -29
  460. package/contracts/registry/IRegistryService.sol +62 -0
  461. package/contracts/registry/IRelease.sol +26 -0
  462. package/contracts/registry/ITransferInterceptor.sol +6 -0
  463. package/contracts/registry/Registry.sol +631 -282
  464. package/contracts/registry/RegistryAdmin.sol +258 -0
  465. package/contracts/registry/RegistryAuthorization.sol +267 -0
  466. package/contracts/registry/RegistryService.sol +241 -0
  467. package/contracts/registry/RegistryServiceManager.sol +53 -0
  468. package/contracts/registry/ReleaseAdmin.sol +253 -0
  469. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  470. package/contracts/registry/ReleaseRegistry.sol +517 -0
  471. package/contracts/registry/ServiceAuthorizationV3.sol +331 -0
  472. package/contracts/registry/TokenRegistry.sol +313 -0
  473. package/contracts/shared/Component.sol +210 -0
  474. package/contracts/shared/ComponentService.sol +708 -0
  475. package/contracts/shared/ComponentServiceManager.sol +38 -0
  476. package/contracts/shared/ComponentVerifyingService.sol +128 -0
  477. package/contracts/shared/ContractLib.sol +281 -0
  478. package/contracts/shared/IComponent.sol +58 -0
  479. package/contracts/shared/IComponentService.sol +112 -0
  480. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  481. package/contracts/shared/IKeyValueStore.sol +54 -0
  482. package/contracts/{instance/base → shared}/ILifecycle.sol +6 -5
  483. package/contracts/shared/INftOwnable.sol +25 -0
  484. package/contracts/shared/IPolicyHolder.sol +35 -0
  485. package/contracts/shared/IRegisterable.sol +33 -20
  486. package/contracts/shared/IRegistryLinked.sol +11 -0
  487. package/contracts/shared/IService.sol +23 -0
  488. package/contracts/shared/InitializableERC165.sol +35 -0
  489. package/contracts/shared/InstanceLinkedComponent.sol +195 -0
  490. package/contracts/shared/KeyValueStore.sol +131 -0
  491. package/contracts/shared/Lifecycle.sol +88 -0
  492. package/contracts/shared/NftIdSet.sol +65 -0
  493. package/contracts/shared/NftOwnable.sol +127 -0
  494. package/contracts/shared/PolicyHolder.sol +62 -0
  495. package/contracts/shared/Registerable.sol +80 -60
  496. package/contracts/shared/RegistryLinked.sol +38 -0
  497. package/contracts/shared/Service.sol +65 -0
  498. package/contracts/shared/TokenHandler.sol +342 -0
  499. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  500. package/contracts/staking/IStaking.sol +175 -0
  501. package/contracts/staking/IStakingService.sol +172 -0
  502. package/contracts/staking/Staking.sol +546 -0
  503. package/contracts/staking/StakingLib.sol +281 -0
  504. package/contracts/staking/StakingLifecycle.sol +23 -0
  505. package/contracts/staking/StakingManager.sol +52 -0
  506. package/contracts/staking/StakingReader.sol +180 -0
  507. package/contracts/staking/StakingService.sol +464 -0
  508. package/contracts/staking/StakingServiceManager.sol +45 -0
  509. package/contracts/staking/StakingStore.sol +606 -0
  510. package/contracts/staking/TargetManagerLib.sol +211 -0
  511. package/contracts/{types → type}/AddressSet.sol +1 -1
  512. package/contracts/type/Amount.sol +150 -0
  513. package/contracts/{types → type}/Blocknumber.sol +27 -3
  514. package/contracts/type/ClaimId.sol +80 -0
  515. package/contracts/type/DistributorType.sol +55 -0
  516. package/contracts/type/Fee.sol +65 -0
  517. package/contracts/{types → type}/Key32.sol +10 -5
  518. package/contracts/type/Key32Set.sol +62 -0
  519. package/contracts/{types → type}/NftId.sol +28 -15
  520. package/contracts/type/NftIdSet.sol +62 -0
  521. package/contracts/type/ObjectType.sol +294 -0
  522. package/contracts/type/PayoutId.sol +82 -0
  523. package/contracts/type/Referral.sol +90 -0
  524. package/contracts/type/RequestId.sol +75 -0
  525. package/contracts/type/RiskId.sol +75 -0
  526. package/contracts/type/RoleId.sol +182 -0
  527. package/contracts/type/Seconds.sol +101 -0
  528. package/contracts/type/Selector.sol +107 -0
  529. package/contracts/{types → type}/StateId.sol +53 -5
  530. package/contracts/type/String.sol +53 -0
  531. package/contracts/{types → type}/Timestamp.sol +37 -19
  532. package/contracts/{types → type}/UFixed.sol +55 -19
  533. package/contracts/type/Version.sol +159 -0
  534. package/contracts/upgradeability/IVersionable.sol +53 -0
  535. package/contracts/upgradeability/ProxyManager.sol +232 -0
  536. package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +14 -0
  537. package/contracts/upgradeability/Versionable.sol +59 -0
  538. package/package.json +13 -8
  539. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  540. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
  541. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  542. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  543. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -356
  544. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  545. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -279
  546. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  547. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -387
  548. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  549. package/artifacts/contracts/components/Product.sol/Product.json +0 -305
  550. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  551. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  552. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  553. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  554. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  555. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  556. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  557. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  558. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  559. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  560. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  561. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  562. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  563. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  564. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  565. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  566. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  567. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  568. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  569. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  570. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  571. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  572. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  573. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  574. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  575. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  576. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  577. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  578. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  579. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  580. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  581. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  582. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  583. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  584. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
  585. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  586. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
  587. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  588. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -63
  589. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  590. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  591. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
  592. package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
  593. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  594. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +0 -326
  595. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  596. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -692
  597. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  598. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  599. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
  600. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  601. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
  602. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
  603. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
  604. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
  605. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  606. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
  607. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
  608. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -296
  609. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
  610. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
  611. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -296
  612. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
  613. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
  614. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
  615. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
  616. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
  617. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
  618. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  619. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -188
  620. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
  621. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
  622. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  623. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -188
  624. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  625. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  626. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -261
  627. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  628. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -261
  629. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  630. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
  631. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  632. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -149
  633. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  634. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -149
  635. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
  636. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
  637. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
  638. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
  639. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
  640. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  641. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
  642. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  643. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -533
  644. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  645. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
  646. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  647. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -533
  648. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  649. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -523
  650. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  651. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  652. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  653. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  654. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -471
  655. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  656. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -673
  657. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  658. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
  659. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
  660. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  661. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
  662. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
  663. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  664. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -164
  665. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  666. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -164
  667. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  668. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  669. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
  670. package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -387
  671. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
  672. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -393
  673. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  674. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
  675. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  676. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  677. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  678. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -379
  679. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  680. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
  681. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  682. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  683. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  684. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -206
  685. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  686. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
  687. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  688. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  689. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  690. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  691. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  692. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  693. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  694. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -218
  695. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  696. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -111
  697. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  698. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  699. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  700. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
  701. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  702. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  703. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  704. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -30
  705. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  706. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  707. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  708. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -236
  709. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  710. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
  711. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  712. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -139
  713. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  714. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
  715. package/contracts/components/BaseComponent.sol +0 -88
  716. package/contracts/components/IBaseComponent.sol +0 -19
  717. package/contracts/components/IPoolComponent.sol +0 -57
  718. package/contracts/components/IProductComponent.sol +0 -19
  719. package/contracts/components/Pool.sol +0 -174
  720. package/contracts/components/Product.sol +0 -117
  721. package/contracts/experiment/errors/Require.sol +0 -38
  722. package/contracts/experiment/errors/Revert.sol +0 -44
  723. package/contracts/experiment/inheritance/A.sol +0 -53
  724. package/contracts/experiment/inheritance/B.sol +0 -28
  725. package/contracts/experiment/inheritance/C.sol +0 -34
  726. package/contracts/experiment/inheritance/IA.sol +0 -13
  727. package/contracts/experiment/inheritance/IB.sol +0 -10
  728. package/contracts/experiment/inheritance/IC.sol +0 -12
  729. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  730. package/contracts/experiment/statemachine/ISM.sol +0 -25
  731. package/contracts/experiment/statemachine/README.md +0 -112
  732. package/contracts/experiment/statemachine/SM.sol +0 -57
  733. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  734. package/contracts/experiment/types/TypeA.sol +0 -47
  735. package/contracts/experiment/types/TypeB.sol +0 -29
  736. package/contracts/instance/IInstanceLinked.sol +0 -8
  737. package/contracts/instance/base/ComponentServiceBase.sol +0 -42
  738. package/contracts/instance/base/IInstanceBase.sol +0 -14
  739. package/contracts/instance/base/IKeyValueStore.sol +0 -49
  740. package/contracts/instance/base/IService.sol +0 -15
  741. package/contracts/instance/base/InstanceBase.sol +0 -80
  742. package/contracts/instance/base/KeyValueStore.sol +0 -156
  743. package/contracts/instance/base/Lifecycle.sol +0 -95
  744. package/contracts/instance/base/ModuleBase.sol +0 -52
  745. package/contracts/instance/base/ServiceBase.sol +0 -37
  746. package/contracts/instance/module/access/Access.sol +0 -149
  747. package/contracts/instance/module/access/IAccess.sol +0 -53
  748. package/contracts/instance/module/bundle/BundleModule.sol +0 -136
  749. package/contracts/instance/module/bundle/IBundle.sol +0 -58
  750. package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
  751. package/contracts/instance/module/compensation/ICompensation.sol +0 -10
  752. package/contracts/instance/module/component/ComponentModule.sol +0 -95
  753. package/contracts/instance/module/component/IComponent.sol +0 -53
  754. package/contracts/instance/module/policy/IPolicy.sol +0 -60
  755. package/contracts/instance/module/policy/PolicyModule.sol +0 -76
  756. package/contracts/instance/module/pool/IPoolModule.sol +0 -41
  757. package/contracts/instance/module/pool/PoolModule.sol +0 -87
  758. package/contracts/instance/module/risk/IRisk.sol +0 -10
  759. package/contracts/instance/module/risk/RiskModule.sol +0 -8
  760. package/contracts/instance/module/treasury/ITreasury.sol +0 -103
  761. package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
  762. package/contracts/instance/module/treasury/TreasuryModule.sol +0 -152
  763. package/contracts/instance/service/ComponentOwnerService.sol +0 -170
  764. package/contracts/instance/service/IComponentOwnerService.sol +0 -22
  765. package/contracts/instance/service/IPoolService.sol +0 -30
  766. package/contracts/instance/service/IProductService.sol +0 -58
  767. package/contracts/instance/service/PoolService.sol +0 -123
  768. package/contracts/instance/service/ProductService.sol +0 -354
  769. package/contracts/registry/IChainNft.sol +0 -21
  770. package/contracts/registry/IRegistryLinked.sol +0 -8
  771. package/contracts/shared/ERC165.sol +0 -21
  772. package/contracts/shared/IOwnable.sol +0 -6
  773. package/contracts/shared/IVersionable.sol +0 -52
  774. package/contracts/shared/Versionable.sol +0 -89
  775. package/contracts/test/TestFee.sol +0 -25
  776. package/contracts/test/TestPool.sol +0 -22
  777. package/contracts/test/TestProduct.sol +0 -44
  778. package/contracts/test/TestRegisterable.sol +0 -19
  779. package/contracts/test/TestRoleId.sol +0 -14
  780. package/contracts/test/TestService.sol +0 -32
  781. package/contracts/test/TestToken.sol +0 -26
  782. package/contracts/test/TestVersion.sol +0 -44
  783. package/contracts/test/TestVersionable.sol +0 -17
  784. package/contracts/types/ChainId.sol +0 -38
  785. package/contracts/types/Fee.sol +0 -51
  786. package/contracts/types/NftIdSet.sol +0 -60
  787. package/contracts/types/ObjectType.sol +0 -115
  788. package/contracts/types/RoleId.sol +0 -38
  789. package/contracts/types/Version.sol +0 -95
@@ -0,0 +1,1556 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ComponentService",
4
+ "sourceName": "contracts/shared/ComponentService.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": "address",
48
+ "name": "authority",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorAuthorityInvalid",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "component",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "ErrorComponentServiceAlreadyRegistered",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "instanceAddress",
71
+ "type": "address"
72
+ },
73
+ {
74
+ "internalType": "VersionPart",
75
+ "name": "instanceVersion",
76
+ "type": "uint8"
77
+ }
78
+ ],
79
+ "name": "ErrorComponentServiceInstanceVersionMismatch",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [
84
+ {
85
+ "internalType": "address",
86
+ "name": "component",
87
+ "type": "address"
88
+ },
89
+ {
90
+ "internalType": "ObjectType",
91
+ "name": "requiredType",
92
+ "type": "uint8"
93
+ },
94
+ {
95
+ "internalType": "ObjectType",
96
+ "name": "componentType",
97
+ "type": "uint8"
98
+ }
99
+ ],
100
+ "name": "ErrorComponentServiceInvalidType",
101
+ "type": "error"
102
+ },
103
+ {
104
+ "inputs": [],
105
+ "name": "ErrorComponentServiceNewWalletAddressZero",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [
110
+ {
111
+ "internalType": "address",
112
+ "name": "component",
113
+ "type": "address"
114
+ }
115
+ ],
116
+ "name": "ErrorComponentServiceNotComponent",
117
+ "type": "error"
118
+ },
119
+ {
120
+ "inputs": [
121
+ {
122
+ "internalType": "address",
123
+ "name": "instanceAddress",
124
+ "type": "address"
125
+ },
126
+ {
127
+ "internalType": "ObjectType",
128
+ "name": "objectType",
129
+ "type": "uint8"
130
+ }
131
+ ],
132
+ "name": "ErrorComponentServiceNotInstance",
133
+ "type": "error"
134
+ },
135
+ {
136
+ "inputs": [
137
+ {
138
+ "internalType": "address",
139
+ "name": "component",
140
+ "type": "address"
141
+ }
142
+ ],
143
+ "name": "ErrorComponentServiceNotInstanceLinkedComponent",
144
+ "type": "error"
145
+ },
146
+ {
147
+ "inputs": [
148
+ {
149
+ "internalType": "address",
150
+ "name": "instanceAddress",
151
+ "type": "address"
152
+ }
153
+ ],
154
+ "name": "ErrorComponentServiceNotRegistered",
155
+ "type": "error"
156
+ },
157
+ {
158
+ "inputs": [
159
+ {
160
+ "internalType": "NftId",
161
+ "name": "nftId",
162
+ "type": "uint96"
163
+ },
164
+ {
165
+ "internalType": "ObjectType",
166
+ "name": "objectType",
167
+ "type": "uint8"
168
+ }
169
+ ],
170
+ "name": "ErrorComponentServiceParentNotInstance",
171
+ "type": "error"
172
+ },
173
+ {
174
+ "inputs": [
175
+ {
176
+ "internalType": "NftId",
177
+ "name": "nftId",
178
+ "type": "uint96"
179
+ },
180
+ {
181
+ "internalType": "ObjectType",
182
+ "name": "objectType",
183
+ "type": "uint8"
184
+ }
185
+ ],
186
+ "name": "ErrorComponentServiceParentNotProduct",
187
+ "type": "error"
188
+ },
189
+ {
190
+ "inputs": [
191
+ {
192
+ "internalType": "address",
193
+ "name": "component",
194
+ "type": "address"
195
+ },
196
+ {
197
+ "internalType": "VersionPart",
198
+ "name": "componentRelease",
199
+ "type": "uint8"
200
+ },
201
+ {
202
+ "internalType": "VersionPart",
203
+ "name": "parentRelease",
204
+ "type": "uint8"
205
+ }
206
+ ],
207
+ "name": "ErrorComponentServiceReleaseMismatch",
208
+ "type": "error"
209
+ },
210
+ {
211
+ "inputs": [
212
+ {
213
+ "internalType": "NftId",
214
+ "name": "senderNftId",
215
+ "type": "uint96"
216
+ },
217
+ {
218
+ "internalType": "NftId",
219
+ "name": "compnentParentNftId",
220
+ "type": "uint96"
221
+ }
222
+ ],
223
+ "name": "ErrorComponentServiceSenderNotComponentParent",
224
+ "type": "error"
225
+ },
226
+ {
227
+ "inputs": [
228
+ {
229
+ "internalType": "address",
230
+ "name": "sender",
231
+ "type": "address"
232
+ }
233
+ ],
234
+ "name": "ErrorComponentServiceSenderNotRegistered",
235
+ "type": "error"
236
+ },
237
+ {
238
+ "inputs": [
239
+ {
240
+ "internalType": "address",
241
+ "name": "token",
242
+ "type": "address"
243
+ }
244
+ ],
245
+ "name": "ErrorComponentServiceTokenInvalid",
246
+ "type": "error"
247
+ },
248
+ {
249
+ "inputs": [
250
+ {
251
+ "internalType": "address",
252
+ "name": "component",
253
+ "type": "address"
254
+ },
255
+ {
256
+ "internalType": "ObjectType",
257
+ "name": "invalidType",
258
+ "type": "uint8"
259
+ }
260
+ ],
261
+ "name": "ErrorComponentServiceTypeNotSupported",
262
+ "type": "error"
263
+ },
264
+ {
265
+ "inputs": [],
266
+ "name": "ErrorComponentServiceWalletAddressIsSameAsCurrent",
267
+ "type": "error"
268
+ },
269
+ {
270
+ "inputs": [],
271
+ "name": "ErrorComponentServiceWalletAddressZero",
272
+ "type": "error"
273
+ },
274
+ {
275
+ "inputs": [
276
+ {
277
+ "internalType": "address",
278
+ "name": "wallet",
279
+ "type": "address"
280
+ },
281
+ {
282
+ "internalType": "address",
283
+ "name": "spender",
284
+ "type": "address"
285
+ },
286
+ {
287
+ "internalType": "uint256",
288
+ "name": "allowance",
289
+ "type": "uint256"
290
+ },
291
+ {
292
+ "internalType": "uint256",
293
+ "name": "amount",
294
+ "type": "uint256"
295
+ }
296
+ ],
297
+ "name": "ErrorComponentServiceWalletAllowanceTooSmall",
298
+ "type": "error"
299
+ },
300
+ {
301
+ "inputs": [
302
+ {
303
+ "internalType": "Amount",
304
+ "name": "withdrawnAmount",
305
+ "type": "uint96"
306
+ },
307
+ {
308
+ "internalType": "Amount",
309
+ "name": "withdrawLimit",
310
+ "type": "uint96"
311
+ }
312
+ ],
313
+ "name": "ErrorComponentServiceWithdrawAmountExceedsLimit",
314
+ "type": "error"
315
+ },
316
+ {
317
+ "inputs": [],
318
+ "name": "ErrorComponentServiceWithdrawAmountIsZero",
319
+ "type": "error"
320
+ },
321
+ {
322
+ "inputs": [
323
+ {
324
+ "internalType": "NftId",
325
+ "name": "nftId",
326
+ "type": "uint96"
327
+ }
328
+ ],
329
+ "name": "ErrorNftOwnableAlreadyLinked",
330
+ "type": "error"
331
+ },
332
+ {
333
+ "inputs": [
334
+ {
335
+ "internalType": "address",
336
+ "name": "contractAddress",
337
+ "type": "address"
338
+ }
339
+ ],
340
+ "name": "ErrorNftOwnableContractNotRegistered",
341
+ "type": "error"
342
+ },
343
+ {
344
+ "inputs": [],
345
+ "name": "ErrorNftOwnableInitialOwnerZero",
346
+ "type": "error"
347
+ },
348
+ {
349
+ "inputs": [
350
+ {
351
+ "internalType": "NftId",
352
+ "name": "nftId",
353
+ "type": "uint96"
354
+ },
355
+ {
356
+ "internalType": "ObjectType",
357
+ "name": "expectedObjectType",
358
+ "type": "uint8"
359
+ }
360
+ ],
361
+ "name": "ErrorNftOwnableInvalidType",
362
+ "type": "error"
363
+ },
364
+ {
365
+ "inputs": [
366
+ {
367
+ "internalType": "address",
368
+ "name": "account",
369
+ "type": "address"
370
+ }
371
+ ],
372
+ "name": "ErrorNftOwnableNotOwner",
373
+ "type": "error"
374
+ },
375
+ {
376
+ "inputs": [
377
+ {
378
+ "internalType": "address",
379
+ "name": "registryAddress",
380
+ "type": "address"
381
+ }
382
+ ],
383
+ "name": "ErrorNotRegistry",
384
+ "type": "error"
385
+ },
386
+ {
387
+ "inputs": [
388
+ {
389
+ "internalType": "NftId",
390
+ "name": "productNftId",
391
+ "type": "uint96"
392
+ },
393
+ {
394
+ "internalType": "NftId",
395
+ "name": "distributionNftId",
396
+ "type": "uint96"
397
+ }
398
+ ],
399
+ "name": "ErrorProductServiceDistributionAlreadyRegistered",
400
+ "type": "error"
401
+ },
402
+ {
403
+ "inputs": [
404
+ {
405
+ "internalType": "NftId",
406
+ "name": "productNftId",
407
+ "type": "uint96"
408
+ }
409
+ ],
410
+ "name": "ErrorProductServiceNoDistributionExpected",
411
+ "type": "error"
412
+ },
413
+ {
414
+ "inputs": [
415
+ {
416
+ "internalType": "NftId",
417
+ "name": "productNftId",
418
+ "type": "uint96"
419
+ }
420
+ ],
421
+ "name": "ErrorProductServiceNoOraclesExpected",
422
+ "type": "error"
423
+ },
424
+ {
425
+ "inputs": [
426
+ {
427
+ "internalType": "NftId",
428
+ "name": "productNftId",
429
+ "type": "uint96"
430
+ },
431
+ {
432
+ "internalType": "uint8",
433
+ "name": "expectedOracles",
434
+ "type": "uint8"
435
+ }
436
+ ],
437
+ "name": "ErrorProductServiceOraclesAlreadyRegistered",
438
+ "type": "error"
439
+ },
440
+ {
441
+ "inputs": [
442
+ {
443
+ "internalType": "NftId",
444
+ "name": "productNftId",
445
+ "type": "uint96"
446
+ },
447
+ {
448
+ "internalType": "NftId",
449
+ "name": "poolNftId",
450
+ "type": "uint96"
451
+ }
452
+ ],
453
+ "name": "ErrorProductServicePoolAlreadyRegistered",
454
+ "type": "error"
455
+ },
456
+ {
457
+ "inputs": [],
458
+ "name": "ErrorRegisterableNotActive",
459
+ "type": "error"
460
+ },
461
+ {
462
+ "inputs": [],
463
+ "name": "InvalidInitialization",
464
+ "type": "error"
465
+ },
466
+ {
467
+ "inputs": [],
468
+ "name": "NotInitializing",
469
+ "type": "error"
470
+ },
471
+ {
472
+ "inputs": [],
473
+ "name": "ReentrancyGuardReentrantCall",
474
+ "type": "error"
475
+ },
476
+ {
477
+ "anonymous": false,
478
+ "inputs": [
479
+ {
480
+ "indexed": false,
481
+ "internalType": "address",
482
+ "name": "authority",
483
+ "type": "address"
484
+ }
485
+ ],
486
+ "name": "AuthorityUpdated",
487
+ "type": "event"
488
+ },
489
+ {
490
+ "anonymous": false,
491
+ "inputs": [
492
+ {
493
+ "indexed": false,
494
+ "internalType": "uint64",
495
+ "name": "version",
496
+ "type": "uint64"
497
+ }
498
+ ],
499
+ "name": "Initialized",
500
+ "type": "event"
501
+ },
502
+ {
503
+ "anonymous": false,
504
+ "inputs": [
505
+ {
506
+ "indexed": false,
507
+ "internalType": "NftId",
508
+ "name": "componentNftId",
509
+ "type": "uint96"
510
+ },
511
+ {
512
+ "indexed": false,
513
+ "internalType": "address",
514
+ "name": "recipient",
515
+ "type": "address"
516
+ },
517
+ {
518
+ "indexed": false,
519
+ "internalType": "address",
520
+ "name": "token",
521
+ "type": "address"
522
+ },
523
+ {
524
+ "indexed": false,
525
+ "internalType": "Amount",
526
+ "name": "withdrawnAmount",
527
+ "type": "uint96"
528
+ }
529
+ ],
530
+ "name": "LogComponentServiceComponentFeesWithdrawn",
531
+ "type": "event"
532
+ },
533
+ {
534
+ "anonymous": false,
535
+ "inputs": [
536
+ {
537
+ "indexed": false,
538
+ "internalType": "NftId",
539
+ "name": "distributionNftId",
540
+ "type": "uint96"
541
+ }
542
+ ],
543
+ "name": "LogComponentServiceDistributionFeesUpdated",
544
+ "type": "event"
545
+ },
546
+ {
547
+ "anonymous": false,
548
+ "inputs": [
549
+ {
550
+ "indexed": false,
551
+ "internalType": "NftId",
552
+ "name": "poolNftId",
553
+ "type": "uint96"
554
+ }
555
+ ],
556
+ "name": "LogComponentServicePoolFeesUpdated",
557
+ "type": "event"
558
+ },
559
+ {
560
+ "anonymous": false,
561
+ "inputs": [
562
+ {
563
+ "indexed": false,
564
+ "internalType": "NftId",
565
+ "name": "productNftId",
566
+ "type": "uint96"
567
+ }
568
+ ],
569
+ "name": "LogComponentServiceProductFeesUpdated",
570
+ "type": "event"
571
+ },
572
+ {
573
+ "anonymous": false,
574
+ "inputs": [
575
+ {
576
+ "indexed": false,
577
+ "internalType": "NftId",
578
+ "name": "instanceNftId",
579
+ "type": "uint96"
580
+ },
581
+ {
582
+ "indexed": false,
583
+ "internalType": "NftId",
584
+ "name": "componentNftId",
585
+ "type": "uint96"
586
+ },
587
+ {
588
+ "indexed": false,
589
+ "internalType": "ObjectType",
590
+ "name": "componentType",
591
+ "type": "uint8"
592
+ },
593
+ {
594
+ "indexed": false,
595
+ "internalType": "address",
596
+ "name": "component",
597
+ "type": "address"
598
+ },
599
+ {
600
+ "indexed": false,
601
+ "internalType": "address",
602
+ "name": "token",
603
+ "type": "address"
604
+ },
605
+ {
606
+ "indexed": false,
607
+ "internalType": "address",
608
+ "name": "initialOwner",
609
+ "type": "address"
610
+ }
611
+ ],
612
+ "name": "LogComponentServiceRegistered",
613
+ "type": "event"
614
+ },
615
+ {
616
+ "anonymous": false,
617
+ "inputs": [
618
+ {
619
+ "indexed": false,
620
+ "internalType": "NftId",
621
+ "name": "nftId",
622
+ "type": "uint96"
623
+ },
624
+ {
625
+ "indexed": false,
626
+ "internalType": "string",
627
+ "name": "feeName",
628
+ "type": "string"
629
+ },
630
+ {
631
+ "indexed": false,
632
+ "internalType": "UFixed",
633
+ "name": "previousFractionalFee",
634
+ "type": "uint128"
635
+ },
636
+ {
637
+ "indexed": false,
638
+ "internalType": "Amount",
639
+ "name": "previousFixedFee",
640
+ "type": "uint96"
641
+ },
642
+ {
643
+ "indexed": false,
644
+ "internalType": "UFixed",
645
+ "name": "newFractionalFee",
646
+ "type": "uint128"
647
+ },
648
+ {
649
+ "indexed": false,
650
+ "internalType": "Amount",
651
+ "name": "newFixedFee",
652
+ "type": "uint96"
653
+ }
654
+ ],
655
+ "name": "LogComponentServiceUpdateFee",
656
+ "type": "event"
657
+ },
658
+ {
659
+ "anonymous": false,
660
+ "inputs": [
661
+ {
662
+ "indexed": false,
663
+ "internalType": "NftId",
664
+ "name": "componentNftId",
665
+ "type": "uint96"
666
+ },
667
+ {
668
+ "indexed": false,
669
+ "internalType": "address",
670
+ "name": "currentWallet",
671
+ "type": "address"
672
+ },
673
+ {
674
+ "indexed": false,
675
+ "internalType": "address",
676
+ "name": "newWallet",
677
+ "type": "address"
678
+ }
679
+ ],
680
+ "name": "LogComponentServiceWalletAddressChanged",
681
+ "type": "event"
682
+ },
683
+ {
684
+ "anonymous": false,
685
+ "inputs": [
686
+ {
687
+ "indexed": false,
688
+ "internalType": "NftId",
689
+ "name": "componentNftId",
690
+ "type": "uint96"
691
+ },
692
+ {
693
+ "indexed": false,
694
+ "internalType": "address",
695
+ "name": "currentWallet",
696
+ "type": "address"
697
+ },
698
+ {
699
+ "indexed": false,
700
+ "internalType": "address",
701
+ "name": "newWallet",
702
+ "type": "address"
703
+ },
704
+ {
705
+ "indexed": false,
706
+ "internalType": "uint256",
707
+ "name": "currentBalance",
708
+ "type": "uint256"
709
+ }
710
+ ],
711
+ "name": "LogComponentServiceWalletTokensTransferred",
712
+ "type": "event"
713
+ },
714
+ {
715
+ "inputs": [],
716
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
717
+ "outputs": [
718
+ {
719
+ "internalType": "bytes32",
720
+ "name": "",
721
+ "type": "bytes32"
722
+ }
723
+ ],
724
+ "stateMutability": "view",
725
+ "type": "function"
726
+ },
727
+ {
728
+ "inputs": [],
729
+ "name": "REGISTERABLE_LOCATION_V1",
730
+ "outputs": [
731
+ {
732
+ "internalType": "bytes32",
733
+ "name": "",
734
+ "type": "bytes32"
735
+ }
736
+ ],
737
+ "stateMutability": "view",
738
+ "type": "function"
739
+ },
740
+ {
741
+ "inputs": [
742
+ {
743
+ "internalType": "contract IERC20Metadata",
744
+ "name": "token",
745
+ "type": "address"
746
+ },
747
+ {
748
+ "internalType": "Amount",
749
+ "name": "amount",
750
+ "type": "uint96"
751
+ }
752
+ ],
753
+ "name": "approveTokenHandler",
754
+ "outputs": [],
755
+ "stateMutability": "nonpayable",
756
+ "type": "function"
757
+ },
758
+ {
759
+ "inputs": [],
760
+ "name": "authority",
761
+ "outputs": [
762
+ {
763
+ "internalType": "address",
764
+ "name": "",
765
+ "type": "address"
766
+ }
767
+ ],
768
+ "stateMutability": "view",
769
+ "type": "function"
770
+ },
771
+ {
772
+ "inputs": [],
773
+ "name": "getDomain",
774
+ "outputs": [
775
+ {
776
+ "internalType": "ObjectType",
777
+ "name": "serviceDomain",
778
+ "type": "uint8"
779
+ }
780
+ ],
781
+ "stateMutability": "pure",
782
+ "type": "function"
783
+ },
784
+ {
785
+ "inputs": [],
786
+ "name": "getInitialInfo",
787
+ "outputs": [
788
+ {
789
+ "components": [
790
+ {
791
+ "internalType": "NftId",
792
+ "name": "nftId",
793
+ "type": "uint96"
794
+ },
795
+ {
796
+ "internalType": "NftId",
797
+ "name": "parentNftId",
798
+ "type": "uint96"
799
+ },
800
+ {
801
+ "internalType": "ObjectType",
802
+ "name": "objectType",
803
+ "type": "uint8"
804
+ },
805
+ {
806
+ "internalType": "bool",
807
+ "name": "isInterceptor",
808
+ "type": "bool"
809
+ },
810
+ {
811
+ "internalType": "address",
812
+ "name": "objectAddress",
813
+ "type": "address"
814
+ },
815
+ {
816
+ "internalType": "address",
817
+ "name": "initialOwner",
818
+ "type": "address"
819
+ },
820
+ {
821
+ "internalType": "bytes",
822
+ "name": "data",
823
+ "type": "bytes"
824
+ }
825
+ ],
826
+ "internalType": "struct IRegistry.ObjectInfo",
827
+ "name": "info",
828
+ "type": "tuple"
829
+ }
830
+ ],
831
+ "stateMutability": "view",
832
+ "type": "function"
833
+ },
834
+ {
835
+ "inputs": [],
836
+ "name": "getNftId",
837
+ "outputs": [
838
+ {
839
+ "internalType": "NftId",
840
+ "name": "",
841
+ "type": "uint96"
842
+ }
843
+ ],
844
+ "stateMutability": "view",
845
+ "type": "function"
846
+ },
847
+ {
848
+ "inputs": [],
849
+ "name": "getOwner",
850
+ "outputs": [
851
+ {
852
+ "internalType": "address",
853
+ "name": "",
854
+ "type": "address"
855
+ }
856
+ ],
857
+ "stateMutability": "view",
858
+ "type": "function"
859
+ },
860
+ {
861
+ "inputs": [],
862
+ "name": "getRegistry",
863
+ "outputs": [
864
+ {
865
+ "internalType": "contract IRegistry",
866
+ "name": "",
867
+ "type": "address"
868
+ }
869
+ ],
870
+ "stateMutability": "view",
871
+ "type": "function"
872
+ },
873
+ {
874
+ "inputs": [],
875
+ "name": "getRelease",
876
+ "outputs": [
877
+ {
878
+ "internalType": "VersionPart",
879
+ "name": "release",
880
+ "type": "uint8"
881
+ }
882
+ ],
883
+ "stateMutability": "view",
884
+ "type": "function"
885
+ },
886
+ {
887
+ "inputs": [],
888
+ "name": "getRoleId",
889
+ "outputs": [
890
+ {
891
+ "internalType": "RoleId",
892
+ "name": "serviceRoleId",
893
+ "type": "uint64"
894
+ }
895
+ ],
896
+ "stateMutability": "view",
897
+ "type": "function"
898
+ },
899
+ {
900
+ "inputs": [],
901
+ "name": "getVersion",
902
+ "outputs": [
903
+ {
904
+ "internalType": "Version",
905
+ "name": "",
906
+ "type": "uint24"
907
+ }
908
+ ],
909
+ "stateMutability": "pure",
910
+ "type": "function"
911
+ },
912
+ {
913
+ "inputs": [
914
+ {
915
+ "internalType": "address",
916
+ "name": "activatedBy",
917
+ "type": "address"
918
+ },
919
+ {
920
+ "internalType": "bytes",
921
+ "name": "data",
922
+ "type": "bytes"
923
+ }
924
+ ],
925
+ "name": "initializeVersionable",
926
+ "outputs": [],
927
+ "stateMutability": "nonpayable",
928
+ "type": "function"
929
+ },
930
+ {
931
+ "inputs": [],
932
+ "name": "isActive",
933
+ "outputs": [
934
+ {
935
+ "internalType": "bool",
936
+ "name": "active",
937
+ "type": "bool"
938
+ }
939
+ ],
940
+ "stateMutability": "view",
941
+ "type": "function"
942
+ },
943
+ {
944
+ "inputs": [],
945
+ "name": "isConsumingScheduledOp",
946
+ "outputs": [
947
+ {
948
+ "internalType": "bytes4",
949
+ "name": "",
950
+ "type": "bytes4"
951
+ }
952
+ ],
953
+ "stateMutability": "view",
954
+ "type": "function"
955
+ },
956
+ {
957
+ "inputs": [],
958
+ "name": "linkToRegisteredNftId",
959
+ "outputs": [
960
+ {
961
+ "internalType": "NftId",
962
+ "name": "nftId",
963
+ "type": "uint96"
964
+ }
965
+ ],
966
+ "stateMutability": "nonpayable",
967
+ "type": "function"
968
+ },
969
+ {
970
+ "inputs": [
971
+ {
972
+ "internalType": "address",
973
+ "name": "component",
974
+ "type": "address"
975
+ }
976
+ ],
977
+ "name": "registerComponent",
978
+ "outputs": [
979
+ {
980
+ "internalType": "NftId",
981
+ "name": "componentNftId",
982
+ "type": "uint96"
983
+ }
984
+ ],
985
+ "stateMutability": "nonpayable",
986
+ "type": "function"
987
+ },
988
+ {
989
+ "inputs": [
990
+ {
991
+ "internalType": "address",
992
+ "name": "productAddress",
993
+ "type": "address"
994
+ },
995
+ {
996
+ "internalType": "address",
997
+ "name": "token",
998
+ "type": "address"
999
+ }
1000
+ ],
1001
+ "name": "registerProduct",
1002
+ "outputs": [
1003
+ {
1004
+ "internalType": "NftId",
1005
+ "name": "productNftId",
1006
+ "type": "uint96"
1007
+ }
1008
+ ],
1009
+ "stateMutability": "nonpayable",
1010
+ "type": "function"
1011
+ },
1012
+ {
1013
+ "inputs": [
1014
+ {
1015
+ "internalType": "address",
1016
+ "name": "newAuthority",
1017
+ "type": "address"
1018
+ }
1019
+ ],
1020
+ "name": "setAuthority",
1021
+ "outputs": [],
1022
+ "stateMutability": "nonpayable",
1023
+ "type": "function"
1024
+ },
1025
+ {
1026
+ "inputs": [
1027
+ {
1028
+ "components": [
1029
+ {
1030
+ "internalType": "UFixed",
1031
+ "name": "fractionalFee",
1032
+ "type": "uint128"
1033
+ },
1034
+ {
1035
+ "internalType": "Amount",
1036
+ "name": "fixedFee",
1037
+ "type": "uint96"
1038
+ }
1039
+ ],
1040
+ "internalType": "struct Fee",
1041
+ "name": "distributionFee",
1042
+ "type": "tuple"
1043
+ },
1044
+ {
1045
+ "components": [
1046
+ {
1047
+ "internalType": "UFixed",
1048
+ "name": "fractionalFee",
1049
+ "type": "uint128"
1050
+ },
1051
+ {
1052
+ "internalType": "Amount",
1053
+ "name": "fixedFee",
1054
+ "type": "uint96"
1055
+ }
1056
+ ],
1057
+ "internalType": "struct Fee",
1058
+ "name": "minDistributionOwnerFee",
1059
+ "type": "tuple"
1060
+ }
1061
+ ],
1062
+ "name": "setDistributionFees",
1063
+ "outputs": [],
1064
+ "stateMutability": "nonpayable",
1065
+ "type": "function"
1066
+ },
1067
+ {
1068
+ "inputs": [
1069
+ {
1070
+ "internalType": "bool",
1071
+ "name": "locked",
1072
+ "type": "bool"
1073
+ }
1074
+ ],
1075
+ "name": "setLocked",
1076
+ "outputs": [],
1077
+ "stateMutability": "nonpayable",
1078
+ "type": "function"
1079
+ },
1080
+ {
1081
+ "inputs": [
1082
+ {
1083
+ "components": [
1084
+ {
1085
+ "internalType": "UFixed",
1086
+ "name": "fractionalFee",
1087
+ "type": "uint128"
1088
+ },
1089
+ {
1090
+ "internalType": "Amount",
1091
+ "name": "fixedFee",
1092
+ "type": "uint96"
1093
+ }
1094
+ ],
1095
+ "internalType": "struct Fee",
1096
+ "name": "poolFee",
1097
+ "type": "tuple"
1098
+ },
1099
+ {
1100
+ "components": [
1101
+ {
1102
+ "internalType": "UFixed",
1103
+ "name": "fractionalFee",
1104
+ "type": "uint128"
1105
+ },
1106
+ {
1107
+ "internalType": "Amount",
1108
+ "name": "fixedFee",
1109
+ "type": "uint96"
1110
+ }
1111
+ ],
1112
+ "internalType": "struct Fee",
1113
+ "name": "stakingFee",
1114
+ "type": "tuple"
1115
+ },
1116
+ {
1117
+ "components": [
1118
+ {
1119
+ "internalType": "UFixed",
1120
+ "name": "fractionalFee",
1121
+ "type": "uint128"
1122
+ },
1123
+ {
1124
+ "internalType": "Amount",
1125
+ "name": "fixedFee",
1126
+ "type": "uint96"
1127
+ }
1128
+ ],
1129
+ "internalType": "struct Fee",
1130
+ "name": "performanceFee",
1131
+ "type": "tuple"
1132
+ }
1133
+ ],
1134
+ "name": "setPoolFees",
1135
+ "outputs": [],
1136
+ "stateMutability": "nonpayable",
1137
+ "type": "function"
1138
+ },
1139
+ {
1140
+ "inputs": [
1141
+ {
1142
+ "components": [
1143
+ {
1144
+ "internalType": "UFixed",
1145
+ "name": "fractionalFee",
1146
+ "type": "uint128"
1147
+ },
1148
+ {
1149
+ "internalType": "Amount",
1150
+ "name": "fixedFee",
1151
+ "type": "uint96"
1152
+ }
1153
+ ],
1154
+ "internalType": "struct Fee",
1155
+ "name": "productFee",
1156
+ "type": "tuple"
1157
+ },
1158
+ {
1159
+ "components": [
1160
+ {
1161
+ "internalType": "UFixed",
1162
+ "name": "fractionalFee",
1163
+ "type": "uint128"
1164
+ },
1165
+ {
1166
+ "internalType": "Amount",
1167
+ "name": "fixedFee",
1168
+ "type": "uint96"
1169
+ }
1170
+ ],
1171
+ "internalType": "struct Fee",
1172
+ "name": "processingFee",
1173
+ "type": "tuple"
1174
+ }
1175
+ ],
1176
+ "name": "setProductFees",
1177
+ "outputs": [],
1178
+ "stateMutability": "nonpayable",
1179
+ "type": "function"
1180
+ },
1181
+ {
1182
+ "inputs": [
1183
+ {
1184
+ "internalType": "address",
1185
+ "name": "newWallet",
1186
+ "type": "address"
1187
+ }
1188
+ ],
1189
+ "name": "setWallet",
1190
+ "outputs": [],
1191
+ "stateMutability": "nonpayable",
1192
+ "type": "function"
1193
+ },
1194
+ {
1195
+ "inputs": [
1196
+ {
1197
+ "internalType": "bytes4",
1198
+ "name": "interfaceId",
1199
+ "type": "bytes4"
1200
+ }
1201
+ ],
1202
+ "name": "supportsInterface",
1203
+ "outputs": [
1204
+ {
1205
+ "internalType": "bool",
1206
+ "name": "",
1207
+ "type": "bool"
1208
+ }
1209
+ ],
1210
+ "stateMutability": "view",
1211
+ "type": "function"
1212
+ },
1213
+ {
1214
+ "inputs": [
1215
+ {
1216
+ "internalType": "bytes",
1217
+ "name": "data",
1218
+ "type": "bytes"
1219
+ }
1220
+ ],
1221
+ "name": "upgradeVersionable",
1222
+ "outputs": [],
1223
+ "stateMutability": "nonpayable",
1224
+ "type": "function"
1225
+ },
1226
+ {
1227
+ "inputs": [
1228
+ {
1229
+ "internalType": "Amount",
1230
+ "name": "amount",
1231
+ "type": "uint96"
1232
+ }
1233
+ ],
1234
+ "name": "withdrawFees",
1235
+ "outputs": [
1236
+ {
1237
+ "internalType": "Amount",
1238
+ "name": "withdrawnAmount",
1239
+ "type": "uint96"
1240
+ }
1241
+ ],
1242
+ "stateMutability": "nonpayable",
1243
+ "type": "function"
1244
+ }
1245
+ ],
1246
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615b9a806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80636078a3b2116100f3578063ada9652e11610093578063bf7e214f1161006e578063bf7e214f146103e1578063deaa59df146103e9578063edd1b88a146103fc578063f1fc067b1461040f575f80fd5b8063ada9652e146103b3578063b568c1a5146103c7578063b68d1809146103da575f80fd5b806376b707b7116100ce57806376b707b71461035d5780637a9e5e4b14610377578063893d20e81461038a5780638fb3603714610392575f80fd5b80636078a3b21461030d578063644c45e0146103205780636c741e781461033d575f80fd5b8063211e28b61161015e578063419197fe11610139578063419197fe146102af57806349bb9e4b146102c25780635ab1bd53146102d55780635d966289146102fa575f80fd5b8063211e28b61461027f57806322f3e2d414610294578063329d6e741461029c575f80fd5b806301ffc9a7146101a55780630d8e6e2c146101e65780630fec111c14610202578063138461e0146102175780631c6b2190146102375780631eff4b221461024a575b5f80fd5b6101d16101b3366004614aa0565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101ee610422565b60405162ffffff90911681526020016101dd565b61020a6104a9565b6040516101dd9190614af5565b61021f610667565b6040516001600160601b0390911681526020016101dd565b61021f610245366004614b9d565b610671565b6102717f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b61029261028d366004614bc5565b610bd4565b005b6101d1610cb5565b6102926102aa366004614d2b565b610d2c565b6102926102bd366004614d70565b610e76565b6102926102d0366004614da7565b610fce565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61021f610308366004614df3565b6110c9565b61021f61031b366004614e1f565b6113e2565b5f80516020615ae5833981519152546001600160601b031661021f565b61034561167d565b6040516001600160401b0390911681526020016101dd565b610365611709565b60405160ff90911681526020016101dd565b610292610385366004614e1f565b611771565b6102e26117f7565b61039a611928565b6040516001600160e01b031990911681526020016101dd565b6102715f80516020615ae583398151915281565b6102926103d5366004614e8e565b61195d565b600b610365565b6102e2611cd8565b6102926103f7366004614e1f565b611cf3565b61029261040a366004614eb8565b611e3b565b61029261041d366004614e8e565b6121f8565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610480573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614efb565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610559573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061057d9190614f2d565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016105c56117f7565b6001600160a01b031681526020018260010180546105e290614f48565b80601f016020809104026020016040519081016040528092919081815260200182805461060e90614f48565b80156106595780601f1061063057610100808354040283529160200191610659565b820191905f5260205f20905b81548152906001019060200180831161063c57829003601f168201915b505050505081525091505090565b5f6104a4306124d9565b5f61067e335b5f366126d2565b5f8061068a600b6127d0565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106ef9190614f7a565b604051630232ca4960e01b81526001600160601b03851660048201529091505f906001600160a01b03831690630232ca4990602401602060405180830381865afa15801561073f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107639190614f2d565b90508594506107dc8673__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156107b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d79190614f2d565b6127e6565b156107e5578094505b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af415801561083b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085f9190614fa0565b1561087d5760405163b079ec2b60e01b815260040160405180910390fd5b6108878582612872565b156108bd5760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561091c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109409190614f7a565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038088166024830152881660448201526064015f604051808303815f87803b158015610995575f80fd5b505af11580156109a7573d5f803e3d5ffd5b505050505f6109be6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a2f9190614f7a565b60405163a310e2a360e01b81526001600160601b03871660048201529091505f906001600160a01b0385169063a310e2a390602401602060405180830381865afa158015610a7f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa39190614f7a565b90507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde98683836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b289190614f7a565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908916606082015260800160405180910390a1604051633fd3433360e01b81526001600160a01b0383811660048301526001600160601b0389166024830152821690633fd34333906044015f604051808303815f87803b158015610bb3575f80fd5b505af1158015610bc5573d5f803e3d5ffd5b50505050505050505050919050565b610bdd33610677565b5f610be9600b5f6128bc565b9150505f339050816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c509190614f7a565b604051630d99633160e01b81526001600160a01b03838116600483015285151560248301529190911690630d996331906044015f604051808303815f87803b158015610c9a575f80fd5b505af1158015610cac573d5f803e3d5ffd5b50505050505050565b5f610cbe611cd8565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610d02573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d269190614fa0565b15905090565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610d4e610422565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610d8c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610db09190614fda565b5f80516020615b458339815191528054600160401b900460ff1680610de2575080546001600160401b03808416911610155b15610e005760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610e2a83612a76565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80610e82600b6127d0565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ec3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ee79190614f7a565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015610f33573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610f5a9190810190615049565b6020015160405163ea0b3c7360e01b81526001600160a01b0387811660048301526001600160601b03871660248301529192509082169063ea0b3c73906044015f604051808303815f87803b158015610fb1575f80fd5b505af1158015610fc3573d5f803e3d5ffd5b505050505050505050565b5f80516020615b458339815191528054600160401b810460ff1615906001600160401b03165f81158015610fff5750825b90505f826001600160401b0316600114801561101a5750303b155b905081158015611028575080155b156110465760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561107057845460ff60401b1916600160401b1785555b61107a8787612a7e565b8315610cac57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a150505050505050565b5f6110d2612c16565b826110dc81612c4d565b5f806110ea86600c87612cff565b604080516330422f5360e21b815290519199509396509194508993505f926001600160a01b0385169263c108bd4c9250600480830192869291908290030181865afa15801561113b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261116291908101906151a4565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156111ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111cf9190614f2d565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af415801561122b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061124f9190614f2d565b6001600160601b031660c0820152606081015160ff166001600160401b0381111561127c5761127c614be0565b6040519080825280602002602001820160405280156112a5578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0384169063fe2ee792906112d9908990859060040161536b565b5f604051808303815f87803b1580156112f0575f80fd5b505af1158015611302573d5f803e3d5ffd5b50505050826001600160a01b0316634024867b87846001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa158015611353573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137791906153cc565b6040518363ffffffff1660e01b815260040161139492919061548a565b5f604051808303815f87803b1580156113ab575f80fd5b505af11580156113bd573d5f803e3d5ffd5b5050505050505050506113dc60015f80516020615b2583398151915255565b92915050565b5f816113ed81612c4d565b5f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015611429573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261145091908101906155d2565b60408101519091505f61146b6001546001600160a01b031690565b602084015160405163bf8e179760e01b81526001600160601b0390911660048201526001600160a01b03919091169063bf8e179790602401602060405180830381865afa1580156114be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114e29190614f7a565b905060ff8216600f036115625761155886826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561152f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115539190614f7a565b6134a5565b9450505050611677565b60ff8216600e036115d65761155886826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115d19190614f7a565b613728565b60ff8216600d0361164a5761155886826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611621573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116459190614f7a565b6138e6565b604051630de61afd60e41b81526001600160a01b038716600482015260ff831660248201526044016108b4565b50919050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b6116a2611709565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156116e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614fda565b5f611712611cd8565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561174d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190615603565b3361177a611cd8565b6001600160a01b0316816001600160a01b0316146117b55760405162d1953b60e31b81526001600160a01b03821660048201526024016108b4565b816001600160a01b03163b5f036117ea576040516361798f2f60e11b81526001600160a01b03831660048201526024016108b4565b6117f382613aad565b5050565b5f805f80516020615ae583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611863573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118879190614fa0565b15611912576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156118e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061190c9190614f7a565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020615b0583398151915280545f9190600160a01b900460ff1661194f575f61190c565b638fb3603760e01b91505090565b611965612c16565b5f80611971600c6127d0565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119d69190614f7a565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa158015611a24573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a4891906153cc565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611a8691908a9060040161561e565b602060405180830381865af4158015611aa1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ac59190614fa0565b611b0157611afa846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f015189613b0d565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611b3d9190899060040161561e565b602060405180830381865af4158015611b58573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b7c9190614fa0565b611bc057611bb5846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846020015188613b0d565b506020810184905260015b8015611cbe57826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c02573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c269190614f7a565b6001600160a01b03166365cee51c85846040518363ffffffff1660e01b8152600401611c5392919061548a565b5f604051808303815f87803b158015611c6a575f80fd5b505af1158015611c7c573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b505050506117f360015f80516020615b2583398151915255565b5f80516020615b05833981519152546001600160a01b031690565b5f80611cff600b6127d0565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d649190614f7a565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015611db0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611dd79190810190615049565b6020015160405163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015f604051808303815f87803b158015611e1f575f80fd5b505af1158015611e31573d5f803e3d5ffd5b5050505050505050565b5f80611e47600f6127d0565b915091505f80611eb6836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e8c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eb09190614f7a565b85613b60565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc083608001518a6040518363ffffffff1660e01b8152600401611ef892919061561e565b602060405180830381865af4158015611f13573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f379190614fa0565b611f7557611f6a8360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b613b0d565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611fb191908b9060040161561e565b602060405180830381865af4158015611fcc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ff09190614fa0565b61203157612026836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a613b0d565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161206d91908a9060040161561e565b602060405180830381865af4158015612088573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120ac9190614fa0565b6120f1576120e6836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c0015189613b0d565b5060c0810185905260015b8015611e3157836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612133573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121579190614f7a565b6001600160a01b03166365cee51c84846040518363ffffffff1660e01b815260040161218492919061548a565b5f604051808303815f87803b15801561219b575f80fd5b505af11580156121ad573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15050505050505050565b5f80612204600e6127d0565b915091505f80612249836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e8c573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151896040518363ffffffff1660e01b815260040161228b92919061561e565b602060405180830381865af41580156122a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ca9190614fa0565b61231057612305836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a613b0d565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161234c91908a9060040161561e565b602060405180830381865af4158015612367573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061238b9190614fa0565b6123df576123d4836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e6572466565000000000000000000815250846060015189613b0d565b506060810185905260015b8015610cac57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612421573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124459190614f7a565b6001600160a01b03166365cee51c84846040518363ffffffff1660e01b815260040161247292919061548a565b5f604051808303815f87803b158015612489575f80fd5b505af115801561249b573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190506110b8565b5f805f80516020615ae583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612545573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125699190614fa0565b156125955780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016108b4565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156125e7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061260b9190614fa0565b6126335760405163b9304b0d60e01b81526001600160a01b03841660048201526024016108b4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612685573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126a99190614f2d565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f80516020615b058339815191525f8061270a6126ed611cd8565b87306126fc60045f8a8c615639565b61270591615660565b613c62565b91509150816127c85763ffffffff8116156127a557825460ff60a01b1916600160a01b178355612738611cd8565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161276793929190615698565b5f604051808303815f87803b15801561277e575f80fd5b505af1158015612790573d5f803e3d5ffd5b5050845460ff60a01b19168555506127c89050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016108b4565b505050505050565b5f806127dd8360016128bc565b91509150915091565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af4158015612847573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061286b9190614fa0565b9392505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c9060440161282c565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015281905f61290886600b5b60ff9081169116141590565b156129c25773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed36129396001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af4158015612991573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526129b891908101906156d7565b9092509050612a6a565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a9886129ee6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af4158015612a3d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a6491908101906156d7565b90925090505b90519590945092505050565b6101a1613d6a565b5f80516020615b458339815191528054600160401b810460ff1615906001600160401b03165f81158015612aaf5750825b90505f826001600160401b03166001148015612aca5750303b155b905081158015612ad8575080155b15612af65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612b2057845460ff60401b1916600160401b1785555b5f8087806020019051810190612b36919061571a565b91509150612b4582828b613da2565b612b4f6028613e44565b600280546001600160a01b0319166001600160a01b0392909216919091178155612b7890613e44565b600380546001600160a01b0319166001600160a01b0392909216919091179055612ba2600a613e44565b600480546001600160a01b0319166001600160a01b0392909216919091179055612bd26306dcaf2d60e31b613ed5565b50508315610cac57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016110b8565b5f80516020615b25833981519152805460011901612c4757604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b60405163d905700760e01b81526001600160a01b038216600482015263a9c1bc6f60e01b602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790604401602060405180830381865af4158015612cb0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cd49190614fa0565b612cfc5760405163b03d8c4360e01b81526001600160a01b03821660048201526024016108b4565b50565b5f805f805f805f805f612d24612d1d6001546001600160a01b031690565b8d8d613f05565b809550819650829a508397508498505050505050826001600160a01b031663398e3d4c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d989190614fa0565b612f345773__$fb599632d08395912d9d70eb2f0f93b5e2$__637d482da1612dc86001546001600160a01b031690565b6001600160a01b031663caed98976040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e279190614f7a565b8c46612e31611cd8565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e909190615603565b6040516001600160e01b031960e087901b1681526001600160a01b039485166004820152939092166024840152604483015260ff166064820152608401602060405180830381865af4158015612ee8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f0c9190614fa0565b612f3457604051633acbdd6160e01b81526001600160a01b038b1660048201526024016108b4565b826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f949190614f7a565b9850826001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ff69190614f7a565b9750826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613034573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130589190614f7a565b965060ff8b16600c036130e457600354604051635d96628960e01b81526001600160a01b038481166004830152838116602483015290911690635d966289906044015f604051808303815f875af11580156130b5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526130dc91908101906155d2565b519450613168565b600354604051631fa14e4960e11b81526001600160a01b03848116600483015260ff8e166024830152838116604483015290911690633f429c92906064015f604051808303815f875af115801561313d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261316491908101906155d2565b5194505b5f826001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa1580156131a4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526131cb9190810190615049565b905073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d6131f96001546001600160a01b031690565b8f8e8d6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613237573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061325b9190614f7a565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af41580156132b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132d99190614f7a565b6001600160a01b039081166020830152604051631c4b0d8b60e31b81529089169063e2586c58906133109089908590600401615747565b5f604051808303815f87803b158015613327575f80fd5b505af1158015613339573d5f803e3d5ffd5b5050505050816001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af115801561337b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061339f9190614f2d565b506040516366704a7d60e01b81526001600160a01b038d8116600483015260ff8d1660248301528916906366704a7d906044015f604051808303815f87803b1580156133e9575f80fd5b505af11580156133fb573d5f803e3d5ffd5b505050507f269a46dac9ba8227194b6513fdb68da07796b42aa1d111f1eaec8f2126aed6c684868d8f8e8660405161347b969594939291906001600160601b03968716815294909516602085015260ff9290921660408401526001600160a01b03908116606084015290811660808301529190911660a082015260c00190565b60405180910390a150505050939792965093509350565b60015f80516020615b2583398151915255565b5f808080806134b787600f5b88612cff565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa158015613510573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261353791908101906151a4565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613596573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135ba9190614fa0565b156135f15760a08101516040516397f129bf60e01b81526001600160601b03808516600483015290911660248201526044016108b4565b5f889050836001600160a01b0316630bff3f5988836001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa158015613641573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061366591906157a2565b6040518363ffffffff1660e01b8152600401613682929190615830565b5f604051808303815f87803b158015613699575f80fd5b505af11580156136ab573d5f803e3d5ffd5b505050506001600160601b03871660a083015260405163659743e960e11b81526001600160a01b0385169063cb2e87d2906136ef908690869060ff906004016158b8565b5f604051808303815f87803b158015613706575f80fd5b505af1158015613718573d5f803e3d5ffd5b5050505050505050505092915050565b5f613731612c16565b5f80808061374087600e6134b1565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa158015613799573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526137c091908101906151a4565b905080604001516137ef5760405163931d421760e01b81526001600160601b03831660048201526024016108b4565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561384b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061386f9190614fa0565b156138a65760c08101516040516323a0cc7160e11b81526001600160601b03808516600483015290911660248201526044016108b4565b6001600160601b03861660c082015260405163659743e960e11b81526001600160a01b0384169063cb2e87d290611394908590859060ff906004016158b8565b5f808080806138f687600d6134b1565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa15801561394f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261397691908101906151a4565b9050806060015160ff165f036139aa57604051634435e56b60e01b81526001600160601b03831660048201526024016108b4565b806060015160ff16816080015160ff16036139f25760608101516040516379060d1360e11b81526001600160601b038416600482015260ff90911660248201526044016108b4565b858160e00151826080015160ff1681518110613a1057613a106158ec565b6001600160601b039092166020928302919091019091015260808101805190613a3882615900565b60ff169052506001600160a01b03831663cb2e87d28383613a5760ff90565b6040518463ffffffff1660e01b8152600401613a75939291906158b8565b5f604051808303815f87803b158015613a8c575f80fd5b505af1158015613a9e573d5f803e3d5ffd5b50505050505050505092915050565b5f80516020615b0583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b81516020808401518351918401516040517faf51775f53a52688815087bae1acb6d9505a9c8738dcfb00169056946c3a757e94613b52948a948a94929390929061592a565b60405180910390a150505050565b5f613b696149c8565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015613bc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613be69190614f2d565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa158015613c35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c5991906153cc565b90509250929050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613cd09190615994565b5f60405180830381855afa9150503d805f8114613d08576040519150601f19603f3d011682016040523d82523d5f602084013e613d0d565b606091505b50915091508115613d5f576040815110613d3f5780806020019051810190613d3591906159aa565b9094509250613d5f565b6020815110613d5f5780806020019051810190613d5c9190614fa0565b93505b505094509492505050565b5f80516020615b4583398151915254600160401b900460ff16613da057604051631afcd79f60e31b815260040160405180910390fd5b565b613daa613d6a565b613db261467d565b613e2f8383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613df3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e179190614f2d565b60085f8660405180602001604052805f81525061468d565b613e3f63daf9067160e01b613ed5565b505050565b5f613e576001546001600160a01b031690565b6001600160a01b031663d39e604383613e6e611709565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613eb1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113dc9190614f7a565b613edd613d6a565b612cfc816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6040516308b09a5f60e41b81523360048201525f90819081908190819081906001600160a01b038a1690638b09a5f0906024015f60405180830381865afa158015613f52573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613f7991908101906155d2565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015613fd5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ff99190614fa0565b156140195760405163f75940a160e01b81523360048201526024016108b4565b805f015193508792505f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa15801561405e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261408591908101906155d2565b905061409c81604001518960ff9081169116141590565b156140dc576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b16602483015290911660448201526064016108b4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b038b811660048301529190911690635e546bee90602401602060405180830381865afa15801561412e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141529190614f2d565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156141a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141cd9190614fa0565b156141f6576040516322e6526160e11b81526001600160a01b038a1660048201526024016108b4565b60405163bf8e179760e01b81526001600160601b03861660048201525f906001600160a01b038c169063bf8e179790602401602060405180830381865afa158015614243573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142679190614f7a565b90506142d4856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156142a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142cc9190615603565b6128fc611709565b156143775789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015614316573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061433a9190615603565b614342611709565b6040516381ce428760e01b81526001600160a01b03909316600484015260ff91821660248401521660448201526064016108b4565b61443a856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143b6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143da9190615603565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015614416573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128fc9190615603565b156145005789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561447c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906144a09190615603565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156144dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143429190615603565b6145118260200151845f01516147ca565b156145495782516020830151604051633e22765160e11b81526001600160601b039283166004820152911660248201526044016108b4565b60ff8916600c036145a65761456483604001516128fc600a90565b1561459d578251604080850151905163179bdfb960e01b81526001600160601b03909216600483015260ff1660248201526044016108b4565b825197506145f6565b6145b683604001516128fc600c90565b156145ee578251604080850151905162d4546160e11b81526001600160601b03909216600483015260ff1660248201526044016108b4565b826020015197505b60a082015160405163bf8e179760e01b81526001600160601b038a1660048201529094506001600160a01b038c169063bf8e179790602401602060405180830381865afa158015614649573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061466d9190614f7a565b9650505050939792965093509350565b614685613d6a565b613da0614814565b614695613d6a565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156146eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061470f9190614fa0565b6147375760405163cf6935e560e01b81526001600160a01b03881660048201526024016108b4565b6147408761481c565b61474a868361482d565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016147b98382615a2a565b50611e31634a531f3360e01b613ed5565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c519060440161282c565b613492613d6a565b614824613d6a565b612cfc816148a3565b614835613d6a565b61483d6148b4565b614846826148fc565b6001600160a01b03811661486d5760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020615ae583398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6148ab613d6a565b612cfc81613aad565b6148bc613d6a565b613da06301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b614904613d6a565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af415801561495a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061497e9190614fa0565b6149a65760405163fdeac91f60e01b81526001600160a01b03821660048201526024016108b4565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040805161012081019091525f60e0820181815261010083019190915281908152602001614a05604080518082019091525f808252602082015290565b8152602001614a23604080518082019091525f808252602082015290565b8152602001614a41604080518082019091525f808252602082015290565b8152602001614a5f604080518082019091525f808252602082015290565b8152602001614a7d604080518082019091525f808252602082015290565b8152602001614a9b604080518082019091525f808252602082015290565b905290565b5f60208284031215614ab0575f80fd5b81356001600160e01b03198116811461286b575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614b3d608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614b81610100840182614ac7565b949350505050565b6001600160601b0381168114612cfc575f80fd5b5f60208284031215614bad575f80fd5b813561286b81614b89565b8015158114612cfc575f80fd5b5f60208284031215614bd5575f80fd5b813561286b81614bb8565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715614c1657614c16614be0565b60405290565b604051606081016001600160401b0381118282101715614c1657614c16614be0565b60405161010081016001600160401b0381118282101715614c1657614c16614be0565b60405160e081016001600160401b0381118282101715614c1657614c16614be0565b604051601f8201601f191681016001600160401b0381118282101715614cab57614cab614be0565b604052919050565b5f6001600160401b03821115614ccb57614ccb614be0565b50601f01601f191660200190565b5f82601f830112614ce8575f80fd5b8135614cfb614cf682614cb3565b614c83565b818152846020838601011115614d0f575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614d3b575f80fd5b81356001600160401b03811115614d50575f80fd5b614b8184828501614cd9565b6001600160a01b0381168114612cfc575f80fd5b5f8060408385031215614d81575f80fd5b8235614d8c81614d5c565b91506020830135614d9c81614b89565b809150509250929050565b5f8060408385031215614db8575f80fd5b8235614dc381614d5c565b915060208301356001600160401b03811115614ddd575f80fd5b614de985828601614cd9565b9150509250929050565b5f8060408385031215614e04575f80fd5b8235614e0f81614d5c565b91506020830135614d9c81614d5c565b5f60208284031215614e2f575f80fd5b813561286b81614d5c565b6001600160801b0381168114612cfc575f80fd5b5f60408284031215614e5e575f80fd5b614e66614bf4565b90508135614e7381614e3a565b81526020820135614e8381614b89565b602082015292915050565b5f8060808385031215614e9f575f80fd5b614ea98484614e4e565b9150613c598460408501614e4e565b5f805f60c08486031215614eca575f80fd5b614ed48585614e4e565b9250614ee38560408601614e4e565b9150614ef28560808601614e4e565b90509250925092565b5f60208284031215614f0b575f80fd5b815162ffffff8116811461286b575f80fd5b8051614f2881614b89565b919050565b5f60208284031215614f3d575f80fd5b815161286b81614b89565b600181811c90821680614f5c57607f821691505b60208210810361167757634e487b7160e01b5f52602260045260245ffd5b5f60208284031215614f8a575f80fd5b815161286b81614d5c565b8051614f2881614bb8565b5f60208284031215614fb0575f80fd5b815161286b81614bb8565b8051614f2881614d5c565b6001600160401b0381168114612cfc575f80fd5b5f60208284031215614fea575f80fd5b815161286b81614fc6565b5f615002614cf684614cb3565b9050828152838383011115615015575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f83011261503a575f80fd5b61286b83835160208501614ff5565b5f60208284031215615059575f80fd5b81516001600160401b0381111561506e575f80fd5b82016060818503121561507f575f80fd5b615087614c1c565b81516001600160401b0381111561509c575f80fd5b8201601f810186136150ac575f80fd5b6150bb86825160208401614ff5565b82525060208201516150cc81614d5c565b602082015260408201516001600160401b038111156150e9575f80fd5b6150f58682850161502b565b604083015250949350505050565b60ff81168114612cfc575f80fd5b8051614f2881615103565b5f82601f83011261512b575f80fd5b81516001600160401b0381111561514457615144614be0565b8060051b61515460208201614c83565b9182526020818501810192908101908684111561516f575f80fd5b6020860192505b8383101561519a57825161518981614b89565b825260209283019290910190615176565b9695505050505050565b5f602082840312156151b4575f80fd5b81516001600160401b038111156151c9575f80fd5b820161010081850312156151db575f80fd5b6151e3614c3e565b6151ec82614f95565b81526151fa60208301614f95565b602082015261520b60408301614f95565b604082015261521c60608301615111565b606082015261522d60808301615111565b608082015261523e60a08301614f1d565b60a082015261524f60c08301614f1d565b60c082015260e08201516001600160401b0381111561526c575f80fd5b6152788682850161511c565b60e083015250949350505050565b5f8151808452602084019350602083015f5b828110156152bf5781516001600160601b0316865260209586019590910190600101615298565b5093949350505050565b8051151582526020810151151560208301525f60408201516152ef604085018215159052565b506060820151615304606085018260ff169052565b506080820151615319608085018260ff169052565b5060a082015161533460a08501826001600160601b03169052565b5060c082015161534f60c08501826001600160601b03169052565b5060e082015161010060e0850152614b81610100850182615286565b6001600160601b0383168152604060208201525f614b8160408301846152c9565b8051614f2881614e3a565b5f604082840312156153a7575f80fd5b6153af614bf4565b905081516153bc81614e3a565b81526020820151614e8381614b89565b5f6101c08284031280156153de575f80fd5b506153e7614c61565b6153f18484615397565b81526154008460408501615397565b60208201526154128460808501615397565b60408201526154248460c08501615397565b6060820152615437846101008501615397565b608082015261544a846101408501615397565b60a082015261545d846101808501615397565b60c08201529392505050565b80516001600160801b031682526020908101516001600160601b0316910152565b5f6101e0820190506001600160601b03841682526154ac602083018451615469565b60208301516154be6060840182615469565b5060408301516154d160a0840182615469565b5060608301516154e460e0840182615469565b5060808301516154f8610120840182615469565b5060a083015161550c610160840182615469565b5060c08301516155206101a0840182615469565b509392505050565b5f60e08284031215615538575f80fd5b615540614c61565b905061554b82614f1d565b815261555960208301614f1d565b602082015261556a60408301615111565b604082015261557b60608301614f95565b606082015261558c60808301614fbb565b608082015261559d60a08301614fbb565b60a082015260c08201516001600160401b038111156155ba575f80fd5b6155c68482850161502b565b60c08301525092915050565b5f602082840312156155e2575f80fd5b81516001600160401b038111156155f7575f80fd5b614b8184828501615528565b5f60208284031215615613575f80fd5b815161286b81615103565b6080810161562c8285615469565b61286b6040830184615469565b5f8085851115615647575f80fd5b83861115615653575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615691576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f80604083850312156156e8575f80fd5b82516001600160401b038111156156fd575f80fd5b61570985828601615528565b9250506020830151614d9c81614d5c565b5f806040838503121561572b575f80fd5b825161573681614d5c565b6020840151909250614d9c81614d5c565b6001600160601b0383168152604060208201525f82516060604084015261577160a0840182614ac7565b60208501516001600160a01b031660608501526040850151848203603f1901608086015290915061519a8282614ac7565b5f60e08284031280156157b3575f80fd5b506157bc614c61565b82516157c781614b89565b815260208301516157d781614bb8565b602082015260408301516157ea81614bb8565b604082015260608301516157fd81614bb8565b606082015261580e60808401614f95565b608082015261581f60a0840161538c565b60a082015261545d60c0840161538c565b5f610100820190506001600160601b03841682526001600160601b0383511660208301526020830151151560408301526040830151151560608301526060830151151560808301526080830151151560a083015260a083015161589e60c08401826001600160801b03169052565b5060c08301516001600160801b03811660e0840152615520565b6001600160601b0384168152606060208201525f6158d960608301856152c9565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff810361592157634e487b7160e01b5f52601160045260245ffd5b60010192915050565b6001600160601b038716815260c060208201525f61594b60c0830188614ac7565b90506001600160801b03861660408301526001600160601b03851660608301526001600160801b03841660808301526001600160601b03831660a0830152979650505050505050565b5f82518060208501845e5f920191825250919050565b5f80604083850312156159bb575f80fd5b82516159c681614bb8565b602084015190925063ffffffff81168114614d9c575f80fd5b601f821115613e3f57805f5260205f20601f840160051c81016020851015615a045750805b601f840160051c820191505b81811015615a23575f8155600101615a10565b5050505050565b81516001600160401b03811115615a4357615a43614be0565b615a5781615a518454614f48565b846159df565b6020601f821160018114615a89575f8315615a725750848201515b5f19600385901b1c1916600184901b178455615a23565b5f84815260208120601f198516915b82811015615ab85787850151825560209485019460019092019101615a98565b5084821015615ad557868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212207c6903e6be08219f4357fcfc85ce4301b84741a903669156b66162c13d72d54b64736f6c634300081a0033",
1247
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80636078a3b2116100f3578063ada9652e11610093578063bf7e214f1161006e578063bf7e214f146103e1578063deaa59df146103e9578063edd1b88a146103fc578063f1fc067b1461040f575f80fd5b8063ada9652e146103b3578063b568c1a5146103c7578063b68d1809146103da575f80fd5b806376b707b7116100ce57806376b707b71461035d5780637a9e5e4b14610377578063893d20e81461038a5780638fb3603714610392575f80fd5b80636078a3b21461030d578063644c45e0146103205780636c741e781461033d575f80fd5b8063211e28b61161015e578063419197fe11610139578063419197fe146102af57806349bb9e4b146102c25780635ab1bd53146102d55780635d966289146102fa575f80fd5b8063211e28b61461027f57806322f3e2d414610294578063329d6e741461029c575f80fd5b806301ffc9a7146101a55780630d8e6e2c146101e65780630fec111c14610202578063138461e0146102175780631c6b2190146102375780631eff4b221461024a575b5f80fd5b6101d16101b3366004614aa0565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101ee610422565b60405162ffffff90911681526020016101dd565b61020a6104a9565b6040516101dd9190614af5565b61021f610667565b6040516001600160601b0390911681526020016101dd565b61021f610245366004614b9d565b610671565b6102717f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b61029261028d366004614bc5565b610bd4565b005b6101d1610cb5565b6102926102aa366004614d2b565b610d2c565b6102926102bd366004614d70565b610e76565b6102926102d0366004614da7565b610fce565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61021f610308366004614df3565b6110c9565b61021f61031b366004614e1f565b6113e2565b5f80516020615ae5833981519152546001600160601b031661021f565b61034561167d565b6040516001600160401b0390911681526020016101dd565b610365611709565b60405160ff90911681526020016101dd565b610292610385366004614e1f565b611771565b6102e26117f7565b61039a611928565b6040516001600160e01b031990911681526020016101dd565b6102715f80516020615ae583398151915281565b6102926103d5366004614e8e565b61195d565b600b610365565b6102e2611cd8565b6102926103f7366004614e1f565b611cf3565b61029261040a366004614eb8565b611e3b565b61029261041d366004614e8e565b6121f8565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610480573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614efb565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610559573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061057d9190614f2d565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016105c56117f7565b6001600160a01b031681526020018260010180546105e290614f48565b80601f016020809104026020016040519081016040528092919081815260200182805461060e90614f48565b80156106595780601f1061063057610100808354040283529160200191610659565b820191905f5260205f20905b81548152906001019060200180831161063c57829003601f168201915b505050505081525091505090565b5f6104a4306124d9565b5f61067e335b5f366126d2565b5f8061068a600b6127d0565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106ef9190614f7a565b604051630232ca4960e01b81526001600160601b03851660048201529091505f906001600160a01b03831690630232ca4990602401602060405180830381865afa15801561073f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107639190614f2d565b90508594506107dc8673__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156107b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d79190614f2d565b6127e6565b156107e5578094505b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af415801561083b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085f9190614fa0565b1561087d5760405163b079ec2b60e01b815260040160405180910390fd5b6108878582612872565b156108bd5760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561091c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109409190614f7a565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038088166024830152881660448201526064015f604051808303815f87803b158015610995575f80fd5b505af11580156109a7573d5f803e3d5ffd5b505050505f6109be6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a2f9190614f7a565b60405163a310e2a360e01b81526001600160601b03871660048201529091505f906001600160a01b0385169063a310e2a390602401602060405180830381865afa158015610a7f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa39190614f7a565b90507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde98683836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b289190614f7a565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908916606082015260800160405180910390a1604051633fd3433360e01b81526001600160a01b0383811660048301526001600160601b0389166024830152821690633fd34333906044015f604051808303815f87803b158015610bb3575f80fd5b505af1158015610bc5573d5f803e3d5ffd5b50505050505050505050919050565b610bdd33610677565b5f610be9600b5f6128bc565b9150505f339050816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c509190614f7a565b604051630d99633160e01b81526001600160a01b03838116600483015285151560248301529190911690630d996331906044015f604051808303815f87803b158015610c9a575f80fd5b505af1158015610cac573d5f803e3d5ffd5b50505050505050565b5f610cbe611cd8565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610d02573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d269190614fa0565b15905090565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610d4e610422565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610d8c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610db09190614fda565b5f80516020615b458339815191528054600160401b900460ff1680610de2575080546001600160401b03808416911610155b15610e005760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610e2a83612a76565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80610e82600b6127d0565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ec3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ee79190614f7a565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015610f33573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610f5a9190810190615049565b6020015160405163ea0b3c7360e01b81526001600160a01b0387811660048301526001600160601b03871660248301529192509082169063ea0b3c73906044015f604051808303815f87803b158015610fb1575f80fd5b505af1158015610fc3573d5f803e3d5ffd5b505050505050505050565b5f80516020615b458339815191528054600160401b810460ff1615906001600160401b03165f81158015610fff5750825b90505f826001600160401b0316600114801561101a5750303b155b905081158015611028575080155b156110465760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561107057845460ff60401b1916600160401b1785555b61107a8787612a7e565b8315610cac57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a150505050505050565b5f6110d2612c16565b826110dc81612c4d565b5f806110ea86600c87612cff565b604080516330422f5360e21b815290519199509396509194508993505f926001600160a01b0385169263c108bd4c9250600480830192869291908290030181865afa15801561113b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261116291908101906151a4565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156111ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111cf9190614f2d565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af415801561122b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061124f9190614f2d565b6001600160601b031660c0820152606081015160ff166001600160401b0381111561127c5761127c614be0565b6040519080825280602002602001820160405280156112a5578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0384169063fe2ee792906112d9908990859060040161536b565b5f604051808303815f87803b1580156112f0575f80fd5b505af1158015611302573d5f803e3d5ffd5b50505050826001600160a01b0316634024867b87846001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa158015611353573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137791906153cc565b6040518363ffffffff1660e01b815260040161139492919061548a565b5f604051808303815f87803b1580156113ab575f80fd5b505af11580156113bd573d5f803e3d5ffd5b5050505050505050506113dc60015f80516020615b2583398151915255565b92915050565b5f816113ed81612c4d565b5f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015611429573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261145091908101906155d2565b60408101519091505f61146b6001546001600160a01b031690565b602084015160405163bf8e179760e01b81526001600160601b0390911660048201526001600160a01b03919091169063bf8e179790602401602060405180830381865afa1580156114be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114e29190614f7a565b905060ff8216600f036115625761155886826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561152f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115539190614f7a565b6134a5565b9450505050611677565b60ff8216600e036115d65761155886826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115d19190614f7a565b613728565b60ff8216600d0361164a5761155886826001600160a01b03166321df0da76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611621573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116459190614f7a565b6138e6565b604051630de61afd60e41b81526001600160a01b038716600482015260ff831660248201526044016108b4565b50919050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b6116a2611709565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156116e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614fda565b5f611712611cd8565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561174d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190615603565b3361177a611cd8565b6001600160a01b0316816001600160a01b0316146117b55760405162d1953b60e31b81526001600160a01b03821660048201526024016108b4565b816001600160a01b03163b5f036117ea576040516361798f2f60e11b81526001600160a01b03831660048201526024016108b4565b6117f382613aad565b5050565b5f805f80516020615ae583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611863573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118879190614fa0565b15611912576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156118e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061190c9190614f7a565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020615b0583398151915280545f9190600160a01b900460ff1661194f575f61190c565b638fb3603760e01b91505090565b611965612c16565b5f80611971600c6127d0565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119d69190614f7a565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa158015611a24573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a4891906153cc565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611a8691908a9060040161561e565b602060405180830381865af4158015611aa1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ac59190614fa0565b611b0157611afa846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f015189613b0d565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611b3d9190899060040161561e565b602060405180830381865af4158015611b58573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b7c9190614fa0565b611bc057611bb5846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846020015188613b0d565b506020810184905260015b8015611cbe57826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c02573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c269190614f7a565b6001600160a01b03166365cee51c85846040518363ffffffff1660e01b8152600401611c5392919061548a565b5f604051808303815f87803b158015611c6a575f80fd5b505af1158015611c7c573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b505050506117f360015f80516020615b2583398151915255565b5f80516020615b05833981519152546001600160a01b031690565b5f80611cff600b6127d0565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d649190614f7a565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa158015611db0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611dd79190810190615049565b6020015160405163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015f604051808303815f87803b158015611e1f575f80fd5b505af1158015611e31573d5f803e3d5ffd5b5050505050505050565b5f80611e47600f6127d0565b915091505f80611eb6836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e8c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611eb09190614f7a565b85613b60565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc083608001518a6040518363ffffffff1660e01b8152600401611ef892919061561e565b602060405180830381865af4158015611f13573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f379190614fa0565b611f7557611f6a8360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b613b0d565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611fb191908b9060040161561e565b602060405180830381865af4158015611fcc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ff09190614fa0565b61203157612026836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a613b0d565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161206d91908a9060040161561e565b602060405180830381865af4158015612088573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120ac9190614fa0565b6120f1576120e6836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c0015189613b0d565b5060c0810185905260015b8015611e3157836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612133573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121579190614f7a565b6001600160a01b03166365cee51c84846040518363ffffffff1660e01b815260040161218492919061548a565b5f604051808303815f87803b15801561219b575f80fd5b505af11580156121ad573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15050505050505050565b5f80612204600e6127d0565b915091505f80612249836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e8c573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151896040518363ffffffff1660e01b815260040161228b92919061561e565b602060405180830381865af41580156122a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ca9190614fa0565b61231057612305836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a613b0d565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161234c91908a9060040161561e565b602060405180830381865af4158015612367573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061238b9190614fa0565b6123df576123d4836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e6572466565000000000000000000815250846060015189613b0d565b506060810185905260015b8015610cac57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612421573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124459190614f7a565b6001600160a01b03166365cee51c84846040518363ffffffff1660e01b815260040161247292919061548a565b5f604051808303815f87803b158015612489575f80fd5b505af115801561249b573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190506110b8565b5f805f80516020615ae583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612545573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125699190614fa0565b156125955780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016108b4565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156125e7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061260b9190614fa0565b6126335760405163b9304b0d60e01b81526001600160a01b03841660048201526024016108b4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612685573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126a99190614f2d565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f80516020615b058339815191525f8061270a6126ed611cd8565b87306126fc60045f8a8c615639565b61270591615660565b613c62565b91509150816127c85763ffffffff8116156127a557825460ff60a01b1916600160a01b178355612738611cd8565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161276793929190615698565b5f604051808303815f87803b15801561277e575f80fd5b505af1158015612790573d5f803e3d5ffd5b5050845460ff60a01b19168555506127c89050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016108b4565b505050505050565b5f806127dd8360016128bc565b91509150915091565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af4158015612847573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061286b9190614fa0565b9392505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c9060440161282c565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015281905f61290886600b5b60ff9081169116141590565b156129c25773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed36129396001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af4158015612991573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526129b891908101906156d7565b9092509050612a6a565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a9886129ee6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af4158015612a3d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a6491908101906156d7565b90925090505b90519590945092505050565b6101a1613d6a565b5f80516020615b458339815191528054600160401b810460ff1615906001600160401b03165f81158015612aaf5750825b90505f826001600160401b03166001148015612aca5750303b155b905081158015612ad8575080155b15612af65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612b2057845460ff60401b1916600160401b1785555b5f8087806020019051810190612b36919061571a565b91509150612b4582828b613da2565b612b4f6028613e44565b600280546001600160a01b0319166001600160a01b0392909216919091178155612b7890613e44565b600380546001600160a01b0319166001600160a01b0392909216919091179055612ba2600a613e44565b600480546001600160a01b0319166001600160a01b0392909216919091179055612bd26306dcaf2d60e31b613ed5565b50508315610cac57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016110b8565b5f80516020615b25833981519152805460011901612c4757604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b60405163d905700760e01b81526001600160a01b038216600482015263a9c1bc6f60e01b602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790604401602060405180830381865af4158015612cb0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cd49190614fa0565b612cfc5760405163b03d8c4360e01b81526001600160a01b03821660048201526024016108b4565b50565b5f805f805f805f805f612d24612d1d6001546001600160a01b031690565b8d8d613f05565b809550819650829a508397508498505050505050826001600160a01b031663398e3d4c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d989190614fa0565b612f345773__$fb599632d08395912d9d70eb2f0f93b5e2$__637d482da1612dc86001546001600160a01b031690565b6001600160a01b031663caed98976040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e279190614f7a565b8c46612e31611cd8565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e909190615603565b6040516001600160e01b031960e087901b1681526001600160a01b039485166004820152939092166024840152604483015260ff166064820152608401602060405180830381865af4158015612ee8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f0c9190614fa0565b612f3457604051633acbdd6160e01b81526001600160a01b038b1660048201526024016108b4565b826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f949190614f7a565b9850826001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ff69190614f7a565b9750826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613034573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130589190614f7a565b965060ff8b16600c036130e457600354604051635d96628960e01b81526001600160a01b038481166004830152838116602483015290911690635d966289906044015f604051808303815f875af11580156130b5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526130dc91908101906155d2565b519450613168565b600354604051631fa14e4960e11b81526001600160a01b03848116600483015260ff8e166024830152838116604483015290911690633f429c92906064015f604051808303815f875af115801561313d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261316491908101906155d2565b5194505b5f826001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa1580156131a4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526131cb9190810190615049565b905073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d6131f96001546001600160a01b031690565b8f8e8d6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613237573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061325b9190614f7a565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af41580156132b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132d99190614f7a565b6001600160a01b039081166020830152604051631c4b0d8b60e31b81529089169063e2586c58906133109089908590600401615747565b5f604051808303815f87803b158015613327575f80fd5b505af1158015613339573d5f803e3d5ffd5b5050505050816001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af115801561337b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061339f9190614f2d565b506040516366704a7d60e01b81526001600160a01b038d8116600483015260ff8d1660248301528916906366704a7d906044015f604051808303815f87803b1580156133e9575f80fd5b505af11580156133fb573d5f803e3d5ffd5b505050507f269a46dac9ba8227194b6513fdb68da07796b42aa1d111f1eaec8f2126aed6c684868d8f8e8660405161347b969594939291906001600160601b03968716815294909516602085015260ff9290921660408401526001600160a01b03908116606084015290811660808301529190911660a082015260c00190565b60405180910390a150505050939792965093509350565b60015f80516020615b2583398151915255565b5f808080806134b787600f5b88612cff565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa158015613510573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261353791908101906151a4565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613596573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135ba9190614fa0565b156135f15760a08101516040516397f129bf60e01b81526001600160601b03808516600483015290911660248201526044016108b4565b5f889050836001600160a01b0316630bff3f5988836001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa158015613641573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061366591906157a2565b6040518363ffffffff1660e01b8152600401613682929190615830565b5f604051808303815f87803b158015613699575f80fd5b505af11580156136ab573d5f803e3d5ffd5b505050506001600160601b03871660a083015260405163659743e960e11b81526001600160a01b0385169063cb2e87d2906136ef908690869060ff906004016158b8565b5f604051808303815f87803b158015613706575f80fd5b505af1158015613718573d5f803e3d5ffd5b5050505050505050505092915050565b5f613731612c16565b5f80808061374087600e6134b1565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa158015613799573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526137c091908101906151a4565b905080604001516137ef5760405163931d421760e01b81526001600160601b03831660048201526024016108b4565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561384b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061386f9190614fa0565b156138a65760c08101516040516323a0cc7160e11b81526001600160601b03808516600483015290911660248201526044016108b4565b6001600160601b03861660c082015260405163659743e960e11b81526001600160a01b0384169063cb2e87d290611394908590859060ff906004016158b8565b5f808080806138f687600d6134b1565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa15801561394f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261397691908101906151a4565b9050806060015160ff165f036139aa57604051634435e56b60e01b81526001600160601b03831660048201526024016108b4565b806060015160ff16816080015160ff16036139f25760608101516040516379060d1360e11b81526001600160601b038416600482015260ff90911660248201526044016108b4565b858160e00151826080015160ff1681518110613a1057613a106158ec565b6001600160601b039092166020928302919091019091015260808101805190613a3882615900565b60ff169052506001600160a01b03831663cb2e87d28383613a5760ff90565b6040518463ffffffff1660e01b8152600401613a75939291906158b8565b5f604051808303815f87803b158015613a8c575f80fd5b505af1158015613a9e573d5f803e3d5ffd5b50505050505050505092915050565b5f80516020615b0583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b81516020808401518351918401516040517faf51775f53a52688815087bae1acb6d9505a9c8738dcfb00169056946c3a757e94613b52948a948a94929390929061592a565b60405180910390a150505050565b5f613b696149c8565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015613bc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613be69190614f2d565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa158015613c35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c5991906153cc565b90509250929050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613cd09190615994565b5f60405180830381855afa9150503d805f8114613d08576040519150601f19603f3d011682016040523d82523d5f602084013e613d0d565b606091505b50915091508115613d5f576040815110613d3f5780806020019051810190613d3591906159aa565b9094509250613d5f565b6020815110613d5f5780806020019051810190613d5c9190614fa0565b93505b505094509492505050565b5f80516020615b4583398151915254600160401b900460ff16613da057604051631afcd79f60e31b815260040160405180910390fd5b565b613daa613d6a565b613db261467d565b613e2f8383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613df3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e179190614f2d565b60085f8660405180602001604052805f81525061468d565b613e3f63daf9067160e01b613ed5565b505050565b5f613e576001546001600160a01b031690565b6001600160a01b031663d39e604383613e6e611709565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613eb1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113dc9190614f7a565b613edd613d6a565b612cfc816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6040516308b09a5f60e41b81523360048201525f90819081908190819081906001600160a01b038a1690638b09a5f0906024015f60405180830381865afa158015613f52573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613f7991908101906155d2565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015613fd5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ff99190614fa0565b156140195760405163f75940a160e01b81523360048201526024016108b4565b805f015193508792505f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa15801561405e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261408591908101906155d2565b905061409c81604001518960ff9081169116141590565b156140dc576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b16602483015290911660448201526064016108b4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b038b811660048301529190911690635e546bee90602401602060405180830381865afa15801561412e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141529190614f2d565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156141a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141cd9190614fa0565b156141f6576040516322e6526160e11b81526001600160a01b038a1660048201526024016108b4565b60405163bf8e179760e01b81526001600160601b03861660048201525f906001600160a01b038c169063bf8e179790602401602060405180830381865afa158015614243573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142679190614f7a565b90506142d4856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156142a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142cc9190615603565b6128fc611709565b156143775789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015614316573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061433a9190615603565b614342611709565b6040516381ce428760e01b81526001600160a01b03909316600484015260ff91821660248401521660448201526064016108b4565b61443a856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143b6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143da9190615603565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015614416573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128fc9190615603565b156145005789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561447c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906144a09190615603565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156144dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143429190615603565b6145118260200151845f01516147ca565b156145495782516020830151604051633e22765160e11b81526001600160601b039283166004820152911660248201526044016108b4565b60ff8916600c036145a65761456483604001516128fc600a90565b1561459d578251604080850151905163179bdfb960e01b81526001600160601b03909216600483015260ff1660248201526044016108b4565b825197506145f6565b6145b683604001516128fc600c90565b156145ee578251604080850151905162d4546160e11b81526001600160601b03909216600483015260ff1660248201526044016108b4565b826020015197505b60a082015160405163bf8e179760e01b81526001600160601b038a1660048201529094506001600160a01b038c169063bf8e179790602401602060405180830381865afa158015614649573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061466d9190614f7a565b9650505050939792965093509350565b614685613d6a565b613da0614814565b614695613d6a565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156146eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061470f9190614fa0565b6147375760405163cf6935e560e01b81526001600160a01b03881660048201526024016108b4565b6147408761481c565b61474a868361482d565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016147b98382615a2a565b50611e31634a531f3360e01b613ed5565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c519060440161282c565b613492613d6a565b614824613d6a565b612cfc816148a3565b614835613d6a565b61483d6148b4565b614846826148fc565b6001600160a01b03811661486d5760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020615ae583398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6148ab613d6a565b612cfc81613aad565b6148bc613d6a565b613da06301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b614904613d6a565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af415801561495a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061497e9190614fa0565b6149a65760405163fdeac91f60e01b81526001600160a01b03821660048201526024016108b4565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040805161012081019091525f60e0820181815261010083019190915281908152602001614a05604080518082019091525f808252602082015290565b8152602001614a23604080518082019091525f808252602082015290565b8152602001614a41604080518082019091525f808252602082015290565b8152602001614a5f604080518082019091525f808252602082015290565b8152602001614a7d604080518082019091525f808252602082015290565b8152602001614a9b604080518082019091525f808252602082015290565b905290565b5f60208284031215614ab0575f80fd5b81356001600160e01b03198116811461286b575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614b3d608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614b81610100840182614ac7565b949350505050565b6001600160601b0381168114612cfc575f80fd5b5f60208284031215614bad575f80fd5b813561286b81614b89565b8015158114612cfc575f80fd5b5f60208284031215614bd5575f80fd5b813561286b81614bb8565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715614c1657614c16614be0565b60405290565b604051606081016001600160401b0381118282101715614c1657614c16614be0565b60405161010081016001600160401b0381118282101715614c1657614c16614be0565b60405160e081016001600160401b0381118282101715614c1657614c16614be0565b604051601f8201601f191681016001600160401b0381118282101715614cab57614cab614be0565b604052919050565b5f6001600160401b03821115614ccb57614ccb614be0565b50601f01601f191660200190565b5f82601f830112614ce8575f80fd5b8135614cfb614cf682614cb3565b614c83565b818152846020838601011115614d0f575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614d3b575f80fd5b81356001600160401b03811115614d50575f80fd5b614b8184828501614cd9565b6001600160a01b0381168114612cfc575f80fd5b5f8060408385031215614d81575f80fd5b8235614d8c81614d5c565b91506020830135614d9c81614b89565b809150509250929050565b5f8060408385031215614db8575f80fd5b8235614dc381614d5c565b915060208301356001600160401b03811115614ddd575f80fd5b614de985828601614cd9565b9150509250929050565b5f8060408385031215614e04575f80fd5b8235614e0f81614d5c565b91506020830135614d9c81614d5c565b5f60208284031215614e2f575f80fd5b813561286b81614d5c565b6001600160801b0381168114612cfc575f80fd5b5f60408284031215614e5e575f80fd5b614e66614bf4565b90508135614e7381614e3a565b81526020820135614e8381614b89565b602082015292915050565b5f8060808385031215614e9f575f80fd5b614ea98484614e4e565b9150613c598460408501614e4e565b5f805f60c08486031215614eca575f80fd5b614ed48585614e4e565b9250614ee38560408601614e4e565b9150614ef28560808601614e4e565b90509250925092565b5f60208284031215614f0b575f80fd5b815162ffffff8116811461286b575f80fd5b8051614f2881614b89565b919050565b5f60208284031215614f3d575f80fd5b815161286b81614b89565b600181811c90821680614f5c57607f821691505b60208210810361167757634e487b7160e01b5f52602260045260245ffd5b5f60208284031215614f8a575f80fd5b815161286b81614d5c565b8051614f2881614bb8565b5f60208284031215614fb0575f80fd5b815161286b81614bb8565b8051614f2881614d5c565b6001600160401b0381168114612cfc575f80fd5b5f60208284031215614fea575f80fd5b815161286b81614fc6565b5f615002614cf684614cb3565b9050828152838383011115615015575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f83011261503a575f80fd5b61286b83835160208501614ff5565b5f60208284031215615059575f80fd5b81516001600160401b0381111561506e575f80fd5b82016060818503121561507f575f80fd5b615087614c1c565b81516001600160401b0381111561509c575f80fd5b8201601f810186136150ac575f80fd5b6150bb86825160208401614ff5565b82525060208201516150cc81614d5c565b602082015260408201516001600160401b038111156150e9575f80fd5b6150f58682850161502b565b604083015250949350505050565b60ff81168114612cfc575f80fd5b8051614f2881615103565b5f82601f83011261512b575f80fd5b81516001600160401b0381111561514457615144614be0565b8060051b61515460208201614c83565b9182526020818501810192908101908684111561516f575f80fd5b6020860192505b8383101561519a57825161518981614b89565b825260209283019290910190615176565b9695505050505050565b5f602082840312156151b4575f80fd5b81516001600160401b038111156151c9575f80fd5b820161010081850312156151db575f80fd5b6151e3614c3e565b6151ec82614f95565b81526151fa60208301614f95565b602082015261520b60408301614f95565b604082015261521c60608301615111565b606082015261522d60808301615111565b608082015261523e60a08301614f1d565b60a082015261524f60c08301614f1d565b60c082015260e08201516001600160401b0381111561526c575f80fd5b6152788682850161511c565b60e083015250949350505050565b5f8151808452602084019350602083015f5b828110156152bf5781516001600160601b0316865260209586019590910190600101615298565b5093949350505050565b8051151582526020810151151560208301525f60408201516152ef604085018215159052565b506060820151615304606085018260ff169052565b506080820151615319608085018260ff169052565b5060a082015161533460a08501826001600160601b03169052565b5060c082015161534f60c08501826001600160601b03169052565b5060e082015161010060e0850152614b81610100850182615286565b6001600160601b0383168152604060208201525f614b8160408301846152c9565b8051614f2881614e3a565b5f604082840312156153a7575f80fd5b6153af614bf4565b905081516153bc81614e3a565b81526020820151614e8381614b89565b5f6101c08284031280156153de575f80fd5b506153e7614c61565b6153f18484615397565b81526154008460408501615397565b60208201526154128460808501615397565b60408201526154248460c08501615397565b6060820152615437846101008501615397565b608082015261544a846101408501615397565b60a082015261545d846101808501615397565b60c08201529392505050565b80516001600160801b031682526020908101516001600160601b0316910152565b5f6101e0820190506001600160601b03841682526154ac602083018451615469565b60208301516154be6060840182615469565b5060408301516154d160a0840182615469565b5060608301516154e460e0840182615469565b5060808301516154f8610120840182615469565b5060a083015161550c610160840182615469565b5060c08301516155206101a0840182615469565b509392505050565b5f60e08284031215615538575f80fd5b615540614c61565b905061554b82614f1d565b815261555960208301614f1d565b602082015261556a60408301615111565b604082015261557b60608301614f95565b606082015261558c60808301614fbb565b608082015261559d60a08301614fbb565b60a082015260c08201516001600160401b038111156155ba575f80fd5b6155c68482850161502b565b60c08301525092915050565b5f602082840312156155e2575f80fd5b81516001600160401b038111156155f7575f80fd5b614b8184828501615528565b5f60208284031215615613575f80fd5b815161286b81615103565b6080810161562c8285615469565b61286b6040830184615469565b5f8085851115615647575f80fd5b83861115615653575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615691576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f80604083850312156156e8575f80fd5b82516001600160401b038111156156fd575f80fd5b61570985828601615528565b9250506020830151614d9c81614d5c565b5f806040838503121561572b575f80fd5b825161573681614d5c565b6020840151909250614d9c81614d5c565b6001600160601b0383168152604060208201525f82516060604084015261577160a0840182614ac7565b60208501516001600160a01b031660608501526040850151848203603f1901608086015290915061519a8282614ac7565b5f60e08284031280156157b3575f80fd5b506157bc614c61565b82516157c781614b89565b815260208301516157d781614bb8565b602082015260408301516157ea81614bb8565b604082015260608301516157fd81614bb8565b606082015261580e60808401614f95565b608082015261581f60a0840161538c565b60a082015261545d60c0840161538c565b5f610100820190506001600160601b03841682526001600160601b0383511660208301526020830151151560408301526040830151151560608301526060830151151560808301526080830151151560a083015260a083015161589e60c08401826001600160801b03169052565b5060c08301516001600160801b03811660e0840152615520565b6001600160601b0384168152606060208201525f6158d960608301856152c9565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff810361592157634e487b7160e01b5f52601160045260245ffd5b60010192915050565b6001600160601b038716815260c060208201525f61594b60c0830188614ac7565b90506001600160801b03861660408301526001600160601b03851660608301526001600160801b03841660808301526001600160601b03831660a0830152979650505050505050565b5f82518060208501845e5f920191825250919050565b5f80604083850312156159bb575f80fd5b82516159c681614bb8565b602084015190925063ffffffff81168114614d9c575f80fd5b601f821115613e3f57805f5260205f20601f840160051c81016020851015615a045750805b601f840160051c820191505b81811015615a23575f8155600101615a10565b5050505050565b81516001600160401b03811115615a4357615a43614be0565b615a5781615a518454614f48565b846159df565b6020601f821160018114615a89575f8315615a725750848201515b5f19600385901b1c1916600184901b178455615a23565b5f84815260208120601f198516915b82811015615ab85787850151825560209485019460019092019101615a98565b5084821015615ad557868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212207c6903e6be08219f4357fcfc85ce4301b84741a903669156b66162c13d72d54b64736f6c634300081a0033",
1248
+ "linkReferences": {
1249
+ "contracts/shared/ContractLib.sol": {
1250
+ "ContractLib": [
1251
+ {
1252
+ "length": 20,
1253
+ "start": 10725
1254
+ },
1255
+ {
1256
+ "length": 20,
1257
+ "start": 10906
1258
+ },
1259
+ {
1260
+ "length": 20,
1261
+ "start": 11598
1262
+ },
1263
+ {
1264
+ "length": 20,
1265
+ "start": 11892
1266
+ },
1267
+ {
1268
+ "length": 20,
1269
+ "start": 18313
1270
+ },
1271
+ {
1272
+ "length": 20,
1273
+ "start": 18936
1274
+ }
1275
+ ]
1276
+ },
1277
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1278
+ "TokenHandlerDeployerLib": [
1279
+ {
1280
+ "length": 20,
1281
+ "start": 12965
1282
+ }
1283
+ ]
1284
+ },
1285
+ "contracts/type/Amount.sol": {
1286
+ "AmountLib": [
1287
+ {
1288
+ "length": 20,
1289
+ "start": 2116
1290
+ },
1291
+ {
1292
+ "length": 20,
1293
+ "start": 2265
1294
+ },
1295
+ {
1296
+ "length": 20,
1297
+ "start": 10468
1298
+ },
1299
+ {
1300
+ "length": 20,
1301
+ "start": 10608
1302
+ }
1303
+ ]
1304
+ },
1305
+ "contracts/type/Fee.sol": {
1306
+ "FeeLib": [
1307
+ {
1308
+ "length": 20,
1309
+ "start": 6963
1310
+ },
1311
+ {
1312
+ "length": 20,
1313
+ "start": 7146
1314
+ },
1315
+ {
1316
+ "length": 20,
1317
+ "start": 8083
1318
+ },
1319
+ {
1320
+ "length": 20,
1321
+ "start": 8286
1322
+ },
1323
+ {
1324
+ "length": 20,
1325
+ "start": 8474
1326
+ },
1327
+ {
1328
+ "length": 20,
1329
+ "start": 8998
1330
+ },
1331
+ {
1332
+ "length": 20,
1333
+ "start": 9209
1334
+ }
1335
+ ]
1336
+ },
1337
+ "contracts/type/NftId.sol": {
1338
+ "NftIdLib": [
1339
+ {
1340
+ "length": 20,
1341
+ "start": 1514
1342
+ },
1343
+ {
1344
+ "length": 20,
1345
+ "start": 4668
1346
+ },
1347
+ {
1348
+ "length": 20,
1349
+ "start": 4805
1350
+ },
1351
+ {
1352
+ "length": 20,
1353
+ "start": 6401
1354
+ },
1355
+ {
1356
+ "length": 20,
1357
+ "start": 9699
1358
+ },
1359
+ {
1360
+ "length": 20,
1361
+ "start": 13876
1362
+ },
1363
+ {
1364
+ "length": 20,
1365
+ "start": 14569
1366
+ },
1367
+ {
1368
+ "length": 20,
1369
+ "start": 16499
1370
+ },
1371
+ {
1372
+ "length": 20,
1373
+ "start": 16967
1374
+ },
1375
+ {
1376
+ "length": 20,
1377
+ "start": 18632
1378
+ }
1379
+ ]
1380
+ },
1381
+ "contracts/type/RoleId.sol": {
1382
+ "RoleIdLib": [
1383
+ {
1384
+ "length": 20,
1385
+ "start": 5974
1386
+ }
1387
+ ]
1388
+ },
1389
+ "contracts/type/Version.sol": {
1390
+ "VersionLib": [
1391
+ {
1392
+ "length": 20,
1393
+ "start": 1310
1394
+ },
1395
+ {
1396
+ "length": 20,
1397
+ "start": 3588
1398
+ }
1399
+ ]
1400
+ }
1401
+ },
1402
+ "deployedLinkReferences": {
1403
+ "contracts/shared/ContractLib.sol": {
1404
+ "ContractLib": [
1405
+ {
1406
+ "length": 20,
1407
+ "start": 10511
1408
+ },
1409
+ {
1410
+ "length": 20,
1411
+ "start": 10692
1412
+ },
1413
+ {
1414
+ "length": 20,
1415
+ "start": 11384
1416
+ },
1417
+ {
1418
+ "length": 20,
1419
+ "start": 11678
1420
+ },
1421
+ {
1422
+ "length": 20,
1423
+ "start": 18099
1424
+ },
1425
+ {
1426
+ "length": 20,
1427
+ "start": 18722
1428
+ }
1429
+ ]
1430
+ },
1431
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1432
+ "TokenHandlerDeployerLib": [
1433
+ {
1434
+ "length": 20,
1435
+ "start": 12751
1436
+ }
1437
+ ]
1438
+ },
1439
+ "contracts/type/Amount.sol": {
1440
+ "AmountLib": [
1441
+ {
1442
+ "length": 20,
1443
+ "start": 1902
1444
+ },
1445
+ {
1446
+ "length": 20,
1447
+ "start": 2051
1448
+ },
1449
+ {
1450
+ "length": 20,
1451
+ "start": 10254
1452
+ },
1453
+ {
1454
+ "length": 20,
1455
+ "start": 10394
1456
+ }
1457
+ ]
1458
+ },
1459
+ "contracts/type/Fee.sol": {
1460
+ "FeeLib": [
1461
+ {
1462
+ "length": 20,
1463
+ "start": 6749
1464
+ },
1465
+ {
1466
+ "length": 20,
1467
+ "start": 6932
1468
+ },
1469
+ {
1470
+ "length": 20,
1471
+ "start": 7869
1472
+ },
1473
+ {
1474
+ "length": 20,
1475
+ "start": 8072
1476
+ },
1477
+ {
1478
+ "length": 20,
1479
+ "start": 8260
1480
+ },
1481
+ {
1482
+ "length": 20,
1483
+ "start": 8784
1484
+ },
1485
+ {
1486
+ "length": 20,
1487
+ "start": 8995
1488
+ }
1489
+ ]
1490
+ },
1491
+ "contracts/type/NftId.sol": {
1492
+ "NftIdLib": [
1493
+ {
1494
+ "length": 20,
1495
+ "start": 1300
1496
+ },
1497
+ {
1498
+ "length": 20,
1499
+ "start": 4454
1500
+ },
1501
+ {
1502
+ "length": 20,
1503
+ "start": 4591
1504
+ },
1505
+ {
1506
+ "length": 20,
1507
+ "start": 6187
1508
+ },
1509
+ {
1510
+ "length": 20,
1511
+ "start": 9485
1512
+ },
1513
+ {
1514
+ "length": 20,
1515
+ "start": 13662
1516
+ },
1517
+ {
1518
+ "length": 20,
1519
+ "start": 14355
1520
+ },
1521
+ {
1522
+ "length": 20,
1523
+ "start": 16285
1524
+ },
1525
+ {
1526
+ "length": 20,
1527
+ "start": 16753
1528
+ },
1529
+ {
1530
+ "length": 20,
1531
+ "start": 18418
1532
+ }
1533
+ ]
1534
+ },
1535
+ "contracts/type/RoleId.sol": {
1536
+ "RoleIdLib": [
1537
+ {
1538
+ "length": 20,
1539
+ "start": 5760
1540
+ }
1541
+ ]
1542
+ },
1543
+ "contracts/type/Version.sol": {
1544
+ "VersionLib": [
1545
+ {
1546
+ "length": 20,
1547
+ "start": 1096
1548
+ },
1549
+ {
1550
+ "length": 20,
1551
+ "start": 3374
1552
+ }
1553
+ ]
1554
+ }
1555
+ }
1556
+ }