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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (663) hide show
  1. package/README.md +250 -14
  2. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  3. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1416 -0
  4. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  5. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1445 -0
  6. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  7. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +866 -0
  8. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +975 -0
  10. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  11. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +814 -0
  12. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  13. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +709 -0
  14. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  15. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +315 -1509
  16. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  17. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +650 -0
  18. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  19. package/artifacts/contracts/instance/Instance.sol/Instance.json +496 -1664
  20. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  21. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +708 -0
  22. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
  23. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +316 -0
  24. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  25. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1765 -0
  26. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  27. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1101 -0
  28. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  29. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +758 -0
  30. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  31. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3678 -0
  32. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  33. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  34. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  35. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
  36. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  37. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  38. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  39. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +187 -0
  40. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  41. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
  42. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  43. package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
  44. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  45. package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IComponents.sol/IComponents.json} +2 -2
  46. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  47. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  48. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  49. package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
  50. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  51. package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
  52. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  53. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  54. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  55. package/artifacts/contracts/{instance/base/ModuleBase.sol/ModuleBase.json → oracle/IOracle.sol/IOracle.json} +2 -2
  56. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  57. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +759 -0
  58. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  59. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +662 -0
  60. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  61. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1146 -0
  62. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  63. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1077 -0
  64. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  65. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +758 -0
  66. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  67. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1193 -0
  68. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  69. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +790 -0
  70. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  71. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +690 -0
  72. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  73. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1154 -0
  74. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  75. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1065 -0
  76. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  77. package/artifacts/contracts/pool/Pool.sol/Pool.json +1565 -0
  78. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  79. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1528 -0
  80. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  81. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +786 -0
  82. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  83. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +938 -0
  84. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  85. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +774 -0
  86. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  87. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1366 -0
  88. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  89. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +854 -0
  90. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  91. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +252 -230
  92. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  93. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +759 -0
  94. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  95. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +707 -0
  96. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  97. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +536 -0
  98. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  99. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +995 -0
  100. package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
  101. package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IProductService.sol/IProductService.json} +197 -174
  102. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  103. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1266 -0
  104. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  105. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +814 -0
  106. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  107. package/artifacts/contracts/product/PricingService.sol/PricingService.json +1071 -0
  108. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  109. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +822 -0
  110. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  111. package/artifacts/contracts/product/Product.sol/Product.json +1397 -0
  112. package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
  113. package/artifacts/contracts/product/ProductService.sol/ProductService.json +767 -0
  114. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  115. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +738 -0
  116. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  117. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +199 -12
  118. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  119. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +678 -77
  120. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  121. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1110 -0
  122. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  123. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
  124. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  125. package/artifacts/contracts/registry/Registry.sol/Registry.json +1064 -186
  126. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  127. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1627 -0
  128. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  129. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1519 -0
  130. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  131. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +761 -0
  132. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  133. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1348 -0
  134. package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.dbg.json +4 -0
  135. package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.json +249 -0
  136. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  137. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
  138. package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  139. package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.json +1492 -0
  140. package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +4 -0
  141. package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +1193 -0
  142. package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +4 -0
  143. package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +1747 -0
  144. package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +4 -0
  145. package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +1760 -0
  146. package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +4 -0
  147. package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +1838 -0
  148. package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +4 -0
  149. package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +1856 -0
  150. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  151. package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
  152. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  153. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1578 -0
  154. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  155. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +836 -0
  156. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  157. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +526 -0
  158. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  159. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
  160. package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  161. package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.json +1126 -0
  162. package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +4 -0
  163. package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +1562 -0
  164. package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +4 -0
  165. package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +1600 -0
  166. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  167. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
  168. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  169. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +867 -0
  170. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  171. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +705 -0
  172. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  173. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -138
  174. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  175. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -1
  176. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  177. package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +37 -80
  178. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  179. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
  180. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  181. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +91 -31
  182. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  183. package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
  184. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  185. package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/IService.sol/IService.json} +158 -151
  186. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  187. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +16 -125
  188. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  189. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  190. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  191. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1036 -0
  192. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  193. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +635 -0
  194. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  195. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +258 -0
  196. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
  197. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
  198. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  199. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
  200. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  201. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
  202. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  203. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +617 -0
  204. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  205. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +255 -23
  206. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  207. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
  208. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  209. package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +260 -218
  210. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  211. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -0
  212. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  213. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  214. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  215. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +29 -115
  216. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  217. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
  218. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  219. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +993 -0
  220. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  221. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +444 -0
  222. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  223. package/artifacts/contracts/staking/Staking.sol/Staking.json +2061 -0
  224. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  225. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +785 -0
  226. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  227. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +616 -0
  228. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  229. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1388 -0
  230. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  231. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +758 -0
  232. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  233. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2261 -0
  234. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  235. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +619 -0
  236. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  237. package/artifacts/contracts/{types → type}/AddressSet.sol/LibAddressSet.json +3 -3
  238. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  239. package/artifacts/contracts/type/Amount.sol/AmountLib.json +345 -0
  240. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  241. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  242. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  243. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +195 -0
  244. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  245. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +120 -0
  246. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  247. package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
  248. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  249. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  250. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  251. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  252. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  253. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  254. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  255. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +148 -0
  256. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  257. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +225 -0
  258. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  259. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +158 -0
  260. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  261. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +220 -0
  262. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  263. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +102 -0
  264. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  265. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +191 -0
  266. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  267. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
  268. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  269. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  270. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  271. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  272. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  273. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  274. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  275. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  276. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  277. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +293 -0
  278. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  279. package/artifacts/contracts/{types/ChainId.sol/ChainIdLib.json → type/UFixed.sol/MathLib.json} +4 -4
  280. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  281. package/artifacts/contracts/{types/UFixed.sol/UFixedMathLib.json → type/UFixed.sol/UFixedLib.json} +4 -4
  282. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  283. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  284. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  285. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
  286. package/contracts/distribution/Distribution.sol +261 -0
  287. package/contracts/distribution/DistributionService.sol +298 -0
  288. package/contracts/distribution/DistributionServiceManager.sol +42 -0
  289. package/contracts/distribution/IDistributionComponent.sol +66 -0
  290. package/contracts/distribution/IDistributionService.sol +81 -0
  291. package/contracts/instance/BundleManager.sol +126 -0
  292. package/contracts/instance/IInstance.sol +74 -44
  293. package/contracts/instance/IInstanceService.sol +81 -0
  294. package/contracts/instance/Instance.sol +220 -52
  295. package/contracts/instance/InstanceAdmin.sol +331 -0
  296. package/contracts/instance/InstanceAuthorizationsLib.sol +377 -0
  297. package/contracts/instance/InstanceReader.sol +392 -0
  298. package/contracts/instance/InstanceService.sol +362 -0
  299. package/contracts/instance/InstanceServiceManager.sol +44 -0
  300. package/contracts/instance/InstanceStore.sol +269 -0
  301. package/contracts/instance/base/BalanceStore.sol +123 -0
  302. package/contracts/instance/base/Cloneable.sol +28 -0
  303. package/contracts/instance/base/ObjectCounter.sol +21 -0
  304. package/contracts/instance/base/ObjectManager.sol +80 -0
  305. package/contracts/instance/module/IAccess.sol +46 -0
  306. package/contracts/instance/module/IBundle.sol +20 -0
  307. package/contracts/instance/module/IComponents.sol +52 -0
  308. package/contracts/instance/module/IDistribution.sol +42 -0
  309. package/contracts/instance/module/IPolicy.sol +84 -0
  310. package/contracts/instance/module/IRisk.sol +11 -0
  311. package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
  312. package/contracts/oracle/IOracle.sol +20 -0
  313. package/contracts/oracle/IOracleComponent.sol +32 -0
  314. package/contracts/oracle/IOracleService.sol +65 -0
  315. package/contracts/oracle/Oracle.sol +145 -0
  316. package/contracts/oracle/OracleService.sol +277 -0
  317. package/contracts/oracle/OracleServiceManager.sol +42 -0
  318. package/contracts/pool/BundleService.sol +296 -0
  319. package/contracts/pool/BundleServiceManager.sol +42 -0
  320. package/contracts/pool/IBundleService.sol +106 -0
  321. package/contracts/pool/IPoolComponent.sol +112 -0
  322. package/contracts/pool/IPoolService.sol +150 -0
  323. package/contracts/pool/Pool.sol +299 -0
  324. package/contracts/pool/PoolService.sol +453 -0
  325. package/contracts/pool/PoolServiceManager.sol +42 -0
  326. package/contracts/product/ApplicationService.sol +254 -0
  327. package/contracts/product/ApplicationServiceManager.sol +38 -0
  328. package/contracts/product/ClaimService.sol +442 -0
  329. package/contracts/product/ClaimServiceManager.sol +38 -0
  330. package/contracts/product/IApplicationService.sol +62 -0
  331. package/contracts/product/IClaimService.sol +99 -0
  332. package/contracts/product/IPolicyService.sol +78 -0
  333. package/contracts/product/IPricingService.sol +39 -0
  334. package/contracts/product/IProductComponent.sol +42 -0
  335. package/contracts/product/IProductService.sol +33 -0
  336. package/contracts/product/PolicyService.sol +475 -0
  337. package/contracts/product/PolicyServiceManager.sol +42 -0
  338. package/contracts/product/PricingService.sol +301 -0
  339. package/contracts/product/PricingServiceManager.sol +42 -0
  340. package/contracts/product/Product.sol +377 -0
  341. package/contracts/product/ProductService.sol +124 -0
  342. package/contracts/product/ProductServiceManager.sol +42 -0
  343. package/contracts/registry/ChainNft.sol +95 -37
  344. package/contracts/registry/IRegistry.sol +95 -28
  345. package/contracts/registry/IRegistryService.sol +69 -0
  346. package/contracts/registry/ITransferInterceptor.sol +7 -0
  347. package/contracts/registry/Registry.sol +476 -281
  348. package/contracts/registry/RegistryAdmin.sol +126 -0
  349. package/contracts/registry/RegistryService.sol +266 -0
  350. package/contracts/registry/RegistryServiceManager.sol +58 -0
  351. package/contracts/registry/ReleaseManager.sol +590 -0
  352. package/contracts/registry/ServiceAuthorizationsLib.sol +173 -0
  353. package/contracts/registry/TokenRegistry.sol +315 -0
  354. package/contracts/shared/AccessAdmin.sol +696 -0
  355. package/contracts/shared/AccessManagerCustom.sol +741 -0
  356. package/contracts/shared/AccessManagerExtended.sol +481 -0
  357. package/contracts/shared/AccessManagerExtendedInitializeable.sol +13 -0
  358. package/contracts/shared/AccessManagerExtendedWithDisable.sol +137 -0
  359. package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +14 -0
  360. package/contracts/shared/Component.sol +281 -0
  361. package/contracts/shared/ComponentService.sol +618 -0
  362. package/contracts/shared/ComponentServiceManager.sol +35 -0
  363. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  364. package/contracts/shared/ERC165.sol +15 -9
  365. package/contracts/shared/IAccessAdmin.sol +146 -0
  366. package/contracts/shared/IAccessManagerExtended.sol +74 -0
  367. package/contracts/shared/IAccessManagerExtendedWithDisable.sol +18 -0
  368. package/contracts/shared/IComponent.sol +70 -0
  369. package/contracts/shared/IComponentService.sol +102 -0
  370. package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
  371. package/contracts/shared/IKeyValueStore.sol +53 -0
  372. package/contracts/{instance/base → shared}/ILifecycle.sol +4 -4
  373. package/contracts/shared/INftOwnable.sol +23 -0
  374. package/contracts/shared/IPolicyHolder.sol +45 -0
  375. package/contracts/shared/IRegisterable.sol +10 -19
  376. package/contracts/shared/IRegistryLinked.sol +11 -0
  377. package/contracts/shared/IService.sol +18 -0
  378. package/contracts/shared/IVersionable.sol +38 -37
  379. package/contracts/shared/InitializableCustom.sol +177 -0
  380. package/contracts/shared/InstanceLinkedComponent.sol +144 -0
  381. package/contracts/shared/KeyValueStore.sol +127 -0
  382. package/contracts/shared/Lifecycle.sol +130 -0
  383. package/contracts/shared/NftIdSetManager.sol +65 -0
  384. package/contracts/shared/NftOwnable.sol +107 -0
  385. package/contracts/shared/PolicyHolder.sol +102 -0
  386. package/contracts/shared/ProxyManager.sol +199 -0
  387. package/contracts/shared/Registerable.sol +54 -65
  388. package/contracts/shared/RegistryLinked.sol +43 -0
  389. package/contracts/shared/Service.sol +77 -0
  390. package/contracts/shared/TokenHandler.sol +58 -0
  391. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  392. package/contracts/shared/Versionable.sol +38 -68
  393. package/contracts/staking/IStaking.sol +168 -0
  394. package/contracts/staking/IStakingService.sol +149 -0
  395. package/contracts/staking/StakeManagerLib.sol +179 -0
  396. package/contracts/staking/Staking.sol +550 -0
  397. package/contracts/staking/StakingManager.sol +54 -0
  398. package/contracts/staking/StakingReader.sol +187 -0
  399. package/contracts/staking/StakingService.sol +406 -0
  400. package/contracts/staking/StakingServiceManager.sol +45 -0
  401. package/contracts/staking/StakingStore.sol +572 -0
  402. package/contracts/staking/TargetManagerLib.sol +207 -0
  403. package/contracts/{types → type}/AddressSet.sol +1 -1
  404. package/contracts/type/Amount.sol +128 -0
  405. package/contracts/{types → type}/Blocknumber.sol +21 -3
  406. package/contracts/type/ClaimId.sol +75 -0
  407. package/contracts/type/DistributorType.sol +55 -0
  408. package/contracts/type/Fee.sol +66 -0
  409. package/contracts/{types → type}/Key32.sol +8 -3
  410. package/contracts/{types → type}/NftId.sol +21 -15
  411. package/contracts/type/NftIdSet.sol +62 -0
  412. package/contracts/type/ObjectType.sol +170 -0
  413. package/contracts/type/PayoutId.sol +82 -0
  414. package/contracts/type/Referral.sol +89 -0
  415. package/contracts/type/RequestId.sol +75 -0
  416. package/contracts/type/RiskId.sol +43 -0
  417. package/contracts/type/RoleId.sol +156 -0
  418. package/contracts/type/Seconds.sol +81 -0
  419. package/contracts/type/Selector.sol +102 -0
  420. package/contracts/{types → type}/StateId.sol +39 -5
  421. package/contracts/type/String.sol +53 -0
  422. package/contracts/{types → type}/Timestamp.sol +27 -14
  423. package/contracts/{types → type}/UFixed.sol +129 -12
  424. package/contracts/{types → type}/Version.sol +15 -2
  425. package/package.json +8 -7
  426. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  427. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
  428. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  429. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  430. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -356
  431. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  432. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -279
  433. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  434. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -387
  435. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  436. package/artifacts/contracts/components/Product.sol/Product.json +0 -305
  437. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  438. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  439. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  440. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  441. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  442. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  443. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  444. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  445. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  446. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  447. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  448. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  449. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  450. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  451. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  452. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  453. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  454. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  455. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  456. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  457. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  458. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  459. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  460. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  461. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  462. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  463. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  464. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  465. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  466. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  467. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  468. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  469. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  470. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  471. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
  472. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
  473. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  474. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
  475. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  476. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -63
  477. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  478. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  479. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
  480. package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
  481. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  482. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  483. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -692
  484. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  485. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  486. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
  487. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  488. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
  489. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
  490. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
  491. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
  492. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  493. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
  494. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
  495. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -296
  496. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
  497. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
  498. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -296
  499. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
  500. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
  501. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
  502. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
  503. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
  504. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
  505. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  506. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -188
  507. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
  508. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
  509. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  510. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -188
  511. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  512. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  513. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -261
  514. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  515. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -261
  516. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  517. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
  518. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  519. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -149
  520. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  521. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -149
  522. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
  523. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
  524. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
  525. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
  526. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
  527. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  528. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
  529. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  530. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -533
  531. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  532. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
  533. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  534. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -533
  535. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  536. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -523
  537. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  538. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  539. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -376
  540. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  541. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  542. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -471
  543. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  544. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -673
  545. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  546. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
  547. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
  548. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
  549. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  550. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  551. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
  552. package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -387
  553. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
  554. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -393
  555. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  556. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
  557. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  558. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  559. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  560. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -379
  561. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  562. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
  563. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  564. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  565. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  566. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -206
  567. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  568. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
  569. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  570. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  571. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  572. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  573. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  574. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -218
  575. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  576. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -111
  577. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  578. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  579. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  580. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
  581. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  582. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  583. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  584. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -30
  585. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  586. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  587. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -236
  588. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  589. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  590. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -139
  591. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  592. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
  593. package/contracts/components/BaseComponent.sol +0 -88
  594. package/contracts/components/IBaseComponent.sol +0 -19
  595. package/contracts/components/IPoolComponent.sol +0 -57
  596. package/contracts/components/IProductComponent.sol +0 -19
  597. package/contracts/components/Pool.sol +0 -174
  598. package/contracts/components/Product.sol +0 -117
  599. package/contracts/experiment/errors/Require.sol +0 -38
  600. package/contracts/experiment/errors/Revert.sol +0 -44
  601. package/contracts/experiment/inheritance/A.sol +0 -53
  602. package/contracts/experiment/inheritance/B.sol +0 -28
  603. package/contracts/experiment/inheritance/C.sol +0 -34
  604. package/contracts/experiment/inheritance/IA.sol +0 -13
  605. package/contracts/experiment/inheritance/IB.sol +0 -10
  606. package/contracts/experiment/inheritance/IC.sol +0 -12
  607. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  608. package/contracts/experiment/statemachine/ISM.sol +0 -25
  609. package/contracts/experiment/statemachine/README.md +0 -112
  610. package/contracts/experiment/statemachine/SM.sol +0 -57
  611. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  612. package/contracts/experiment/types/TypeA.sol +0 -47
  613. package/contracts/experiment/types/TypeB.sol +0 -29
  614. package/contracts/instance/IInstanceLinked.sol +0 -8
  615. package/contracts/instance/base/ComponentServiceBase.sol +0 -42
  616. package/contracts/instance/base/IInstanceBase.sol +0 -14
  617. package/contracts/instance/base/IKeyValueStore.sol +0 -49
  618. package/contracts/instance/base/IService.sol +0 -15
  619. package/contracts/instance/base/InstanceBase.sol +0 -80
  620. package/contracts/instance/base/KeyValueStore.sol +0 -156
  621. package/contracts/instance/base/Lifecycle.sol +0 -95
  622. package/contracts/instance/base/ModuleBase.sol +0 -52
  623. package/contracts/instance/base/ServiceBase.sol +0 -37
  624. package/contracts/instance/module/access/Access.sol +0 -149
  625. package/contracts/instance/module/access/IAccess.sol +0 -53
  626. package/contracts/instance/module/bundle/BundleModule.sol +0 -136
  627. package/contracts/instance/module/bundle/IBundle.sol +0 -58
  628. package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
  629. package/contracts/instance/module/compensation/ICompensation.sol +0 -10
  630. package/contracts/instance/module/component/ComponentModule.sol +0 -95
  631. package/contracts/instance/module/component/IComponent.sol +0 -53
  632. package/contracts/instance/module/policy/IPolicy.sol +0 -60
  633. package/contracts/instance/module/policy/PolicyModule.sol +0 -76
  634. package/contracts/instance/module/pool/IPoolModule.sol +0 -41
  635. package/contracts/instance/module/pool/PoolModule.sol +0 -87
  636. package/contracts/instance/module/risk/IRisk.sol +0 -10
  637. package/contracts/instance/module/risk/RiskModule.sol +0 -8
  638. package/contracts/instance/module/treasury/ITreasury.sol +0 -103
  639. package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
  640. package/contracts/instance/module/treasury/TreasuryModule.sol +0 -152
  641. package/contracts/instance/service/ComponentOwnerService.sol +0 -170
  642. package/contracts/instance/service/IComponentOwnerService.sol +0 -22
  643. package/contracts/instance/service/IPoolService.sol +0 -30
  644. package/contracts/instance/service/IProductService.sol +0 -58
  645. package/contracts/instance/service/PoolService.sol +0 -123
  646. package/contracts/instance/service/ProductService.sol +0 -354
  647. package/contracts/registry/IChainNft.sol +0 -21
  648. package/contracts/registry/IRegistryLinked.sol +0 -8
  649. package/contracts/shared/IOwnable.sol +0 -6
  650. package/contracts/test/TestFee.sol +0 -25
  651. package/contracts/test/TestPool.sol +0 -22
  652. package/contracts/test/TestProduct.sol +0 -44
  653. package/contracts/test/TestRegisterable.sol +0 -19
  654. package/contracts/test/TestRoleId.sol +0 -14
  655. package/contracts/test/TestService.sol +0 -32
  656. package/contracts/test/TestToken.sol +0 -26
  657. package/contracts/test/TestVersion.sol +0 -44
  658. package/contracts/test/TestVersionable.sol +0 -17
  659. package/contracts/types/ChainId.sol +0 -38
  660. package/contracts/types/Fee.sol +0 -51
  661. package/contracts/types/NftIdSet.sol +0 -60
  662. package/contracts/types/ObjectType.sol +0 -115
  663. package/contracts/types/RoleId.sol +0 -38
@@ -0,0 +1,822 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "PricingServiceManager",
4
+ "sourceName": "contracts/product/PricingServiceManager.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "address",
15
+ "name": "registryAddress",
16
+ "type": "address"
17
+ },
18
+ {
19
+ "internalType": "bytes32",
20
+ "name": "salt",
21
+ "type": "bytes32"
22
+ }
23
+ ],
24
+ "stateMutability": "nonpayable",
25
+ "type": "constructor"
26
+ },
27
+ {
28
+ "inputs": [
29
+ {
30
+ "internalType": "NftId",
31
+ "name": "nftId",
32
+ "type": "uint96"
33
+ }
34
+ ],
35
+ "name": "ErrorNftOwnableAlreadyLinked",
36
+ "type": "error"
37
+ },
38
+ {
39
+ "inputs": [
40
+ {
41
+ "internalType": "address",
42
+ "name": "contractAddress",
43
+ "type": "address"
44
+ }
45
+ ],
46
+ "name": "ErrorNftOwnableContractNotRegistered",
47
+ "type": "error"
48
+ },
49
+ {
50
+ "inputs": [],
51
+ "name": "ErrorNftOwnableInitialOwnerZero",
52
+ "type": "error"
53
+ },
54
+ {
55
+ "inputs": [
56
+ {
57
+ "internalType": "address",
58
+ "name": "account",
59
+ "type": "address"
60
+ }
61
+ ],
62
+ "name": "ErrorNftOwnableNotOwner",
63
+ "type": "error"
64
+ },
65
+ {
66
+ "inputs": [
67
+ {
68
+ "internalType": "address",
69
+ "name": "registryAddress",
70
+ "type": "address"
71
+ }
72
+ ],
73
+ "name": "ErrorNotRegistry",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [],
78
+ "name": "ErrorProxyManagerAlreadyDeployed",
79
+ "type": "error"
80
+ },
81
+ {
82
+ "inputs": [
83
+ {
84
+ "internalType": "Version",
85
+ "name": "nextVersion",
86
+ "type": "uint24"
87
+ }
88
+ ],
89
+ "name": "ErrorProxyManagerNextVersionNotIncreasing",
90
+ "type": "error"
91
+ },
92
+ {
93
+ "inputs": [],
94
+ "name": "ErrorProxyManagerNotYetDeployed",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "inputs": [],
99
+ "name": "ErrorProxyManagerZeroVersion",
100
+ "type": "error"
101
+ },
102
+ {
103
+ "inputs": [],
104
+ "name": "InvalidInitialization",
105
+ "type": "error"
106
+ },
107
+ {
108
+ "inputs": [],
109
+ "name": "NotInitializing",
110
+ "type": "error"
111
+ },
112
+ {
113
+ "anonymous": false,
114
+ "inputs": [
115
+ {
116
+ "indexed": false,
117
+ "internalType": "uint64",
118
+ "name": "version",
119
+ "type": "uint64"
120
+ }
121
+ ],
122
+ "name": "Initialized",
123
+ "type": "event"
124
+ },
125
+ {
126
+ "anonymous": false,
127
+ "inputs": [
128
+ {
129
+ "indexed": true,
130
+ "internalType": "address",
131
+ "name": "proxy",
132
+ "type": "address"
133
+ },
134
+ {
135
+ "indexed": false,
136
+ "internalType": "address",
137
+ "name": "initialImplementation",
138
+ "type": "address"
139
+ }
140
+ ],
141
+ "name": "LogProxyManagerVersionableDeployed",
142
+ "type": "event"
143
+ },
144
+ {
145
+ "anonymous": false,
146
+ "inputs": [
147
+ {
148
+ "indexed": true,
149
+ "internalType": "address",
150
+ "name": "proxy",
151
+ "type": "address"
152
+ },
153
+ {
154
+ "indexed": false,
155
+ "internalType": "address",
156
+ "name": "upgradedImplementation",
157
+ "type": "address"
158
+ }
159
+ ],
160
+ "name": "LogProxyManagerVersionableUpgraded",
161
+ "type": "event"
162
+ },
163
+ {
164
+ "inputs": [],
165
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
166
+ "outputs": [
167
+ {
168
+ "internalType": "bytes32",
169
+ "name": "",
170
+ "type": "bytes32"
171
+ }
172
+ ],
173
+ "stateMutability": "view",
174
+ "type": "function"
175
+ },
176
+ {
177
+ "inputs": [
178
+ {
179
+ "internalType": "address",
180
+ "name": "initialImplementation",
181
+ "type": "address"
182
+ },
183
+ {
184
+ "internalType": "bytes",
185
+ "name": "initializationData",
186
+ "type": "bytes"
187
+ }
188
+ ],
189
+ "name": "deploy",
190
+ "outputs": [
191
+ {
192
+ "internalType": "contract IVersionable",
193
+ "name": "versionable",
194
+ "type": "address"
195
+ }
196
+ ],
197
+ "stateMutability": "nonpayable",
198
+ "type": "function"
199
+ },
200
+ {
201
+ "inputs": [
202
+ {
203
+ "internalType": "address",
204
+ "name": "initialImplementation",
205
+ "type": "address"
206
+ },
207
+ {
208
+ "internalType": "bytes",
209
+ "name": "initializationData",
210
+ "type": "bytes"
211
+ },
212
+ {
213
+ "internalType": "bytes32",
214
+ "name": "salt",
215
+ "type": "bytes32"
216
+ }
217
+ ],
218
+ "name": "deployDetermenistic",
219
+ "outputs": [
220
+ {
221
+ "internalType": "contract IVersionable",
222
+ "name": "versionable",
223
+ "type": "address"
224
+ }
225
+ ],
226
+ "stateMutability": "nonpayable",
227
+ "type": "function"
228
+ },
229
+ {
230
+ "inputs": [
231
+ {
232
+ "internalType": "address",
233
+ "name": "proxyOwner",
234
+ "type": "address"
235
+ },
236
+ {
237
+ "internalType": "bytes",
238
+ "name": "deployData",
239
+ "type": "bytes"
240
+ }
241
+ ],
242
+ "name": "getDeployData",
243
+ "outputs": [
244
+ {
245
+ "internalType": "bytes",
246
+ "name": "data",
247
+ "type": "bytes"
248
+ }
249
+ ],
250
+ "stateMutability": "pure",
251
+ "type": "function"
252
+ },
253
+ {
254
+ "inputs": [],
255
+ "name": "getNftId",
256
+ "outputs": [
257
+ {
258
+ "internalType": "NftId",
259
+ "name": "",
260
+ "type": "uint96"
261
+ }
262
+ ],
263
+ "stateMutability": "view",
264
+ "type": "function"
265
+ },
266
+ {
267
+ "inputs": [],
268
+ "name": "getOwner",
269
+ "outputs": [
270
+ {
271
+ "internalType": "address",
272
+ "name": "",
273
+ "type": "address"
274
+ }
275
+ ],
276
+ "stateMutability": "view",
277
+ "type": "function"
278
+ },
279
+ {
280
+ "inputs": [],
281
+ "name": "getPricingService",
282
+ "outputs": [
283
+ {
284
+ "internalType": "contract PricingService",
285
+ "name": "",
286
+ "type": "address"
287
+ }
288
+ ],
289
+ "stateMutability": "view",
290
+ "type": "function"
291
+ },
292
+ {
293
+ "inputs": [],
294
+ "name": "getProxy",
295
+ "outputs": [
296
+ {
297
+ "internalType": "contract UpgradableProxyWithAdmin",
298
+ "name": "",
299
+ "type": "address"
300
+ }
301
+ ],
302
+ "stateMutability": "view",
303
+ "type": "function"
304
+ },
305
+ {
306
+ "inputs": [],
307
+ "name": "getRegistry",
308
+ "outputs": [
309
+ {
310
+ "internalType": "contract IRegistry",
311
+ "name": "",
312
+ "type": "address"
313
+ }
314
+ ],
315
+ "stateMutability": "view",
316
+ "type": "function"
317
+ },
318
+ {
319
+ "inputs": [
320
+ {
321
+ "internalType": "bytes",
322
+ "name": "upgradeData",
323
+ "type": "bytes"
324
+ }
325
+ ],
326
+ "name": "getUpgradeData",
327
+ "outputs": [
328
+ {
329
+ "internalType": "bytes",
330
+ "name": "data",
331
+ "type": "bytes"
332
+ }
333
+ ],
334
+ "stateMutability": "pure",
335
+ "type": "function"
336
+ },
337
+ {
338
+ "inputs": [],
339
+ "name": "getVersion",
340
+ "outputs": [
341
+ {
342
+ "internalType": "Version",
343
+ "name": "",
344
+ "type": "uint24"
345
+ }
346
+ ],
347
+ "stateMutability": "view",
348
+ "type": "function"
349
+ },
350
+ {
351
+ "inputs": [
352
+ {
353
+ "internalType": "uint256",
354
+ "name": "idx",
355
+ "type": "uint256"
356
+ }
357
+ ],
358
+ "name": "getVersion",
359
+ "outputs": [
360
+ {
361
+ "internalType": "Version",
362
+ "name": "",
363
+ "type": "uint24"
364
+ }
365
+ ],
366
+ "stateMutability": "view",
367
+ "type": "function"
368
+ },
369
+ {
370
+ "inputs": [],
371
+ "name": "getVersionCount",
372
+ "outputs": [
373
+ {
374
+ "internalType": "uint256",
375
+ "name": "",
376
+ "type": "uint256"
377
+ }
378
+ ],
379
+ "stateMutability": "view",
380
+ "type": "function"
381
+ },
382
+ {
383
+ "inputs": [
384
+ {
385
+ "internalType": "Version",
386
+ "name": "_version",
387
+ "type": "uint24"
388
+ }
389
+ ],
390
+ "name": "getVersionInfo",
391
+ "outputs": [
392
+ {
393
+ "components": [
394
+ {
395
+ "internalType": "Version",
396
+ "name": "version",
397
+ "type": "uint24"
398
+ },
399
+ {
400
+ "internalType": "address",
401
+ "name": "implementation",
402
+ "type": "address"
403
+ },
404
+ {
405
+ "internalType": "address",
406
+ "name": "activatedBy",
407
+ "type": "address"
408
+ },
409
+ {
410
+ "internalType": "Timestamp",
411
+ "name": "activatedAt",
412
+ "type": "uint40"
413
+ },
414
+ {
415
+ "internalType": "Blocknumber",
416
+ "name": "activatedIn",
417
+ "type": "uint32"
418
+ }
419
+ ],
420
+ "internalType": "struct ProxyManager.VersionInfo",
421
+ "name": "",
422
+ "type": "tuple"
423
+ }
424
+ ],
425
+ "stateMutability": "view",
426
+ "type": "function"
427
+ },
428
+ {
429
+ "inputs": [],
430
+ "name": "initializeERC165",
431
+ "outputs": [],
432
+ "stateMutability": "nonpayable",
433
+ "type": "function"
434
+ },
435
+ {
436
+ "inputs": [
437
+ {
438
+ "internalType": "address",
439
+ "name": "initialOwner",
440
+ "type": "address"
441
+ },
442
+ {
443
+ "internalType": "address",
444
+ "name": "registryAddress",
445
+ "type": "address"
446
+ }
447
+ ],
448
+ "name": "initializeNftOwnable",
449
+ "outputs": [],
450
+ "stateMutability": "nonpayable",
451
+ "type": "function"
452
+ },
453
+ {
454
+ "inputs": [
455
+ {
456
+ "internalType": "address",
457
+ "name": "registry",
458
+ "type": "address"
459
+ }
460
+ ],
461
+ "name": "initializeProxyManager",
462
+ "outputs": [],
463
+ "stateMutability": "nonpayable",
464
+ "type": "function"
465
+ },
466
+ {
467
+ "inputs": [
468
+ {
469
+ "internalType": "address",
470
+ "name": "registryAddress",
471
+ "type": "address"
472
+ }
473
+ ],
474
+ "name": "initializeRegistryLinked",
475
+ "outputs": [],
476
+ "stateMutability": "nonpayable",
477
+ "type": "function"
478
+ },
479
+ {
480
+ "inputs": [],
481
+ "name": "linkToProxy",
482
+ "outputs": [
483
+ {
484
+ "internalType": "NftId",
485
+ "name": "",
486
+ "type": "uint96"
487
+ }
488
+ ],
489
+ "stateMutability": "nonpayable",
490
+ "type": "function"
491
+ },
492
+ {
493
+ "inputs": [],
494
+ "name": "linkToRegisteredNftId",
495
+ "outputs": [
496
+ {
497
+ "internalType": "NftId",
498
+ "name": "nftId",
499
+ "type": "uint96"
500
+ }
501
+ ],
502
+ "stateMutability": "nonpayable",
503
+ "type": "function"
504
+ },
505
+ {
506
+ "inputs": [
507
+ {
508
+ "internalType": "bytes4",
509
+ "name": "interfaceId",
510
+ "type": "bytes4"
511
+ }
512
+ ],
513
+ "name": "registerInterface",
514
+ "outputs": [],
515
+ "stateMutability": "nonpayable",
516
+ "type": "function"
517
+ },
518
+ {
519
+ "inputs": [
520
+ {
521
+ "internalType": "bytes4",
522
+ "name": "interfaceId",
523
+ "type": "bytes4"
524
+ }
525
+ ],
526
+ "name": "supportsInterface",
527
+ "outputs": [
528
+ {
529
+ "internalType": "bool",
530
+ "name": "",
531
+ "type": "bool"
532
+ }
533
+ ],
534
+ "stateMutability": "view",
535
+ "type": "function"
536
+ },
537
+ {
538
+ "inputs": [
539
+ {
540
+ "internalType": "address",
541
+ "name": "newImplementation",
542
+ "type": "address"
543
+ },
544
+ {
545
+ "internalType": "bytes",
546
+ "name": "upgradeData",
547
+ "type": "bytes"
548
+ }
549
+ ],
550
+ "name": "upgrade",
551
+ "outputs": [
552
+ {
553
+ "internalType": "contract IVersionable",
554
+ "name": "versionable",
555
+ "type": "address"
556
+ }
557
+ ],
558
+ "stateMutability": "nonpayable",
559
+ "type": "function"
560
+ }
561
+ ],
562
+ "bytecode": "0x60806040523480156200001157600080fd5b50604051620085a2380380620085a2833981016040819052620000349162000b98565b816200004081620000e9565b50600081604051620000529062000b5f565b8190604051809103906000f590508015801562000073573d6000803e3d6000fd5b50604080516001600160a01b038681166020830152308284015287166060808301919091528251808303909101815260809091019091529091506000620000bc83838662000209565b600580546001600160a01b0319166001600160a01b03929092169190911790555062000d71945050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff1615906001600160401b0316600081158015620001345750825b90506000826001600160401b03166001148015620001515750303b155b90508115801562000160575080155b156200017f5760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b03191660011785558315620001ae57845460ff60401b1916680100000000000000001785555b620001ba3387620003ab565b83156200020157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b60006200021562000444565b6001600160a01b0316336001600160a01b0316146200024e5760405163086391f760e31b81523360048201526024015b60405180910390fd5b60045415620002705760405163402b135f60e11b815260040160405180910390fd5b60006200027c62000444565b9050308386826200028e85896200059d565b6040516200029c9062000b6d565b620002aa9392919062000c21565b8190604051809103906000f5905080158015620002cb573d6000803e3d6000fd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b815290519194506200035e918591630d8e6e2c9160048083019260209291908290030181865afa15801562000330573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000356919062000c58565b8784620005f7565b6002546040516001600160a01b038881168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b620003b5620009ae565b620003c081620009ff565b620003ca62000b17565b6001600160a01b038216620003f25760405163f17ef42d60e01b815260040160405180910390fd5b507f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546001600160601b03166c010000000000000000000000006001600160a01b0390931692909202919091179055565b6000807f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015620004c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004ed919062000c86565b156200057e576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801562000552573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000578919062000caa565b91505090565b546c0100000000000000000000000090046001600160a01b0316919050565b60606349bb9e4b60e01b8383604051602401620005bc92919062000cc8565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b620006798373__$8eede297b65ed5a56eb3f84d8232ae93f5$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af415801562000646573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200066c919062000c58565b62ffffff90811691161490565b1562000698576040516348c618db60e01b815260040160405180910390fd5b60045415620008035760048054620006b39060019062000cf6565b81548110620006c657620006c662000d18565b60009182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af41580156200073b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000761919062000d2e565b604051635560100760e01b815262ffffff8516600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015620007b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007dc919062000d2e565b116200080357604051633e614b6d60e11b815262ffffff8416600482015260240162000245565b600480546001810182556000829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af4158015620008d7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008fd919062000d48565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff968716600090815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16620009fd57604051631afcd79f60e31b815260040160405180910390fd5b565b62000a09620009ae565b806001600160a01b03163b60000362000a415760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000245565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e607072160e01b60048201526301ffc9a790602401602060405180830381865afa92505050801562000abe575060408051601f3d908101601f1916820190925262000abb9181019062000c86565b60015b62000ae85760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000245565b8062000b135760405163fdeac91f60e01b81526001600160a01b038316600482015260240162000245565b5050565b62000b21620009ae565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b613ed080620037a383390190565b610f2f806200767383390190565b80516001600160a01b038116811462000b9357600080fd5b919050565b60008060006060848603121562000bae57600080fd5b62000bb98462000b7b565b925062000bc96020850162000b7b565b9150604084015190509250925092565b6000815180845260005b8181101562000c015760208185018101518683018201520162000be3565b506000602082860101526020601f19601f83011685010191505092915050565b6001600160a01b0384811682528316602082015260606040820181905260009062000c4f9083018462000bd9565b95945050505050565b60006020828403121562000c6b57600080fd5b815162ffffff8116811462000c7f57600080fd5b9392505050565b60006020828403121562000c9957600080fd5b8151801515811462000c7f57600080fd5b60006020828403121562000cbd57600080fd5b62000c7f8262000b7b565b6001600160a01b038316815260406020820181905260009062000cee9083018462000bd9565b949350505050565b81810381811115620005f157634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006020828403121562000d4157600080fd5b5051919050565b60006020828403121562000d5b57600080fd5b815164ffffffffff8116811462000c7f57600080fd5b612a228062000d816000396000f3fe60806040523480156200001157600080fd5b5060043610620001695760003560e01c8063675393bf11620000d3578063ada9652e1162000086578063ada9652e1462000439578063b88da7591462000450578063c987336c1462000467578063e97fac05146200047e578063f7c34ee01462000495578063fd0c63d914620004ac57600080fd5b8063675393bf14620003ca578063893d20e814620003e15780638e9afce614620003eb578063933a9ce81462000402578063946dfcfe14620004145780639fe5970e146200042757600080fd5b80631775564d116200012c5780631775564d146200023e578063214cdb80146200026457806336fc697e146200027b5780634d459c9014620002855780635ab1bd531462000398578063644c45e014620003aa57600080fd5b806301ffc9a7146200016e578063058f7a9714620001b357806307484e8014620001cc5780630d8e6e2c14620001fc578063138461e0146200021b575b600080fd5b6200019e6200017f36600462001645565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b620001ca620001c43660046200168e565b620004b6565b005b620001e3620001dd36600462001759565b620005cf565b6040516001600160a01b039091168152602001620001aa565b6200020662000771565b60405162ffffff9091168152602001620001aa565b62000225620007e7565b6040516001600160601b039091168152602001620001aa565b620002556200024f366004620017b8565b620007f4565b604051620001aa919062001856565b620001ca6200027536600462001645565b6200084e565b620001ca6200087d565b6200033a620002963660046200187d565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091525062ffffff908116600090815260036020908152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001620001aa565b6001546001600160a01b0316620001e3565b600080516020620029cd833981519152546001600160601b031662000225565b620001ca620003db3660046200168e565b620008c5565b620001e3620009de565b62000255620003fc3660046200189d565b62000b1d565b6002546001600160a01b0316620001e3565b6004545b604051908152602001620001aa565b6005546001600160a01b0316620001e3565b62000418600080516020620029cd83398151915281565b6200020662000461366004620018de565b62000b72565b620001e362000478366004620017b8565b62000bb6565b620001e36200048f366004620017b8565b62000df4565b620001ca620004a6366004620018f8565b62000f8c565b620002256200100b565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff16600081158015620004fd5750825b905060008267ffffffffffffffff1660011480156200051b5750303b155b9050811580156200052a575080155b15620005495760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156200057457845460ff60401b1916600160401b1785555b62000580338762000f8c565b8315620005c757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b6000620005db620009de565b6001600160a01b0316336001600160a01b031614620006145760405163086391f760e31b81523360048201526024015b60405180910390fd5b60045415620006365760405163402b135f60e11b815260040160405180910390fd5b600062000642620009de565b905030838682620006548589620007f4565b604051620006629062001637565b620006709392919062001936565b8190604051809103906000f590508015801562000691573d6000803e3d6000fd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b8152905191945062000724918591630d8e6e2c9160048083019260209291908290030181865afa158015620006f6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200071c91906200196d565b878462001025565b6002546040516001600160a01b038881168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b600254604080516303639b8b60e21b815290516000926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa158015620007bc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007e291906200196d565b905090565b6000620007e230620013dc565b60606349bb9e4b60e01b8383604051602401620008139291906200198d565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b62000858620015eb565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b62000887620015eb565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b620008cf620015eb565b806001600160a01b03163b600003620009075760405163fdeac91f60e01b81526001600160a01b03821660048201526024016200060b565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e607072160e01b60048201526301ffc9a790602401602060405180830381865afa92505050801562000984575060408051601f3d908101601f191682019092526200098191810190620019b3565b60015b620009ae5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016200060b565b80620009d95760405163fdeac91f60e01b81526001600160a01b03831660048201526024016200060b565b505b50565b600080600080516020620029cd83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801562000a50573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a769190620019b3565b1562000b07576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801562000adb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b019190620019d7565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b8260405160240162000b3a919062001856565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b60006004828154811062000b8a5762000b8a620019f7565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600062000bc2620009de565b6001600160a01b0316336001600160a01b03161462000bf75760405163086391f760e31b81523360048201526024016200060b565b60045460000362000c1b5760405163366dfd2160e21b815260040160405180910390fd5b600062000c27620009de565b9050600062000c3e6002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000c7e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ca49190620019d7565b6002549091506001600160a01b03908116908216639623609d828862000cca8962000b1d565b6040518463ffffffff1660e01b815260040162000cea9392919062001936565b600060405180830381600087803b15801562000d0557600080fd5b505af115801562000d1a573d6000803e3d6000fd5b50505050600260009054906101000a90046001600160a01b0316935062000da7846001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d79573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d9f91906200196d565b878562001025565b6002546040516001600160a01b038881168252909116907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b600062000e00620009de565b6001600160a01b0316336001600160a01b03161462000e355760405163086391f760e31b81523360048201526024016200060b565b6004541562000e575760405163402b135f60e11b815260040160405180910390fd5b600062000e63620009de565b905030848162000e748487620007f4565b60405162000e829062001637565b62000e909392919062001936565b604051809103906000f08015801562000ead573d6000803e3d6000fd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b8152905191945062000f40918591630d8e6e2c9160048083019260209291908290030181865afa15801562000f12573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f3891906200196d565b868462001025565b6002546040516001600160a01b038781168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a2505092915050565b62000f96620015eb565b62000fa181620008c5565b62000fab6200087d565b6001600160a01b03821662000fd35760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020620029cd83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600254600090620007e2906001600160a01b0316620013dc565b620010a78373__$8eede297b65ed5a56eb3f84d8232ae93f5$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af415801562001074573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200109a91906200196d565b62ffffff90811691161490565b15620010c6576040516348c618db60e01b815260040160405180910390fd5b60045415620012315760048054620010e19060019062001a0d565b81548110620010f457620010f4620019f7565b60009182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af415801562001169573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200118f919062001a2f565b604051635560100760e01b815262ffffff8516600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015620011e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200120a919062001a2f565b116200123157604051633e614b6d60e11b815262ffffff841660048201526024016200060b565b600480546001810182556000829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af415801562001305573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200132b919062001a49565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff968716600090815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b600080600080516020620029cd83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156200144e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620014749190620019b3565b15620014a25780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016200060b565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015620014f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200151d9190620019b3565b620015475760405163b9304b0d60e01b81526001600160a01b03841660048201526024016200060b565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa1580156200159c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015c2919062001a72565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166200163557604051631afcd79f60e31b815260040160405180910390fd5b565b610f2f8062001a9e83390190565b6000602082840312156200165857600080fd5b81356001600160e01b0319811681146200167157600080fd5b9392505050565b6001600160a01b0381168114620009db57600080fd5b600060208284031215620016a157600080fd5b8135620016718162001678565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620016d657600080fd5b813567ffffffffffffffff80821115620016f457620016f4620016ae565b604051601f8301601f19908116603f011681019082821181831017156200171f576200171f620016ae565b816040528381528660208588010111156200173957600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156200176f57600080fd5b83356200177c8162001678565b9250602084013567ffffffffffffffff8111156200179957600080fd5b620017a786828701620016c4565b925050604084013590509250925092565b60008060408385031215620017cc57600080fd5b8235620017d98162001678565b9150602083013567ffffffffffffffff811115620017f657600080fd5b6200180485828601620016c4565b9150509250929050565b6000815180845260005b81811015620018365760208185018101518683018201520162001818565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006200167160208301846200180e565b62ffffff81168114620009db57600080fd5b6000602082840312156200189057600080fd5b813562001671816200186b565b600060208284031215620018b057600080fd5b813567ffffffffffffffff811115620018c857600080fd5b620018d684828501620016c4565b949350505050565b600060208284031215620018f157600080fd5b5035919050565b600080604083850312156200190c57600080fd5b8235620019198162001678565b915060208301356200192b8162001678565b809150509250929050565b6001600160a01b0384811682528316602082015260606040820181905260009062001964908301846200180e565b95945050505050565b6000602082840312156200198057600080fd5b815162001671816200186b565b6001600160a01b0383168152604060208201819052600090620018d6908301846200180e565b600060208284031215620019c657600080fd5b815180151581146200167157600080fd5b600060208284031215620019ea57600080fd5b8151620016718162001678565b634e487b7160e01b600052603260045260246000fd5b818103818111156200084857634e487b7160e01b600052601160045260246000fd5b60006020828403121562001a4257600080fd5b5051919050565b60006020828403121562001a5c57600080fd5b815164ffffffffff811681146200167157600080fd5b60006020828403121562001a8557600080fd5b81516001600160601b03811681146200167157600080fdfe60a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea26469706673582212207fc3be0b67ab5a6f6fd34205d4d385e237910f1b59dc83ca95e83dbffe6cde3f64736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a264697066735822122089f7fd51ad69195c8c11aa62b343f12a820929ad2ebedca5fddfa09596a9d07064736f6c6343000814003360806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b613dea80620000e66000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063644c45e0116100b85780638fb360371161007c5780638fb36037146102e9578063ada9652e1461030a578063b68d18091461031f578063bf7e214f14610339578063f4bfe53a14610357578063f7c34ee01461037757600080fd5b8063644c45e01461028a578063675393bf146102a85780637a9e5e4b146102bb578063893d20e8146102ce5780638e32e979146102d657600080fd5b8063214cdb801161010a578063214cdb801461020f57806327bb7a3314610224578063329d6e741461023757806336fc697e1461024a57806349bb9e4b146102525780635ab1bd531461026557600080fd5b806301ffc9a7146101475780630d8e6e2c146101895780630fec111c146101a5578063138461e0146101ba5780631eff4b22146101da575b600080fd5b610174610155366004612ea1565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61019161038a565b60405162ffffff9091168152602001610180565b6101ad610414565b6040516101809190612f1b565b6101c26105d8565b6040516001600160601b039091168152602001610180565b6102017f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610180565b61022261021d366004612ea1565b6105e3565b005b610222610232366004613137565b610610565b6102226102453660046131cf565b6106b5565b610222610802565b610222610260366004613203565b610848565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610180565b600080516020613d55833981519152546001600160601b03166101c2565b6102226102b6366004613252565b610947565b6102226102c9366004613252565b610a5a565b610272610af4565b6102226102e436600461326f565b610c2b565b6102f1610e70565b6040516001600160e01b03199091168152602001610180565b610201600080516020613d5583398151915281565b610327610ea8565b60405160ff9091168152602001610180565b600080516020613d75833981519152546001600160a01b0316610272565b61036a6103653660046132e3565b610eb2565b6040516101809190613391565b610222610385366004613480565b611307565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156103eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061040f91906134b9565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156104c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ec91906134ee565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610534610af4565b6001600160a01b031681526020018260010180546105519061350b565b80601f016020809104026020016040519081016040528092919081815260200182805461057d9061350b565b80156105ca5780601f1061059f576101008083540402835291602001916105ca565b820191906000526020600020905b8154815290600101906020018083116105ad57829003601f168201915b505050505081525091505090565b600061040f3061137e565b6105eb61157f565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b61061861157f565b6106228287611307565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3016106ab8382613593565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c6106d761038a565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610717573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061073b9190613652565b600080516020613d958339815191528054600160401b900460ff168061076e575080546001600160401b03808416911610155b1561078c5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556107b6836115b8565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b61080a61157f565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080516020613d958339815191528054600160401b810460ff1615906001600160401b031660008115801561087b5750825b90506000826001600160401b031660011480156108975750303b155b9050811580156108a5575080155b156108c35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156108ed57845460ff60401b1916600160401b1785555b6108f787876115c0565b831561093e57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b61094f61157f565b806001600160a01b03163b60000361098a5760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e607072160e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610a04575060408051601f3d908101601f19168201909252610a0191810190613686565b60015b610a2c5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610981565b80610a555760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610981565b505b50565b33610a7a600080516020613d75833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614610ab55760405162d1953b60e31b81526001600160a01b0382166004820152602401610981565b816001600160a01b03163b600003610aeb576040516361798f2f60e11b81526001600160a01b0383166004820152602401610981565b610a5582611710565b600080600080516020613d5583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610b64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b889190613686565b15610c15576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0f91906136ae565b91505090565b54600160601b90046001600160a01b0316919050565b610c3361157f565b610cb983846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9991906134ee565b610ca1611771565b60008560405180602001604052806000815250610610565b6001600160a01b03821615610cd657610cd1826117e9565b610e4b565b6000610cea6001546001600160a01b031690565b6001600160a01b031663d39e6043610d006117fa565b604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015610d50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7491906136d6565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015610db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddd91906136ae565b9050610e49816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4491906136ae565b6117e9565b505b610e5b634a531f3360e01b6105e3565b610e6b63b68d180960e01b6105e3565b505050565b600080516020613d75833981519152805460009190600160a01b900460ff16610e9a576000610c0f565b638fb3603760e01b91505090565b600061040f611835565b610eba612dfb565b600080600080610ed38c610ecc611870565b60006118ab565b91509150806001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3991906136ae565b6080830151604051633c5e741960e21b81529195506001600160a01b03169063f179d06490610f72908d908f908e908e906004016136f3565b602060405180830381865afa158015610f8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb391906134ee565b6040516302d764c760e21b81526001600160601b038e166004820152909350600092506001600160a01b0385169150630b5d931c9060240161020060405180830381865afa158015611009573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102d919061378c565b604051634793b4ab60e01b81526001600160601b03881660048201529091506000906001600160a01b03851690634793b4ab90602401600060405180830381865afa158015611080573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526110a8919081019061389c565b90506110bc81600001518360200151611b84565b156110fc57805160208301516040516311db892d60e01b81526001600160601b03808b166004830152928316602482015291166044820152606401610981565b611107838383611c15565b9450611114858383611dc5565b9450611122858388876120fd565b945061112d85612692565b94506111d473__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968760a001516040518263ffffffff1660e01b815260040161116f91815260200190565b602060405180830381865af415801561118c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b091906134ee565b6111cf6111c5886000015189602001516128c2565b88604001516128c2565b612949565b156111f257604051630f96c23560e01b815260040160405180910390fd5b8160a0015160200151856101c001511015611267576101208501516101a08601516101c08701516101e08801516102008901516102208a0151604051637bee97c760e11b81526004810196909652602486019490945260448501929092526064840152608483015260a482015260c401610981565b846102000151856101e00151866102200151611283919061397b565b61128d919061397b565b856101a00151146112f8576101208501516101a08601516101c08701516101e08801516102008901516102208a0151604051637bee97c760e11b81526004810196909652602486019490945260448501929092526064840152608483015260a482015260c401610981565b50505050979650505050505050565b61130f61157f565b61131881610947565b611320610802565b6001600160a01b0382166113475760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020613d5583398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600080600080516020613d5583398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156113ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114129190613686565b1561143e5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610981565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611492573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b69190613686565b6114de5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610981565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611532573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155691906134ee565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b600080516020613d9583398151915254600160401b900460ff166115b657604051631afcd79f60e31b815260040160405180910390fd5b565b61014261157f565b600080516020613d958339815191528054600160401b810460ff1615906001600160401b03166000811580156115f35750825b90506000826001600160401b0316600114801561160f5750303b155b90508115801561161d575080155b1561163b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561166557845460ff60401b1916600160401b1785555b6000808780602001905181019061167c919061398e565b925050915061168c82828b610c2b565b61169c637a5ff29d60e11b6105e3565b6116ac6116a76129d8565b612a13565b600280546001600160a01b0319166001600160a01b03929092169190911790555050831561093e57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610935565b600080516020613d7583398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b604051630dd958dd60e31b8152603c600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024015b602060405180830381865af41580156117c5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061040f91906136d6565b6117f161157f565b610a5781612b20565b604051630dd958dd60e31b81526028600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024016117a8565b604051630dd958dd60e31b815260e6600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024016117a8565b604051630dd958dd60e31b8152606e600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024016117a8565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015260015490919081906001600160a01b03166040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e090602401600060405180830381865afa158015611943573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261196b91908101906139d0565b925061197e85611979612b31565b612b6c565b156119d657611991836040015186612b6c565b156119d157604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610981565b611a6c565b6119eb83604001516119e6611870565b612bb1565b80611a015750611a0183604001516119e6612bf6565b80611a175750611a1783604001516119e66129d8565b80611a2d5750611a2d83604001516119e6612c31565b611a6c57604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff80881660248301529091166044820152606401610981565b611a798360200151612c6c565b91508315611b7b57816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015611abf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae391906136ae565b608084015160405163a166aa8960e01b81526001600160a01b03918216600482015291169063a166aa8990602401602060405180830381865afa158015611b2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b529190613686565b15611b7b57604051637d71120960e11b81526001600160601b0387166004820152602401610981565b50935093915050565b6040516399009c5160e01b81526001600160601b0380841660048301528216602482015260009073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044015b602060405180830381865af4158015611be8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0c9190613686565b90505b92915050565b611c1d612dfb565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015611c75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c999190613aa2565b606082015260405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015611cf6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1a9190613aa2565b6080820181815260408501516020015160c0840181905291829190611d4090839061397b565b9052505060c08301516020015160e08201819052608082018051829190611d6890839061397b565b9052505060208083015101516101008201819052608082018051829190611d9090839061397b565b905250506080808401516020015161012083018190529082018051829190611db990839061397b565b90525090949350505050565b611dcd612dfb565b60608401516040516322f5db0f60e11b815260009173__$bf7bc340cbb9229ef1de2c568356e67902$__916345ebb61e91611e0e9160040190815260200190565b602060405180830381865af4158015611e2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e4f9190613aa2565b90506000611e6582866040015160000151612d01565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af4158015611eb6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eda9190613aa2565b61014087018190526080870180519192508291611ef890839061397b565b90525060c085015151611f0c908390612d01565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af4158015611f5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f819190613aa2565b61016087018190526080870180519192508291611f9f90839061397b565b905250602084015151611fb3908390612d01565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af4158015612004573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120289190613aa2565b6101808701819052608087018051919250829161204690839061397b565b90525060808501515161205a908390612d01565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af41580156120ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120cf9190613aa2565b6101a0870181905260808701805191925082916120ed90839061397b565b90525085925050505b9392505050565b612105612dfb565b60025484516040516309741ce160e21b81526001600160601b0390911660048201526001600160c01b0319851660248201526001600160a01b03909116906325d0738490604401602060405180830381865afa158015612169573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061218d9190613686565b6121ba57506101208401516101c08501526101a08401516101e0850152608084015160a08501528361268a565b60a0840151604051631d3be47760e01b81526001600160c01b0319851660048201526000906001600160a01b03851690631d3be47790602401600060405180830381865afa158015612210573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526122389190810190613acf565b80516040516313d8ebc960e11b81526001600160601b0390911660048201529091506000906001600160a01b038616906327b1d79290602401600060405180830381865afa15801561228e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526122b69190810190613b7b565b80516040516368322c6360e11b81526001600160c01b031990911660048201529091506000906001600160a01b0387169063d06458c690602401600060405180830381865afa15801561230d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526123359190810190613c34565b9050600073__$bf7bc340cbb9229ef1de2c568356e67902$__6345ebb61e8b606001516040518263ffffffff1660e01b815260040161237691815260200190565b602060405180830381865af4158015612393573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b79190613aa2565b60608301516040516332292b2760e21b815273__$bf7bc340cbb9229ef1de2c568356e67902$__9263c8a4ac9c926123fa92600401918252602082015260400190565b602060405180830381865af4158015612417573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061243b9190613aa2565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af415801561248c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124b09190613aa2565b6102008b0181905260808b01516040516322f5db0f60e11b815291925073__$bf7bc340cbb9229ef1de2c568356e67902$__916345ebb61e916124f99160040190815260200190565b602060405180830381865af4158015612516573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061253a9190613aa2565b60408086015190516332292b2760e21b815273__$bf7bc340cbb9229ef1de2c568356e67902$__9263c8a4ac9c9261257d92600401918252602082015260400190565b602060405180830381865af415801561259a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125be9190613aa2565b604051632255341b60e11b8152600481019190915273__$bf7bc340cbb9229ef1de2c568356e67902$__906344aa683690602401602060405180830381865af415801561260f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126339190613aa2565b6102208b0181905260208601516101c08c01526101a08b0151612657908390613d2b565b6126619190613d2b565b6101e08b01526102208a015160808b015161267c9190613d2b565b60a08b015250889450505050505b949350505050565b61269a612dfb565b73__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968361014001518460c001516126c9919061397b565b6040518263ffffffff1660e01b81526004016126e791815260200190565b602060405180830381865af4158015612704573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061272891906134ee565b6001600160601b031682526102008201516101e083015161012084015173__$3bac17678db7ae928afa209f2f44deec9c$__92634c41dd9692909161276d919061397b565b612777919061397b565b6040518263ffffffff1660e01b815260040161279591815260200190565b602060405180830381865af41580156127b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127d691906134ee565b82602001906001600160601b031690816001600160601b03168152505073__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd968361018001518461010001518561016001518660e001518760600151612833919061397b565b61283d919061397b565b612847919061397b565b612851919061397b565b6040518263ffffffff1660e01b815260040161286f91815260200190565b602060405180830381865af415801561288c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b091906134ee565b6001600160601b031660408301525090565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015612925573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0c91906134ee565b60405163c4cade9d60e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d90604401602060405180830381865af41580156129ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129d09190613686565b159392505050565b604051630dd958dd60e31b81526078600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024016117a8565b6000612a276001546001600160a01b031690565b6001600160a01b031663d39e604383612a3e61038a565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015612a93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab791906136d6565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015612afc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0f91906136ae565b612b2861157f565b610a5781611710565b604051630dd958dd60e31b81526064600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024016117a8565b604051637adad14f60e01b815260ff80841660048301528216602482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90637adad14f90604401611bcb565b604051632c2f8a6760e01b815260ff80841660048301528216602482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90632c2f8a6790604401611bcb565b604051630dd958dd60e31b8152608c600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024016117a8565b604051630dd958dd60e31b81526082600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024016117a8565b6000612c806001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015612ccf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612cf791908101906139d0565b6080015192915050565b6000611c0c8383670de0b6b3a76400006000808060001985870985870292508281108382030391505080600003612d4b57838281612d4157612d41613d3e565b04925050506120f6565b808411612d925760405162461bcd60e51b81526020600482015260156024820152744d6174683a206d756c446976206f766572666c6f7760581b6044820152606401610981565b60008486880960026001871981018816978890046003810283188082028403028082028403028082028403028082028403028082028403029081029092039091026000889003889004909101858311909403939093029303949094049190911702949350505050565b60405180610240016040528060006001600160601b0316815260200160006001600160601b0316815260200160006001600160601b031681526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b600060208284031215612eb357600080fd5b81356001600160e01b0319811681146120f657600080fd5b60005b83811015612ee6578181015183820152602001612ece565b50506000910152565b60008151808452612f07816020860160208601612ecb565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a0830151612f8460c08401826001600160a01b03169052565b5060c083015160e08084015261268a610100840182612eef565b6001600160a01b0381168114610a5757600080fd5b6001600160601b0381168114610a5757600080fd5b60ff81168114610a5757600080fd5b8015158114610a5757600080fd5b634e487b7160e01b600052604160045260246000fd5b60405161012081016001600160401b038111828210171561301e5761301e612fe5565b60405290565b60405160c081016001600160401b038111828210171561301e5761301e612fe5565b60405160e081016001600160401b038111828210171561301e5761301e612fe5565b60405160a081016001600160401b038111828210171561301e5761301e612fe5565b604051601f8201601f191681016001600160401b03811182821017156130b2576130b2612fe5565b604052919050565b60006001600160401b038211156130d3576130d3612fe5565b50601f01601f191660200190565b600082601f8301126130f257600080fd5b8135613105613100826130ba565b61308a565b81815284602083860101111561311a57600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c0878903121561315057600080fd5b863561315b81612f9e565b9550602087013561316b81612fb3565b9450604087013561317b81612fc8565b9350606087013561318b81612fd7565b9250608087013561319b81612f9e565b915060a08701356001600160401b038111156131b657600080fd5b6131c289828a016130e1565b9150509295509295509295565b6000602082840312156131e157600080fd5b81356001600160401b038111156131f757600080fd5b61268a848285016130e1565b6000806040838503121561321657600080fd5b823561322181612f9e565b915060208301356001600160401b0381111561323c57600080fd5b613248858286016130e1565b9150509250929050565b60006020828403121561326457600080fd5b81356120f681612f9e565b60008060006060848603121561328457600080fd5b833561328f81612f9e565b9250602084013561329f81612f9e565b915060408401356132af81612f9e565b809150509250925092565b6001600160c01b031981168114610a5757600080fd5b64ffffffffff81168114610a5757600080fd5b600080600080600080600060e0888a0312156132fe57600080fd5b873561330981612fb3565b96506020880135613319816132ba565b9550604088013561332981612fb3565b94506060880135613339816132d0565b935060808801356001600160401b0381111561335457600080fd5b6133608a828b016130e1565b93505060a088013561337181612fb3565b915060c0880135613381816132ba565b8091505092959891949750929550565b81516001600160601b03168152610240810160208301516133bd60208401826001600160601b03169052565b5060408301516133d860408401826001600160601b03169052565b50606083810151908301526080808401519083015260a0808401519083015260c0808401519083015260e08084015190830152610100808401519083015261012080840151908301526101408084015190830152610160808401519083015261018080840151908301526101a080840151908301526101c080840151908301526101e08084015190830152610200808401519083015261022092830151929091019190915290565b6000806040838503121561349357600080fd5b823561349e81612f9e565b915060208301356134ae81612f9e565b809150509250929050565b6000602082840312156134cb57600080fd5b815162ffffff811681146120f657600080fd5b80516134e981612fb3565b919050565b60006020828403121561350057600080fd5b81516120f681612fb3565b600181811c9082168061351f57607f821691505b60208210810361353f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610e6b57600081815260208120601f850160051c8101602086101561356c5750805b601f850160051c820191505b8181101561358b57828155600101613578565b505050505050565b81516001600160401b038111156135ac576135ac612fe5565b6135c0816135ba845461350b565b84613545565b602080601f8311600181146135f557600084156135dd5750858301515b600019600386901b1c1916600185901b17855561358b565b600085815260208120601f198616915b8281101561362457888601518255948401946001909101908401613605565b50858210156136425787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561366457600080fd5b81516001600160401b03811681146120f657600080fd5b80516134e981612fd7565b60006020828403121561369857600080fd5b81516120f681612fd7565b80516134e981612f9e565b6000602082840312156136c057600080fd5b81516120f681612f9e565b80516134e981612fc8565b6000602082840312156136e857600080fd5b81516120f681612fc8565b6001600160601b03851681526001600160401b0360c01b8416602082015264ffffffffff831660408201526080606082015260006137346080830184612eef565b9695505050505050565b60006040828403121561375057600080fd5b604051604081018181106001600160401b038211171561377257613772612fe5565b604052825181526020928301519281019290925250919050565b6000610200828403121561379f57600080fd5b6137a7612ffb565b6137b0836134de565b81526137be602084016134de565b60208201526137d0846040850161373e565b60408201526137e2846080850161373e565b60608201526137f48460c0850161373e565b60808201526101006138088582860161373e565b60a083015261381b85610140860161373e565b60c083015261382e85610180860161373e565b60e0830152613841856101c0860161373e565b908201529392505050565b600082601f83011261385d57600080fd5b815161386b613100826130ba565b81815284602083860101111561388057600080fd5b61268a826020830160208701612ecb565b80516134e9816132d0565b6000602082840312156138ae57600080fd5b81516001600160401b03808211156138c557600080fd5b9083019060e082860312156138d957600080fd5b6138e1613024565b82516138ec81612fb3565b81526138fb866020850161373e565b602082015260608301518281111561391257600080fd5b61391e8782860161384c565b60408301525060808301519150613934826132d0565b81606082015261394660a08401613891565b608082015261395760c08401613891565b60a082015295945050505050565b634e487b7160e01b600052601160045260246000fd5b80820180821115611c0f57611c0f613965565b6000806000606084860312156139a357600080fd5b83516139ae81612f9e565b60208501519093506139bf81612f9e565b60408501519092506132af81612f9e565b6000602082840312156139e257600080fd5b81516001600160401b03808211156139f957600080fd5b9083019060e08286031215613a0d57600080fd5b613a15613046565b613a1e836134de565b8152613a2c602084016134de565b6020820152613a3d604084016136cb565b6040820152613a4e6060840161367b565b6060820152613a5f608084016136a3565b6080820152613a7060a084016136a3565b60a082015260c083015182811115613a8757600080fd5b613a938782860161384c565b60c08301525095945050505050565b600060208284031215613ab457600080fd5b5051919050565b805163ffffffff811681146134e957600080fd5b600060208284031215613ae157600080fd5b81516001600160401b0380821115613af857600080fd5b9083019060e08286031215613b0c57600080fd5b613b14613046565b613b1d836134de565b8152602083015182811115613b3157600080fd5b613b3d8782860161384c565b60208301525060408301516040820152613b5960608401613abb565b6060820152613b6a60808401613abb565b6080820152613a7060a08401613891565b600060208284031215613b8d57600080fd5b81516001600160401b0380821115613ba457600080fd5b9083019060a08286031215613bb857600080fd5b613bc0613068565b8251613bcb816132ba565b81526020830151613bdb81612fd7565b6020820152604083015182811115613bf257600080fd5b613bfe8782860161384c565b60408301525060608301519150613c1482612fb3565b816060820152613c2660808401613abb565b608082015295945050505050565b600060208284031215613c4657600080fd5b81516001600160401b0380821115613c5d57600080fd5b908301906101208286031215613c7257600080fd5b613c7a612ffb565b825182811115613c8957600080fd5b613c958782860161384c565b825250602083015160208201526040830151604082015260608301516060820152613cc260808401613abb565b6080820152613cd360a08401613abb565b60a0820152613ce460c0840161367b565b60c0820152613cf560e0840161367b565b60e08201526101008084015183811115613d0e57600080fd5b613d1a8882870161384c565b918301919091525095945050505050565b81810381811115611c0f57611c0f613965565b634e487b7160e01b600052601260045260246000fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212205906c9356662f0401b2acc49f27e1d963081320bd270045b4a3274a711b78a8e64736f6c6343000814003360a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea26469706673582212207fc3be0b67ab5a6f6fd34205d4d385e237910f1b59dc83ca95e83dbffe6cde3f64736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103",
563
+ "deployedBytecode": "0x60806040523480156200001157600080fd5b5060043610620001695760003560e01c8063675393bf11620000d3578063ada9652e1162000086578063ada9652e1462000439578063b88da7591462000450578063c987336c1462000467578063e97fac05146200047e578063f7c34ee01462000495578063fd0c63d914620004ac57600080fd5b8063675393bf14620003ca578063893d20e814620003e15780638e9afce614620003eb578063933a9ce81462000402578063946dfcfe14620004145780639fe5970e146200042757600080fd5b80631775564d116200012c5780631775564d146200023e578063214cdb80146200026457806336fc697e146200027b5780634d459c9014620002855780635ab1bd531462000398578063644c45e014620003aa57600080fd5b806301ffc9a7146200016e578063058f7a9714620001b357806307484e8014620001cc5780630d8e6e2c14620001fc578063138461e0146200021b575b600080fd5b6200019e6200017f36600462001645565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b620001ca620001c43660046200168e565b620004b6565b005b620001e3620001dd36600462001759565b620005cf565b6040516001600160a01b039091168152602001620001aa565b6200020662000771565b60405162ffffff9091168152602001620001aa565b62000225620007e7565b6040516001600160601b039091168152602001620001aa565b620002556200024f366004620017b8565b620007f4565b604051620001aa919062001856565b620001ca6200027536600462001645565b6200084e565b620001ca6200087d565b6200033a620002963660046200187d565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091525062ffffff908116600090815260036020908152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001620001aa565b6001546001600160a01b0316620001e3565b600080516020620029cd833981519152546001600160601b031662000225565b620001ca620003db3660046200168e565b620008c5565b620001e3620009de565b62000255620003fc3660046200189d565b62000b1d565b6002546001600160a01b0316620001e3565b6004545b604051908152602001620001aa565b6005546001600160a01b0316620001e3565b62000418600080516020620029cd83398151915281565b6200020662000461366004620018de565b62000b72565b620001e362000478366004620017b8565b62000bb6565b620001e36200048f366004620017b8565b62000df4565b620001ca620004a6366004620018f8565b62000f8c565b620002256200100b565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff16600081158015620004fd5750825b905060008267ffffffffffffffff1660011480156200051b5750303b155b9050811580156200052a575080155b15620005495760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156200057457845460ff60401b1916600160401b1785555b62000580338762000f8c565b8315620005c757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b6000620005db620009de565b6001600160a01b0316336001600160a01b031614620006145760405163086391f760e31b81523360048201526024015b60405180910390fd5b60045415620006365760405163402b135f60e11b815260040160405180910390fd5b600062000642620009de565b905030838682620006548589620007f4565b604051620006629062001637565b620006709392919062001936565b8190604051809103906000f590508015801562000691573d6000803e3d6000fd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b8152905191945062000724918591630d8e6e2c9160048083019260209291908290030181865afa158015620006f6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200071c91906200196d565b878462001025565b6002546040516001600160a01b038881168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b600254604080516303639b8b60e21b815290516000926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa158015620007bc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007e291906200196d565b905090565b6000620007e230620013dc565b60606349bb9e4b60e01b8383604051602401620008139291906200198d565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b62000858620015eb565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b62000887620015eb565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b620008cf620015eb565b806001600160a01b03163b600003620009075760405163fdeac91f60e01b81526001600160a01b03821660048201526024016200060b565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e607072160e01b60048201526301ffc9a790602401602060405180830381865afa92505050801562000984575060408051601f3d908101601f191682019092526200098191810190620019b3565b60015b620009ae5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016200060b565b80620009d95760405163fdeac91f60e01b81526001600160a01b03831660048201526024016200060b565b505b50565b600080600080516020620029cd83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801562000a50573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a769190620019b3565b1562000b07576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801562000adb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b019190620019d7565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b8260405160240162000b3a919062001856565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b60006004828154811062000b8a5762000b8a620019f7565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b600062000bc2620009de565b6001600160a01b0316336001600160a01b03161462000bf75760405163086391f760e31b81523360048201526024016200060b565b60045460000362000c1b5760405163366dfd2160e21b815260040160405180910390fd5b600062000c27620009de565b9050600062000c3e6002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000c7e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ca49190620019d7565b6002549091506001600160a01b03908116908216639623609d828862000cca8962000b1d565b6040518463ffffffff1660e01b815260040162000cea9392919062001936565b600060405180830381600087803b15801562000d0557600080fd5b505af115801562000d1a573d6000803e3d6000fd5b50505050600260009054906101000a90046001600160a01b0316935062000da7846001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d79573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d9f91906200196d565b878562001025565b6002546040516001600160a01b038881168252909116907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b600062000e00620009de565b6001600160a01b0316336001600160a01b03161462000e355760405163086391f760e31b81523360048201526024016200060b565b6004541562000e575760405163402b135f60e11b815260040160405180910390fd5b600062000e63620009de565b905030848162000e748487620007f4565b60405162000e829062001637565b62000e909392919062001936565b604051809103906000f08015801562000ead573d6000803e3d6000fd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b8152905191945062000f40918591630d8e6e2c9160048083019260209291908290030181865afa15801562000f12573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f3891906200196d565b868462001025565b6002546040516001600160a01b038781168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a2505092915050565b62000f96620015eb565b62000fa181620008c5565b62000fab6200087d565b6001600160a01b03821662000fd35760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020620029cd83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600254600090620007e2906001600160a01b0316620013dc565b620010a78373__$8eede297b65ed5a56eb3f84d8232ae93f5$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af415801562001074573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200109a91906200196d565b62ffffff90811691161490565b15620010c6576040516348c618db60e01b815260040160405180910390fd5b60045415620012315760048054620010e19060019062001a0d565b81548110620010f457620010f4620019f7565b60009182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af415801562001169573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200118f919062001a2f565b604051635560100760e01b815262ffffff8516600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af4158015620011e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200120a919062001a2f565b116200123157604051633e614b6d60e11b815262ffffff841660048201526024016200060b565b600480546001810182556000829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af415801562001305573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200132b919062001a49565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff968716600090815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b600080600080516020620029cd83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156200144e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620014749190620019b3565b15620014a25780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016200060b565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015620014f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200151d9190620019b3565b620015475760405163b9304b0d60e01b81526001600160a01b03841660048201526024016200060b565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa1580156200159c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015c2919062001a72565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166200163557604051631afcd79f60e31b815260040160405180910390fd5b565b610f2f8062001a9e83390190565b6000602082840312156200165857600080fd5b81356001600160e01b0319811681146200167157600080fd5b9392505050565b6001600160a01b0381168114620009db57600080fd5b600060208284031215620016a157600080fd5b8135620016718162001678565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620016d657600080fd5b813567ffffffffffffffff80821115620016f457620016f4620016ae565b604051601f8301601f19908116603f011681019082821181831017156200171f576200171f620016ae565b816040528381528660208588010111156200173957600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156200176f57600080fd5b83356200177c8162001678565b9250602084013567ffffffffffffffff8111156200179957600080fd5b620017a786828701620016c4565b925050604084013590509250925092565b60008060408385031215620017cc57600080fd5b8235620017d98162001678565b9150602083013567ffffffffffffffff811115620017f657600080fd5b6200180485828601620016c4565b9150509250929050565b6000815180845260005b81811015620018365760208185018101518683018201520162001818565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006200167160208301846200180e565b62ffffff81168114620009db57600080fd5b6000602082840312156200189057600080fd5b813562001671816200186b565b600060208284031215620018b057600080fd5b813567ffffffffffffffff811115620018c857600080fd5b620018d684828501620016c4565b949350505050565b600060208284031215620018f157600080fd5b5035919050565b600080604083850312156200190c57600080fd5b8235620019198162001678565b915060208301356200192b8162001678565b809150509250929050565b6001600160a01b0384811682528316602082015260606040820181905260009062001964908301846200180e565b95945050505050565b6000602082840312156200198057600080fd5b815162001671816200186b565b6001600160a01b0383168152604060208201819052600090620018d6908301846200180e565b600060208284031215620019c657600080fd5b815180151581146200167157600080fd5b600060208284031215620019ea57600080fd5b8151620016718162001678565b634e487b7160e01b600052603260045260246000fd5b818103818111156200084857634e487b7160e01b600052601160045260246000fd5b60006020828403121562001a4257600080fd5b5051919050565b60006020828403121562001a5c57600080fd5b815164ffffffffff811681146200167157600080fd5b60006020828403121562001a8557600080fd5b81516001600160601b03811681146200167157600080fdfe60a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea26469706673582212207fc3be0b67ab5a6f6fd34205d4d385e237910f1b59dc83ca95e83dbffe6cde3f64736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a264697066735822122089f7fd51ad69195c8c11aa62b343f12a820929ad2ebedca5fddfa09596a9d07064736f6c63430008140033",
564
+ "linkReferences": {
565
+ "contracts/type/Amount.sol": {
566
+ "AmountLib": [
567
+ {
568
+ "length": 20,
569
+ "start": 18877
570
+ },
571
+ {
572
+ "length": 20,
573
+ "start": 21700
574
+ },
575
+ {
576
+ "length": 20,
577
+ "start": 21829
578
+ },
579
+ {
580
+ "length": 20,
581
+ "start": 24357
582
+ },
583
+ {
584
+ "length": 20,
585
+ "start": 24528
586
+ },
587
+ {
588
+ "length": 20,
589
+ "start": 24702
590
+ },
591
+ {
592
+ "length": 20,
593
+ "start": 24948
594
+ },
595
+ {
596
+ "length": 20,
597
+ "start": 25083
598
+ }
599
+ ]
600
+ },
601
+ "contracts/type/NftId.sol": {
602
+ "NftIdLib": [
603
+ {
604
+ "length": 20,
605
+ "start": 1164
606
+ },
607
+ {
608
+ "length": 20,
609
+ "start": 6038
610
+ },
611
+ {
612
+ "length": 20,
613
+ "start": 8596
614
+ },
615
+ {
616
+ "length": 20,
617
+ "start": 15626
618
+ },
619
+ {
620
+ "length": 20,
621
+ "start": 17331
622
+ },
623
+ {
624
+ "length": 20,
625
+ "start": 19517
626
+ },
627
+ {
628
+ "length": 20,
629
+ "start": 21558
630
+ }
631
+ ]
632
+ },
633
+ "contracts/type/ObjectType.sol": {
634
+ "ObjectTypeLib": [
635
+ {
636
+ "length": 20,
637
+ "start": 20499
638
+ },
639
+ {
640
+ "length": 20,
641
+ "start": 20636
642
+ },
643
+ {
644
+ "length": 20,
645
+ "start": 20695
646
+ },
647
+ {
648
+ "length": 20,
649
+ "start": 20754
650
+ },
651
+ {
652
+ "length": 20,
653
+ "start": 25210
654
+ },
655
+ {
656
+ "length": 20,
657
+ "start": 25555
658
+ },
659
+ {
660
+ "length": 20,
661
+ "start": 25624
662
+ },
663
+ {
664
+ "length": 20,
665
+ "start": 25693
666
+ },
667
+ {
668
+ "length": 20,
669
+ "start": 25752
670
+ },
671
+ {
672
+ "length": 20,
673
+ "start": 25811
674
+ }
675
+ ]
676
+ },
677
+ "contracts/type/Timestamp.sol": {
678
+ "TimestampLib": [
679
+ {
680
+ "length": 20,
681
+ "start": 2204
682
+ },
683
+ {
684
+ "length": 20,
685
+ "start": 8267
686
+ }
687
+ ]
688
+ },
689
+ "contracts/type/UFixed.sol": {
690
+ "UFixedLib": [
691
+ {
692
+ "length": 20,
693
+ "start": 22125
694
+ },
695
+ {
696
+ "length": 20,
697
+ "start": 22277
698
+ },
699
+ {
700
+ "length": 20,
701
+ "start": 22444
702
+ },
703
+ {
704
+ "length": 20,
705
+ "start": 22611
706
+ },
707
+ {
708
+ "length": 20,
709
+ "start": 22778
710
+ },
711
+ {
712
+ "length": 20,
713
+ "start": 23492
714
+ },
715
+ {
716
+ "length": 20,
717
+ "start": 23636
718
+ },
719
+ {
720
+ "length": 20,
721
+ "start": 23771
722
+ },
723
+ {
724
+ "length": 20,
725
+ "start": 23896
726
+ },
727
+ {
728
+ "length": 20,
729
+ "start": 24023
730
+ },
731
+ {
732
+ "length": 20,
733
+ "start": 24158
734
+ }
735
+ ]
736
+ },
737
+ "contracts/type/Version.sol": {
738
+ "VersionLib": [
739
+ {
740
+ "length": 20,
741
+ "start": 1534
742
+ },
743
+ {
744
+ "length": 20,
745
+ "start": 1792
746
+ },
747
+ {
748
+ "length": 20,
749
+ "start": 1915
750
+ },
751
+ {
752
+ "length": 20,
753
+ "start": 7597
754
+ },
755
+ {
756
+ "length": 20,
757
+ "start": 7855
758
+ },
759
+ {
760
+ "length": 20,
761
+ "start": 7978
762
+ },
763
+ {
764
+ "length": 20,
765
+ "start": 15418
766
+ },
767
+ {
768
+ "length": 20,
769
+ "start": 16192
770
+ },
771
+ {
772
+ "length": 20,
773
+ "start": 25314
774
+ }
775
+ ],
776
+ "VersionPartLib": [
777
+ {
778
+ "length": 20,
779
+ "start": 17823
780
+ }
781
+ ]
782
+ }
783
+ },
784
+ "deployedLinkReferences": {
785
+ "contracts/type/NftId.sol": {
786
+ "NftIdLib": [
787
+ {
788
+ "length": 20,
789
+ "start": 2581
790
+ },
791
+ {
792
+ "length": 20,
793
+ "start": 5139
794
+ }
795
+ ]
796
+ },
797
+ "contracts/type/Timestamp.sol": {
798
+ "TimestampLib": [
799
+ {
800
+ "length": 20,
801
+ "start": 4810
802
+ }
803
+ ]
804
+ },
805
+ "contracts/type/Version.sol": {
806
+ "VersionLib": [
807
+ {
808
+ "length": 20,
809
+ "start": 4140
810
+ },
811
+ {
812
+ "length": 20,
813
+ "start": 4398
814
+ },
815
+ {
816
+ "length": 20,
817
+ "start": 4521
818
+ }
819
+ ]
820
+ }
821
+ }
822
+ }