@etherisc/gif-next 0.0.2-8a352ce → 0.0.2-8a72793-100

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (649) hide show
  1. package/README.md +427 -9
  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 +1643 -0
  10. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
  11. package/artifacts/contracts/{registry/IRegistry.sol/IOwnable.json → authorization/AccessAdmin.sol/IAccessManagedChecker.json} +4 -4
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1403 -0
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +615 -0
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  17. package/artifacts/contracts/{instance/access → authorization}/IAccess.sol/IAccess.json +1 -1
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1349 -0
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +382 -0
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1322 -0
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +644 -0
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1016 -0
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1509 -0
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +864 -0
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +915 -0
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  39. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1008 -0
  40. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  42. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1475 -0
  44. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +644 -0
  46. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2040 -0
  48. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +644 -0
  50. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  51. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1479 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +644 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1195 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1655 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +644 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2426 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +644 -0
  66. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  67. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
  68. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  69. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +412 -486
  70. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  71. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +789 -0
  72. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  73. package/artifacts/contracts/instance/Instance.sol/Instance.json +511 -577
  74. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  75. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2229 -0
  76. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +716 -0
  78. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  79. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +2429 -0
  80. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  81. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1035 -0
  82. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  83. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +734 -0
  84. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  85. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3718 -0
  86. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  87. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
  88. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  89. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  90. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  91. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
  92. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  93. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  94. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  95. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  96. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  97. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
  98. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  99. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  100. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  101. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IBundle.sol/IBundle.json} +2 -2
  102. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  103. package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IComponents.sol/IComponents.json} +2 -2
  104. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  105. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  106. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  107. package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
  108. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  109. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.json +10 -0
  110. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  111. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  112. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  113. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +959 -0
  114. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  115. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +632 -0
  116. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  117. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  118. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  119. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +774 -0
  120. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  121. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +733 -0
  122. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  123. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +875 -0
  124. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  125. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
  126. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  127. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +764 -0
  128. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  129. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1252 -0
  130. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  131. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +644 -0
  132. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  133. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1261 -0
  134. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  135. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +800 -0
  136. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  137. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +880 -0
  138. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  139. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +907 -0
  140. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  141. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1230 -0
  142. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  143. package/artifacts/contracts/pool/Pool.sol/Pool.json +1027 -0
  144. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  145. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +456 -0
  146. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  147. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1574 -0
  148. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  149. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +808 -0
  150. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  151. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +813 -0
  152. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  153. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +728 -0
  154. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  155. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1161 -0
  156. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  157. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +644 -0
  158. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  159. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1496 -0
  160. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  161. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +848 -0
  162. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  163. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +597 -0
  164. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  165. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1064 -0
  166. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  167. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +981 -0
  168. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  169. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +602 -0
  170. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  171. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1018 -0
  172. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  173. package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +453 -0
  174. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  175. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1333 -0
  176. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  177. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +293 -0
  178. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  179. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +808 -0
  180. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  181. package/artifacts/contracts/product/PricingService.sol/PricingService.json +930 -0
  182. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  183. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +784 -0
  184. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  185. package/artifacts/contracts/product/Product.sol/Product.json +1119 -0
  186. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  187. package/artifacts/contracts/product/RiskService.sol/RiskService.json +637 -0
  188. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  189. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +724 -0
  190. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  191. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +295 -2
  192. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  193. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +1044 -113
  194. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  195. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1043 -0
  196. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  197. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  198. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  199. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +39 -0
  200. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  201. package/artifacts/contracts/registry/Registry.sol/Registry.json +1534 -178
  202. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  203. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2203 -0
  204. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  205. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +878 -0
  206. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  207. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1269 -0
  208. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  209. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +735 -0
  210. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  211. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2099 -0
  212. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  213. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  214. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  215. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1361 -0
  216. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  217. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
  218. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  219. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
  220. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  221. package/artifacts/contracts/shared/Component.sol/Component.json +707 -0
  222. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  223. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1532 -0
  224. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  225. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +812 -0
  226. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  227. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +485 -0
  228. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  229. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +578 -0
  230. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  231. package/artifacts/contracts/{instance/component/IComponent.sol/IInstanceLinked.json → shared/ContractLib.sol/IInstanceAdminHelper.json} +5 -5
  232. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  233. package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/ContractLib.sol/ITargetHelper.json} +4 -9
  234. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  235. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  236. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  237. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +632 -0
  238. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  239. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1180 -0
  240. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  241. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +709 -0
  242. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  243. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +510 -0
  244. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  245. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +146 -0
  246. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  247. package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +57 -76
  248. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  249. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
  250. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  251. package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → shared/IRegisterable.sol/IRegisterable.json} +162 -160
  252. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  253. package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +5 -19
  254. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  255. package/artifacts/contracts/shared/IService.sol/IService.json +399 -0
  256. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  257. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  258. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  259. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +797 -0
  260. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  261. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
  262. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  263. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  264. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  265. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  266. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  267. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +209 -0
  268. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  269. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
  270. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  271. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +378 -0
  272. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  273. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
  274. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  275. package/artifacts/contracts/shared/Service.sol/Service.json +453 -0
  276. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  277. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +723 -0
  278. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  279. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  280. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  281. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  282. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  283. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1465 -0
  284. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  285. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1096 -0
  286. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  287. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
  288. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  289. package/artifacts/contracts/staking/Staking.sol/Staking.json +1849 -0
  290. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  291. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  292. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  293. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +788 -0
  294. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  295. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +587 -0
  296. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  297. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1301 -0
  298. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  299. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +732 -0
  300. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  301. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2283 -0
  302. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  303. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
  304. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  305. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  306. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  307. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  308. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  309. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  310. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  311. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  312. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  313. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  314. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  315. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  316. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  317. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  318. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  319. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  320. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  321. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  322. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  323. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  324. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  325. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +241 -0
  326. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  327. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  328. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  329. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  330. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  331. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  332. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  333. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +199 -0
  334. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  335. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +433 -0
  336. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  337. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  338. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  339. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  340. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  341. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  342. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  343. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  344. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  345. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  346. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  347. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  348. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  349. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -0
  350. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  351. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  352. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  353. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
  354. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  355. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +55 -0
  356. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  357. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
  358. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  359. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  360. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  361. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +78 -0
  362. package/contracts/accounting/AccountingService.sol +262 -0
  363. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  364. package/contracts/accounting/IAccountingService.sol +45 -0
  365. package/contracts/authorization/AccessAdmin.sol +831 -0
  366. package/contracts/authorization/AccessManagerCloneable.sol +159 -0
  367. package/contracts/authorization/Authorization.sol +365 -0
  368. package/contracts/authorization/IAccess.sol +49 -0
  369. package/contracts/authorization/IAccessAdmin.sol +171 -0
  370. package/contracts/authorization/IAuthorization.sol +80 -0
  371. package/contracts/authorization/IServiceAuthorization.sol +40 -0
  372. package/contracts/authorization/ServiceAuthorization.sol +106 -0
  373. package/contracts/distribution/BasicDistribution.sol +141 -0
  374. package/contracts/distribution/BasicDistributionAuthorization.sol +60 -0
  375. package/contracts/distribution/Distribution.sol +289 -0
  376. package/contracts/distribution/DistributionService.sol +358 -0
  377. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  378. package/contracts/distribution/IDistributionComponent.sol +52 -0
  379. package/contracts/distribution/IDistributionService.sol +101 -0
  380. package/contracts/examples/fire/DamageLevel.sol +59 -0
  381. package/contracts/examples/fire/FirePool.sol +90 -0
  382. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  383. package/contracts/examples/fire/FireProduct.sol +438 -0
  384. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  385. package/contracts/examples/fire/FireUSD.sol +26 -0
  386. package/contracts/examples/unpermissioned/SimpleDistribution.sol +57 -0
  387. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  388. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  389. package/contracts/examples/unpermissioned/SimplePool.sol +106 -0
  390. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  391. package/contracts/examples/unpermissioned/SimpleProduct.sol +377 -0
  392. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  393. package/contracts/instance/BundleSet.sol +130 -0
  394. package/contracts/instance/IInstance.sol +98 -15
  395. package/contracts/instance/IInstanceService.sol +83 -0
  396. package/contracts/instance/Instance.sol +271 -46
  397. package/contracts/instance/InstanceAdmin.sol +451 -0
  398. package/contracts/instance/InstanceAuthorizationV3.sol +235 -0
  399. package/contracts/instance/InstanceReader.sol +637 -0
  400. package/contracts/instance/InstanceService.sol +450 -0
  401. package/contracts/instance/InstanceServiceManager.sol +39 -0
  402. package/contracts/instance/InstanceStore.sol +298 -0
  403. package/contracts/instance/RiskSet.sol +118 -0
  404. package/contracts/instance/base/BalanceStore.sol +123 -0
  405. package/contracts/instance/base/Cloneable.sol +28 -0
  406. package/contracts/instance/base/ObjectCounter.sol +20 -0
  407. package/contracts/instance/base/ObjectLifecycle.sol +113 -0
  408. package/contracts/instance/base/ObjectSet.sol +77 -0
  409. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  410. package/contracts/instance/module/IBundle.sol +20 -0
  411. package/contracts/instance/module/IComponents.sol +51 -0
  412. package/contracts/instance/module/IDistribution.sol +42 -0
  413. package/contracts/instance/module/IPolicy.sol +85 -0
  414. package/contracts/instance/module/IRisk.sol +14 -0
  415. package/contracts/mock/Dip.sol +26 -0
  416. package/contracts/oracle/BasicOracle.sol +47 -0
  417. package/contracts/oracle/BasicOracleAuthorization.sol +37 -0
  418. package/contracts/oracle/IOracle.sol +36 -0
  419. package/contracts/oracle/IOracleComponent.sol +33 -0
  420. package/contracts/oracle/IOracleService.sol +66 -0
  421. package/contracts/oracle/Oracle.sol +156 -0
  422. package/contracts/oracle/OracleService.sol +310 -0
  423. package/contracts/oracle/OracleServiceManager.sol +39 -0
  424. package/contracts/pool/BasicPool.sol +175 -0
  425. package/contracts/pool/BasicPoolAuthorization.sol +76 -0
  426. package/contracts/pool/BundleService.sol +395 -0
  427. package/contracts/pool/BundleServiceManager.sol +39 -0
  428. package/contracts/pool/IBundleService.sol +115 -0
  429. package/contracts/pool/IPoolComponent.sol +62 -0
  430. package/contracts/pool/IPoolService.sol +165 -0
  431. package/contracts/pool/Pool.sol +345 -0
  432. package/contracts/pool/PoolLib.sol +216 -0
  433. package/contracts/pool/PoolService.sol +757 -0
  434. package/contracts/pool/PoolServiceManager.sol +39 -0
  435. package/contracts/product/ApplicationService.sol +259 -0
  436. package/contracts/product/ApplicationServiceManager.sol +38 -0
  437. package/contracts/product/BasicProduct.sol +51 -0
  438. package/contracts/product/BasicProductAuthorization.sol +56 -0
  439. package/contracts/product/ClaimService.sol +632 -0
  440. package/contracts/product/ClaimServiceManager.sol +38 -0
  441. package/contracts/product/IApplicationService.sol +66 -0
  442. package/contracts/product/IClaimService.sol +135 -0
  443. package/contracts/product/IPolicyService.sol +95 -0
  444. package/contracts/product/IPricingService.sol +39 -0
  445. package/contracts/product/IProductComponent.sol +62 -0
  446. package/contracts/product/IRiskService.sol +33 -0
  447. package/contracts/product/PolicyService.sol +664 -0
  448. package/contracts/product/PolicyServiceLib.sol +65 -0
  449. package/contracts/product/PolicyServiceManager.sol +39 -0
  450. package/contracts/product/PricingService.sol +304 -0
  451. package/contracts/product/PricingServiceManager.sol +39 -0
  452. package/contracts/product/Product.sol +478 -0
  453. package/contracts/product/RiskService.sol +145 -0
  454. package/contracts/product/RiskServiceManager.sol +39 -0
  455. package/contracts/registry/ChainNft.sol +176 -100
  456. package/contracts/registry/IRegistry.sol +148 -52
  457. package/contracts/registry/IRegistryService.sol +62 -0
  458. package/contracts/registry/IRelease.sol +26 -0
  459. package/contracts/registry/ITransferInterceptor.sol +6 -0
  460. package/contracts/registry/Registry.sol +665 -117
  461. package/contracts/registry/RegistryAdmin.sol +473 -0
  462. package/contracts/registry/RegistryAuthorization.sol +266 -0
  463. package/contracts/registry/RegistryService.sol +241 -0
  464. package/contracts/registry/RegistryServiceManager.sol +53 -0
  465. package/contracts/registry/ReleaseAdmin.sol +252 -0
  466. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  467. package/contracts/registry/ReleaseRegistry.sol +517 -0
  468. package/contracts/registry/ServiceAuthorizationV3.sol +329 -0
  469. package/contracts/registry/TokenRegistry.sol +313 -0
  470. package/contracts/shared/Component.sol +227 -0
  471. package/contracts/shared/ComponentService.sol +689 -0
  472. package/contracts/shared/ComponentServiceManager.sol +38 -0
  473. package/contracts/shared/ComponentVerifyingService.sol +128 -0
  474. package/contracts/shared/ContractLib.sol +263 -0
  475. package/contracts/shared/IComponent.sol +61 -0
  476. package/contracts/shared/IComponentService.sol +110 -0
  477. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  478. package/contracts/shared/IKeyValueStore.sol +54 -0
  479. package/contracts/shared/ILifecycle.sol +31 -0
  480. package/contracts/shared/INftOwnable.sol +25 -0
  481. package/contracts/shared/IPolicyHolder.sol +35 -0
  482. package/contracts/shared/IRegisterable.sol +37 -0
  483. package/contracts/shared/IRegistryLinked.sol +11 -0
  484. package/contracts/shared/IService.sol +23 -0
  485. package/contracts/shared/InitializableERC165.sol +35 -0
  486. package/contracts/shared/InstanceLinkedComponent.sol +197 -0
  487. package/contracts/shared/KeyValueStore.sol +131 -0
  488. package/contracts/shared/Lifecycle.sol +88 -0
  489. package/contracts/shared/NftIdSet.sol +65 -0
  490. package/contracts/shared/NftOwnable.sol +127 -0
  491. package/contracts/shared/PolicyHolder.sol +62 -0
  492. package/contracts/shared/Registerable.sol +106 -0
  493. package/contracts/shared/RegistryLinked.sol +38 -0
  494. package/contracts/shared/Service.sol +65 -0
  495. package/contracts/shared/TokenHandler.sol +342 -0
  496. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  497. package/contracts/staking/IStaking.sol +169 -0
  498. package/contracts/staking/IStakingService.sol +165 -0
  499. package/contracts/staking/StakeManagerLib.sol +224 -0
  500. package/contracts/staking/Staking.sol +526 -0
  501. package/contracts/staking/StakingLifecycle.sol +23 -0
  502. package/contracts/staking/StakingManager.sol +52 -0
  503. package/contracts/staking/StakingReader.sol +190 -0
  504. package/contracts/staking/StakingService.sol +430 -0
  505. package/contracts/staking/StakingServiceManager.sol +45 -0
  506. package/contracts/staking/StakingStore.sol +605 -0
  507. package/contracts/staking/TargetManagerLib.sol +211 -0
  508. package/contracts/type/AddressSet.sol +58 -0
  509. package/contracts/type/Amount.sol +150 -0
  510. package/contracts/type/Blocknumber.sol +142 -0
  511. package/contracts/type/ClaimId.sol +80 -0
  512. package/contracts/type/DistributorType.sol +55 -0
  513. package/contracts/type/Fee.sol +66 -0
  514. package/contracts/type/Key32.sol +50 -0
  515. package/contracts/type/Key32Set.sol +62 -0
  516. package/contracts/type/NftId.sol +85 -0
  517. package/contracts/type/NftIdSet.sol +62 -0
  518. package/contracts/type/ObjectType.sol +294 -0
  519. package/contracts/type/PayoutId.sol +82 -0
  520. package/contracts/type/Referral.sol +90 -0
  521. package/contracts/type/RequestId.sol +75 -0
  522. package/contracts/type/RiskId.sol +74 -0
  523. package/contracts/type/RoleId.sol +182 -0
  524. package/contracts/type/Seconds.sol +101 -0
  525. package/contracts/type/Selector.sol +107 -0
  526. package/contracts/type/StateId.sol +149 -0
  527. package/contracts/type/String.sol +53 -0
  528. package/contracts/type/Timestamp.sol +141 -0
  529. package/contracts/type/UFixed.sol +245 -0
  530. package/contracts/type/Version.sol +159 -0
  531. package/contracts/upgradeability/IVersionable.sol +53 -0
  532. package/contracts/upgradeability/ProxyManager.sol +232 -0
  533. package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +14 -0
  534. package/contracts/upgradeability/Versionable.sol +59 -0
  535. package/package.json +26 -7
  536. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  537. package/artifacts/contracts/components/Component.sol/Component.json +0 -179
  538. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  539. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  540. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  541. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
  542. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  543. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
  544. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  545. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -213
  546. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  547. package/artifacts/contracts/components/Product.sol/Product.json +0 -231
  548. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  549. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  550. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  551. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  552. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  553. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  554. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  555. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  556. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  557. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  558. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  559. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  560. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  561. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  562. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  563. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  564. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  565. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  566. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  567. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  568. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  569. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  570. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  571. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  572. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  573. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
  574. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  575. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  576. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  577. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  578. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  579. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  580. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  581. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  582. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -147
  583. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  584. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  585. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
  586. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  587. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
  588. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  589. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
  590. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  591. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  592. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  593. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
  594. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  595. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
  596. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  597. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  598. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
  599. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  600. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -162
  601. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  602. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  603. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  604. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
  605. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  606. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  607. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  608. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -167
  609. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  610. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
  611. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  612. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  613. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  614. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  615. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  616. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  617. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  618. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  619. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  620. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  621. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -92
  622. package/contracts/components/Component.sol +0 -62
  623. package/contracts/components/IPool.sol +0 -9
  624. package/contracts/components/IProduct.sol +0 -12
  625. package/contracts/components/Pool.sol +0 -29
  626. package/contracts/components/Product.sol +0 -66
  627. package/contracts/experiment/errors/Require.sol +0 -33
  628. package/contracts/experiment/errors/Revert.sol +0 -39
  629. package/contracts/experiment/inheritance/A.sol +0 -56
  630. package/contracts/experiment/inheritance/B.sol +0 -23
  631. package/contracts/experiment/inheritance/C.sol +0 -28
  632. package/contracts/experiment/inheritance/IA.sol +0 -18
  633. package/contracts/experiment/inheritance/IB.sol +0 -9
  634. package/contracts/experiment/inheritance/IC.sol +0 -11
  635. package/contracts/experiment/types/TypeA.sol +0 -42
  636. package/contracts/experiment/types/TypeB.sol +0 -24
  637. package/contracts/instance/access/Access.sol +0 -218
  638. package/contracts/instance/access/IAccess.sol +0 -83
  639. package/contracts/instance/component/ComponentModule.sol +0 -248
  640. package/contracts/instance/component/IComponent.sol +0 -95
  641. package/contracts/instance/policy/IPolicy.sol +0 -66
  642. package/contracts/instance/policy/PolicyModule.sol +0 -107
  643. package/contracts/instance/pool/IPoolModule.sol +0 -41
  644. package/contracts/instance/pool/PoolModule.sol +0 -86
  645. package/contracts/instance/product/IProductService.sol +0 -46
  646. package/contracts/instance/product/ProductService.sol +0 -108
  647. package/contracts/registry/IChainNft.sol +0 -18
  648. package/contracts/types/ChainId.sol +0 -30
  649. package/contracts/types/NftId.sol +0 -35
@@ -0,0 +1,2099 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ReleaseAdmin",
4
+ "sourceName": "contracts/registry/ReleaseAdmin.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "accessManager",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "stateMutability": "nonpayable",
15
+ "type": "constructor"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "authority",
22
+ "type": "address"
23
+ }
24
+ ],
25
+ "name": "AccessManagedInvalidAuthority",
26
+ "type": "error"
27
+ },
28
+ {
29
+ "inputs": [
30
+ {
31
+ "internalType": "address",
32
+ "name": "caller",
33
+ "type": "address"
34
+ },
35
+ {
36
+ "internalType": "uint32",
37
+ "name": "delay",
38
+ "type": "uint32"
39
+ }
40
+ ],
41
+ "name": "AccessManagedRequiredDelay",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "caller",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "AccessManagedUnauthorized",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [],
57
+ "name": "ErrorAccessAdminAccessManagerEmptyName",
58
+ "type": "error"
59
+ },
60
+ {
61
+ "inputs": [
62
+ {
63
+ "internalType": "address",
64
+ "name": "authority",
65
+ "type": "address"
66
+ }
67
+ ],
68
+ "name": "ErrorAccessAdminAccessManagerNotAccessManager",
69
+ "type": "error"
70
+ },
71
+ {
72
+ "inputs": [],
73
+ "name": "ErrorAccessAdminAdminRoleMissing",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [
78
+ {
79
+ "internalType": "address",
80
+ "name": "authorization",
81
+ "type": "address"
82
+ }
83
+ ],
84
+ "name": "ErrorAccessAdminAlreadyInitialized",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "internalType": "address",
91
+ "name": "authority",
92
+ "type": "address"
93
+ }
94
+ ],
95
+ "name": "ErrorAccessAdminAuthorityNotContract",
96
+ "type": "error"
97
+ },
98
+ {
99
+ "inputs": [
100
+ {
101
+ "internalType": "address",
102
+ "name": "target",
103
+ "type": "address"
104
+ }
105
+ ],
106
+ "name": "ErrorAccessAdminAuthorizeForAdminRoleInvalid",
107
+ "type": "error"
108
+ },
109
+ {
110
+ "inputs": [
111
+ {
112
+ "internalType": "address",
113
+ "name": "authorization",
114
+ "type": "address"
115
+ },
116
+ {
117
+ "internalType": "ObjectType",
118
+ "name": "expectedDomain",
119
+ "type": "uint8"
120
+ },
121
+ {
122
+ "internalType": "ObjectType",
123
+ "name": "actualDomain",
124
+ "type": "uint8"
125
+ }
126
+ ],
127
+ "name": "ErrorAccessAdminDomainMismatch",
128
+ "type": "error"
129
+ },
130
+ {
131
+ "inputs": [
132
+ {
133
+ "internalType": "RoleId",
134
+ "name": "adminRoleId",
135
+ "type": "uint64"
136
+ }
137
+ ],
138
+ "name": "ErrorAccessAdminNotAdminOfRole",
139
+ "type": "error"
140
+ },
141
+ {
142
+ "inputs": [
143
+ {
144
+ "internalType": "address",
145
+ "name": "authorization",
146
+ "type": "address"
147
+ }
148
+ ],
149
+ "name": "ErrorAccessAdminNotAuthorization",
150
+ "type": "error"
151
+ },
152
+ {
153
+ "inputs": [],
154
+ "name": "ErrorAccessAdminNotDeployer",
155
+ "type": "error"
156
+ },
157
+ {
158
+ "inputs": [
159
+ {
160
+ "internalType": "address",
161
+ "name": "registerable",
162
+ "type": "address"
163
+ }
164
+ ],
165
+ "name": "ErrorAccessAdminNotRegistered",
166
+ "type": "error"
167
+ },
168
+ {
169
+ "inputs": [
170
+ {
171
+ "internalType": "address",
172
+ "name": "registry",
173
+ "type": "address"
174
+ }
175
+ ],
176
+ "name": "ErrorAccessAdminNotRegistry",
177
+ "type": "error"
178
+ },
179
+ {
180
+ "inputs": [
181
+ {
182
+ "internalType": "RoleId",
183
+ "name": "roleId",
184
+ "type": "uint64"
185
+ }
186
+ ],
187
+ "name": "ErrorAccessAdminNotRoleOwner",
188
+ "type": "error"
189
+ },
190
+ {
191
+ "inputs": [
192
+ {
193
+ "internalType": "address",
194
+ "name": "authorization",
195
+ "type": "address"
196
+ },
197
+ {
198
+ "internalType": "VersionPart",
199
+ "name": "expectedRelease",
200
+ "type": "uint8"
201
+ },
202
+ {
203
+ "internalType": "VersionPart",
204
+ "name": "actualRelease",
205
+ "type": "uint8"
206
+ }
207
+ ],
208
+ "name": "ErrorAccessAdminReleaseMismatch",
209
+ "type": "error"
210
+ },
211
+ {
212
+ "inputs": [
213
+ {
214
+ "internalType": "RoleId",
215
+ "name": "adminRoleId",
216
+ "type": "uint64"
217
+ }
218
+ ],
219
+ "name": "ErrorAccessAdminRoleAdminNotExisting",
220
+ "type": "error"
221
+ },
222
+ {
223
+ "inputs": [
224
+ {
225
+ "internalType": "RoleId",
226
+ "name": "roleId",
227
+ "type": "uint64"
228
+ },
229
+ {
230
+ "internalType": "string",
231
+ "name": "name",
232
+ "type": "string"
233
+ }
234
+ ],
235
+ "name": "ErrorAccessAdminRoleAlreadyCreated",
236
+ "type": "error"
237
+ },
238
+ {
239
+ "inputs": [
240
+ {
241
+ "internalType": "RoleId",
242
+ "name": "roleId",
243
+ "type": "uint64"
244
+ }
245
+ ],
246
+ "name": "ErrorAccessAdminRoleIsLocked",
247
+ "type": "error"
248
+ },
249
+ {
250
+ "inputs": [
251
+ {
252
+ "internalType": "RoleId",
253
+ "name": "roleId",
254
+ "type": "uint64"
255
+ }
256
+ ],
257
+ "name": "ErrorAccessAdminRoleIsPaused",
258
+ "type": "error"
259
+ },
260
+ {
261
+ "inputs": [
262
+ {
263
+ "internalType": "RoleId",
264
+ "name": "roleId",
265
+ "type": "uint64"
266
+ },
267
+ {
268
+ "internalType": "address",
269
+ "name": "notContract",
270
+ "type": "address"
271
+ }
272
+ ],
273
+ "name": "ErrorAccessAdminRoleMemberNotContract",
274
+ "type": "error"
275
+ },
276
+ {
277
+ "inputs": [
278
+ {
279
+ "internalType": "RoleId",
280
+ "name": "roleId",
281
+ "type": "uint64"
282
+ },
283
+ {
284
+ "internalType": "address",
285
+ "name": "expectedMember",
286
+ "type": "address"
287
+ }
288
+ ],
289
+ "name": "ErrorAccessAdminRoleMemberRemovalDisabled",
290
+ "type": "error"
291
+ },
292
+ {
293
+ "inputs": [
294
+ {
295
+ "internalType": "RoleId",
296
+ "name": "roleId",
297
+ "type": "uint64"
298
+ },
299
+ {
300
+ "internalType": "uint256",
301
+ "name": "memberCountLimit",
302
+ "type": "uint256"
303
+ }
304
+ ],
305
+ "name": "ErrorAccessAdminRoleMembersLimitReached",
306
+ "type": "error"
307
+ },
308
+ {
309
+ "inputs": [
310
+ {
311
+ "internalType": "RoleId",
312
+ "name": "roleId",
313
+ "type": "uint64"
314
+ },
315
+ {
316
+ "internalType": "string",
317
+ "name": "name",
318
+ "type": "string"
319
+ },
320
+ {
321
+ "internalType": "RoleId",
322
+ "name": "existingRoleId",
323
+ "type": "uint64"
324
+ }
325
+ ],
326
+ "name": "ErrorAccessAdminRoleNameAlreadyExists",
327
+ "type": "error"
328
+ },
329
+ {
330
+ "inputs": [
331
+ {
332
+ "internalType": "RoleId",
333
+ "name": "roleId",
334
+ "type": "uint64"
335
+ }
336
+ ],
337
+ "name": "ErrorAccessAdminRoleNameEmpty",
338
+ "type": "error"
339
+ },
340
+ {
341
+ "inputs": [
342
+ {
343
+ "internalType": "RoleId",
344
+ "name": "roleId",
345
+ "type": "uint64"
346
+ }
347
+ ],
348
+ "name": "ErrorAccessAdminRoleUnknown",
349
+ "type": "error"
350
+ },
351
+ {
352
+ "inputs": [],
353
+ "name": "ErrorAccessAdminTagetNotLockable",
354
+ "type": "error"
355
+ },
356
+ {
357
+ "inputs": [
358
+ {
359
+ "internalType": "address",
360
+ "name": "target",
361
+ "type": "address"
362
+ },
363
+ {
364
+ "internalType": "string",
365
+ "name": "name",
366
+ "type": "string"
367
+ }
368
+ ],
369
+ "name": "ErrorAccessAdminTargetAlreadyCreated",
370
+ "type": "error"
371
+ },
372
+ {
373
+ "inputs": [
374
+ {
375
+ "internalType": "address",
376
+ "name": "target",
377
+ "type": "address"
378
+ },
379
+ {
380
+ "internalType": "bool",
381
+ "name": "isLocked",
382
+ "type": "bool"
383
+ }
384
+ ],
385
+ "name": "ErrorAccessAdminTargetAlreadyLocked",
386
+ "type": "error"
387
+ },
388
+ {
389
+ "inputs": [
390
+ {
391
+ "internalType": "address",
392
+ "name": "expectedAuthority",
393
+ "type": "address"
394
+ },
395
+ {
396
+ "internalType": "address",
397
+ "name": "actualAuthority",
398
+ "type": "address"
399
+ }
400
+ ],
401
+ "name": "ErrorAccessAdminTargetAuthorityMismatch",
402
+ "type": "error"
403
+ },
404
+ {
405
+ "inputs": [
406
+ {
407
+ "internalType": "address",
408
+ "name": "target",
409
+ "type": "address"
410
+ },
411
+ {
412
+ "internalType": "string",
413
+ "name": "name",
414
+ "type": "string"
415
+ },
416
+ {
417
+ "internalType": "address",
418
+ "name": "existingTarget",
419
+ "type": "address"
420
+ }
421
+ ],
422
+ "name": "ErrorAccessAdminTargetNameAlreadyExists",
423
+ "type": "error"
424
+ },
425
+ {
426
+ "inputs": [
427
+ {
428
+ "internalType": "address",
429
+ "name": "target",
430
+ "type": "address"
431
+ }
432
+ ],
433
+ "name": "ErrorAccessAdminTargetNameEmpty",
434
+ "type": "error"
435
+ },
436
+ {
437
+ "inputs": [
438
+ {
439
+ "internalType": "address",
440
+ "name": "target",
441
+ "type": "address"
442
+ }
443
+ ],
444
+ "name": "ErrorAccessAdminTargetNotAccessManaged",
445
+ "type": "error"
446
+ },
447
+ {
448
+ "inputs": [
449
+ {
450
+ "internalType": "address",
451
+ "name": "target",
452
+ "type": "address"
453
+ }
454
+ ],
455
+ "name": "ErrorAccessAdminTargetNotCreated",
456
+ "type": "error"
457
+ },
458
+ {
459
+ "inputs": [
460
+ {
461
+ "internalType": "address",
462
+ "name": "target",
463
+ "type": "address"
464
+ }
465
+ ],
466
+ "name": "ErrorAccessAdminTargetNotRegistered",
467
+ "type": "error"
468
+ },
469
+ {
470
+ "inputs": [
471
+ {
472
+ "internalType": "address",
473
+ "name": "target",
474
+ "type": "address"
475
+ },
476
+ {
477
+ "internalType": "ObjectType",
478
+ "name": "expectedType",
479
+ "type": "uint8"
480
+ },
481
+ {
482
+ "internalType": "ObjectType",
483
+ "name": "actualType",
484
+ "type": "uint8"
485
+ }
486
+ ],
487
+ "name": "ErrorAccessAdminTargetTypeMismatch",
488
+ "type": "error"
489
+ },
490
+ {
491
+ "inputs": [
492
+ {
493
+ "internalType": "address",
494
+ "name": "target",
495
+ "type": "address"
496
+ }
497
+ ],
498
+ "name": "ErrorAccessAdminTargetUnknown",
499
+ "type": "error"
500
+ },
501
+ {
502
+ "inputs": [
503
+ {
504
+ "internalType": "address",
505
+ "name": "registryAddress",
506
+ "type": "address"
507
+ }
508
+ ],
509
+ "name": "ErrorNotRegistry",
510
+ "type": "error"
511
+ },
512
+ {
513
+ "inputs": [
514
+ {
515
+ "internalType": "address",
516
+ "name": "caller",
517
+ "type": "address"
518
+ }
519
+ ],
520
+ "name": "ErrorReleaseAdminCallerNotReleaseRegistry",
521
+ "type": "error"
522
+ },
523
+ {
524
+ "inputs": [
525
+ {
526
+ "internalType": "address",
527
+ "name": "notService",
528
+ "type": "address"
529
+ }
530
+ ],
531
+ "name": "ErrorReleaseAdminNotService",
532
+ "type": "error"
533
+ },
534
+ {
535
+ "inputs": [
536
+ {
537
+ "internalType": "bool",
538
+ "name": "locked",
539
+ "type": "bool"
540
+ }
541
+ ],
542
+ "name": "ErrorReleaseAdminReleaseLockAlreadySetTo",
543
+ "type": "error"
544
+ },
545
+ {
546
+ "inputs": [],
547
+ "name": "InvalidInitialization",
548
+ "type": "error"
549
+ },
550
+ {
551
+ "inputs": [],
552
+ "name": "NotInitializing",
553
+ "type": "error"
554
+ },
555
+ {
556
+ "inputs": [],
557
+ "name": "ReentrancyGuardReentrantCall",
558
+ "type": "error"
559
+ },
560
+ {
561
+ "anonymous": false,
562
+ "inputs": [
563
+ {
564
+ "indexed": false,
565
+ "internalType": "address",
566
+ "name": "authority",
567
+ "type": "address"
568
+ }
569
+ ],
570
+ "name": "AuthorityUpdated",
571
+ "type": "event"
572
+ },
573
+ {
574
+ "anonymous": false,
575
+ "inputs": [
576
+ {
577
+ "indexed": false,
578
+ "internalType": "uint64",
579
+ "name": "version",
580
+ "type": "uint64"
581
+ }
582
+ ],
583
+ "name": "Initialized",
584
+ "type": "event"
585
+ },
586
+ {
587
+ "anonymous": false,
588
+ "inputs": [
589
+ {
590
+ "indexed": false,
591
+ "internalType": "string",
592
+ "name": "admin",
593
+ "type": "string"
594
+ },
595
+ {
596
+ "indexed": false,
597
+ "internalType": "address",
598
+ "name": "target",
599
+ "type": "address"
600
+ },
601
+ {
602
+ "indexed": false,
603
+ "internalType": "string",
604
+ "name": "func",
605
+ "type": "string"
606
+ }
607
+ ],
608
+ "name": "LogAccessAdminFunctionGranted",
609
+ "type": "event"
610
+ },
611
+ {
612
+ "anonymous": false,
613
+ "inputs": [
614
+ {
615
+ "indexed": false,
616
+ "internalType": "string",
617
+ "name": "admin",
618
+ "type": "string"
619
+ },
620
+ {
621
+ "indexed": false,
622
+ "internalType": "RoleId",
623
+ "name": "roleId",
624
+ "type": "uint64"
625
+ },
626
+ {
627
+ "indexed": false,
628
+ "internalType": "enum IAccess.RoleType",
629
+ "name": "roleType",
630
+ "type": "uint8"
631
+ },
632
+ {
633
+ "indexed": false,
634
+ "internalType": "RoleId",
635
+ "name": "roleAdminId",
636
+ "type": "uint64"
637
+ },
638
+ {
639
+ "indexed": false,
640
+ "internalType": "string",
641
+ "name": "name",
642
+ "type": "string"
643
+ }
644
+ ],
645
+ "name": "LogAccessAdminRoleCreated",
646
+ "type": "event"
647
+ },
648
+ {
649
+ "anonymous": false,
650
+ "inputs": [
651
+ {
652
+ "indexed": false,
653
+ "internalType": "string",
654
+ "name": "admin",
655
+ "type": "string"
656
+ },
657
+ {
658
+ "indexed": false,
659
+ "internalType": "address",
660
+ "name": "account",
661
+ "type": "address"
662
+ },
663
+ {
664
+ "indexed": false,
665
+ "internalType": "string",
666
+ "name": "roleName",
667
+ "type": "string"
668
+ }
669
+ ],
670
+ "name": "LogAccessAdminRoleGranted",
671
+ "type": "event"
672
+ },
673
+ {
674
+ "anonymous": false,
675
+ "inputs": [
676
+ {
677
+ "indexed": false,
678
+ "internalType": "string",
679
+ "name": "admin",
680
+ "type": "string"
681
+ },
682
+ {
683
+ "indexed": false,
684
+ "internalType": "address",
685
+ "name": "account",
686
+ "type": "address"
687
+ },
688
+ {
689
+ "indexed": false,
690
+ "internalType": "string",
691
+ "name": "roleName",
692
+ "type": "string"
693
+ }
694
+ ],
695
+ "name": "LogAccessAdminRoleRevoked",
696
+ "type": "event"
697
+ },
698
+ {
699
+ "anonymous": false,
700
+ "inputs": [
701
+ {
702
+ "indexed": false,
703
+ "internalType": "string",
704
+ "name": "admin",
705
+ "type": "string"
706
+ },
707
+ {
708
+ "indexed": false,
709
+ "internalType": "address",
710
+ "name": "target",
711
+ "type": "address"
712
+ },
713
+ {
714
+ "indexed": false,
715
+ "internalType": "string",
716
+ "name": "name",
717
+ "type": "string"
718
+ }
719
+ ],
720
+ "name": "LogAccessAdminTargetCreated",
721
+ "type": "event"
722
+ },
723
+ {
724
+ "anonymous": false,
725
+ "inputs": [
726
+ {
727
+ "indexed": false,
728
+ "internalType": "VersionPart",
729
+ "name": "release",
730
+ "type": "uint8"
731
+ },
732
+ {
733
+ "indexed": false,
734
+ "internalType": "bool",
735
+ "name": "locked",
736
+ "type": "bool"
737
+ }
738
+ ],
739
+ "name": "LogReleaseAdminReleaseLockChanged",
740
+ "type": "event"
741
+ },
742
+ {
743
+ "anonymous": false,
744
+ "inputs": [
745
+ {
746
+ "indexed": false,
747
+ "internalType": "VersionPart",
748
+ "name": "release",
749
+ "type": "uint8"
750
+ },
751
+ {
752
+ "indexed": false,
753
+ "internalType": "address",
754
+ "name": "service",
755
+ "type": "address"
756
+ },
757
+ {
758
+ "indexed": false,
759
+ "internalType": "bool",
760
+ "name": "locked",
761
+ "type": "bool"
762
+ }
763
+ ],
764
+ "name": "LogReleaseAdminServiceLockChanged",
765
+ "type": "event"
766
+ },
767
+ {
768
+ "inputs": [],
769
+ "name": "ADMIN_ROLE_NAME",
770
+ "outputs": [
771
+ {
772
+ "internalType": "string",
773
+ "name": "",
774
+ "type": "string"
775
+ }
776
+ ],
777
+ "stateMutability": "view",
778
+ "type": "function"
779
+ },
780
+ {
781
+ "inputs": [],
782
+ "name": "PUBLIC_ROLE_NAME",
783
+ "outputs": [
784
+ {
785
+ "internalType": "string",
786
+ "name": "",
787
+ "type": "string"
788
+ }
789
+ ],
790
+ "stateMutability": "view",
791
+ "type": "function"
792
+ },
793
+ {
794
+ "inputs": [],
795
+ "name": "RELEASE_ADMIN_TARGET_NAME",
796
+ "outputs": [
797
+ {
798
+ "internalType": "string",
799
+ "name": "",
800
+ "type": "string"
801
+ }
802
+ ],
803
+ "stateMutability": "view",
804
+ "type": "function"
805
+ },
806
+ {
807
+ "inputs": [],
808
+ "name": "RELEASE_REGISTRY_ROLE_NAME",
809
+ "outputs": [
810
+ {
811
+ "internalType": "string",
812
+ "name": "",
813
+ "type": "string"
814
+ }
815
+ ],
816
+ "stateMutability": "view",
817
+ "type": "function"
818
+ },
819
+ {
820
+ "inputs": [],
821
+ "name": "authority",
822
+ "outputs": [
823
+ {
824
+ "internalType": "address",
825
+ "name": "",
826
+ "type": "address"
827
+ }
828
+ ],
829
+ "stateMutability": "view",
830
+ "type": "function"
831
+ },
832
+ {
833
+ "inputs": [
834
+ {
835
+ "internalType": "contract IServiceAuthorization",
836
+ "name": "serviceAuthorization",
837
+ "type": "address"
838
+ },
839
+ {
840
+ "internalType": "contract IService",
841
+ "name": "service",
842
+ "type": "address"
843
+ },
844
+ {
845
+ "internalType": "ObjectType",
846
+ "name": "serviceDomain",
847
+ "type": "uint8"
848
+ },
849
+ {
850
+ "internalType": "VersionPart",
851
+ "name": "release",
852
+ "type": "uint8"
853
+ }
854
+ ],
855
+ "name": "authorizeService",
856
+ "outputs": [],
857
+ "stateMutability": "nonpayable",
858
+ "type": "function"
859
+ },
860
+ {
861
+ "inputs": [
862
+ {
863
+ "internalType": "address",
864
+ "name": "target",
865
+ "type": "address"
866
+ }
867
+ ],
868
+ "name": "authorizedFunctions",
869
+ "outputs": [
870
+ {
871
+ "internalType": "uint256",
872
+ "name": "numberOfFunctions",
873
+ "type": "uint256"
874
+ }
875
+ ],
876
+ "stateMutability": "view",
877
+ "type": "function"
878
+ },
879
+ {
880
+ "inputs": [
881
+ {
882
+ "internalType": "address",
883
+ "name": "caller",
884
+ "type": "address"
885
+ },
886
+ {
887
+ "internalType": "address",
888
+ "name": "target",
889
+ "type": "address"
890
+ },
891
+ {
892
+ "internalType": "Selector",
893
+ "name": "selector",
894
+ "type": "bytes4"
895
+ }
896
+ ],
897
+ "name": "canCall",
898
+ "outputs": [
899
+ {
900
+ "internalType": "bool",
901
+ "name": "can",
902
+ "type": "bool"
903
+ }
904
+ ],
905
+ "stateMutability": "view",
906
+ "type": "function"
907
+ },
908
+ {
909
+ "inputs": [
910
+ {
911
+ "internalType": "address",
912
+ "name": "registry",
913
+ "type": "address"
914
+ },
915
+ {
916
+ "internalType": "address",
917
+ "name": "releaseRegistry",
918
+ "type": "address"
919
+ },
920
+ {
921
+ "internalType": "VersionPart",
922
+ "name": "release",
923
+ "type": "uint8"
924
+ }
925
+ ],
926
+ "name": "completeSetup",
927
+ "outputs": [],
928
+ "stateMutability": "nonpayable",
929
+ "type": "function"
930
+ },
931
+ {
932
+ "inputs": [],
933
+ "name": "deployer",
934
+ "outputs": [
935
+ {
936
+ "internalType": "address",
937
+ "name": "",
938
+ "type": "address"
939
+ }
940
+ ],
941
+ "stateMutability": "view",
942
+ "type": "function"
943
+ },
944
+ {
945
+ "inputs": [],
946
+ "name": "getAdminRole",
947
+ "outputs": [
948
+ {
949
+ "internalType": "RoleId",
950
+ "name": "roleId",
951
+ "type": "uint64"
952
+ }
953
+ ],
954
+ "stateMutability": "view",
955
+ "type": "function"
956
+ },
957
+ {
958
+ "inputs": [
959
+ {
960
+ "internalType": "address",
961
+ "name": "target",
962
+ "type": "address"
963
+ },
964
+ {
965
+ "internalType": "uint256",
966
+ "name": "idx",
967
+ "type": "uint256"
968
+ }
969
+ ],
970
+ "name": "getAuthorizedFunction",
971
+ "outputs": [
972
+ {
973
+ "components": [
974
+ {
975
+ "internalType": "Str",
976
+ "name": "name",
977
+ "type": "bytes32"
978
+ },
979
+ {
980
+ "internalType": "Selector",
981
+ "name": "selector",
982
+ "type": "bytes4"
983
+ },
984
+ {
985
+ "internalType": "Timestamp",
986
+ "name": "createdAt",
987
+ "type": "uint40"
988
+ }
989
+ ],
990
+ "internalType": "struct IAccess.FunctionInfo",
991
+ "name": "func",
992
+ "type": "tuple"
993
+ },
994
+ {
995
+ "internalType": "RoleId",
996
+ "name": "roleId",
997
+ "type": "uint64"
998
+ }
999
+ ],
1000
+ "stateMutability": "view",
1001
+ "type": "function"
1002
+ },
1003
+ {
1004
+ "inputs": [],
1005
+ "name": "getLinkedNftId",
1006
+ "outputs": [
1007
+ {
1008
+ "internalType": "NftId",
1009
+ "name": "linkedNftId",
1010
+ "type": "uint96"
1011
+ }
1012
+ ],
1013
+ "stateMutability": "view",
1014
+ "type": "function"
1015
+ },
1016
+ {
1017
+ "inputs": [],
1018
+ "name": "getLinkedOwner",
1019
+ "outputs": [
1020
+ {
1021
+ "internalType": "address",
1022
+ "name": "linkedOwner",
1023
+ "type": "address"
1024
+ }
1025
+ ],
1026
+ "stateMutability": "view",
1027
+ "type": "function"
1028
+ },
1029
+ {
1030
+ "inputs": [],
1031
+ "name": "getPublicRole",
1032
+ "outputs": [
1033
+ {
1034
+ "internalType": "RoleId",
1035
+ "name": "roleId",
1036
+ "type": "uint64"
1037
+ }
1038
+ ],
1039
+ "stateMutability": "view",
1040
+ "type": "function"
1041
+ },
1042
+ {
1043
+ "inputs": [],
1044
+ "name": "getRegistry",
1045
+ "outputs": [
1046
+ {
1047
+ "internalType": "contract IRegistry",
1048
+ "name": "registry",
1049
+ "type": "address"
1050
+ }
1051
+ ],
1052
+ "stateMutability": "view",
1053
+ "type": "function"
1054
+ },
1055
+ {
1056
+ "inputs": [],
1057
+ "name": "getRelease",
1058
+ "outputs": [
1059
+ {
1060
+ "internalType": "VersionPart",
1061
+ "name": "release",
1062
+ "type": "uint8"
1063
+ }
1064
+ ],
1065
+ "stateMutability": "view",
1066
+ "type": "function"
1067
+ },
1068
+ {
1069
+ "inputs": [
1070
+ {
1071
+ "internalType": "Str",
1072
+ "name": "name",
1073
+ "type": "bytes32"
1074
+ }
1075
+ ],
1076
+ "name": "getRoleForName",
1077
+ "outputs": [
1078
+ {
1079
+ "components": [
1080
+ {
1081
+ "internalType": "RoleId",
1082
+ "name": "roleId",
1083
+ "type": "uint64"
1084
+ },
1085
+ {
1086
+ "internalType": "bool",
1087
+ "name": "exists",
1088
+ "type": "bool"
1089
+ }
1090
+ ],
1091
+ "internalType": "struct IAccess.RoleNameInfo",
1092
+ "name": "",
1093
+ "type": "tuple"
1094
+ }
1095
+ ],
1096
+ "stateMutability": "view",
1097
+ "type": "function"
1098
+ },
1099
+ {
1100
+ "inputs": [
1101
+ {
1102
+ "internalType": "uint256",
1103
+ "name": "idx",
1104
+ "type": "uint256"
1105
+ }
1106
+ ],
1107
+ "name": "getRoleId",
1108
+ "outputs": [
1109
+ {
1110
+ "internalType": "RoleId",
1111
+ "name": "roleId",
1112
+ "type": "uint64"
1113
+ }
1114
+ ],
1115
+ "stateMutability": "view",
1116
+ "type": "function"
1117
+ },
1118
+ {
1119
+ "inputs": [
1120
+ {
1121
+ "internalType": "RoleId",
1122
+ "name": "roleId",
1123
+ "type": "uint64"
1124
+ }
1125
+ ],
1126
+ "name": "getRoleInfo",
1127
+ "outputs": [
1128
+ {
1129
+ "components": [
1130
+ {
1131
+ "internalType": "RoleId",
1132
+ "name": "adminRoleId",
1133
+ "type": "uint64"
1134
+ },
1135
+ {
1136
+ "internalType": "enum IAccess.RoleType",
1137
+ "name": "roleType",
1138
+ "type": "uint8"
1139
+ },
1140
+ {
1141
+ "internalType": "uint32",
1142
+ "name": "maxMemberCount",
1143
+ "type": "uint32"
1144
+ },
1145
+ {
1146
+ "internalType": "Str",
1147
+ "name": "name",
1148
+ "type": "bytes32"
1149
+ },
1150
+ {
1151
+ "internalType": "Timestamp",
1152
+ "name": "createdAt",
1153
+ "type": "uint40"
1154
+ },
1155
+ {
1156
+ "internalType": "Timestamp",
1157
+ "name": "pausedAt",
1158
+ "type": "uint40"
1159
+ }
1160
+ ],
1161
+ "internalType": "struct IAccess.RoleInfo",
1162
+ "name": "",
1163
+ "type": "tuple"
1164
+ }
1165
+ ],
1166
+ "stateMutability": "view",
1167
+ "type": "function"
1168
+ },
1169
+ {
1170
+ "inputs": [
1171
+ {
1172
+ "internalType": "RoleId",
1173
+ "name": "roleId",
1174
+ "type": "uint64"
1175
+ },
1176
+ {
1177
+ "internalType": "uint256",
1178
+ "name": "idx",
1179
+ "type": "uint256"
1180
+ }
1181
+ ],
1182
+ "name": "getRoleMember",
1183
+ "outputs": [
1184
+ {
1185
+ "internalType": "address",
1186
+ "name": "account",
1187
+ "type": "address"
1188
+ }
1189
+ ],
1190
+ "stateMutability": "view",
1191
+ "type": "function"
1192
+ },
1193
+ {
1194
+ "inputs": [
1195
+ {
1196
+ "internalType": "uint256",
1197
+ "name": "idx",
1198
+ "type": "uint256"
1199
+ }
1200
+ ],
1201
+ "name": "getTargetAddress",
1202
+ "outputs": [
1203
+ {
1204
+ "internalType": "address",
1205
+ "name": "target",
1206
+ "type": "address"
1207
+ }
1208
+ ],
1209
+ "stateMutability": "view",
1210
+ "type": "function"
1211
+ },
1212
+ {
1213
+ "inputs": [
1214
+ {
1215
+ "internalType": "Str",
1216
+ "name": "name",
1217
+ "type": "bytes32"
1218
+ }
1219
+ ],
1220
+ "name": "getTargetForName",
1221
+ "outputs": [
1222
+ {
1223
+ "internalType": "address",
1224
+ "name": "target",
1225
+ "type": "address"
1226
+ }
1227
+ ],
1228
+ "stateMutability": "view",
1229
+ "type": "function"
1230
+ },
1231
+ {
1232
+ "inputs": [
1233
+ {
1234
+ "internalType": "address",
1235
+ "name": "target",
1236
+ "type": "address"
1237
+ }
1238
+ ],
1239
+ "name": "getTargetInfo",
1240
+ "outputs": [
1241
+ {
1242
+ "components": [
1243
+ {
1244
+ "internalType": "Str",
1245
+ "name": "name",
1246
+ "type": "bytes32"
1247
+ },
1248
+ {
1249
+ "internalType": "bool",
1250
+ "name": "isCustom",
1251
+ "type": "bool"
1252
+ },
1253
+ {
1254
+ "internalType": "Timestamp",
1255
+ "name": "createdAt",
1256
+ "type": "uint40"
1257
+ }
1258
+ ],
1259
+ "internalType": "struct IAccess.TargetInfo",
1260
+ "name": "targetInfo",
1261
+ "type": "tuple"
1262
+ }
1263
+ ],
1264
+ "stateMutability": "view",
1265
+ "type": "function"
1266
+ },
1267
+ {
1268
+ "inputs": [
1269
+ {
1270
+ "internalType": "address",
1271
+ "name": "account",
1272
+ "type": "address"
1273
+ },
1274
+ {
1275
+ "internalType": "RoleId",
1276
+ "name": "roleId",
1277
+ "type": "uint64"
1278
+ }
1279
+ ],
1280
+ "name": "hasAdminRole",
1281
+ "outputs": [
1282
+ {
1283
+ "internalType": "bool",
1284
+ "name": "",
1285
+ "type": "bool"
1286
+ }
1287
+ ],
1288
+ "stateMutability": "view",
1289
+ "type": "function"
1290
+ },
1291
+ {
1292
+ "inputs": [
1293
+ {
1294
+ "internalType": "address",
1295
+ "name": "account",
1296
+ "type": "address"
1297
+ },
1298
+ {
1299
+ "internalType": "RoleId",
1300
+ "name": "roleId",
1301
+ "type": "uint64"
1302
+ }
1303
+ ],
1304
+ "name": "hasRole",
1305
+ "outputs": [
1306
+ {
1307
+ "internalType": "bool",
1308
+ "name": "",
1309
+ "type": "bool"
1310
+ }
1311
+ ],
1312
+ "stateMutability": "view",
1313
+ "type": "function"
1314
+ },
1315
+ {
1316
+ "inputs": [
1317
+ {
1318
+ "internalType": "address",
1319
+ "name": "authority",
1320
+ "type": "address"
1321
+ },
1322
+ {
1323
+ "internalType": "string",
1324
+ "name": "adminName",
1325
+ "type": "string"
1326
+ }
1327
+ ],
1328
+ "name": "initialize",
1329
+ "outputs": [],
1330
+ "stateMutability": "nonpayable",
1331
+ "type": "function"
1332
+ },
1333
+ {
1334
+ "inputs": [],
1335
+ "name": "isConsumingScheduledOp",
1336
+ "outputs": [
1337
+ {
1338
+ "internalType": "bytes4",
1339
+ "name": "",
1340
+ "type": "bytes4"
1341
+ }
1342
+ ],
1343
+ "stateMutability": "view",
1344
+ "type": "function"
1345
+ },
1346
+ {
1347
+ "inputs": [],
1348
+ "name": "isLocked",
1349
+ "outputs": [
1350
+ {
1351
+ "internalType": "bool",
1352
+ "name": "locked",
1353
+ "type": "bool"
1354
+ }
1355
+ ],
1356
+ "stateMutability": "view",
1357
+ "type": "function"
1358
+ },
1359
+ {
1360
+ "inputs": [
1361
+ {
1362
+ "internalType": "address",
1363
+ "name": "target",
1364
+ "type": "address"
1365
+ }
1366
+ ],
1367
+ "name": "isTargetLocked",
1368
+ "outputs": [
1369
+ {
1370
+ "internalType": "bool",
1371
+ "name": "locked",
1372
+ "type": "bool"
1373
+ }
1374
+ ],
1375
+ "stateMutability": "view",
1376
+ "type": "function"
1377
+ },
1378
+ {
1379
+ "inputs": [
1380
+ {
1381
+ "internalType": "RoleId",
1382
+ "name": "roleId",
1383
+ "type": "uint64"
1384
+ }
1385
+ ],
1386
+ "name": "roleExists",
1387
+ "outputs": [
1388
+ {
1389
+ "internalType": "bool",
1390
+ "name": "exists",
1391
+ "type": "bool"
1392
+ }
1393
+ ],
1394
+ "stateMutability": "view",
1395
+ "type": "function"
1396
+ },
1397
+ {
1398
+ "inputs": [
1399
+ {
1400
+ "internalType": "RoleId",
1401
+ "name": "roleId",
1402
+ "type": "uint64"
1403
+ }
1404
+ ],
1405
+ "name": "roleMembers",
1406
+ "outputs": [
1407
+ {
1408
+ "internalType": "uint256",
1409
+ "name": "numberOfMembers",
1410
+ "type": "uint256"
1411
+ }
1412
+ ],
1413
+ "stateMutability": "view",
1414
+ "type": "function"
1415
+ },
1416
+ {
1417
+ "inputs": [],
1418
+ "name": "roles",
1419
+ "outputs": [
1420
+ {
1421
+ "internalType": "uint256",
1422
+ "name": "numberOfRoles",
1423
+ "type": "uint256"
1424
+ }
1425
+ ],
1426
+ "stateMutability": "view",
1427
+ "type": "function"
1428
+ },
1429
+ {
1430
+ "inputs": [
1431
+ {
1432
+ "internalType": "address",
1433
+ "name": "newAuthority",
1434
+ "type": "address"
1435
+ }
1436
+ ],
1437
+ "name": "setAuthority",
1438
+ "outputs": [],
1439
+ "stateMutability": "nonpayable",
1440
+ "type": "function"
1441
+ },
1442
+ {
1443
+ "inputs": [
1444
+ {
1445
+ "internalType": "bool",
1446
+ "name": "locked",
1447
+ "type": "bool"
1448
+ }
1449
+ ],
1450
+ "name": "setReleaseLocked",
1451
+ "outputs": [],
1452
+ "stateMutability": "nonpayable",
1453
+ "type": "function"
1454
+ },
1455
+ {
1456
+ "inputs": [
1457
+ {
1458
+ "internalType": "contract IService",
1459
+ "name": "service",
1460
+ "type": "address"
1461
+ },
1462
+ {
1463
+ "internalType": "bool",
1464
+ "name": "locked",
1465
+ "type": "bool"
1466
+ }
1467
+ ],
1468
+ "name": "setServiceLocked",
1469
+ "outputs": [],
1470
+ "stateMutability": "nonpayable",
1471
+ "type": "function"
1472
+ },
1473
+ {
1474
+ "inputs": [
1475
+ {
1476
+ "internalType": "address",
1477
+ "name": "target",
1478
+ "type": "address"
1479
+ }
1480
+ ],
1481
+ "name": "targetExists",
1482
+ "outputs": [
1483
+ {
1484
+ "internalType": "bool",
1485
+ "name": "exists",
1486
+ "type": "bool"
1487
+ }
1488
+ ],
1489
+ "stateMutability": "view",
1490
+ "type": "function"
1491
+ },
1492
+ {
1493
+ "inputs": [],
1494
+ "name": "targets",
1495
+ "outputs": [
1496
+ {
1497
+ "internalType": "uint256",
1498
+ "name": "numberOfTargets",
1499
+ "type": "uint256"
1500
+ }
1501
+ ],
1502
+ "stateMutability": "view",
1503
+ "type": "function"
1504
+ },
1505
+ {
1506
+ "inputs": [
1507
+ {
1508
+ "internalType": "bytes4",
1509
+ "name": "selector",
1510
+ "type": "bytes4"
1511
+ },
1512
+ {
1513
+ "internalType": "string",
1514
+ "name": "name",
1515
+ "type": "string"
1516
+ }
1517
+ ],
1518
+ "name": "toFunction",
1519
+ "outputs": [
1520
+ {
1521
+ "components": [
1522
+ {
1523
+ "internalType": "Str",
1524
+ "name": "name",
1525
+ "type": "bytes32"
1526
+ },
1527
+ {
1528
+ "internalType": "Selector",
1529
+ "name": "selector",
1530
+ "type": "bytes4"
1531
+ },
1532
+ {
1533
+ "internalType": "Timestamp",
1534
+ "name": "createdAt",
1535
+ "type": "uint40"
1536
+ }
1537
+ ],
1538
+ "internalType": "struct IAccess.FunctionInfo",
1539
+ "name": "",
1540
+ "type": "tuple"
1541
+ }
1542
+ ],
1543
+ "stateMutability": "view",
1544
+ "type": "function"
1545
+ },
1546
+ {
1547
+ "inputs": [
1548
+ {
1549
+ "internalType": "RoleId",
1550
+ "name": "adminRoleId",
1551
+ "type": "uint64"
1552
+ },
1553
+ {
1554
+ "internalType": "enum IAccess.RoleType",
1555
+ "name": "roleType",
1556
+ "type": "uint8"
1557
+ },
1558
+ {
1559
+ "internalType": "uint32",
1560
+ "name": "maxMemberCount",
1561
+ "type": "uint32"
1562
+ },
1563
+ {
1564
+ "internalType": "string",
1565
+ "name": "name",
1566
+ "type": "string"
1567
+ }
1568
+ ],
1569
+ "name": "toRole",
1570
+ "outputs": [
1571
+ {
1572
+ "components": [
1573
+ {
1574
+ "internalType": "RoleId",
1575
+ "name": "adminRoleId",
1576
+ "type": "uint64"
1577
+ },
1578
+ {
1579
+ "internalType": "enum IAccess.RoleType",
1580
+ "name": "roleType",
1581
+ "type": "uint8"
1582
+ },
1583
+ {
1584
+ "internalType": "uint32",
1585
+ "name": "maxMemberCount",
1586
+ "type": "uint32"
1587
+ },
1588
+ {
1589
+ "internalType": "Str",
1590
+ "name": "name",
1591
+ "type": "bytes32"
1592
+ },
1593
+ {
1594
+ "internalType": "Timestamp",
1595
+ "name": "createdAt",
1596
+ "type": "uint40"
1597
+ },
1598
+ {
1599
+ "internalType": "Timestamp",
1600
+ "name": "pausedAt",
1601
+ "type": "uint40"
1602
+ }
1603
+ ],
1604
+ "internalType": "struct IAccess.RoleInfo",
1605
+ "name": "",
1606
+ "type": "tuple"
1607
+ }
1608
+ ],
1609
+ "stateMutability": "view",
1610
+ "type": "function"
1611
+ }
1612
+ ],
1613
+ "bytecode": "0x608060405234801561000f575f80fd5b506040516160c93803806160c983398101604081905261002e91610cba565b610068816040518060400160405280601281526020017126b0b9ba32b92932b632b0b9b2a0b236b4b760711b81525061006e60201b60201c565b506110d4565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff1615906001600160401b03165f811580156100b75750825b90505f826001600160401b031660011480156100d25750303b155b9050811580156100e0575080155b156100fe5760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b0319166001178555831561012c57845460ff60401b1916680100000000000000001785555b6101368787610185565b831561017c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b61018d61045f565b6003546001600160a01b03166101b057600380546001600160a01b031916331790555b6003546001600160a01b031633146101db5760405163410f583d60e11b815260040160405180910390fd5b604051631627905560e01b81526001600160a01b038316600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90631627905590602401602060405180830381865af4158015610231573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102559190610ce7565b6102825760405163a91c340960e01b81526001600160a01b03831660048201526024015b60405180910390fd5b80515f036102a35760405163ea69a8ad60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b03841690811790915560405163189acdbd60e31b815230600482015263c4d66de8906024015f604051808303815f87803b1580156102f4575f80fd5b505af1158015610306573d5f803e3d5ffd5b5050604051632330f24760e01b81526001600160a01b038516600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9250632330f2479150602401602060405180830381865af4158015610360573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103849190610ce7565b6103ac57604051637595cb1960e01b81526001600160a01b0383166004820152602401610279565b6103b5826104af565b5f6103c08282610d9e565b5073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610408573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061042c9190610e58565b600380546001600160601b0392909216600160a01b026001600160a01b0390921691909117905561045b6104c3565b5050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff166104ad57604051631afcd79f60e31b815260040160405180910390fd5b565b6104b761045f565b6104c08161067a565b50565b6104cb61045f565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__637c3940bf60015f9054906101000a90046001600160a01b03166001600160a01b03166375b238fc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610536573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061055a9190610e92565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af415801561059c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105c09190610e92565b905061060d6105cd61068b565b6106086105d861068b565b6001806040518060400160405280600981526020016841646d696e526f6c6560b81b81525061070560201b60201c565b6108e2565b6001600160401b0381165f90815260076020526040902061062e9030610ba5565b506104c061063a610bc2565b61060861064561068b565b600263ffffffff6040518060400160405280600a8152602001695075626c6963526f6c6560b01b81525061070560201b60201c565b61068261045f565b6104c081610c02565b604051637c3940bf60e01b81525f600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf906024015b602060405180830381865af41580156106dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107009190610e92565b905090565b6040805160c0810182525f80825260208201819052918101829052606081018290526080810182905260a08101919091526040518060c00160405280866001600160401b0316815260200185600381111561076257610762610ead565b81526020018463ffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b81526004016107aa9190610eef565b602060405180830381865af41580156107c5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e99190610f01565b815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610835573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108599190610f18565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156108ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108d09190610f18565b64ffffffffff16905295945050505050565b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610929573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061094d9190610f18565b64ffffffffff1660808201526001600160401b038083165f9081526004602090815260409091208351815493166001600160401b03198416811782559184015184939192909183916001600160481b031990911617680100000000000000008360038111156109be576109be610ead565b0217905550604082810151825463ffffffff90911669010000000000000000000263ffffffff60481b1990911617825560608084015160018085019190915560808501516002909401805460a09096015164ffffffffff90811665010000000000026001600160501b031990971695169490941794909417909255805180820182526001600160401b03808716808352602080840187815295880180515f90815260058352868120955186549851151568010000000000000000026001600160481b03199099169086161797909717909455600680549788018155865260048088047ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f01805460039099166008026101000a938402939094021990971691909117909155850151855191519251631623433d60e31b81527f089dc3e37715ee5f5f527a09ca053081e6a74ab2cde2b4471c37f8b9b81af45c95889492939273__$9a094f9b231ed0f5f85a69be8408d93180$__9263b11a19e892610b4792910190815260200190565b5f60405180830381865af4158015610b61573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610b889190810190610f3c565b604051610b9995949392919061100c565b60405180910390a15050565b5f610bb9836001600160a01b038416610c6e565b90505b92915050565b604051637c3940bf60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf906024016106c1565b7ff3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a0080546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad90602001610b99565b5f818152600183016020526040812054610cb357508154600181810184555f848152602080822090930184905584548482528286019093526040902091909155610bbc565b505f610bbc565b5f60208284031215610cca575f80fd5b81516001600160a01b0381168114610ce0575f80fd5b9392505050565b5f60208284031215610cf7575f80fd5b81518015158114610ce0575f80fd5b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680610d2e57607f821691505b602082108103610d4c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610d9957805f5260205f20601f840160051c81016020851015610d775750805b601f840160051c820191505b81811015610d96575f8155600101610d83565b50505b505050565b81516001600160401b03811115610db757610db7610d06565b610dcb81610dc58454610d1a565b84610d52565b6020601f821160018114610dfd575f8315610de65750848201515b5f19600385901b1c1916600184901b178455610d96565b5f84815260208120601f198516915b82811015610e2c5787850151825560209485019460019092019101610e0c565b5084821015610e4957868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215610e68575f80fd5b81516001600160601b0381168114610ce0575f80fd5b6001600160401b03811681146104c0575f80fd5b5f60208284031215610ea2575f80fd5b8151610ce081610e7e565b634e487b7160e01b5f52602160045260245ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610bb96020830184610ec1565b5f60208284031215610f11575f80fd5b5051919050565b5f60208284031215610f28575f80fd5b815164ffffffffff81168114610ce0575f80fd5b5f60208284031215610f4c575f80fd5b81516001600160401b03811115610f61575f80fd5b8201601f81018413610f71575f80fd5b80516001600160401b03811115610f8a57610f8a610d06565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610fb857610fb8610d06565b604052818152828201602001861015610fcf575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b6004811061100857634e487b7160e01b5f52602160045260245ffd5b9052565b60a081525f80875461101d81610d1a565b8060a0860152600182165f811461103b576001811461105757611088565b60ff19831660c087015260c082151560051b8701019350611088565b8a5f5260205f205f5b8381101561107f57815488820160c00152600190910190602001611060565b870160c0019450505b5050506001600160401b03871660208401526110a76040840187610fec565b6001600160401b038516606084015282810360808401526110c88185610ec1565b98975050505050505050565b614fe8806110e15f395ff3fe608060405234801561000f575f80fd5b506004361061023f575f3560e01c80638fb3603711610135578063cd55e51b116100b4578063e46dd59a11610079578063e46dd59a1461069d578063ea0a94b1146106b0578063f09ae31b146106c3578063f399e22e146106ee578063f60458ba14610701575f80fd5b8063cd55e51b1461064b578063cf2f81dc1461065e578063d5f3948814610671578063d78a83b114610682578063dd22b08a14610695575f80fd5b8063b7009613116100fa578063b7009613146105cc578063bc62a0a5146105df578063bcfb11b014610607578063bf7e214f14610630578063c6a0017914610638575f80fd5b80638fb36037146104e75780639279073b146104fc57806392bdd9bd1461053b578063a4e2d634146105bc578063b3ecf236146105c4575f80fd5b80635ab1bd53116101c1578063728a61a811610186578063728a61a81461048a578063748540711461049d57806376b707b7146104b25780637a9e5e4b146104cc5780638308ceb1146104df575f80fd5b80635ab1bd53146104295780635bfa5027146104315780635cb870b114610451578063605aa10a1461046457806364fc314214610477575f80fd5b806326decd401161020757806326decd40146103805780633406b152146103a357806335471f80146103e3578063392f5f64146103f65780633fd85561146103fe575f80fd5b8063030149741461024357806312e1ebc51461026957806315fb0abb1461030457806324913ce61461032457806326d60fb414610378575b5f80fd5b6102566102513660046141ee565b61072c565b6040519081526020015b60405180910390f35b6102d961027736600461421d565b60408051606080820183525f80835260208084018290529284018190526001600160a01b03949094168452600882529282902082519384018352805484526001015460ff8116151591840191909152610100900464ffffffffff169082015290565b60408051825181526020808401511515908201529181015164ffffffffff1690820152606001610260565b610317610312366004614331565b610752565b6040516102609190614373565b6103376103323660046143a5565b6108ed565b60408051835181526020808501516001600160e01b031916908201529281015164ffffffffff16908301526001600160401b03166060820152608001610260565b600a54610256565b61039361038e36600461421d565b610b7e565b6040519015158152602001610260565b6103cb6103b13660046143cf565b5f908152600960205260409020546001600160a01b031690565b6040516001600160a01b039091168152602001610260565b6102566103f136600461421d565b610bea565b600654610256565b61041161040c3660046143cf565b610c74565b6040516001600160401b039091168152602001610260565b6103cb610cb6565b61044461043f3660046141ee565b610d26565b604051610260919061441a565b61044461045f366004614492565b610dfa565b61039361047236600461421d565b610fd7565b610393610485366004614505565b61104c565b6103cb6104983660046143cf565b6110d3565b6104b06104ab36600461454a565b611101565b005b6104ba61112a565b60405160ff9091168152602001610260565b6104b06104da36600461421d565b611195565b610411611220565b6104ef61128b565b60405161026091906145a3565b61052e6040518060400160405280601381526020017252656c656173655265676973747279526f6c6560681b81525081565b60405161026091906145e6565b6105966105493660046143cf565b604080518082019091525f8082526020820152505f908152600560209081526040918290208251808401909352546001600160401b0381168352600160401b900460ff1615159082015290565b6040805182516001600160401b0316815260209283015115159281019290925201610260565b6103936112c1565b61041161132c565b6103936105da3660046145f8565b611373565b61052e6040518060400160405280600981526020016841646d696e526f6c6560b81b81525081565b61052e6040518060400160405280600a8152602001695075626c6963526f6c6560b01b81525081565b6103cb61142a565b6103936106463660046141ee565b611445565b610393610659366004614505565b6114a3565b6104b061066c36600461464d565b6114d1565b6003546001600160a01b03166103cb565b6103cb610690366004614679565b6115ca565b6103cb6115eb565b6104b06106ab366004614695565b61164b565b6104b06106be3660046146b0565b6118a1565b61052e6040518060400160405280600c81526020016b2932b632b0b9b2a0b236b4b760a11b81525081565b6104b06106fc3660046146ed565b611a6c565b600354600160a01b90046001600160601b03166040516001600160601b039091168152602001610260565b6001600160401b0381165f90815260076020526040812061074c90611b7a565b92915050565b60408051606080820183525f808352602083018190528284015282519081019283905263cdc23e6960e01b909252908073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e696107a986606485016145e6565b602060405180830381865af41580156107c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e89190614709565b815260200173__$0904195350e4c23ecb1d51df0a32586dcd$__636b15ee8b866040518263ffffffff1660e01b815260040161082491906145a3565b602060405180830381865af415801561083f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108639190614720565b6001600160e01b031916815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156108b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108dd9190614754565b64ffffffffff1690529392505050565b604080516060810182525f80825260208083018290528284018290526001600160a01b0386168252600b9052828120925163dfe63db960e01b81526004810193909352602483018490529091819073__$8df0087758613aef8a614b5774fdb3323b$__9063dfe63db990604401602060405180830381865af4158015610975573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109999190614720565b6001600160a01b038681165f908152600c602090815260408083206001600160e01b03198681168086529184529382902082516060810184528154815260019182015460e081901b9096169481019490945264010000000090940464ffffffffff168383015292549051636ea1af2560e11b815291975093945073__$1d92393fa9ccd763988368ce8a1cb90d26$__93637c3940bf931691636d5115bd918a9173__$0904195350e4c23ecb1d51df0a32586dcd$__9163dd435e4a91610a61916004016145a3565b602060405180830381865af4158015610a7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa09190614720565b6040516001600160e01b031960e085901b811682526001600160a01b03909316600482015291166024820152604401602060405180830381865afa158015610aea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b0e919061476d565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af4158015610b50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b74919061476d565b9150509250929050565b60015460405163a166aa8960e01b81526001600160a01b0383811660048301525f92169063a166aa8990602401602060405180830381865afa158015610bc6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074c9190614788565b6001600160a01b0381165f908152600b6020526040808220905163868b3e0760e01b8152600481019190915273__$8df0087758613aef8a614b5774fdb3323b$__9063868b3e0790602401602060405180830381865af4158015610c50573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074c9190614709565b5f60068281548110610c8857610c886147a3565b905f5260205f2090600491828204019190066008029054906101000a90046001600160401b03169050919050565b60015460408051635ab1bd5360e01b815290515f926001600160a01b031691635ab1bd539160048083019260209291908290030181865afa158015610cfd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2191906147b7565b905090565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600482529185902085519384019095528454918216835292939192830190600160401b900460ff166003811115610d9e57610d9e6143e6565b6003811115610daf57610daf6143e6565b81528154600160481b900463ffffffff1660208201526001820154604082015260029091015464ffffffffff8082166060840152650100000000009091041660809091015292915050565b6040805160c0810182525f80825260208201819052918101829052606081018290526080810182905260a08101919091526040518060c00160405280866001600160401b03168152602001856003811115610e5757610e576143e6565b81526020018463ffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401610e9f91906145e6565b602060405180830381865af4158015610eba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ede9190614709565b815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f4e9190614754565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610fa1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fc59190614754565b64ffffffffff16905295945050505050565b6001600160a01b0381165f90815260086020526040808220600101549051638d38cd4b60e01b815261010090910464ffffffffff16600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b906024015b602060405180830381865af4158015610bc6573d5f803e3d5ffd5b6001546040516368fc2b7760e11b81526001600160401b03831660048201526001600160a01b0384811660248301525f92839291169063d1f856ee906044015b6040805180830381865afa1580156110a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110ca91906147d2565b50949350505050565b5f600a82815481106110e7576110e76147a3565b5f918252602090912001546001600160a01b031692915050565b61110d335b5f36611b83565b611118838383611c81565b61112484848484611ead565b50505050565b600154604080516376b707b760e01b815290515f926001600160a01b0316916376b707b79160048083019260209291908290030181865afa158015611171573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2191906147ff565b3361119e61142a565b6001600160a01b0316816001600160a01b0316146111de5760405162d1953b60e31b81526001600160a01b03821660048201526024015b60405180910390fd5b816001600160a01b03163b5f03611213576040516361798f2f60e11b81526001600160a01b03831660048201526024016111d5565b61121c82612143565b5050565b60015460408051631e53e01560e11b815290515f926001600160a01b031691633ca7c02a9160048083019260209291908290030181865afa158015611267573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d21919061476d565b5f80516020614f9383398151915280545f9190600160a01b900460ff166112b2575f6112bb565b638fb3603760e01b5b91505090565b60015460408051632938b58d60e21b815290515f926001600160a01b03169163a4e2d6349160048083019260209291908290030181865afa158015611308573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d219190614788565b60015460408051631d6c8e3f60e21b815290515f926001600160a01b0316916375b238fc9160048083019260209291908290030181865afa158015611267573d5f803e3d5ffd5b600154604051636ea1af2560e11b81525f916001600160a01b03169063b7009613908690869073__$0904195350e4c23ecb1d51df0a32586dcd$__9063dd435e4a906113cd906001600160e01b03198a16906004016145a3565b602060405180830381865af41580156113e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061140c9190614720565b6040518463ffffffff1660e01b815260040161108c9392919061481a565b5f80516020614f93833981519152546001600160a01b031690565b6001600160401b0381165f908152600460208190526040808320600201549051638d38cd4b60e01b815264ffffffffff9091169181019190915273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401611031565b6001600160401b038082165f9081526004602052604081205490916114ca9185911661104c565b9392505050565b6114da33611106565b306001600160a01b0383160361150e5760405163f1e7fc1f60e01b81526001600160a01b03831660048201526024016111d5565b611518828261219c565b7f6684f8a06572afb238e3be8cfd16b40f30528ddff5a058ed4af32467818abdac826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611575573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061159991906147ff565b6040805160ff90921682526001600160a01b0385166020830152831515908201526060015b60405180910390a15050565b6001600160401b0382165f9081526007602052604081206114ca9083612204565b5f6115f4610cb6565b600354604051631c5da14d60e11b8152600160a01b9091046001600160601b031660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610cfd573d5f803e3d5ffd5b6001545f906001600160a01b031663d1f856ee61166661220f565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af41580156116bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116e1919061476d565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201523360248201526044016040805180830381865afa158015611728573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061174c91906147d2565b5090508061176f5760405163de0edf8360e01b81523360048201526024016111d5565b5f61177861142a565b9050821515816001600160a01b031663a4e2d6346040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117dd9190614788565b15150361180157604051632727ef3d60e01b815283151560048201526024016111d5565b60405163108f145b60e11b815283151560048201526001600160a01b0382169063211e28b6906024015f604051808303815f87803b158015611841575f80fd5b505af1158015611853573d5f803e3d5ffd5b505050507f1da9fc334a60200f44fc264006bff9790c7cb9ec01d31ec3d66ba46e94f298b261188061112a565b6040805160ff909216825285151560208301520160405180910390a1505050565b604051632b10f60d60e21b815260ff8216600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af41580156118f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119159190614709565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b900460ff168061195a575080546001600160401b03808416911610155b156119785760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556119a28561225f565b6119aa61142a565b604051630f6c67a360e11b81526001600160a01b03878116600483015260ff861660248301529190911690631ed8cf46906044015f604051808303815f87803b1580156119f5575f80fd5b505af1158015611a07573d5f803e3d5ffd5b50505050611a1485612304565b611a1d84612439565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f81158015611ab05750825b90505f826001600160401b03166001148015611acb5750303b155b905081158015611ad9575080155b15611af75760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611b2157845460ff60401b1916600160401b1785555b611b2b87876125ce565b8315611b7157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f61074c825490565b5f80516020614f938339815191525f80611bbb611b9e61142a565b8730611bad60045f8a8c614847565b611bb69161486e565b61289e565b9150915081611c795763ffffffff811615611c5657825460ff60a01b1916600160a01b178355611be961142a565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611c18939291906148a6565b5f604051808303815f87803b158015611c2f575f80fd5b505af1158015611c41573d5f803e3d5ffd5b5050845460ff60a01b1916855550611c799050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016111d5565b505050505050565b604051632b95d28f60e21b815260ff831660048201525f9073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__9063ae574a3c906024015f60405180830381865af4158015611cd2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611cf991908101906148e5565b90505f73__$0d958e68cba84670b8f4a3f2f2686b1c6b$__630c3258f983856040518363ffffffff1660e01b8152600401611d35929190614959565b5f60405180830381865af4158015611d4f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611d7691908101906148e5565b9050611d85858260015f612990565b60405163dda777d360e01b815260ff8086166004830152841660248201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__9063dda777d390604401602060405180830381865af4158015611ddf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e03919061476d565b9050611e0e81611445565b611ea357611ea381611e9e611e21612e18565b60018073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__630c3258f98a8c6040518363ffffffff1660e01b8152600401611e5d92919061499e565b5f60405180830381865af4158015611e77573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261045f91908101906148e5565b612e52565b611c7981876130d2565b604051630e949b3560e21b815260ff831660048201525f90819081906001600160a01b03881690633a526cd4906024015f60405180830381865afa158015611ef7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611f1e9190810190614a09565b90505f5b815181101561213957818181518110611f3d57611f3d6147a3565b60200260200101519350611f5e84611f53606390565b60ff90811691161490565b15611f7257611f6b613326565b9250611ff1565b60405163dda777d360e01b815260ff80861660048301528616602482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063dda777d390604401602060405180830381865af4158015611fca573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fee919061476d565b92505b611ffa83611445565b6120ae576120ae83611e9e61200d612e18565b604051632b95d28f60e21b815260ff89166004820152600190819073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90630c3258f990829063ae574a3c906024015f60405180830381865af4158015612069573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261209091908101906148e5565b8d6040518363ffffffff1660e01b8152600401611e5d929190614aa2565b6040516374766d9b60e11b815260ff8088166004830152851660248201525f906001600160a01b038a169063e8ecdb36906044015f60405180830381865afa1580156120fc573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526121239190810190614ae4565b9050612130888583613366565b50600101611f22565b5050505050505050565b5f80516020614f9383398151915280546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad906020016115be565b816121a6816133d2565b60015460405163167bd39560e01b81526001600160a01b03858116600483015284151560248301529091169063167bd395906044015f604051808303815f87803b1580156121f2575f80fd5b505af1158015611b71573d5f803e3d5ffd5b5f6114ca8383613403565b604051637c3940bf60e01b81526004808201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf906024015b602060405180830381865af4158015611267573d5f803e3d5ffd5b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af41580156122b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122d99190614788565b6123015760405163375acd0b60e11b81526001600160a01b03821660048201526024016111d5565b50565b61230c610cb6565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015612352573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123769190614788565b61239e57604051633b69638960e11b81526001600160a01b03821660048201526024016111d5565b6123a6610cb6565b604051632f2a35f760e11b81526001600160a01b0383811660048301529190911690635e546bee90602401602060405180830381865afa1580156123ec573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124109190614baa565b600360146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b612441613429565b612471306040518060400160405280600c81526020016b2932b632b0b9b2a0b236b4b760a11b8152505f80612990565b6124bb61247c61220f565b611e9e612487612e18565b6001806040518060400160405280601381526020017252656c656173655265676973747279526f6c6560681b815250610dfa565b6040805160028082526060828101909352816020015b604080516060810182525f80825260208083018290529282015282525f199092019101816124d1579050509050612537637485407160e01b6040518060400160405280601081526020016f617574686f72697a655365727669636560801b815250610752565b815f81518110612549576125496147a3565b602002602001018190525061258d63cf2f81dc60e01b6040518060400160405280601081526020016f1cd95d14d95c9d9a58d9531bd8dad95960821b815250610752565b816001815181106125a0576125a06147a3565b60200260200101819052506125bd306125b761220f565b83613366565b61121c6125c861220f565b836130d2565b6125d6613429565b6003546001600160a01b03166125f957600380546001600160a01b031916331790555b6003546001600160a01b031633146126245760405163410f583d60e11b815260040160405180910390fd5b604051631627905560e01b81526001600160a01b038316600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90631627905590602401602060405180830381865af415801561267a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061269e9190614788565b6126c65760405163a91c340960e01b81526001600160a01b03831660048201526024016111d5565b80515f036126e75760405163ea69a8ad60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b03841690811790915560405163189acdbd60e31b815230600482015263c4d66de8906024015f604051808303815f87803b158015612738575f80fd5b505af115801561274a573d5f803e3d5ffd5b5050604051632330f24760e01b81526001600160a01b038516600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9250632330f2479150602401602060405180830381865af41580156127a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127c89190614788565b6127f057604051637595cb1960e01b81526001600160a01b03831660048201526024016111d5565b6127f982613474565b5f6128048282614c4c565b5073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561284c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128709190614baa565b600360146101000a8154816001600160601b0302191690836001600160601b0316021790555061121c613485565b5f805f80876001600160a01b03168787876040516024016128c19392919061481a565b60408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516128f69190614d1d565b5f60405180830381855afa9150503d805f811461292e576040519150601f19603f3d011682016040523d82523d5f602084013e612933565b606091505b50915091508115612985576040815110612965578080602001905181019061295b91906147d2565b9094509250612985565b602081511061298557808060200190518101906129829190614788565b93505b505094509492505050565b61299984610fd7565b15612a4e576001600160a01b0384165f9081526008602052604090819020549051631623433d60e31b8152859173__$9a094f9b231ed0f5f85a69be8408d93180$__9163b11a19e8916129f29160040190815260200190565b5f60405180830381865af4158015612a0c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a3391908101906148e5565b604051630bf898a560e31b81526004016111d5929190614d28565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990612a879087906004016145e6565b602060405180830381865af4158015612aa2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ac69190614709565b60405163a9dbaf2560e01b81526004810182905290915073__$9a094f9b231ed0f5f85a69be8408d93180$__9063a9dbaf2590602401602060405180830381865af4158015612b17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b3b9190614709565b5f03612b6557604051638a0b84e560e01b81526001600160a01b03861660048201526024016111d5565b5f818152600960205260409020546001600160a01b031615612bb7575f818152600960205260409081902054905163375fd50360e11b81526111d591879187916001600160a01b031690600401614d53565b612bc085613630565b612be857604051637693f8d560e01b81526001600160a01b03861660048201526024016111d5565b8215612ca8575f856001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c2b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c4f91906147b7565b9050612c5961142a565b6001600160a01b0316816001600160a01b031614612ca657612c7961142a565b604051630deaa28d60e31b81526001600160a01b03918216600482015290821660248201526044016111d5565b505b6040518060600160405280828152602001831515815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612d08573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d2c9190614754565b64ffffffffff9081169091526001600160a01b0387165f818152600860209081526040808320865181558683015160019182018054988401519097166101000265ffffffffff00199115159190911665ffffffffffff1990981697909717969096179094558582526009905282812080546001600160a01b03199081168417909155600a8054958601815582527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a89094018054909416909117909255517f8fc0bd3ee17d8e732533ea42ad65951dc55a5dac82fb45dd3e7c71b9fe02a1d691611a5d9188908890614e0d565b604051637c3940bf60e01b81525f600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401612244565b612e5b82611445565b15612f14576001600160401b0382165f90815260046020819052604091829020600101549151631623433d60e31b8152849273__$9a094f9b231ed0f5f85a69be8408d93180$__9263b11a19e892612eb892910190815260200190565b5f60405180830381865af4158015612ed2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612ef991908101906148e5565b60405163c2f92fd360e01b81526004016111d5929190614e40565b8051612f1f90611445565b612f4a578051604051634731add760e11b81526001600160401b0390911660048201526024016111d5565b606081015160405163a9dbaf2560e01b8152600481019190915273__$9a094f9b231ed0f5f85a69be8408d93180$__9063a9dbaf2590602401602060405180830381865af4158015612f9e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fc29190614709565b5f03612fec5760405163ce242fe760e01b81526001600160401b03831660048201526024016111d5565b60608101515f90815260056020526040902054600160401b900460ff16156130c8576060810151604051631623433d60e31b8152839173__$9a094f9b231ed0f5f85a69be8408d93180$__9163b11a19e89161304e9160040190815260200190565b5f60405180830381865af4158015613068573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261308f91908101906148e5565b60608301515f908152600560205260409081902054905163ab0b63a360e01b81526111d59392916001600160401b031690600401614e61565b61121c828261373f565b8160015f6130e083836139f4565b6001600160401b0385165f908152600460209081526040808320546007909252909120600160481b90910463ffffffff169061311b90611b7a565b10613169576001600160401b0385165f8181526004602081905260409182902054915163b6a5795960e01b815290810192909252600160481b900463ffffffff1660248201526044016111d5565b60016001600160401b0386165f90815260046020526040902054600160401b900460ff16600381111561319e5761319e6143e6565b1480156132225750604051631627905560e01b81526001600160a01b038516600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90631627905590602401602060405180830381865af41580156131fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132209190614788565b155b1561325a57604051632e0816b360e21b81526001600160401b03861660048201526001600160a01b03851660248201526044016111d5565b6001600160401b0385165f90815260076020526040902061327b9085613bb8565b5060015460405163012e238d60e51b81526001600160401b03871660048201526001600160a01b0386811660248301525f6044830152909116906325c471a0906064015f604051808303815f87803b1580156132d5575f80fd5b505af11580156132e7573d5f803e3d5ffd5b505050507fe833cea7ff35d8ab3a1c2917328619fb92c0bbdc3792d351b31751e36eb209465f8561331788613bcc565b604051611a5d93929190614e0d565b604051637c3940bf60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401612244565b6133838261337261132c565b6001600160401b0390811691161490565b156133ac57604051636a89b82560e11b81526001600160a01b03841660048201526024016111d5565b5f806133ba85846001613c9c565b915091506133cb858584845f614065565b5050505050565b6133db81610fd7565b61230157604051630a504d9560e11b81526001600160a01b03821660048201526024016111d5565b5f825f018281548110613418576134186147a3565b905f5260205f200154905092915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661347257604051631afcd79f60e31b815260040160405180910390fd5b565b61347c613429565b6123018161417d565b61348d613429565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__637c3940bf60015f9054906101000a90046001600160a01b03166001600160a01b03166375b238fc6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061351c919061476d565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af415801561355e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613582919061476d565b90506135c961358f612e18565b6135c461359a612e18565b6001806040518060400160405280600981526020016841646d696e526f6c6560b81b815250610dfa565b61373f565b6001600160401b0381165f9081526007602052604090206135ea9030613bb8565b506123016135f6613326565b6135c4613601612e18565b600263ffffffff6040518060400160405280600a8152602001695075626c6963526f6c6560b01b815250610dfa565b604051631627905560e01b81526001600160a01b03821660048201525f9073__$fb599632d08395912d9d70eb2f0f93b5e2$__90631627905590602401602060405180830381865af4158015613688573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136ac9190614788565b6136b757505f919050565b60408051600481526024810182526020810180516001600160e01b031663bf7e214f60e01b17905290515f916001600160a01b038516916136f89190614d1d565b5f60405180830381855afa9150503d805f8114613730576040519150601f19603f3d011682016040523d82523d5f602084013e613735565b606091505b5090949350505050565b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015613786573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137aa9190614754565b64ffffffffff1660808201526001600160401b038083165f90815260046020908152604090912083518154931667ffffffffffffffff1984168117825591840151849391929091839168ffffffffffffffffff1990911617600160401b836003811115613819576138196143e6565b0217905550604082810151825463ffffffff909116600160481b026cffffffff0000000000000000001990911617825560608084015160018085019190915560808501516002909401805460a09096015164ffffffffff908116650100000000000269ffffffffffffffffffff1990971695169490941794909417909255805180820182526001600160401b03808716808352602080840187815295880180515f908152600583528681209551865498511515600160401b0268ffffffffffffffffff199099169086161797909717909455600680549788018155865260048088047ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f01805460039099166008026101000a938402939094021990971691909117909155850151855191519251631623433d60e31b81527f089dc3e37715ee5f5f527a09ca053081e6a74ab2cde2b4471c37f8b9b81af45c95889492939273__$9a094f9b231ed0f5f85a69be8408d93180$__9263b11a19e8926139a292910190815260200190565b5f60405180830381865af41580156139bc573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526139e391908101906148e5565b6040516115be959493929190614e9b565b6139fd82611445565b613a2557604051632ed3a17160e11b81526001600160401b03831660048201526024016111d5565b60015460408051631d6c8e3f60e21b8152905184926001600160a01b0316916375b238fc9160048083019260209291908290030181865afa158015613a6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a90919061476d565b6001600160401b0316816001600160401b031603613acc5760405163079fe26f60e01b81526001600160401b03841660048201526024016111d5565b818015613b8a5750613b8a60045f856001600160401b03166001600160401b031681526020019081526020015f2060020160059054906101000a900464ffffffffff1673__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015613b56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b7a9190614754565b64ffffffffff9081169116111590565b15613bb3576040516332d0641160e21b81526001600160401b03841660048201526024016111d5565b505050565b5f6114ca836001600160a01b03841661418e565b6060613bd782611445565b15613c72576001600160401b0382165f90815260046020819052604091829020600101549151631623433d60e31b815273__$9a094f9b231ed0f5f85a69be8408d93180$__9263b11a19e892613c31920190815260200190565b5f60405180830381865af4158015613c4b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261074c91908101906148e5565b505060408051808201909152600e81526d1e3ab735b737bbb716b937b6329f60911b602082015290565b60608084613ca9816133d2565b8451806001600160401b03811115613cc357613cc361424d565b604051908082528060200260200182016040528015613cec578160200160208202803683370190505b509350806001600160401b03811115613d0757613d0761424d565b604051908082528060200260200182016040528015613d3a57816020015b6060815260200190600190039081613d255790505b509250613d5f604080516060810182525f808252602082018190529181019190915290565b5f805b8381101561405857888181518110613d7c57613d7c6147a3565b60200260200101519250826020015191508715613e20576001600160a01b038a165f908152600b6020526040908190209051631b76c9b760e31b815260048101919091526001600160e01b03198316602482015273__$8df0087758613aef8a614b5774fdb3323b$__9063dbb64db8906044015f6040518083038186803b158015613e05575f80fd5b505af4158015613e17573d5f803e3d5ffd5b50505050613ea9565b6001600160a01b038a165f908152600b60205260409081902090516313edd33560e31b815260048101919091526001600160e01b03198316602482015273__$8df0087758613aef8a614b5774fdb3323b$__90639f6e99a8906044015f6040518083038186803b158015613e92575f80fd5b505af4158015613ea4573d5f803e3d5ffd5b505050505b6001600160a01b038a165f908152600c602090815260408083206001600160e01b03198616808552908352928190208651815591860151600190920180548288015164ffffffffff166401000000000268ffffffffffffffffff1990911660e09490941c939093179290921790915551636ea1af2560e11b815273__$0904195350e4c23ecb1d51df0a32586dcd$__9163dd435e4a91613f4c91906004016145a3565b602060405180830381865af4158015613f67573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f8b9190614720565b878281518110613f9d57613f9d6147a3565b6001600160e01b0319909216602092830291909101909101528251604051631623433d60e31b815273__$9a094f9b231ed0f5f85a69be8408d93180$__9163b11a19e891613ff2919060040190815260200190565b5f60405180830381865af415801561400c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261403391908101906148e5565b868281518110614045576140456147a3565b6020908102919091010152600101613d62565b5050505050935093915050565b8461406f816133d2565b84600183806140825761408283836139f4565b6001546040516308d6122d60e01b81526001600160a01b03909116906308d6122d906140b6908c908b908d90600401614ef6565b5f604051808303815f87803b1580156140cd575f80fd5b505af11580156140df573d5f803e3d5ffd5b505050505f5b8751811015614171577f71c0dd58adbf4d883856964979f8473116b2857bb3940628b6a7669a24cb0dff5f8b898481518110614123576141236147a3565b60200260200101516141348d613bcc565b604051602001614145929190614f67565b60408051601f1981840301815290829052614161939291614e0d565b60405180910390a16001016140e5565b50505050505050505050565b614185613429565b61230181612143565b5f8181526001830160205260408120546141d357508154600181810184555f84815260208082209093018490558454848252828601909352604090209190915561074c565b505f61074c565b6001600160401b0381168114612301575f80fd5b5f602082840312156141fe575f80fd5b81356114ca816141da565b6001600160a01b0381168114612301575f80fd5b5f6020828403121561422d575f80fd5b81356114ca81614209565b6001600160e01b031981168114612301575f80fd5b634e487b7160e01b5f52604160045260245ffd5b604051606081016001600160401b03811182821017156142835761428361424d565b60405290565b604051601f8201601f191681016001600160401b03811182821017156142b1576142b161424d565b604052919050565b5f6001600160401b038211156142d1576142d161424d565b50601f01601f191660200190565b5f82601f8301126142ee575f80fd5b81356143016142fc826142b9565b614289565b818152846020838601011115614315575f80fd5b816020850160208301375f918101602001919091529392505050565b5f8060408385031215614342575f80fd5b823561434d81614238565b915060208301356001600160401b03811115614367575f80fd5b610b74858286016142df565b815181526020808301516001600160e01b0319169082015260408083015164ffffffffff16908201526060810161074c565b5f80604083850312156143b6575f80fd5b82356143c181614209565b946020939093013593505050565b5f602082840312156143df575f80fd5b5035919050565b634e487b7160e01b5f52602160045260245ffd5b6004811061441657634e487b7160e01b5f52602160045260245ffd5b9052565b81516001600160401b0316815260208083015160c083019161443e908401826143fa565b5063ffffffff60408401511660408301526060830151606083015264ffffffffff608084015116608083015264ffffffffff60a08401511660a083015292915050565b63ffffffff81168114612301575f80fd5b5f805f80608085870312156144a5575f80fd5b84356144b0816141da565b93506020850135600481106144c3575f80fd5b925060408501356144d381614481565b915060608501356001600160401b038111156144ed575f80fd5b6144f9878288016142df565b91505092959194509250565b5f8060408385031215614516575f80fd5b823561452181614209565b91506020830135614531816141da565b809150509250929050565b60ff81168114612301575f80fd5b5f805f806080858703121561455d575f80fd5b843561456881614209565b9350602085013561457881614209565b925060408501356145888161453c565b915060608501356145988161453c565b939692955090935050565b6001600160e01b031991909116815260200190565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6114ca60208301846145b8565b5f805f6060848603121561460a575f80fd5b833561461581614209565b9250602084013561462581614209565b9150604084013561463581614238565b809150509250925092565b8015158114612301575f80fd5b5f806040838503121561465e575f80fd5b823561466981614209565b9150602083013561453181614640565b5f806040838503121561468a575f80fd5b82356143c1816141da565b5f602082840312156146a5575f80fd5b81356114ca81614640565b5f805f606084860312156146c2575f80fd5b83356146cd81614209565b925060208401356146dd81614209565b915060408401356146358161453c565b5f80604083850312156146fe575f80fd5b823561434d81614209565b5f60208284031215614719575f80fd5b5051919050565b5f60208284031215614730575f80fd5b81516114ca81614238565b805164ffffffffff8116811461474f575f80fd5b919050565b5f60208284031215614764575f80fd5b6114ca8261473b565b5f6020828403121561477d575f80fd5b81516114ca816141da565b5f60208284031215614798575f80fd5b81516114ca81614640565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156147c7575f80fd5b81516114ca81614209565b5f80604083850312156147e3575f80fd5b82516147ee81614640565b602084015190925061453181614481565b5f6020828403121561480f575f80fd5b81516114ca8161453c565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f8085851115614855575f80fd5b83861115614861575f80fd5b5050820193919092039150565b80356001600160e01b0319811690600484101561489f576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f602082840312156148f5575f80fd5b81516001600160401b0381111561490a575f80fd5b8201601f8101841361491a575f80fd5b80516149286142fc826142b9565b81815285602083850101111561493c575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b606081525f61496b60608301856145b8565b828103602084015260078152665365727669636560c81b60208201526040810191505060ff831660408301529392505050565b606081525f6149b060608301856145b8565b8281036020840152600b81526a53657276696365526f6c6560a81b60208201526040810191505060ff831660408301529392505050565b5f6001600160401b038211156149ff576149ff61424d565b5060051b60200190565b5f60208284031215614a19575f80fd5b81516001600160401b03811115614a2e575f80fd5b8201601f81018413614a3e575f80fd5b8051614a4c6142fc826149e7565b8082825260208201915060208360051b850101925086831115614a6d575f80fd5b6020840193505b82841015614a98578351614a878161453c565b825260209384019390910190614a74565b9695505050505050565b606081525f614ab460608301856145b8565b82810360208401526004815263526f6c6560e01b60208201526040810191505060ff831660408301529392505050565b5f60208284031215614af4575f80fd5b81516001600160401b03811115614b09575f80fd5b8201601f81018413614b19575f80fd5b8051614b276142fc826149e7565b80828252602082019150602060608402850101925086831115614b48575f80fd5b6020840193505b82841015614a985760608488031215614b66575f80fd5b614b6e614261565b845181526020850151614b8081614238565b6020820152614b916040860161473b565b6040820152825260609390930192602090910190614b4f565b5f60208284031215614bba575f80fd5b81516001600160601b03811681146114ca575f80fd5b600181811c90821680614be457607f821691505b602082108103614c0257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115613bb357805f5260205f20601f840160051c81016020851015614c2d5750805b601f840160051c820191505b818110156133cb575f8155600101614c39565b81516001600160401b03811115614c6557614c6561424d565b614c7981614c738454614bd0565b84614c08565b6020601f821160018114614cab575f8315614c945750848201515b5f19600385901b1c1916600184901b1784556133cb565b5f84815260208120601f198516915b82811015614cda5787850151825560209485019460019092019101614cba565b5084821015614cf757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f81518060208401855e5f93019283525090919050565b5f6114ca8284614d06565b6001600160a01b03831681526040602082018190525f90614d4b908301846145b8565b949350505050565b6001600160a01b03841681526060602082018190525f90614d76908301856145b8565b905060018060a01b0383166040830152949350505050565b5f8154614d9a81614bd0565b808552600182168015614db45760018114614dd057614e04565b60ff1983166020870152602082151560051b8701019350614e04565b845f5260205f205f5b83811015614dfb5781546020828a010152600182019150602081019050614dd9565b87016020019450505b50505092915050565b606081525f614e1f6060830186614d8e565b6001600160a01b03851660208401528281036040840152614a9881856145b8565b6001600160401b0383168152604060208201525f614d4b60408301846145b8565b6001600160401b0384168152606060208201525f614e8260608301856145b8565b90506001600160401b0383166040830152949350505050565b60a081525f614ead60a0830188614d8e565b6001600160401b0387166020840152614ec960408401876143fa565b6001600160401b03851660608401528281036080840152614eea81856145b8565b98975050505050505050565b6001600160a01b03841681526060602080830182905284519183018290525f91908501906080840190835b81811015614f495783516001600160e01b031916835260209384019390920191600101614f21565b505080925050506001600160401b0383166040830152949350505050565b5f614f728285614d06565b63014149d160e51b8152614f896004820185614d06565b9594505050505056fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220190e2f584f84c1b8a1bbf5d2455d835d40295cd047fc83c0356fad5ed3b4438f64736f6c634300081a0033",
1614
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b506004361061023f575f3560e01c80638fb3603711610135578063cd55e51b116100b4578063e46dd59a11610079578063e46dd59a1461069d578063ea0a94b1146106b0578063f09ae31b146106c3578063f399e22e146106ee578063f60458ba14610701575f80fd5b8063cd55e51b1461064b578063cf2f81dc1461065e578063d5f3948814610671578063d78a83b114610682578063dd22b08a14610695575f80fd5b8063b7009613116100fa578063b7009613146105cc578063bc62a0a5146105df578063bcfb11b014610607578063bf7e214f14610630578063c6a0017914610638575f80fd5b80638fb36037146104e75780639279073b146104fc57806392bdd9bd1461053b578063a4e2d634146105bc578063b3ecf236146105c4575f80fd5b80635ab1bd53116101c1578063728a61a811610186578063728a61a81461048a578063748540711461049d57806376b707b7146104b25780637a9e5e4b146104cc5780638308ceb1146104df575f80fd5b80635ab1bd53146104295780635bfa5027146104315780635cb870b114610451578063605aa10a1461046457806364fc314214610477575f80fd5b806326decd401161020757806326decd40146103805780633406b152146103a357806335471f80146103e3578063392f5f64146103f65780633fd85561146103fe575f80fd5b8063030149741461024357806312e1ebc51461026957806315fb0abb1461030457806324913ce61461032457806326d60fb414610378575b5f80fd5b6102566102513660046141ee565b61072c565b6040519081526020015b60405180910390f35b6102d961027736600461421d565b60408051606080820183525f80835260208084018290529284018190526001600160a01b03949094168452600882529282902082519384018352805484526001015460ff8116151591840191909152610100900464ffffffffff169082015290565b60408051825181526020808401511515908201529181015164ffffffffff1690820152606001610260565b610317610312366004614331565b610752565b6040516102609190614373565b6103376103323660046143a5565b6108ed565b60408051835181526020808501516001600160e01b031916908201529281015164ffffffffff16908301526001600160401b03166060820152608001610260565b600a54610256565b61039361038e36600461421d565b610b7e565b6040519015158152602001610260565b6103cb6103b13660046143cf565b5f908152600960205260409020546001600160a01b031690565b6040516001600160a01b039091168152602001610260565b6102566103f136600461421d565b610bea565b600654610256565b61041161040c3660046143cf565b610c74565b6040516001600160401b039091168152602001610260565b6103cb610cb6565b61044461043f3660046141ee565b610d26565b604051610260919061441a565b61044461045f366004614492565b610dfa565b61039361047236600461421d565b610fd7565b610393610485366004614505565b61104c565b6103cb6104983660046143cf565b6110d3565b6104b06104ab36600461454a565b611101565b005b6104ba61112a565b60405160ff9091168152602001610260565b6104b06104da36600461421d565b611195565b610411611220565b6104ef61128b565b60405161026091906145a3565b61052e6040518060400160405280601381526020017252656c656173655265676973747279526f6c6560681b81525081565b60405161026091906145e6565b6105966105493660046143cf565b604080518082019091525f8082526020820152505f908152600560209081526040918290208251808401909352546001600160401b0381168352600160401b900460ff1615159082015290565b6040805182516001600160401b0316815260209283015115159281019290925201610260565b6103936112c1565b61041161132c565b6103936105da3660046145f8565b611373565b61052e6040518060400160405280600981526020016841646d696e526f6c6560b81b81525081565b61052e6040518060400160405280600a8152602001695075626c6963526f6c6560b01b81525081565b6103cb61142a565b6103936106463660046141ee565b611445565b610393610659366004614505565b6114a3565b6104b061066c36600461464d565b6114d1565b6003546001600160a01b03166103cb565b6103cb610690366004614679565b6115ca565b6103cb6115eb565b6104b06106ab366004614695565b61164b565b6104b06106be3660046146b0565b6118a1565b61052e6040518060400160405280600c81526020016b2932b632b0b9b2a0b236b4b760a11b81525081565b6104b06106fc3660046146ed565b611a6c565b600354600160a01b90046001600160601b03166040516001600160601b039091168152602001610260565b6001600160401b0381165f90815260076020526040812061074c90611b7a565b92915050565b60408051606080820183525f808352602083018190528284015282519081019283905263cdc23e6960e01b909252908073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e696107a986606485016145e6565b602060405180830381865af41580156107c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e89190614709565b815260200173__$0904195350e4c23ecb1d51df0a32586dcd$__636b15ee8b866040518263ffffffff1660e01b815260040161082491906145a3565b602060405180830381865af415801561083f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108639190614720565b6001600160e01b031916815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156108b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108dd9190614754565b64ffffffffff1690529392505050565b604080516060810182525f80825260208083018290528284018290526001600160a01b0386168252600b9052828120925163dfe63db960e01b81526004810193909352602483018490529091819073__$8df0087758613aef8a614b5774fdb3323b$__9063dfe63db990604401602060405180830381865af4158015610975573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109999190614720565b6001600160a01b038681165f908152600c602090815260408083206001600160e01b03198681168086529184529382902082516060810184528154815260019182015460e081901b9096169481019490945264010000000090940464ffffffffff168383015292549051636ea1af2560e11b815291975093945073__$1d92393fa9ccd763988368ce8a1cb90d26$__93637c3940bf931691636d5115bd918a9173__$0904195350e4c23ecb1d51df0a32586dcd$__9163dd435e4a91610a61916004016145a3565b602060405180830381865af4158015610a7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa09190614720565b6040516001600160e01b031960e085901b811682526001600160a01b03909316600482015291166024820152604401602060405180830381865afa158015610aea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b0e919061476d565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af4158015610b50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b74919061476d565b9150509250929050565b60015460405163a166aa8960e01b81526001600160a01b0383811660048301525f92169063a166aa8990602401602060405180830381865afa158015610bc6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074c9190614788565b6001600160a01b0381165f908152600b6020526040808220905163868b3e0760e01b8152600481019190915273__$8df0087758613aef8a614b5774fdb3323b$__9063868b3e0790602401602060405180830381865af4158015610c50573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074c9190614709565b5f60068281548110610c8857610c886147a3565b905f5260205f2090600491828204019190066008029054906101000a90046001600160401b03169050919050565b60015460408051635ab1bd5360e01b815290515f926001600160a01b031691635ab1bd539160048083019260209291908290030181865afa158015610cfd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2191906147b7565b905090565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600482529185902085519384019095528454918216835292939192830190600160401b900460ff166003811115610d9e57610d9e6143e6565b6003811115610daf57610daf6143e6565b81528154600160481b900463ffffffff1660208201526001820154604082015260029091015464ffffffffff8082166060840152650100000000009091041660809091015292915050565b6040805160c0810182525f80825260208201819052918101829052606081018290526080810182905260a08101919091526040518060c00160405280866001600160401b03168152602001856003811115610e5757610e576143e6565b81526020018463ffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401610e9f91906145e6565b602060405180830381865af4158015610eba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ede9190614709565b815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f4e9190614754565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610fa1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fc59190614754565b64ffffffffff16905295945050505050565b6001600160a01b0381165f90815260086020526040808220600101549051638d38cd4b60e01b815261010090910464ffffffffff16600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b906024015b602060405180830381865af4158015610bc6573d5f803e3d5ffd5b6001546040516368fc2b7760e11b81526001600160401b03831660048201526001600160a01b0384811660248301525f92839291169063d1f856ee906044015b6040805180830381865afa1580156110a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110ca91906147d2565b50949350505050565b5f600a82815481106110e7576110e76147a3565b5f918252602090912001546001600160a01b031692915050565b61110d335b5f36611b83565b611118838383611c81565b61112484848484611ead565b50505050565b600154604080516376b707b760e01b815290515f926001600160a01b0316916376b707b79160048083019260209291908290030181865afa158015611171573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2191906147ff565b3361119e61142a565b6001600160a01b0316816001600160a01b0316146111de5760405162d1953b60e31b81526001600160a01b03821660048201526024015b60405180910390fd5b816001600160a01b03163b5f03611213576040516361798f2f60e11b81526001600160a01b03831660048201526024016111d5565b61121c82612143565b5050565b60015460408051631e53e01560e11b815290515f926001600160a01b031691633ca7c02a9160048083019260209291908290030181865afa158015611267573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d21919061476d565b5f80516020614f9383398151915280545f9190600160a01b900460ff166112b2575f6112bb565b638fb3603760e01b5b91505090565b60015460408051632938b58d60e21b815290515f926001600160a01b03169163a4e2d6349160048083019260209291908290030181865afa158015611308573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d219190614788565b60015460408051631d6c8e3f60e21b815290515f926001600160a01b0316916375b238fc9160048083019260209291908290030181865afa158015611267573d5f803e3d5ffd5b600154604051636ea1af2560e11b81525f916001600160a01b03169063b7009613908690869073__$0904195350e4c23ecb1d51df0a32586dcd$__9063dd435e4a906113cd906001600160e01b03198a16906004016145a3565b602060405180830381865af41580156113e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061140c9190614720565b6040518463ffffffff1660e01b815260040161108c9392919061481a565b5f80516020614f93833981519152546001600160a01b031690565b6001600160401b0381165f908152600460208190526040808320600201549051638d38cd4b60e01b815264ffffffffff9091169181019190915273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401611031565b6001600160401b038082165f9081526004602052604081205490916114ca9185911661104c565b9392505050565b6114da33611106565b306001600160a01b0383160361150e5760405163f1e7fc1f60e01b81526001600160a01b03831660048201526024016111d5565b611518828261219c565b7f6684f8a06572afb238e3be8cfd16b40f30528ddff5a058ed4af32467818abdac826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611575573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061159991906147ff565b6040805160ff90921682526001600160a01b0385166020830152831515908201526060015b60405180910390a15050565b6001600160401b0382165f9081526007602052604081206114ca9083612204565b5f6115f4610cb6565b600354604051631c5da14d60e11b8152600160a01b9091046001600160601b031660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610cfd573d5f803e3d5ffd5b6001545f906001600160a01b031663d1f856ee61166661220f565b604051631517388760e21b81526001600160401b03909116600482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af41580156116bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116e1919061476d565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201523360248201526044016040805180830381865afa158015611728573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061174c91906147d2565b5090508061176f5760405163de0edf8360e01b81523360048201526024016111d5565b5f61177861142a565b9050821515816001600160a01b031663a4e2d6346040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117dd9190614788565b15150361180157604051632727ef3d60e01b815283151560048201526024016111d5565b60405163108f145b60e11b815283151560048201526001600160a01b0382169063211e28b6906024015f604051808303815f87803b158015611841575f80fd5b505af1158015611853573d5f803e3d5ffd5b505050507f1da9fc334a60200f44fc264006bff9790c7cb9ec01d31ec3d66ba46e94f298b261188061112a565b6040805160ff909216825285151560208301520160405180910390a1505050565b604051632b10f60d60e21b815260ff8216600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af41580156118f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119159190614709565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b900460ff168061195a575080546001600160401b03808416911610155b156119785760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556119a28561225f565b6119aa61142a565b604051630f6c67a360e11b81526001600160a01b03878116600483015260ff861660248301529190911690631ed8cf46906044015f604051808303815f87803b1580156119f5575f80fd5b505af1158015611a07573d5f803e3d5ffd5b50505050611a1485612304565b611a1d84612439565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f81158015611ab05750825b90505f826001600160401b03166001148015611acb5750303b155b905081158015611ad9575080155b15611af75760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611b2157845460ff60401b1916600160401b1785555b611b2b87876125ce565b8315611b7157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f61074c825490565b5f80516020614f938339815191525f80611bbb611b9e61142a565b8730611bad60045f8a8c614847565b611bb69161486e565b61289e565b9150915081611c795763ffffffff811615611c5657825460ff60a01b1916600160a01b178355611be961142a565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611c18939291906148a6565b5f604051808303815f87803b158015611c2f575f80fd5b505af1158015611c41573d5f803e3d5ffd5b5050845460ff60a01b1916855550611c799050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016111d5565b505050505050565b604051632b95d28f60e21b815260ff831660048201525f9073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__9063ae574a3c906024015f60405180830381865af4158015611cd2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611cf991908101906148e5565b90505f73__$0d958e68cba84670b8f4a3f2f2686b1c6b$__630c3258f983856040518363ffffffff1660e01b8152600401611d35929190614959565b5f60405180830381865af4158015611d4f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611d7691908101906148e5565b9050611d85858260015f612990565b60405163dda777d360e01b815260ff8086166004830152841660248201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__9063dda777d390604401602060405180830381865af4158015611ddf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e03919061476d565b9050611e0e81611445565b611ea357611ea381611e9e611e21612e18565b60018073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__630c3258f98a8c6040518363ffffffff1660e01b8152600401611e5d92919061499e565b5f60405180830381865af4158015611e77573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261045f91908101906148e5565b612e52565b611c7981876130d2565b604051630e949b3560e21b815260ff831660048201525f90819081906001600160a01b03881690633a526cd4906024015f60405180830381865afa158015611ef7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611f1e9190810190614a09565b90505f5b815181101561213957818181518110611f3d57611f3d6147a3565b60200260200101519350611f5e84611f53606390565b60ff90811691161490565b15611f7257611f6b613326565b9250611ff1565b60405163dda777d360e01b815260ff80861660048301528616602482015273__$1d92393fa9ccd763988368ce8a1cb90d26$__9063dda777d390604401602060405180830381865af4158015611fca573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fee919061476d565b92505b611ffa83611445565b6120ae576120ae83611e9e61200d612e18565b604051632b95d28f60e21b815260ff89166004820152600190819073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90630c3258f990829063ae574a3c906024015f60405180830381865af4158015612069573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261209091908101906148e5565b8d6040518363ffffffff1660e01b8152600401611e5d929190614aa2565b6040516374766d9b60e11b815260ff8088166004830152851660248201525f906001600160a01b038a169063e8ecdb36906044015f60405180830381865afa1580156120fc573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526121239190810190614ae4565b9050612130888583613366565b50600101611f22565b5050505050505050565b5f80516020614f9383398151915280546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad906020016115be565b816121a6816133d2565b60015460405163167bd39560e01b81526001600160a01b03858116600483015284151560248301529091169063167bd395906044015f604051808303815f87803b1580156121f2575f80fd5b505af1158015611b71573d5f803e3d5ffd5b5f6114ca8383613403565b604051637c3940bf60e01b81526004808201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf906024015b602060405180830381865af4158015611267573d5f803e3d5ffd5b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af41580156122b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122d99190614788565b6123015760405163375acd0b60e11b81526001600160a01b03821660048201526024016111d5565b50565b61230c610cb6565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015612352573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123769190614788565b61239e57604051633b69638960e11b81526001600160a01b03821660048201526024016111d5565b6123a6610cb6565b604051632f2a35f760e11b81526001600160a01b0383811660048301529190911690635e546bee90602401602060405180830381865afa1580156123ec573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124109190614baa565b600360146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b612441613429565b612471306040518060400160405280600c81526020016b2932b632b0b9b2a0b236b4b760a11b8152505f80612990565b6124bb61247c61220f565b611e9e612487612e18565b6001806040518060400160405280601381526020017252656c656173655265676973747279526f6c6560681b815250610dfa565b6040805160028082526060828101909352816020015b604080516060810182525f80825260208083018290529282015282525f199092019101816124d1579050509050612537637485407160e01b6040518060400160405280601081526020016f617574686f72697a655365727669636560801b815250610752565b815f81518110612549576125496147a3565b602002602001018190525061258d63cf2f81dc60e01b6040518060400160405280601081526020016f1cd95d14d95c9d9a58d9531bd8dad95960821b815250610752565b816001815181106125a0576125a06147a3565b60200260200101819052506125bd306125b761220f565b83613366565b61121c6125c861220f565b836130d2565b6125d6613429565b6003546001600160a01b03166125f957600380546001600160a01b031916331790555b6003546001600160a01b031633146126245760405163410f583d60e11b815260040160405180910390fd5b604051631627905560e01b81526001600160a01b038316600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90631627905590602401602060405180830381865af415801561267a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061269e9190614788565b6126c65760405163a91c340960e01b81526001600160a01b03831660048201526024016111d5565b80515f036126e75760405163ea69a8ad60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b03841690811790915560405163189acdbd60e31b815230600482015263c4d66de8906024015f604051808303815f87803b158015612738575f80fd5b505af115801561274a573d5f803e3d5ffd5b5050604051632330f24760e01b81526001600160a01b038516600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9250632330f2479150602401602060405180830381865af41580156127a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127c89190614788565b6127f057604051637595cb1960e01b81526001600160a01b03831660048201526024016111d5565b6127f982613474565b5f6128048282614c4c565b5073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561284c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128709190614baa565b600360146101000a8154816001600160601b0302191690836001600160601b0316021790555061121c613485565b5f805f80876001600160a01b03168787876040516024016128c19392919061481a565b60408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516128f69190614d1d565b5f60405180830381855afa9150503d805f811461292e576040519150601f19603f3d011682016040523d82523d5f602084013e612933565b606091505b50915091508115612985576040815110612965578080602001905181019061295b91906147d2565b9094509250612985565b602081511061298557808060200190518101906129829190614788565b93505b505094509492505050565b61299984610fd7565b15612a4e576001600160a01b0384165f9081526008602052604090819020549051631623433d60e31b8152859173__$9a094f9b231ed0f5f85a69be8408d93180$__9163b11a19e8916129f29160040190815260200190565b5f60405180830381865af4158015612a0c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a3391908101906148e5565b604051630bf898a560e31b81526004016111d5929190614d28565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990612a879087906004016145e6565b602060405180830381865af4158015612aa2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ac69190614709565b60405163a9dbaf2560e01b81526004810182905290915073__$9a094f9b231ed0f5f85a69be8408d93180$__9063a9dbaf2590602401602060405180830381865af4158015612b17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b3b9190614709565b5f03612b6557604051638a0b84e560e01b81526001600160a01b03861660048201526024016111d5565b5f818152600960205260409020546001600160a01b031615612bb7575f818152600960205260409081902054905163375fd50360e11b81526111d591879187916001600160a01b031690600401614d53565b612bc085613630565b612be857604051637693f8d560e01b81526001600160a01b03861660048201526024016111d5565b8215612ca8575f856001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c2b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c4f91906147b7565b9050612c5961142a565b6001600160a01b0316816001600160a01b031614612ca657612c7961142a565b604051630deaa28d60e31b81526001600160a01b03918216600482015290821660248201526044016111d5565b505b6040518060600160405280828152602001831515815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612d08573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d2c9190614754565b64ffffffffff9081169091526001600160a01b0387165f818152600860209081526040808320865181558683015160019182018054988401519097166101000265ffffffffff00199115159190911665ffffffffffff1990981697909717969096179094558582526009905282812080546001600160a01b03199081168417909155600a8054958601815582527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a89094018054909416909117909255517f8fc0bd3ee17d8e732533ea42ad65951dc55a5dac82fb45dd3e7c71b9fe02a1d691611a5d9188908890614e0d565b604051637c3940bf60e01b81525f600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401612244565b612e5b82611445565b15612f14576001600160401b0382165f90815260046020819052604091829020600101549151631623433d60e31b8152849273__$9a094f9b231ed0f5f85a69be8408d93180$__9263b11a19e892612eb892910190815260200190565b5f60405180830381865af4158015612ed2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612ef991908101906148e5565b60405163c2f92fd360e01b81526004016111d5929190614e40565b8051612f1f90611445565b612f4a578051604051634731add760e11b81526001600160401b0390911660048201526024016111d5565b606081015160405163a9dbaf2560e01b8152600481019190915273__$9a094f9b231ed0f5f85a69be8408d93180$__9063a9dbaf2590602401602060405180830381865af4158015612f9e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fc29190614709565b5f03612fec5760405163ce242fe760e01b81526001600160401b03831660048201526024016111d5565b60608101515f90815260056020526040902054600160401b900460ff16156130c8576060810151604051631623433d60e31b8152839173__$9a094f9b231ed0f5f85a69be8408d93180$__9163b11a19e89161304e9160040190815260200190565b5f60405180830381865af4158015613068573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261308f91908101906148e5565b60608301515f908152600560205260409081902054905163ab0b63a360e01b81526111d59392916001600160401b031690600401614e61565b61121c828261373f565b8160015f6130e083836139f4565b6001600160401b0385165f908152600460209081526040808320546007909252909120600160481b90910463ffffffff169061311b90611b7a565b10613169576001600160401b0385165f8181526004602081905260409182902054915163b6a5795960e01b815290810192909252600160481b900463ffffffff1660248201526044016111d5565b60016001600160401b0386165f90815260046020526040902054600160401b900460ff16600381111561319e5761319e6143e6565b1480156132225750604051631627905560e01b81526001600160a01b038516600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90631627905590602401602060405180830381865af41580156131fc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132209190614788565b155b1561325a57604051632e0816b360e21b81526001600160401b03861660048201526001600160a01b03851660248201526044016111d5565b6001600160401b0385165f90815260076020526040902061327b9085613bb8565b5060015460405163012e238d60e51b81526001600160401b03871660048201526001600160a01b0386811660248301525f6044830152909116906325c471a0906064015f604051808303815f87803b1580156132d5575f80fd5b505af11580156132e7573d5f803e3d5ffd5b505050507fe833cea7ff35d8ab3a1c2917328619fb92c0bbdc3792d351b31751e36eb209465f8561331788613bcc565b604051611a5d93929190614e0d565b604051637c3940bf60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401612244565b6133838261337261132c565b6001600160401b0390811691161490565b156133ac57604051636a89b82560e11b81526001600160a01b03841660048201526024016111d5565b5f806133ba85846001613c9c565b915091506133cb858584845f614065565b5050505050565b6133db81610fd7565b61230157604051630a504d9560e11b81526001600160a01b03821660048201526024016111d5565b5f825f018281548110613418576134186147a3565b905f5260205f200154905092915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661347257604051631afcd79f60e31b815260040160405180910390fd5b565b61347c613429565b6123018161417d565b61348d613429565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__637c3940bf60015f9054906101000a90046001600160a01b03166001600160a01b03166375b238fc6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061351c919061476d565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865af415801561355e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613582919061476d565b90506135c961358f612e18565b6135c461359a612e18565b6001806040518060400160405280600981526020016841646d696e526f6c6560b81b815250610dfa565b61373f565b6001600160401b0381165f9081526007602052604090206135ea9030613bb8565b506123016135f6613326565b6135c4613601612e18565b600263ffffffff6040518060400160405280600a8152602001695075626c6963526f6c6560b01b815250610dfa565b604051631627905560e01b81526001600160a01b03821660048201525f9073__$fb599632d08395912d9d70eb2f0f93b5e2$__90631627905590602401602060405180830381865af4158015613688573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136ac9190614788565b6136b757505f919050565b60408051600481526024810182526020810180516001600160e01b031663bf7e214f60e01b17905290515f916001600160a01b038516916136f89190614d1d565b5f60405180830381855afa9150503d805f8114613730576040519150601f19603f3d011682016040523d82523d5f602084013e613735565b606091505b5090949350505050565b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015613786573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137aa9190614754565b64ffffffffff1660808201526001600160401b038083165f90815260046020908152604090912083518154931667ffffffffffffffff1984168117825591840151849391929091839168ffffffffffffffffff1990911617600160401b836003811115613819576138196143e6565b0217905550604082810151825463ffffffff909116600160481b026cffffffff0000000000000000001990911617825560608084015160018085019190915560808501516002909401805460a09096015164ffffffffff908116650100000000000269ffffffffffffffffffff1990971695169490941794909417909255805180820182526001600160401b03808716808352602080840187815295880180515f908152600583528681209551865498511515600160401b0268ffffffffffffffffff199099169086161797909717909455600680549788018155865260048088047ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f01805460039099166008026101000a938402939094021990971691909117909155850151855191519251631623433d60e31b81527f089dc3e37715ee5f5f527a09ca053081e6a74ab2cde2b4471c37f8b9b81af45c95889492939273__$9a094f9b231ed0f5f85a69be8408d93180$__9263b11a19e8926139a292910190815260200190565b5f60405180830381865af41580156139bc573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526139e391908101906148e5565b6040516115be959493929190614e9b565b6139fd82611445565b613a2557604051632ed3a17160e11b81526001600160401b03831660048201526024016111d5565b60015460408051631d6c8e3f60e21b8152905184926001600160a01b0316916375b238fc9160048083019260209291908290030181865afa158015613a6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a90919061476d565b6001600160401b0316816001600160401b031603613acc5760405163079fe26f60e01b81526001600160401b03841660048201526024016111d5565b818015613b8a5750613b8a60045f856001600160401b03166001600160401b031681526020019081526020015f2060020160059054906101000a900464ffffffffff1673__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015613b56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b7a9190614754565b64ffffffffff9081169116111590565b15613bb3576040516332d0641160e21b81526001600160401b03841660048201526024016111d5565b505050565b5f6114ca836001600160a01b03841661418e565b6060613bd782611445565b15613c72576001600160401b0382165f90815260046020819052604091829020600101549151631623433d60e31b815273__$9a094f9b231ed0f5f85a69be8408d93180$__9263b11a19e892613c31920190815260200190565b5f60405180830381865af4158015613c4b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261074c91908101906148e5565b505060408051808201909152600e81526d1e3ab735b737bbb716b937b6329f60911b602082015290565b60608084613ca9816133d2565b8451806001600160401b03811115613cc357613cc361424d565b604051908082528060200260200182016040528015613cec578160200160208202803683370190505b509350806001600160401b03811115613d0757613d0761424d565b604051908082528060200260200182016040528015613d3a57816020015b6060815260200190600190039081613d255790505b509250613d5f604080516060810182525f808252602082018190529181019190915290565b5f805b8381101561405857888181518110613d7c57613d7c6147a3565b60200260200101519250826020015191508715613e20576001600160a01b038a165f908152600b6020526040908190209051631b76c9b760e31b815260048101919091526001600160e01b03198316602482015273__$8df0087758613aef8a614b5774fdb3323b$__9063dbb64db8906044015f6040518083038186803b158015613e05575f80fd5b505af4158015613e17573d5f803e3d5ffd5b50505050613ea9565b6001600160a01b038a165f908152600b60205260409081902090516313edd33560e31b815260048101919091526001600160e01b03198316602482015273__$8df0087758613aef8a614b5774fdb3323b$__90639f6e99a8906044015f6040518083038186803b158015613e92575f80fd5b505af4158015613ea4573d5f803e3d5ffd5b505050505b6001600160a01b038a165f908152600c602090815260408083206001600160e01b03198616808552908352928190208651815591860151600190920180548288015164ffffffffff166401000000000268ffffffffffffffffff1990911660e09490941c939093179290921790915551636ea1af2560e11b815273__$0904195350e4c23ecb1d51df0a32586dcd$__9163dd435e4a91613f4c91906004016145a3565b602060405180830381865af4158015613f67573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f8b9190614720565b878281518110613f9d57613f9d6147a3565b6001600160e01b0319909216602092830291909101909101528251604051631623433d60e31b815273__$9a094f9b231ed0f5f85a69be8408d93180$__9163b11a19e891613ff2919060040190815260200190565b5f60405180830381865af415801561400c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261403391908101906148e5565b868281518110614045576140456147a3565b6020908102919091010152600101613d62565b5050505050935093915050565b8461406f816133d2565b84600183806140825761408283836139f4565b6001546040516308d6122d60e01b81526001600160a01b03909116906308d6122d906140b6908c908b908d90600401614ef6565b5f604051808303815f87803b1580156140cd575f80fd5b505af11580156140df573d5f803e3d5ffd5b505050505f5b8751811015614171577f71c0dd58adbf4d883856964979f8473116b2857bb3940628b6a7669a24cb0dff5f8b898481518110614123576141236147a3565b60200260200101516141348d613bcc565b604051602001614145929190614f67565b60408051601f1981840301815290829052614161939291614e0d565b60405180910390a16001016140e5565b50505050505050505050565b614185613429565b61230181612143565b5f8181526001830160205260408120546141d357508154600181810184555f84815260208082209093018490558454848252828601909352604090209190915561074c565b505f61074c565b6001600160401b0381168114612301575f80fd5b5f602082840312156141fe575f80fd5b81356114ca816141da565b6001600160a01b0381168114612301575f80fd5b5f6020828403121561422d575f80fd5b81356114ca81614209565b6001600160e01b031981168114612301575f80fd5b634e487b7160e01b5f52604160045260245ffd5b604051606081016001600160401b03811182821017156142835761428361424d565b60405290565b604051601f8201601f191681016001600160401b03811182821017156142b1576142b161424d565b604052919050565b5f6001600160401b038211156142d1576142d161424d565b50601f01601f191660200190565b5f82601f8301126142ee575f80fd5b81356143016142fc826142b9565b614289565b818152846020838601011115614315575f80fd5b816020850160208301375f918101602001919091529392505050565b5f8060408385031215614342575f80fd5b823561434d81614238565b915060208301356001600160401b03811115614367575f80fd5b610b74858286016142df565b815181526020808301516001600160e01b0319169082015260408083015164ffffffffff16908201526060810161074c565b5f80604083850312156143b6575f80fd5b82356143c181614209565b946020939093013593505050565b5f602082840312156143df575f80fd5b5035919050565b634e487b7160e01b5f52602160045260245ffd5b6004811061441657634e487b7160e01b5f52602160045260245ffd5b9052565b81516001600160401b0316815260208083015160c083019161443e908401826143fa565b5063ffffffff60408401511660408301526060830151606083015264ffffffffff608084015116608083015264ffffffffff60a08401511660a083015292915050565b63ffffffff81168114612301575f80fd5b5f805f80608085870312156144a5575f80fd5b84356144b0816141da565b93506020850135600481106144c3575f80fd5b925060408501356144d381614481565b915060608501356001600160401b038111156144ed575f80fd5b6144f9878288016142df565b91505092959194509250565b5f8060408385031215614516575f80fd5b823561452181614209565b91506020830135614531816141da565b809150509250929050565b60ff81168114612301575f80fd5b5f805f806080858703121561455d575f80fd5b843561456881614209565b9350602085013561457881614209565b925060408501356145888161453c565b915060608501356145988161453c565b939692955090935050565b6001600160e01b031991909116815260200190565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6114ca60208301846145b8565b5f805f6060848603121561460a575f80fd5b833561461581614209565b9250602084013561462581614209565b9150604084013561463581614238565b809150509250925092565b8015158114612301575f80fd5b5f806040838503121561465e575f80fd5b823561466981614209565b9150602083013561453181614640565b5f806040838503121561468a575f80fd5b82356143c1816141da565b5f602082840312156146a5575f80fd5b81356114ca81614640565b5f805f606084860312156146c2575f80fd5b83356146cd81614209565b925060208401356146dd81614209565b915060408401356146358161453c565b5f80604083850312156146fe575f80fd5b823561434d81614209565b5f60208284031215614719575f80fd5b5051919050565b5f60208284031215614730575f80fd5b81516114ca81614238565b805164ffffffffff8116811461474f575f80fd5b919050565b5f60208284031215614764575f80fd5b6114ca8261473b565b5f6020828403121561477d575f80fd5b81516114ca816141da565b5f60208284031215614798575f80fd5b81516114ca81614640565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156147c7575f80fd5b81516114ca81614209565b5f80604083850312156147e3575f80fd5b82516147ee81614640565b602084015190925061453181614481565b5f6020828403121561480f575f80fd5b81516114ca8161453c565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f8085851115614855575f80fd5b83861115614861575f80fd5b5050820193919092039150565b80356001600160e01b0319811690600484101561489f576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f602082840312156148f5575f80fd5b81516001600160401b0381111561490a575f80fd5b8201601f8101841361491a575f80fd5b80516149286142fc826142b9565b81815285602083850101111561493c575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b606081525f61496b60608301856145b8565b828103602084015260078152665365727669636560c81b60208201526040810191505060ff831660408301529392505050565b606081525f6149b060608301856145b8565b8281036020840152600b81526a53657276696365526f6c6560a81b60208201526040810191505060ff831660408301529392505050565b5f6001600160401b038211156149ff576149ff61424d565b5060051b60200190565b5f60208284031215614a19575f80fd5b81516001600160401b03811115614a2e575f80fd5b8201601f81018413614a3e575f80fd5b8051614a4c6142fc826149e7565b8082825260208201915060208360051b850101925086831115614a6d575f80fd5b6020840193505b82841015614a98578351614a878161453c565b825260209384019390910190614a74565b9695505050505050565b606081525f614ab460608301856145b8565b82810360208401526004815263526f6c6560e01b60208201526040810191505060ff831660408301529392505050565b5f60208284031215614af4575f80fd5b81516001600160401b03811115614b09575f80fd5b8201601f81018413614b19575f80fd5b8051614b276142fc826149e7565b80828252602082019150602060608402850101925086831115614b48575f80fd5b6020840193505b82841015614a985760608488031215614b66575f80fd5b614b6e614261565b845181526020850151614b8081614238565b6020820152614b916040860161473b565b6040820152825260609390930192602090910190614b4f565b5f60208284031215614bba575f80fd5b81516001600160601b03811681146114ca575f80fd5b600181811c90821680614be457607f821691505b602082108103614c0257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115613bb357805f5260205f20601f840160051c81016020851015614c2d5750805b601f840160051c820191505b818110156133cb575f8155600101614c39565b81516001600160401b03811115614c6557614c6561424d565b614c7981614c738454614bd0565b84614c08565b6020601f821160018114614cab575f8315614c945750848201515b5f19600385901b1c1916600184901b1784556133cb565b5f84815260208120601f198516915b82811015614cda5787850151825560209485019460019092019101614cba565b5084821015614cf757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f81518060208401855e5f93019283525090919050565b5f6114ca8284614d06565b6001600160a01b03831681526040602082018190525f90614d4b908301846145b8565b949350505050565b6001600160a01b03841681526060602082018190525f90614d76908301856145b8565b905060018060a01b0383166040830152949350505050565b5f8154614d9a81614bd0565b808552600182168015614db45760018114614dd057614e04565b60ff1983166020870152602082151560051b8701019350614e04565b845f5260205f205f5b83811015614dfb5781546020828a010152600182019150602081019050614dd9565b87016020019450505b50505092915050565b606081525f614e1f6060830186614d8e565b6001600160a01b03851660208401528281036040840152614a9881856145b8565b6001600160401b0383168152604060208201525f614d4b60408301846145b8565b6001600160401b0384168152606060208201525f614e8260608301856145b8565b90506001600160401b0383166040830152949350505050565b60a081525f614ead60a0830188614d8e565b6001600160401b0387166020840152614ec960408401876143fa565b6001600160401b03851660608401528281036080840152614eea81856145b8565b98975050505050505050565b6001600160a01b03841681526060602080830182905284519183018290525f91908501906080840190835b81811015614f495783516001600160e01b031916835260209384019390920191600101614f21565b505080925050506001600160401b0383166040830152949350505050565b5f614f728285614d06565b63014149d160e51b8152614f896004820185614d06565b9594505050505056fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220190e2f584f84c1b8a1bbf5d2455d835d40295cd047fc83c0356fad5ed3b4438f64736f6c634300081a0033",
1615
+ "linkReferences": {
1616
+ "contracts/shared/ContractLib.sol": {
1617
+ "ContractLib": [
1618
+ {
1619
+ "length": 20,
1620
+ "start": 505
1621
+ },
1622
+ {
1623
+ "length": 20,
1624
+ "start": 806
1625
+ },
1626
+ {
1627
+ "length": 20,
1628
+ "start": 13150
1629
+ },
1630
+ {
1631
+ "length": 20,
1632
+ "start": 14115
1633
+ },
1634
+ {
1635
+ "length": 20,
1636
+ "start": 14411
1637
+ },
1638
+ {
1639
+ "length": 20,
1640
+ "start": 17061
1641
+ },
1642
+ {
1643
+ "length": 20,
1644
+ "start": 18225
1645
+ }
1646
+ ]
1647
+ },
1648
+ "contracts/type/NftId.sol": {
1649
+ "NftIdLib": [
1650
+ {
1651
+ "length": 20,
1652
+ "start": 963
1653
+ },
1654
+ {
1655
+ "length": 20,
1656
+ "start": 14568
1657
+ }
1658
+ ]
1659
+ },
1660
+ "contracts/type/ObjectType.sol": {
1661
+ "ObjectTypeLib": [
1662
+ {
1663
+ "length": 20,
1664
+ "start": 11644
1665
+ },
1666
+ {
1667
+ "length": 20,
1668
+ "start": 11743
1669
+ },
1670
+ {
1671
+ "length": 20,
1672
+ "start": 12039
1673
+ },
1674
+ {
1675
+ "length": 20,
1676
+ "start": 12555
1677
+ }
1678
+ ]
1679
+ },
1680
+ "contracts/type/RoleId.sol": {
1681
+ "RoleIdLib": [
1682
+ {
1683
+ "length": 20,
1684
+ "start": 1230
1685
+ },
1686
+ {
1687
+ "length": 20,
1688
+ "start": 1699
1689
+ },
1690
+ {
1691
+ "length": 20,
1692
+ "start": 3040
1693
+ },
1694
+ {
1695
+ "length": 20,
1696
+ "start": 6902
1697
+ },
1698
+ {
1699
+ "length": 20,
1700
+ "start": 10086
1701
+ },
1702
+ {
1703
+ "length": 20,
1704
+ "start": 11912
1705
+ },
1706
+ {
1707
+ "length": 20,
1708
+ "start": 12403
1709
+ },
1710
+ {
1711
+ "length": 20,
1712
+ "start": 13063
1713
+ },
1714
+ {
1715
+ "length": 20,
1716
+ "start": 16145
1717
+ },
1718
+ {
1719
+ "length": 20,
1720
+ "start": 17445
1721
+ },
1722
+ {
1723
+ "length": 20,
1724
+ "start": 17777
1725
+ }
1726
+ ]
1727
+ },
1728
+ "contracts/type/Selector.sol": {
1729
+ "SelectorLib": [
1730
+ {
1731
+ "length": 20,
1732
+ "start": 6352
1733
+ },
1734
+ {
1735
+ "length": 20,
1736
+ "start": 6940
1737
+ },
1738
+ {
1739
+ "length": 20,
1740
+ "start": 9340
1741
+ },
1742
+ {
1743
+ "length": 20,
1744
+ "start": 20486
1745
+ }
1746
+ ],
1747
+ "SelectorSetLib": [
1748
+ {
1749
+ "length": 20,
1750
+ "start": 6686
1751
+ },
1752
+ {
1753
+ "length": 20,
1754
+ "start": 7417
1755
+ },
1756
+ {
1757
+ "length": 20,
1758
+ "start": 20147
1759
+ },
1760
+ {
1761
+ "length": 20,
1762
+ "start": 20288
1763
+ }
1764
+ ]
1765
+ },
1766
+ "contracts/type/String.sol": {
1767
+ "StrLib": [
1768
+ {
1769
+ "length": 20,
1770
+ "start": 1909
1771
+ },
1772
+ {
1773
+ "length": 20,
1774
+ "start": 2846
1775
+ },
1776
+ {
1777
+ "length": 20,
1778
+ "start": 6245
1779
+ },
1780
+ {
1781
+ "length": 20,
1782
+ "start": 8011
1783
+ },
1784
+ {
1785
+ "length": 20,
1786
+ "start": 15017
1787
+ },
1788
+ {
1789
+ "length": 20,
1790
+ "start": 15168
1791
+ },
1792
+ {
1793
+ "length": 20,
1794
+ "start": 15296
1795
+ },
1796
+ {
1797
+ "length": 20,
1798
+ "start": 16240
1799
+ },
1800
+ {
1801
+ "length": 20,
1802
+ "start": 16455
1803
+ },
1804
+ {
1805
+ "length": 20,
1806
+ "start": 16645
1807
+ },
1808
+ {
1809
+ "length": 20,
1810
+ "start": 19034
1811
+ },
1812
+ {
1813
+ "length": 20,
1814
+ "start": 19690
1815
+ },
1816
+ {
1817
+ "length": 20,
1818
+ "start": 20648
1819
+ }
1820
+ ]
1821
+ },
1822
+ "contracts/type/Timestamp.sol": {
1823
+ "TimestampLib": [
1824
+ {
1825
+ "length": 20,
1826
+ "start": 2032
1827
+ },
1828
+ {
1829
+ "length": 20,
1830
+ "start": 2151
1831
+ },
1832
+ {
1833
+ "length": 20,
1834
+ "start": 2276
1835
+ },
1836
+ {
1837
+ "length": 20,
1838
+ "start": 6485
1839
+ },
1840
+ {
1841
+ "length": 20,
1842
+ "start": 8134
1843
+ },
1844
+ {
1845
+ "length": 20,
1846
+ "start": 8253
1847
+ },
1848
+ {
1849
+ "length": 20,
1850
+ "start": 8436
1851
+ },
1852
+ {
1853
+ "length": 20,
1854
+ "start": 9570
1855
+ },
1856
+ {
1857
+ "length": 20,
1858
+ "start": 15780
1859
+ },
1860
+ {
1861
+ "length": 20,
1862
+ "start": 18466
1863
+ },
1864
+ {
1865
+ "length": 20,
1866
+ "start": 19442
1867
+ }
1868
+ ]
1869
+ },
1870
+ "contracts/type/Version.sol": {
1871
+ "VersionPartLib": [
1872
+ {
1873
+ "length": 20,
1874
+ "start": 10650
1875
+ }
1876
+ ]
1877
+ }
1878
+ },
1879
+ "deployedLinkReferences": {
1880
+ "contracts/shared/ContractLib.sol": {
1881
+ "ContractLib": [
1882
+ {
1883
+ "length": 20,
1884
+ "start": 8829
1885
+ },
1886
+ {
1887
+ "length": 20,
1888
+ "start": 9794
1889
+ },
1890
+ {
1891
+ "length": 20,
1892
+ "start": 10090
1893
+ },
1894
+ {
1895
+ "length": 20,
1896
+ "start": 12740
1897
+ },
1898
+ {
1899
+ "length": 20,
1900
+ "start": 13904
1901
+ }
1902
+ ]
1903
+ },
1904
+ "contracts/type/NftId.sol": {
1905
+ "NftIdLib": [
1906
+ {
1907
+ "length": 20,
1908
+ "start": 10247
1909
+ }
1910
+ ]
1911
+ },
1912
+ "contracts/type/ObjectType.sol": {
1913
+ "ObjectTypeLib": [
1914
+ {
1915
+ "length": 20,
1916
+ "start": 7323
1917
+ },
1918
+ {
1919
+ "length": 20,
1920
+ "start": 7422
1921
+ },
1922
+ {
1923
+ "length": 20,
1924
+ "start": 7718
1925
+ },
1926
+ {
1927
+ "length": 20,
1928
+ "start": 8234
1929
+ }
1930
+ ]
1931
+ },
1932
+ "contracts/type/RoleId.sol": {
1933
+ "RoleIdLib": [
1934
+ {
1935
+ "length": 20,
1936
+ "start": 2581
1937
+ },
1938
+ {
1939
+ "length": 20,
1940
+ "start": 5765
1941
+ },
1942
+ {
1943
+ "length": 20,
1944
+ "start": 7591
1945
+ },
1946
+ {
1947
+ "length": 20,
1948
+ "start": 8082
1949
+ },
1950
+ {
1951
+ "length": 20,
1952
+ "start": 8742
1953
+ },
1954
+ {
1955
+ "length": 20,
1956
+ "start": 11824
1957
+ },
1958
+ {
1959
+ "length": 20,
1960
+ "start": 13124
1961
+ },
1962
+ {
1963
+ "length": 20,
1964
+ "start": 13456
1965
+ }
1966
+ ]
1967
+ },
1968
+ "contracts/type/Selector.sol": {
1969
+ "SelectorLib": [
1970
+ {
1971
+ "length": 20,
1972
+ "start": 2031
1973
+ },
1974
+ {
1975
+ "length": 20,
1976
+ "start": 2619
1977
+ },
1978
+ {
1979
+ "length": 20,
1980
+ "start": 5019
1981
+ },
1982
+ {
1983
+ "length": 20,
1984
+ "start": 16165
1985
+ }
1986
+ ],
1987
+ "SelectorSetLib": [
1988
+ {
1989
+ "length": 20,
1990
+ "start": 2365
1991
+ },
1992
+ {
1993
+ "length": 20,
1994
+ "start": 3096
1995
+ },
1996
+ {
1997
+ "length": 20,
1998
+ "start": 15826
1999
+ },
2000
+ {
2001
+ "length": 20,
2002
+ "start": 15967
2003
+ }
2004
+ ]
2005
+ },
2006
+ "contracts/type/String.sol": {
2007
+ "StrLib": [
2008
+ {
2009
+ "length": 20,
2010
+ "start": 1924
2011
+ },
2012
+ {
2013
+ "length": 20,
2014
+ "start": 3690
2015
+ },
2016
+ {
2017
+ "length": 20,
2018
+ "start": 10696
2019
+ },
2020
+ {
2021
+ "length": 20,
2022
+ "start": 10847
2023
+ },
2024
+ {
2025
+ "length": 20,
2026
+ "start": 10975
2027
+ },
2028
+ {
2029
+ "length": 20,
2030
+ "start": 11919
2031
+ },
2032
+ {
2033
+ "length": 20,
2034
+ "start": 12134
2035
+ },
2036
+ {
2037
+ "length": 20,
2038
+ "start": 12324
2039
+ },
2040
+ {
2041
+ "length": 20,
2042
+ "start": 14713
2043
+ },
2044
+ {
2045
+ "length": 20,
2046
+ "start": 15369
2047
+ },
2048
+ {
2049
+ "length": 20,
2050
+ "start": 16327
2051
+ }
2052
+ ]
2053
+ },
2054
+ "contracts/type/Timestamp.sol": {
2055
+ "TimestampLib": [
2056
+ {
2057
+ "length": 20,
2058
+ "start": 2164
2059
+ },
2060
+ {
2061
+ "length": 20,
2062
+ "start": 3813
2063
+ },
2064
+ {
2065
+ "length": 20,
2066
+ "start": 3932
2067
+ },
2068
+ {
2069
+ "length": 20,
2070
+ "start": 4115
2071
+ },
2072
+ {
2073
+ "length": 20,
2074
+ "start": 5249
2075
+ },
2076
+ {
2077
+ "length": 20,
2078
+ "start": 11459
2079
+ },
2080
+ {
2081
+ "length": 20,
2082
+ "start": 14145
2083
+ },
2084
+ {
2085
+ "length": 20,
2086
+ "start": 15121
2087
+ }
2088
+ ]
2089
+ },
2090
+ "contracts/type/Version.sol": {
2091
+ "VersionPartLib": [
2092
+ {
2093
+ "length": 20,
2094
+ "start": 6329
2095
+ }
2096
+ ]
2097
+ }
2098
+ }
2099
+ }