@etherisc/gif-next 0.0.2-aa0bd77 → 0.0.2-aaa8646-641

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 (445) hide show
  1. package/README.md +358 -8
  2. package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
  3. package/artifacts/contracts/components/Component.sol/Component.json +698 -35
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +1345 -0
  6. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/IComponent.sol/IComponent.json +605 -0
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +969 -0
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  11. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +1064 -0
  12. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  13. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +830 -0
  14. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  15. package/artifacts/contracts/components/Pool.sol/Pool.json +1246 -65
  16. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  17. package/artifacts/contracts/components/Product.sol/Product.json +1014 -60
  18. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
  19. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
  20. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  21. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
  22. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
  23. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +190 -0
  24. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  25. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +288 -519
  26. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  27. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +654 -0
  28. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  29. package/artifacts/contracts/instance/Instance.sol/Instance.json +530 -594
  30. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
  31. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1348 -0
  32. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
  33. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +124 -0
  34. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  35. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1403 -0
  36. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  37. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1025 -0
  38. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  39. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +673 -0
  40. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  41. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2663 -0
  42. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  43. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -0
  44. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
  45. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +639 -0
  46. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  47. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
  48. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  49. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.json +115 -0
  50. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  51. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +532 -0
  52. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  53. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +194 -0
  54. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  55. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +237 -0
  56. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  57. package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
  58. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  59. package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IComponents.sol/IComponents.json} +2 -2
  60. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  61. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  62. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  63. package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
  64. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  65. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
  66. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
  67. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
  68. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
  69. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +10 -0
  70. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  71. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +902 -0
  72. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  73. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +649 -0
  74. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
  75. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1326 -0
  76. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  77. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +725 -0
  78. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
  79. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +1072 -0
  80. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  81. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +685 -0
  82. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  83. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1515 -0
  84. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  85. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +757 -0
  86. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  87. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +501 -0
  88. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
  89. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +714 -0
  90. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
  91. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +602 -0
  92. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  93. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +871 -0
  94. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  95. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +969 -0
  96. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  97. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +960 -0
  98. package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +4 -0
  99. package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.json +518 -0
  100. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  101. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +450 -0
  102. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
  103. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1575 -0
  104. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  105. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +741 -0
  106. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  107. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +1481 -0
  108. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  109. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +709 -0
  110. package/artifacts/contracts/instance/service/PricingService.sol/PricingService.dbg.json +4 -0
  111. package/artifacts/contracts/instance/service/PricingService.sol/PricingService.json +988 -0
  112. package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  113. package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.json +689 -0
  114. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  115. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +872 -0
  116. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  117. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +653 -0
  118. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  119. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +252 -2
  120. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  121. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +548 -71
  122. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  123. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +866 -0
  124. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  125. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
  126. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  127. package/artifacts/contracts/registry/Registry.sol/Registry.json +631 -78
  128. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
  129. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
  130. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  131. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1158 -0
  132. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  133. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +670 -0
  134. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  135. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
  136. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  137. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -0
  138. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
  139. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
  140. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  141. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
  142. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  143. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +138 -0
  144. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  145. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
  146. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  147. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +188 -0
  148. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  149. package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +18 -19
  150. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  151. package/artifacts/contracts/shared/IService.sol/IService.json +335 -0
  152. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  153. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
  154. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  155. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +251 -0
  156. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  157. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
  158. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  159. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +582 -0
  160. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  161. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +352 -0
  162. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  163. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
  164. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  165. package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +261 -217
  166. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  167. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
  168. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  169. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  170. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  171. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
  172. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  173. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  174. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  175. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +383 -0
  176. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  177. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  178. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  179. package/artifacts/contracts/test/TestService.sol/TestService.json +596 -0
  180. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  181. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
  182. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  183. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  184. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  185. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +104 -0
  186. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  187. package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
  188. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  189. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  190. package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
  191. package/artifacts/contracts/types/Amount.sol/AmountLib.json +209 -0
  192. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  193. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
  194. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  195. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
  196. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  197. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +179 -0
  198. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  199. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
  200. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  201. package/artifacts/contracts/types/Fee.sol/FeeLib.json +288 -0
  202. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  203. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
  204. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  205. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +161 -5
  206. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  207. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
  208. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
  209. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
  210. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  211. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
  212. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  213. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +209 -0
  214. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
  215. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +142 -0
  216. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
  217. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
  218. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  219. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
  220. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +4 -0
  221. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
  222. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
  223. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
  224. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
  225. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +280 -0
  226. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
  227. package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
  228. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
  229. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
  230. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  231. package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
  232. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  233. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
  234. package/contracts/components/Component.sol +231 -40
  235. package/contracts/components/Distribution.sol +284 -0
  236. package/contracts/components/IComponent.sol +76 -0
  237. package/contracts/components/IDistributionComponent.sol +71 -0
  238. package/contracts/components/IPoolComponent.sol +113 -0
  239. package/contracts/components/IProductComponent.sol +40 -0
  240. package/contracts/components/Pool.sol +291 -18
  241. package/contracts/components/Product.sol +341 -32
  242. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
  243. package/contracts/instance/BundleManager.sol +126 -0
  244. package/contracts/instance/Cloneable.sol +51 -0
  245. package/contracts/instance/IInstance.sol +75 -15
  246. package/contracts/instance/IInstanceService.sol +80 -0
  247. package/contracts/instance/Instance.sol +218 -44
  248. package/contracts/instance/InstanceAccessManager.sol +541 -0
  249. package/contracts/instance/InstanceAuthorizationsLib.sol +300 -0
  250. package/contracts/instance/InstanceReader.sol +320 -0
  251. package/contracts/instance/InstanceService.sol +309 -0
  252. package/contracts/instance/InstanceServiceManager.sol +54 -0
  253. package/contracts/instance/InstanceStore.sol +208 -0
  254. package/contracts/instance/ObjectManager.sol +82 -0
  255. package/contracts/instance/base/ComponentService.sol +148 -0
  256. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  257. package/contracts/instance/base/ILifecycle.sol +30 -0
  258. package/contracts/instance/base/KeyValueStore.sol +180 -0
  259. package/contracts/instance/base/Lifecycle.sol +117 -0
  260. package/contracts/instance/module/IAccess.sol +54 -0
  261. package/contracts/instance/module/IBundle.sol +23 -0
  262. package/contracts/instance/module/IComponents.sol +41 -0
  263. package/contracts/instance/module/IDistribution.sol +41 -0
  264. package/contracts/instance/module/IPolicy.sol +77 -0
  265. package/contracts/instance/module/IRisk.sol +11 -0
  266. package/contracts/instance/module/ISetup.sol +33 -0
  267. package/contracts/instance/module/ITreasury.sol +23 -0
  268. package/contracts/instance/service/ApplicationService.sol +185 -0
  269. package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
  270. package/contracts/instance/service/BundleService.sol +440 -0
  271. package/contracts/instance/service/BundleServiceManager.sol +51 -0
  272. package/contracts/instance/service/ClaimService.sol +239 -0
  273. package/contracts/instance/service/ClaimServiceManager.sol +35 -0
  274. package/contracts/instance/service/DistributionService.sol +342 -0
  275. package/contracts/instance/service/DistributionServiceManager.sol +51 -0
  276. package/contracts/instance/service/IApplicationService.sol +61 -0
  277. package/contracts/instance/service/IBundleService.sol +102 -0
  278. package/contracts/instance/service/IClaimService.sol +92 -0
  279. package/contracts/instance/service/IDistributionService.sol +85 -0
  280. package/contracts/instance/service/IPolicyService.sol +142 -0
  281. package/contracts/instance/service/IPoolService.sol +102 -0
  282. package/contracts/instance/service/IPricingService.sol +36 -0
  283. package/contracts/instance/service/IProductService.sol +40 -0
  284. package/contracts/instance/service/PolicyService.sol +579 -0
  285. package/contracts/instance/service/PolicyServiceManager.sol +54 -0
  286. package/contracts/instance/service/PoolService.sol +338 -0
  287. package/contracts/instance/service/PoolServiceManager.sol +51 -0
  288. package/contracts/instance/service/PricingService.sol +275 -0
  289. package/contracts/instance/service/PricingServiceManager.sol +51 -0
  290. package/contracts/instance/service/ProductService.sol +210 -0
  291. package/contracts/instance/service/ProductServiceManager.sol +54 -0
  292. package/contracts/registry/ChainNft.sol +145 -108
  293. package/contracts/registry/IRegistry.sol +82 -49
  294. package/contracts/registry/IRegistryService.sol +68 -0
  295. package/contracts/registry/ITransferInterceptor.sol +7 -0
  296. package/contracts/registry/Registry.sol +403 -112
  297. package/contracts/registry/RegistryAccessManager.sol +216 -0
  298. package/contracts/registry/RegistryService.sol +286 -0
  299. package/contracts/registry/RegistryServiceManager.sol +62 -0
  300. package/contracts/registry/ReleaseManager.sol +324 -0
  301. package/contracts/registry/TokenRegistry.sol +116 -0
  302. package/contracts/shared/ContractDeployerLib.sol +72 -0
  303. package/contracts/shared/ERC165.sol +27 -0
  304. package/contracts/shared/INftOwnable.sol +23 -0
  305. package/contracts/shared/IPolicyHolder.sol +26 -0
  306. package/contracts/shared/IRegisterable.sol +15 -0
  307. package/contracts/shared/IRegistryLinked.sol +12 -0
  308. package/contracts/shared/IService.sol +16 -0
  309. package/contracts/shared/IVersionable.sol +53 -0
  310. package/contracts/shared/NftOwnable.sol +120 -0
  311. package/contracts/shared/PolicyHolder.sol +81 -0
  312. package/contracts/shared/ProxyManager.sol +169 -0
  313. package/contracts/shared/Registerable.sol +74 -0
  314. package/contracts/shared/RegistryLinked.sol +48 -0
  315. package/contracts/shared/Service.sol +72 -0
  316. package/contracts/shared/TokenHandler.sol +33 -0
  317. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  318. package/contracts/shared/Versionable.sol +59 -0
  319. package/contracts/test/TestFee.sol +25 -0
  320. package/contracts/test/TestRegisterable.sol +18 -0
  321. package/contracts/test/TestRoleId.sol +14 -0
  322. package/contracts/test/TestService.sol +25 -0
  323. package/contracts/test/TestToken.sol +26 -0
  324. package/contracts/test/TestVersion.sol +44 -0
  325. package/contracts/test/TestVersionable.sol +17 -0
  326. package/contracts/test/Usdc.sol +26 -0
  327. package/contracts/types/AddressSet.sol +58 -0
  328. package/contracts/types/Amount.sol +70 -0
  329. package/contracts/types/Blocknumber.sol +119 -0
  330. package/contracts/types/ChainId.sol +24 -10
  331. package/contracts/types/ClaimId.sol +75 -0
  332. package/contracts/types/DistributorType.sol +55 -0
  333. package/contracts/types/Fee.sol +64 -0
  334. package/contracts/types/Key32.sol +50 -0
  335. package/contracts/types/NftId.sol +63 -8
  336. package/contracts/types/NftIdSet.sol +62 -0
  337. package/contracts/types/NumberId.sol +52 -0
  338. package/contracts/types/ObjectType.sol +161 -0
  339. package/contracts/types/PayoutId.sol +82 -0
  340. package/contracts/types/Referral.sol +89 -0
  341. package/contracts/types/RiskId.sol +43 -0
  342. package/contracts/types/RoleId.sol +97 -0
  343. package/contracts/types/Seconds.sol +54 -0
  344. package/contracts/types/StateId.sol +110 -0
  345. package/contracts/types/Timestamp.sol +132 -0
  346. package/contracts/types/UFixed.sol +326 -0
  347. package/contracts/types/Version.sol +108 -0
  348. package/package.json +21 -6
  349. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  350. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  351. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  352. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
  353. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  354. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
  355. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  356. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  357. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  358. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  359. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  360. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  361. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  362. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  363. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  364. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  365. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  366. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  367. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  368. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  369. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  370. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  371. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  372. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  373. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  374. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  375. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  376. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
  377. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  378. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  379. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  380. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  381. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  382. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  383. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  384. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  385. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -327
  386. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  387. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -105
  388. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  389. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  390. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
  391. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  392. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
  393. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  394. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
  395. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  396. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
  397. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  398. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  399. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
  400. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  401. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
  402. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  403. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  404. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
  405. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  406. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -162
  407. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  408. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  409. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  410. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
  411. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  412. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  413. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  414. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -125
  415. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  416. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  417. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
  418. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  419. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
  420. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  421. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  422. package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
  423. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  424. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  425. package/contracts/components/IPool.sol +0 -9
  426. package/contracts/components/IProduct.sol +0 -11
  427. package/contracts/experiment/inheritance/A.sol +0 -56
  428. package/contracts/experiment/inheritance/B.sol +0 -23
  429. package/contracts/experiment/inheritance/C.sol +0 -28
  430. package/contracts/experiment/inheritance/IA.sol +0 -18
  431. package/contracts/experiment/inheritance/IB.sol +0 -9
  432. package/contracts/experiment/inheritance/IC.sol +0 -11
  433. package/contracts/experiment/types/TypeA.sol +0 -42
  434. package/contracts/experiment/types/TypeB.sol +0 -24
  435. package/contracts/instance/access/Access.sol +0 -218
  436. package/contracts/instance/access/IAccess.sol +0 -83
  437. package/contracts/instance/component/ComponentModule.sol +0 -259
  438. package/contracts/instance/component/IComponent.sol +0 -94
  439. package/contracts/instance/policy/IPolicy.sol +0 -66
  440. package/contracts/instance/policy/PolicyModule.sol +0 -106
  441. package/contracts/instance/pool/IPoolModule.sol +0 -40
  442. package/contracts/instance/pool/PoolModule.sol +0 -83
  443. package/contracts/instance/product/IProductService.sol +0 -45
  444. package/contracts/instance/product/ProductService.sol +0 -105
  445. package/contracts/registry/IChainNft.sol +0 -18
@@ -0,0 +1,1025 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "InstanceService",
4
+ "sourceName": "contracts/instance/InstanceService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [],
46
+ "name": "ERC1167FailedCreateClone",
47
+ "type": "error"
48
+ },
49
+ {
50
+ "inputs": [],
51
+ "name": "ErrorInstanceServiceBundleManagerAuthorityMismatch",
52
+ "type": "error"
53
+ },
54
+ {
55
+ "inputs": [],
56
+ "name": "ErrorInstanceServiceBundleManagerZero",
57
+ "type": "error"
58
+ },
59
+ {
60
+ "inputs": [],
61
+ "name": "ErrorInstanceServiceBundleMangerInstanceMismatch",
62
+ "type": "error"
63
+ },
64
+ {
65
+ "inputs": [
66
+ {
67
+ "internalType": "address",
68
+ "name": "componentAddress",
69
+ "type": "address"
70
+ }
71
+ ],
72
+ "name": "ErrorInstanceServiceComponentNotRegistered",
73
+ "type": "error"
74
+ },
75
+ {
76
+ "inputs": [],
77
+ "name": "ErrorInstanceServiceInstanceAccessManagerZero",
78
+ "type": "error"
79
+ },
80
+ {
81
+ "inputs": [],
82
+ "name": "ErrorInstanceServiceInstanceAddressZero",
83
+ "type": "error"
84
+ },
85
+ {
86
+ "inputs": [],
87
+ "name": "ErrorInstanceServiceInstanceAuthorityMismatch",
88
+ "type": "error"
89
+ },
90
+ {
91
+ "inputs": [
92
+ {
93
+ "internalType": "NftId",
94
+ "name": "instanceNftId",
95
+ "type": "uint96"
96
+ },
97
+ {
98
+ "internalType": "NftId",
99
+ "name": "componentNftId",
100
+ "type": "uint96"
101
+ }
102
+ ],
103
+ "name": "ErrorInstanceServiceInstanceComponentMismatch",
104
+ "type": "error"
105
+ },
106
+ {
107
+ "inputs": [],
108
+ "name": "ErrorInstanceServiceInstanceReaderAddressZero",
109
+ "type": "error"
110
+ },
111
+ {
112
+ "inputs": [],
113
+ "name": "ErrorInstanceServiceInstanceReaderInstanceMismatch",
114
+ "type": "error"
115
+ },
116
+ {
117
+ "inputs": [],
118
+ "name": "ErrorInstanceServiceInstanceReaderInstanceMismatch2",
119
+ "type": "error"
120
+ },
121
+ {
122
+ "inputs": [],
123
+ "name": "ErrorInstanceServiceInstanceReaderSameAsMasterInstanceReader",
124
+ "type": "error"
125
+ },
126
+ {
127
+ "inputs": [],
128
+ "name": "ErrorInstanceServiceInstanceReaderZero",
129
+ "type": "error"
130
+ },
131
+ {
132
+ "inputs": [],
133
+ "name": "ErrorInstanceServiceInstanceStoreAuthorityMismatch",
134
+ "type": "error"
135
+ },
136
+ {
137
+ "inputs": [],
138
+ "name": "ErrorInstanceServiceInstanceStoreZero",
139
+ "type": "error"
140
+ },
141
+ {
142
+ "inputs": [
143
+ {
144
+ "internalType": "address",
145
+ "name": "componentAddress",
146
+ "type": "address"
147
+ },
148
+ {
149
+ "internalType": "ObjectType",
150
+ "name": "expectedType",
151
+ "type": "uint8"
152
+ },
153
+ {
154
+ "internalType": "ObjectType",
155
+ "name": "componentType",
156
+ "type": "uint8"
157
+ }
158
+ ],
159
+ "name": "ErrorInstanceServiceInvalidComponentType",
160
+ "type": "error"
161
+ },
162
+ {
163
+ "inputs": [],
164
+ "name": "ErrorInstanceServiceMasterBundleManagerAlreadySet",
165
+ "type": "error"
166
+ },
167
+ {
168
+ "inputs": [],
169
+ "name": "ErrorInstanceServiceMasterInstanceAccessManagerAlreadySet",
170
+ "type": "error"
171
+ },
172
+ {
173
+ "inputs": [],
174
+ "name": "ErrorInstanceServiceMasterInstanceAlreadySet",
175
+ "type": "error"
176
+ },
177
+ {
178
+ "inputs": [],
179
+ "name": "ErrorInstanceServiceMasterInstanceReaderNotSet",
180
+ "type": "error"
181
+ },
182
+ {
183
+ "inputs": [],
184
+ "name": "ErrorInstanceServiceMasterOzAccessManagerAlreadySet",
185
+ "type": "error"
186
+ },
187
+ {
188
+ "inputs": [
189
+ {
190
+ "internalType": "NftId",
191
+ "name": "nftId",
192
+ "type": "uint96"
193
+ }
194
+ ],
195
+ "name": "ErrorInstanceServiceNotInstance",
196
+ "type": "error"
197
+ },
198
+ {
199
+ "inputs": [
200
+ {
201
+ "internalType": "address",
202
+ "name": "caller",
203
+ "type": "address"
204
+ },
205
+ {
206
+ "internalType": "NftId",
207
+ "name": "instanceNftId",
208
+ "type": "uint96"
209
+ }
210
+ ],
211
+ "name": "ErrorInstanceServiceNotInstanceOwner",
212
+ "type": "error"
213
+ },
214
+ {
215
+ "inputs": [],
216
+ "name": "ErrorInstanceServiceOzAccessManagerZero",
217
+ "type": "error"
218
+ },
219
+ {
220
+ "inputs": [
221
+ {
222
+ "internalType": "address",
223
+ "name": "caller",
224
+ "type": "address"
225
+ }
226
+ ],
227
+ "name": "ErrorInstanceServiceRequestUnauhorized",
228
+ "type": "error"
229
+ },
230
+ {
231
+ "inputs": [
232
+ {
233
+ "internalType": "NftId",
234
+ "name": "nftId",
235
+ "type": "uint96"
236
+ }
237
+ ],
238
+ "name": "ErrorNftOwnableAlreadyLinked",
239
+ "type": "error"
240
+ },
241
+ {
242
+ "inputs": [
243
+ {
244
+ "internalType": "address",
245
+ "name": "contractAddress",
246
+ "type": "address"
247
+ }
248
+ ],
249
+ "name": "ErrorNftOwnableContractNotRegistered",
250
+ "type": "error"
251
+ },
252
+ {
253
+ "inputs": [],
254
+ "name": "ErrorNftOwnableInitialOwnerZero",
255
+ "type": "error"
256
+ },
257
+ {
258
+ "inputs": [
259
+ {
260
+ "internalType": "address",
261
+ "name": "account",
262
+ "type": "address"
263
+ }
264
+ ],
265
+ "name": "ErrorNftOwnableNotOwner",
266
+ "type": "error"
267
+ },
268
+ {
269
+ "inputs": [
270
+ {
271
+ "internalType": "address",
272
+ "name": "registryAddress",
273
+ "type": "address"
274
+ }
275
+ ],
276
+ "name": "ErrorNotRegistry",
277
+ "type": "error"
278
+ },
279
+ {
280
+ "inputs": [],
281
+ "name": "InvalidInitialization",
282
+ "type": "error"
283
+ },
284
+ {
285
+ "inputs": [],
286
+ "name": "NotInitializing",
287
+ "type": "error"
288
+ },
289
+ {
290
+ "anonymous": false,
291
+ "inputs": [
292
+ {
293
+ "indexed": false,
294
+ "internalType": "address",
295
+ "name": "authority",
296
+ "type": "address"
297
+ }
298
+ ],
299
+ "name": "AuthorityUpdated",
300
+ "type": "event"
301
+ },
302
+ {
303
+ "anonymous": false,
304
+ "inputs": [
305
+ {
306
+ "indexed": false,
307
+ "internalType": "uint64",
308
+ "name": "version",
309
+ "type": "uint64"
310
+ }
311
+ ],
312
+ "name": "Initialized",
313
+ "type": "event"
314
+ },
315
+ {
316
+ "anonymous": false,
317
+ "inputs": [
318
+ {
319
+ "indexed": false,
320
+ "internalType": "address",
321
+ "name": "clonedOzAccessManager",
322
+ "type": "address"
323
+ },
324
+ {
325
+ "indexed": false,
326
+ "internalType": "address",
327
+ "name": "clonedInstanceAccessManager",
328
+ "type": "address"
329
+ },
330
+ {
331
+ "indexed": false,
332
+ "internalType": "address",
333
+ "name": "clonedInstance",
334
+ "type": "address"
335
+ },
336
+ {
337
+ "indexed": false,
338
+ "internalType": "address",
339
+ "name": "clonedInstanceStore",
340
+ "type": "address"
341
+ },
342
+ {
343
+ "indexed": false,
344
+ "internalType": "address",
345
+ "name": "clonedBundleManager",
346
+ "type": "address"
347
+ },
348
+ {
349
+ "indexed": false,
350
+ "internalType": "address",
351
+ "name": "clonedInstanceReader",
352
+ "type": "address"
353
+ },
354
+ {
355
+ "indexed": false,
356
+ "internalType": "NftId",
357
+ "name": "clonedInstanceNftId",
358
+ "type": "uint96"
359
+ }
360
+ ],
361
+ "name": "LogInstanceCloned",
362
+ "type": "event"
363
+ },
364
+ {
365
+ "inputs": [],
366
+ "name": "INSTANCE_CREATION_CODE_HASH",
367
+ "outputs": [
368
+ {
369
+ "internalType": "bytes32",
370
+ "name": "",
371
+ "type": "bytes32"
372
+ }
373
+ ],
374
+ "stateMutability": "view",
375
+ "type": "function"
376
+ },
377
+ {
378
+ "inputs": [],
379
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
380
+ "outputs": [
381
+ {
382
+ "internalType": "bytes32",
383
+ "name": "",
384
+ "type": "bytes32"
385
+ }
386
+ ],
387
+ "stateMutability": "view",
388
+ "type": "function"
389
+ },
390
+ {
391
+ "inputs": [],
392
+ "name": "REGISTERABLE_LOCATION_V1",
393
+ "outputs": [
394
+ {
395
+ "internalType": "bytes32",
396
+ "name": "",
397
+ "type": "bytes32"
398
+ }
399
+ ],
400
+ "stateMutability": "view",
401
+ "type": "function"
402
+ },
403
+ {
404
+ "inputs": [],
405
+ "name": "authority",
406
+ "outputs": [
407
+ {
408
+ "internalType": "address",
409
+ "name": "",
410
+ "type": "address"
411
+ }
412
+ ],
413
+ "stateMutability": "view",
414
+ "type": "function"
415
+ },
416
+ {
417
+ "inputs": [
418
+ {
419
+ "internalType": "NftId",
420
+ "name": "instanceNftId",
421
+ "type": "uint96"
422
+ },
423
+ {
424
+ "internalType": "address",
425
+ "name": "targetAddress",
426
+ "type": "address"
427
+ },
428
+ {
429
+ "internalType": "string",
430
+ "name": "targetName",
431
+ "type": "string"
432
+ },
433
+ {
434
+ "internalType": "bytes4[][]",
435
+ "name": "selectors",
436
+ "type": "bytes4[][]"
437
+ },
438
+ {
439
+ "internalType": "RoleId[]",
440
+ "name": "roles",
441
+ "type": "uint64[]"
442
+ }
443
+ ],
444
+ "name": "createGifTarget",
445
+ "outputs": [],
446
+ "stateMutability": "nonpayable",
447
+ "type": "function"
448
+ },
449
+ {
450
+ "inputs": [],
451
+ "name": "createInstanceClone",
452
+ "outputs": [
453
+ {
454
+ "internalType": "contract AccessManagerUpgradeableInitializeable",
455
+ "name": "clonedOzAccessManager",
456
+ "type": "address"
457
+ },
458
+ {
459
+ "internalType": "contract InstanceAccessManager",
460
+ "name": "clonedInstanceAccessManager",
461
+ "type": "address"
462
+ },
463
+ {
464
+ "internalType": "contract Instance",
465
+ "name": "clonedInstance",
466
+ "type": "address"
467
+ },
468
+ {
469
+ "internalType": "NftId",
470
+ "name": "clonedInstanceNftId",
471
+ "type": "uint96"
472
+ },
473
+ {
474
+ "internalType": "contract InstanceReader",
475
+ "name": "clonedInstanceReader",
476
+ "type": "address"
477
+ },
478
+ {
479
+ "internalType": "contract BundleManager",
480
+ "name": "clonedBundleManager",
481
+ "type": "address"
482
+ },
483
+ {
484
+ "internalType": "contract InstanceStore",
485
+ "name": "clonedInstanceStore",
486
+ "type": "address"
487
+ }
488
+ ],
489
+ "stateMutability": "nonpayable",
490
+ "type": "function"
491
+ },
492
+ {
493
+ "inputs": [],
494
+ "name": "getDomain",
495
+ "outputs": [
496
+ {
497
+ "internalType": "ObjectType",
498
+ "name": "",
499
+ "type": "uint8"
500
+ }
501
+ ],
502
+ "stateMutability": "pure",
503
+ "type": "function"
504
+ },
505
+ {
506
+ "inputs": [],
507
+ "name": "getInitialInfo",
508
+ "outputs": [
509
+ {
510
+ "components": [
511
+ {
512
+ "internalType": "NftId",
513
+ "name": "nftId",
514
+ "type": "uint96"
515
+ },
516
+ {
517
+ "internalType": "NftId",
518
+ "name": "parentNftId",
519
+ "type": "uint96"
520
+ },
521
+ {
522
+ "internalType": "ObjectType",
523
+ "name": "objectType",
524
+ "type": "uint8"
525
+ },
526
+ {
527
+ "internalType": "bool",
528
+ "name": "isInterceptor",
529
+ "type": "bool"
530
+ },
531
+ {
532
+ "internalType": "address",
533
+ "name": "objectAddress",
534
+ "type": "address"
535
+ },
536
+ {
537
+ "internalType": "address",
538
+ "name": "initialOwner",
539
+ "type": "address"
540
+ },
541
+ {
542
+ "internalType": "bytes",
543
+ "name": "data",
544
+ "type": "bytes"
545
+ }
546
+ ],
547
+ "internalType": "struct IRegistry.ObjectInfo",
548
+ "name": "info",
549
+ "type": "tuple"
550
+ }
551
+ ],
552
+ "stateMutability": "view",
553
+ "type": "function"
554
+ },
555
+ {
556
+ "inputs": [],
557
+ "name": "getMasterInstanceReader",
558
+ "outputs": [
559
+ {
560
+ "internalType": "address",
561
+ "name": "",
562
+ "type": "address"
563
+ }
564
+ ],
565
+ "stateMutability": "view",
566
+ "type": "function"
567
+ },
568
+ {
569
+ "inputs": [],
570
+ "name": "getNftId",
571
+ "outputs": [
572
+ {
573
+ "internalType": "NftId",
574
+ "name": "",
575
+ "type": "uint96"
576
+ }
577
+ ],
578
+ "stateMutability": "view",
579
+ "type": "function"
580
+ },
581
+ {
582
+ "inputs": [],
583
+ "name": "getOwner",
584
+ "outputs": [
585
+ {
586
+ "internalType": "address",
587
+ "name": "",
588
+ "type": "address"
589
+ }
590
+ ],
591
+ "stateMutability": "view",
592
+ "type": "function"
593
+ },
594
+ {
595
+ "inputs": [],
596
+ "name": "getRegistry",
597
+ "outputs": [
598
+ {
599
+ "internalType": "contract IRegistry",
600
+ "name": "",
601
+ "type": "address"
602
+ }
603
+ ],
604
+ "stateMutability": "view",
605
+ "type": "function"
606
+ },
607
+ {
608
+ "inputs": [],
609
+ "name": "getRegistryAddress",
610
+ "outputs": [
611
+ {
612
+ "internalType": "address",
613
+ "name": "",
614
+ "type": "address"
615
+ }
616
+ ],
617
+ "stateMutability": "view",
618
+ "type": "function"
619
+ },
620
+ {
621
+ "inputs": [],
622
+ "name": "getVersion",
623
+ "outputs": [
624
+ {
625
+ "internalType": "Version",
626
+ "name": "",
627
+ "type": "uint24"
628
+ }
629
+ ],
630
+ "stateMutability": "pure",
631
+ "type": "function"
632
+ },
633
+ {
634
+ "inputs": [],
635
+ "name": "initializeERC165",
636
+ "outputs": [],
637
+ "stateMutability": "nonpayable",
638
+ "type": "function"
639
+ },
640
+ {
641
+ "inputs": [
642
+ {
643
+ "internalType": "address",
644
+ "name": "initialOwner",
645
+ "type": "address"
646
+ },
647
+ {
648
+ "internalType": "address",
649
+ "name": "registryAddress",
650
+ "type": "address"
651
+ }
652
+ ],
653
+ "name": "initializeNftOwnable",
654
+ "outputs": [],
655
+ "stateMutability": "nonpayable",
656
+ "type": "function"
657
+ },
658
+ {
659
+ "inputs": [
660
+ {
661
+ "internalType": "address",
662
+ "name": "registryAddress",
663
+ "type": "address"
664
+ },
665
+ {
666
+ "internalType": "NftId",
667
+ "name": "parentNftId",
668
+ "type": "uint96"
669
+ },
670
+ {
671
+ "internalType": "ObjectType",
672
+ "name": "objectType",
673
+ "type": "uint8"
674
+ },
675
+ {
676
+ "internalType": "bool",
677
+ "name": "isInterceptor",
678
+ "type": "bool"
679
+ },
680
+ {
681
+ "internalType": "address",
682
+ "name": "initialOwner",
683
+ "type": "address"
684
+ },
685
+ {
686
+ "internalType": "bytes",
687
+ "name": "registryData",
688
+ "type": "bytes"
689
+ }
690
+ ],
691
+ "name": "initializeRegisterable",
692
+ "outputs": [],
693
+ "stateMutability": "nonpayable",
694
+ "type": "function"
695
+ },
696
+ {
697
+ "inputs": [
698
+ {
699
+ "internalType": "address",
700
+ "name": "registryAddress",
701
+ "type": "address"
702
+ }
703
+ ],
704
+ "name": "initializeRegistryLinked",
705
+ "outputs": [],
706
+ "stateMutability": "nonpayable",
707
+ "type": "function"
708
+ },
709
+ {
710
+ "inputs": [
711
+ {
712
+ "internalType": "address",
713
+ "name": "registry",
714
+ "type": "address"
715
+ },
716
+ {
717
+ "internalType": "address",
718
+ "name": "authority",
719
+ "type": "address"
720
+ },
721
+ {
722
+ "internalType": "address",
723
+ "name": "initialOwner",
724
+ "type": "address"
725
+ }
726
+ ],
727
+ "name": "initializeService",
728
+ "outputs": [],
729
+ "stateMutability": "nonpayable",
730
+ "type": "function"
731
+ },
732
+ {
733
+ "inputs": [
734
+ {
735
+ "internalType": "address",
736
+ "name": "activatedBy",
737
+ "type": "address"
738
+ },
739
+ {
740
+ "internalType": "bytes",
741
+ "name": "data",
742
+ "type": "bytes"
743
+ }
744
+ ],
745
+ "name": "initializeVersionable",
746
+ "outputs": [],
747
+ "stateMutability": "nonpayable",
748
+ "type": "function"
749
+ },
750
+ {
751
+ "inputs": [],
752
+ "name": "isConsumingScheduledOp",
753
+ "outputs": [
754
+ {
755
+ "internalType": "bytes4",
756
+ "name": "",
757
+ "type": "bytes4"
758
+ }
759
+ ],
760
+ "stateMutability": "view",
761
+ "type": "function"
762
+ },
763
+ {
764
+ "inputs": [],
765
+ "name": "linkToRegisteredNftId",
766
+ "outputs": [],
767
+ "stateMutability": "nonpayable",
768
+ "type": "function"
769
+ },
770
+ {
771
+ "inputs": [
772
+ {
773
+ "internalType": "bytes4",
774
+ "name": "interfaceId",
775
+ "type": "bytes4"
776
+ }
777
+ ],
778
+ "name": "registerInterface",
779
+ "outputs": [],
780
+ "stateMutability": "nonpayable",
781
+ "type": "function"
782
+ },
783
+ {
784
+ "inputs": [
785
+ {
786
+ "internalType": "address",
787
+ "name": "instanceAddress",
788
+ "type": "address"
789
+ }
790
+ ],
791
+ "name": "setAndRegisterMasterInstance",
792
+ "outputs": [
793
+ {
794
+ "internalType": "NftId",
795
+ "name": "masterInstanceNftId",
796
+ "type": "uint96"
797
+ }
798
+ ],
799
+ "stateMutability": "nonpayable",
800
+ "type": "function"
801
+ },
802
+ {
803
+ "inputs": [
804
+ {
805
+ "internalType": "address",
806
+ "name": "newAuthority",
807
+ "type": "address"
808
+ }
809
+ ],
810
+ "name": "setAuthority",
811
+ "outputs": [],
812
+ "stateMutability": "nonpayable",
813
+ "type": "function"
814
+ },
815
+ {
816
+ "inputs": [
817
+ {
818
+ "internalType": "bool",
819
+ "name": "locked",
820
+ "type": "bool"
821
+ }
822
+ ],
823
+ "name": "setComponentLocked",
824
+ "outputs": [],
825
+ "stateMutability": "nonpayable",
826
+ "type": "function"
827
+ },
828
+ {
829
+ "inputs": [
830
+ {
831
+ "internalType": "address",
832
+ "name": "instanceReaderAddress",
833
+ "type": "address"
834
+ }
835
+ ],
836
+ "name": "setMasterInstanceReader",
837
+ "outputs": [],
838
+ "stateMutability": "nonpayable",
839
+ "type": "function"
840
+ },
841
+ {
842
+ "inputs": [
843
+ {
844
+ "internalType": "bytes4",
845
+ "name": "interfaceId",
846
+ "type": "bytes4"
847
+ }
848
+ ],
849
+ "name": "supportsInterface",
850
+ "outputs": [
851
+ {
852
+ "internalType": "bool",
853
+ "name": "",
854
+ "type": "bool"
855
+ }
856
+ ],
857
+ "stateMutability": "view",
858
+ "type": "function"
859
+ },
860
+ {
861
+ "inputs": [
862
+ {
863
+ "internalType": "NftId",
864
+ "name": "instanceNftId",
865
+ "type": "uint96"
866
+ }
867
+ ],
868
+ "name": "upgradeInstanceReader",
869
+ "outputs": [],
870
+ "stateMutability": "nonpayable",
871
+ "type": "function"
872
+ },
873
+ {
874
+ "inputs": [
875
+ {
876
+ "internalType": "bytes",
877
+ "name": "data",
878
+ "type": "bytes"
879
+ }
880
+ ],
881
+ "name": "upgradeVersionable",
882
+ "outputs": [],
883
+ "stateMutability": "nonpayable",
884
+ "type": "function"
885
+ }
886
+ ],
887
+ "bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b613ed480620000e66000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80637a9e5e4b11610104578063b68d1809116100a2578063eeff428e11610071578063eeff428e14610445578063f21de1e8146102e5578063f7c34ee01461049f578063feec1190146104b257600080fd5b8063b68d1809146103f4578063bf7e214f14610403578063c22f980d14610421578063edabac031461043457600080fd5b80638e32e979116100de5780638e32e979146103985780638fb36037146103ab578063ada9652e146103cc578063b03d2a8e146103e157600080fd5b80637a9e5e4b14610375578063872309c714610388578063893d20e81461039057600080fd5b8063329d6e741161017c578063644c45e01161014b578063644c45e01461030a578063675393bf1461033c5780636a778e731461034f5780636c6fbb281461036257600080fd5b8063329d6e74146102b757806336fc697e146102ca57806349bb9e4b146102d25780635ab1bd53146102e557600080fd5b8063138461e0116101b8578063138461e0146102525780631eff4b221461025c578063214cdb801461029157806327bb7a33146102a457600080fd5b806301ffc9a7146101df5780630d8e6e2c146102215780630fec111c1461023d575b600080fd5b61020c6101ed36600461337c565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102296104c5565b60405162ffffff9091168152602001610218565b61024561054f565b60405161021891906133ee565b61025a6106fe565b005b6102837f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610218565b61025a61029f36600461337c565b610905565b61025a6102b23660046135b3565b610932565b61025a6102c536600461364b565b6109be565b61025a610b0b565b61025a6102e036600461367f565b610b51565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610218565b600080516020613e3f833981519152546001600160601b03165b6040516001600160601b039091168152602001610218565b61025a61034a3660046136ce565b610c50565b61032461035d3660046136ce565b610d5e565b61025a610370366004613879565b6117f5565b61025a6103833660046136ce565b611a20565b610283600081565b6102f2611aba565b61025a6103a636600461393d565b611bf1565b6103b3611e2a565b6040516001600160e01b03199091168152602001610218565b610283600080516020613e3f83398151915281565b61025a6103ef366004613988565b611e62565b60405160468152602001610218565b600080516020613e5f833981519152546001600160a01b03166102f2565b61025a61042f3660046139a5565b6120c8565b6005546001600160a01b03166102f2565b61044d6122f3565b604080516001600160a01b0398891681529688166020880152948716948601949094526001600160601b03909216606085015284166080840152831660a08301529190911660c082015260e001610218565b61025a6104ad3660046139c2565b612cfd565b61025a6104c03660046136ce565b612d74565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610526573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061054a91906139fb565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906105fa90613a20565b80601f016020809104026020016040519081016040528092919081815260200182805461062690613a20565b80156106735780601f1061064857610100808354040283529160200191610673565b820191906000526020600020905b81548152906001019060200180831161065657829003601f168201915b50505050508152505090506040518060e00160405280610691600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016106e2611aba565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020613e3f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561076d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107919190613a65565b156107c25780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b306107d56001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561081d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108419190613a65565b6108695760405163b9304b0d60e01b81526001600160a01b03821660048201526024016107b9565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa1580156108bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e19190613a8d565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b61090d612ee7565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b61093a612ee7565b6109448287612cfd565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016109b48382613af8565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c6109e06104c5565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610a20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a449190613bb7565b600080516020613e7f8339815191528054600160401b900460ff1680610a77575080546001600160401b03808416911610155b15610a955760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610abf83612f20565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610b13612ee7565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080516020613e7f8339815191528054600160401b810460ff1615906001600160401b0316600081158015610b845750825b90506000826001600160401b03166001148015610ba05750303b155b905081158015610bae575080155b15610bcc5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610bf657845460ff60401b1916600160401b1785555b610c008787612f28565b8315610c4757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610c58612ee7565b806001600160a01b03163b600003610c8e5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016107b9565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015610d08575060408051601f3d908101601f19168201909252610d0591810190613a65565b60015b610d305760405163fdeac91f60e01b81526001600160a01b03821660048201526024016107b9565b80610d595760405163fdeac91f60e01b81526001600160a01b03831660048201526024016107b9565b505b50565b6000610d68611aba565b6001600160a01b0316336001600160a01b031614610d9b5760405163086391f760e31b81523360048201526024016107b9565b6004546001600160a01b031615610dc557604051632c237de760e11b815260040160405180910390fd5b6002546001600160a01b031615610def57604051636519f6b960e01b815260040160405180910390fd5b6003546001600160a01b031615610e1957604051630157f74960e01b815260040160405180910390fd5b6006546001600160a01b031615610e4357604051637f405a2960e01b815260040160405180910390fd5b6001600160a01b038216610e6a576040516309353e4560e11b815260040160405180910390fd5b60008290506000816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eaf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed39190613bdf565b905060008190506000836001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3e9190613bdf565b905060008190506000856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa99190613bdf565b905060008190506000876001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ff0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110149190613bdf565b905060008190506000896001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561105b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107f9190613bdf565b9050806001600160a01b0389166110a95760405163078ddb7760e51b815260040160405180910390fd5b6001600160a01b0387166110d05760405163459e9b9760e01b815260040160405180910390fd5b6001600160a01b0385166110f75760405163e267254160e01b815260040160405180910390fd5b6001600160a01b03831661111e57604051630ddeaef560e11b815260040160405180910390fd5b6001600160a01b038116611145576040516301fa2a2b60e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611183573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a79190613bdf565b6001600160a01b03168b6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112129190613bdf565b6001600160a01b031614611239576040516334ddf1a760e21b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611277573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129b9190613bdf565b6001600160a01b0316846001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113069190613bdf565b6001600160a01b03161461132d576040516326c89a4160e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561136b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138f9190613bdf565b6001600160a01b0316826001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113fa9190613bdf565b6001600160a01b03161461142157604051631129422760e31b815260040160405180910390fd5b8a6001600160a01b0316866001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611469573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148d9190613bdf565b6001600160a01b0316146114b4576040516331783c7160e11b815260040160405180910390fd5b8a6001600160a01b0316846001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115209190613bdf565b6001600160a01b03161461154757604051631b25e96d60e31b815260040160405180910390fd5b88600260006101000a8154816001600160a01b0302191690836001600160a01b0316021790555086600360006101000a8154816001600160a01b0302191690836001600160a01b031602179055508c600460006101000a8154816001600160a01b0302191690836001600160a01b0316021790555084600560006101000a8154816001600160a01b0302191690836001600160a01b0316021790555082600660006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600760006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060006116456001546001600160a01b031690565b6001600160a01b031663d39e6043602861165d6104c5565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156116b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d69190613c07565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561171b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173f9190613bdf565b6004549091506001600160a01b0390811690600090831663026bc43b83611764611aba565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016000604051808303816000875af11580156117b1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526117d99190810190613c69565b905080600001519e505050505050505050505050505050919050565b6001546001600160a01b0316604051632b91e0a960e01b81523360048201526001600160a01b039190911690632b91e0a990602401602060405180830381865afa158015611847573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186b9190613a65565b61188a576040516302613e9f60e51b81523360048201526024016107b9565b6000806118978787613048565b915091506000826001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ff9190613bdf565b60405163044ec4c360e41b81529091506001600160a01b038216906344ec4c3090611930908a908a90600401613d3b565b600060405180830381600087803b15801561194a57600080fd5b505af115801561195e573d6000803e3d6000fd5b5050505060005b8451811015611a1557816001600160a01b0316630c8ae53e8888848151811061199057611990613d5f565b60200260200101518885815181106119aa576119aa613d5f565b60200260200101516040518463ffffffff1660e01b81526004016119d093929190613d75565b600060405180830381600087803b1580156119ea57600080fd5b505af11580156119fe573d6000803e3d6000fd5b505050508080611a0d90613de8565b915050611965565b505050505050505050565b33611a40600080516020613e5f833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614611a7b5760405162d1953b60e31b81526001600160a01b03821660048201526024016107b9565b816001600160a01b03163b600003611ab1576040516361798f2f60e11b81526001600160a01b03831660048201526024016107b9565b610d59826131f8565b600080600080516020613e3f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611b2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b4e9190613a65565b15611bdb576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611bb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bd59190613bdf565b91505090565b54600160601b90046001600160a01b0316919050565b611bf9612ee7565b611c7983846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5f9190613a8d565b603c60008560405180602001604052806000815250610932565b6001600160a01b03821615611c9657611c9182613259565b611e05565b6000611caa6001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611d0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2e9190613c07565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611d73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d979190613bdf565b9050611e03816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dfe9190613bdf565b613259565b505b611e15634a531f3360e01b610905565b611e2563b68d180960e01b610905565b505050565b600080516020613e5f833981519152805460009190600160a01b900460ff16611e54576000611bd5565b638fb3603760e01b91505090565b6001546001600160a01b0316604051630bee2f1560e11b81523360048201526001600160a01b0391909116906317dc5e2a90602401602060405180830381865afa158015611eb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ed89190613a65565b611ef7576040516302613e9f60e51b81523360048201526024016107b9565b336000611f0c6001546001600160a01b031690565b6040516308b09a5f60e41b81526001600160a01b038481166004830152919250600091831690638b09a5f090602401600060405180830381865afa158015611f58573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f809190810190613c69565b602001516040516305247a1760e51b81526001600160601b03821660048201529091506000906001600160a01b0384169063a48f42e090602401600060405180830381865afa158015611fd7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fff9190810190613c69565b608001519050806001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015612043573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120679190613bdf565b6040516313bfaf6360e31b81526001600160a01b03868116600483015287151560248301529190911690639dfd7b1890604401600060405180830381600087803b1580156120b457600080fd5b505af1158015611a15573d6000803e3d6000fd5b806120db6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561212a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214e9190613bdf565b6001600160a01b0316336001600160a01b031614612181576040516302613e9f60e51b81523360048201526024016107b9565b60006121956001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa1580156121e8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526122109190810190613c69565b608081015160055491925090600090612231906001600160a01b031661326a565b60405163189acdbd60e31b81526001600160a01b0384811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561227857600080fd5b505af115801561228c573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528516925063f7bc431c9150602401600060405180830381600087803b1580156122d357600080fd5b505af11580156122e7573d6000803e3d6000fd5b50505050505050505050565b6000808080808080338161230f6001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038216600482018190529192506000919063d272ac1e90602401602060405180830381865afa15801561235a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061237e9190613a8d565b905060006001600160a01b03831663d39e6043602861239b6104c5565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156123f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124149190613c07565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015612459573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247d9190613bdf565b600254909150612495906001600160a01b031661326a565b60405163189acdbd60e31b8152306004820152909b506001600160a01b038c169063c4d66de890602401600060405180830381600087803b1580156124d957600080fd5b505af11580156124ed573d6000803e3d6000fd5b505060045461250792506001600160a01b0316905061326a565b60405163c0c53b8b60e01b81526001600160a01b038d8116600483015285811660248301528681166044830152919a50908a169063c0c53b8b90606401600060405180830381600087803b15801561255e57600080fd5b505af1158015612572573d6000803e3d6000fd5b505060075461258c92506001600160a01b0316905061326a565b60405163189acdbd60e31b81526001600160a01b038b811660048301529196509086169063c4d66de890602401600060405180830381600087803b1580156125d357600080fd5b505af11580156125e7573d6000803e3d6000fd5b505060405163048935d560e31b81526001600160a01b0388811660048301528c169250632449aea89150602401600060405180830381600087803b15801561262e57600080fd5b505af1158015612642573d6000803e3d6000fd5b505060055461265c92506001600160a01b0316905061326a565b60405163189acdbd60e31b81526001600160a01b038b811660048301529198509088169063c4d66de890602401600060405180830381600087803b1580156126a357600080fd5b505af11580156126b7573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b038a811660048301528c16925063f7bc431c9150602401600060405180830381600087803b1580156126fe57600080fd5b505af1158015612712573d6000803e3d6000fd5b505060065461272c92506001600160a01b0316905061326a565b60405163189acdbd60e31b81526001600160a01b038b811660048301529197509087169063c4d66de890602401600060405180830381600087803b15801561277357600080fd5b505af1158015612787573d6000803e3d6000fd5b505060405162422c9d60e81b81526001600160a01b0389811660048301528c16925063422c9d009150602401600060405180830381600087803b1580156127cd57600080fd5b505af11580156127e1573d6000803e3d6000fd5b50506003546127fb92506001600160a01b0316905061326a565b99508a6001600160a01b03166325c471a06128146132dc565b604051631517388760e21b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af415801561286d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128919190613bb7565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038d16602482015260006044820152606401600060405180830381600087803b1580156128e857600080fd5b505af11580156128fc573d6000803e3d6000fd5b505060405163189acdbd60e31b81526001600160a01b038c811660048301528d16925063c4d66de89150602401600060405180830381600087803b15801561294357600080fd5b505af1158015612957573d6000803e3d6000fd5b5050604051630f749a8960e01b81526001600160a01b038d811660048301528c169250630f749a899150602401600060405180830381600087803b15801561299e57600080fd5b505af11580156129b2573d6000803e3d6000fd5b5050505073__$2a34b1f180a6bf22a62a9bc53ba8adfaf5$__63a1b61ad48b8b8989896129e76001546001600160a01b031690565b6129ef6104c5565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015612a44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a689190613c07565b60405160e089901b6001600160e01b03191681526001600160a01b0397881660048201529587166024870152938616604486015291851660648501528416608484015290921660a482015260ff90911660c482015260e40160006040518083038186803b158015612ad857600080fd5b505af4158015612aec573d6000803e3d6000fd5b505050508a6001600160a01b031663fe0776f5612b076132dc565b604051631517388760e21b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015612b60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b849190613bb7565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152306024820152604401600060405180830381600087803b158015612bcb57600080fd5b505af1158015612bdf573d6000803e3d6000fd5b505060405163026bc43b60e01b81526001600160a01b038c811660048301528781166024830152600093508416915063026bc43b906044016000604051808303816000875af1158015612c36573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612c5e9190810190613c69565b9050806000015198507eccc9e339dab7298ad32b43864beb3b1c0cf136971be26f1e67d90bf43ebd3d8c8c8c898b8d8f604051612ce797969594939291906001600160a01b0397881681529587166020870152938616604086015291851660608501528416608084015290921660a08201526001600160601b039190911660c082015260e00190565b60405180910390a1505050505090919293949596565b612d05612ee7565b612d0e81610c50565b612d16610b0b565b6001600160a01b038216612d3d5760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020613e3f83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b612d7c611aba565b6001600160a01b0316336001600160a01b031614612daf5760405163086391f760e31b81523360048201526024016107b9565b6005546001600160a01b0316612dd8576040516358e5a4af60e01b815260040160405180910390fd5b6001600160a01b038116612dff57604051631aa1808560e31b815260040160405180910390fd5b6005546001600160a01b0390811690821603612e2e57604051630666e2a560e01b815260040160405180910390fd5b600480546040805163379ed74560e21b8152905184936001600160a01b039384169385169263de7b5d1492818301926020928290030181865afa158015612e79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e9d9190613bdf565b6001600160a01b031614612ec45760405163f026367160e01b815260040160405180910390fd5b50600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080516020613e7f83398151915254600160401b900460ff16612f1e57604051631afcd79f60e31b815260040160405180910390fd5b565b6101da612ee7565b600080516020613e7f8339815191528054600160401b810460ff1615906001600160401b0316600081158015612f5b5750825b90506000826001600160401b03166001148015612f775750303b155b905081158015612f85575080155b15612fa35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612fcd57845460ff60401b1916600160401b1785555b60008087806020019051810190612fe49190613e0f565b92509050612ff48160008b611bf1565b613004630655ba6560e31b610905565b50508315610c4757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610c3e565b600080600061305f6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03871660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa1580156130b2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526130da9190810190613c69565b90506130f881604001516130ec604690565b60ff9081169116141590565b156131215760405163e3c2794960e01b81526001600160601b03871660048201526024016107b9565b6040516308b09a5f60e41b81526001600160a01b03868116600483015260009190841690638b09a5f090602401600060405180830381865afa15801561316b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526131939190810190613c69565b90506131b08160200151886001600160601b039081169116141590565b156131e457805160405163a811346560e01b81526001600160601b03808a16600483015290911660248201526044016107b9565b608090910151905190969095509350505050565b600080516020613e5f83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b613261612ee7565b610d5b81613353565b6000763d602d80600a3d3981f3363d3d373d3d3d363d730000008260601b60e81c176000526e5af43d82803e903d91602b57fd5bf38260781b17602052603760096000f090506001600160a01b0381166132d7576040516330be1a3d60e21b815260040160405180910390fd5b919050565b6040516368aebf7b60e01b81526000600482018190529073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af415801561332f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061054a9190613bb7565b61335b612ee7565b610d5b816131f8565b80356001600160e01b0319811681146132d757600080fd5b60006020828403121561338e57600080fd5b61339782613364565b9392505050565b60005b838110156133b95781810151838201526020016133a1565b50506000910152565b600081518084526133da81602086016020860161339e565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161345760c08401826001600160a01b03169052565b5060c083015160e0808401526134716101008401826133c2565b949350505050565b6001600160a01b0381168114610d5b57600080fd5b6001600160601b0381168114610d5b57600080fd5b60ff81168114610d5b57600080fd5b8015158114610d5b57600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156134f8576134f86134c0565b60405290565b604051601f8201601f191681016001600160401b0381118282101715613526576135266134c0565b604052919050565b60006001600160401b03821115613547576135476134c0565b50601f01601f191660200190565b60006135686135638461352e565b6134fe565b905082815283838301111561357c57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126135a457600080fd5b61339783833560208501613555565b60008060008060008060c087890312156135cc57600080fd5b86356135d781613479565b955060208701356135e78161348e565b945060408701356135f7816134a3565b93506060870135613607816134b2565b9250608087013561361781613479565b915060a08701356001600160401b0381111561363257600080fd5b61363e89828a01613593565b9150509295509295509295565b60006020828403121561365d57600080fd5b81356001600160401b0381111561367357600080fd5b61347184828501613593565b6000806040838503121561369257600080fd5b823561369d81613479565b915060208301356001600160401b038111156136b857600080fd5b6136c485828601613593565b9150509250929050565b6000602082840312156136e057600080fd5b813561339781613479565b60006001600160401b03821115613704576137046134c0565b5060051b60200190565b600082601f83011261371f57600080fd5b8135602061372f613563836136eb565b828152600592831b850182019282820191908785111561374e57600080fd5b8387015b858110156137e85780356001600160401b038111156137715760008081fd5b8801603f81018a136137835760008081fd5b858101356040613795613563836136eb565b82815291851b8301810191888101908d8411156137b25760008081fd5b938201935b838510156137d7576137c885613364565b825293890193908901906137b7565b885250505093850193508401613752565b5090979650505050505050565b6001600160401b0381168114610d5b57600080fd5b600082601f83011261381b57600080fd5b8135602061382b613563836136eb565b82815260059290921b8401810191818101908684111561384a57600080fd5b8286015b8481101561386e578035613861816137f5565b835291830191830161384e565b509695505050505050565b600080600080600060a0868803121561389157600080fd5b853561389c8161348e565b945060208601356138ac81613479565b935060408601356001600160401b03808211156138c857600080fd5b818801915088601f8301126138dc57600080fd5b6138eb89833560208501613555565b9450606088013591508082111561390157600080fd5b61390d89838a0161370e565b9350608088013591508082111561392357600080fd5b506139308882890161380a565b9150509295509295909350565b60008060006060848603121561395257600080fd5b833561395d81613479565b9250602084013561396d81613479565b9150604084013561397d81613479565b809150509250925092565b60006020828403121561399a57600080fd5b8135613397816134b2565b6000602082840312156139b757600080fd5b81356133978161348e565b600080604083850312156139d557600080fd5b82356139e081613479565b915060208301356139f081613479565b809150509250929050565b600060208284031215613a0d57600080fd5b815162ffffff8116811461339757600080fd5b600181811c90821680613a3457607f821691505b602082108103613a5457634e487b7160e01b600052602260045260246000fd5b50919050565b80516132d7816134b2565b600060208284031215613a7757600080fd5b8151613397816134b2565b80516132d78161348e565b600060208284031215613a9f57600080fd5b81516133978161348e565b601f821115611e2557600081815260208120601f850160051c81016020861015613ad15750805b601f850160051c820191505b81811015613af057828155600101613add565b505050505050565b81516001600160401b03811115613b1157613b116134c0565b613b2581613b1f8454613a20565b84613aaa565b602080601f831160018114613b5a5760008415613b425750858301515b600019600386901b1c1916600185901b178555613af0565b600085815260208120601f198616915b82811015613b8957888601518255948401946001909101908401613b6a565b5085821015613ba75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215613bc957600080fd5b8151613397816137f5565b80516132d781613479565b600060208284031215613bf157600080fd5b815161339781613479565b80516132d7816134a3565b600060208284031215613c1957600080fd5b8151613397816134a3565b600082601f830112613c3557600080fd5b8151613c436135638261352e565b818152846020838601011115613c5857600080fd5b61347182602083016020870161339e565b600060208284031215613c7b57600080fd5b81516001600160401b0380821115613c9257600080fd5b9083019060e08286031215613ca657600080fd5b613cae6134d6565b613cb783613a82565b8152613cc560208401613a82565b6020820152613cd660408401613bfc565b6040820152613ce760608401613a5a565b6060820152613cf860808401613bd4565b6080820152613d0960a08401613bd4565b60a082015260c083015182811115613d2057600080fd5b613d2c87828601613c24565b60c08301525095945050505050565b6001600160a01b0383168152604060208201819052600090613471908301846133c2565b634e487b7160e01b600052603260045260246000fd5b606081526000613d8860608301866133c2565b82810360208481019190915285518083528682019282019060005b81811015613dc95784516001600160e01b03191683529383019391830191600101613da3565b50508093505050506001600160401b0383166040830152949350505050565b600060018201613e0857634e487b7160e01b600052601160045260246000fd5b5060010190565b60008060408385031215613e2257600080fd5b8251613e2d81613479565b60208401519092506139f08161347956fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220853172cf4ae31c8ee03d9757b69ce9db2754ceced520e75e9d617d75fc0c7d1f64736f6c63430008140033",
888
+ "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80637a9e5e4b11610104578063b68d1809116100a2578063eeff428e11610071578063eeff428e14610445578063f21de1e8146102e5578063f7c34ee01461049f578063feec1190146104b257600080fd5b8063b68d1809146103f4578063bf7e214f14610403578063c22f980d14610421578063edabac031461043457600080fd5b80638e32e979116100de5780638e32e979146103985780638fb36037146103ab578063ada9652e146103cc578063b03d2a8e146103e157600080fd5b80637a9e5e4b14610375578063872309c714610388578063893d20e81461039057600080fd5b8063329d6e741161017c578063644c45e01161014b578063644c45e01461030a578063675393bf1461033c5780636a778e731461034f5780636c6fbb281461036257600080fd5b8063329d6e74146102b757806336fc697e146102ca57806349bb9e4b146102d25780635ab1bd53146102e557600080fd5b8063138461e0116101b8578063138461e0146102525780631eff4b221461025c578063214cdb801461029157806327bb7a33146102a457600080fd5b806301ffc9a7146101df5780630d8e6e2c146102215780630fec111c1461023d575b600080fd5b61020c6101ed36600461337c565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102296104c5565b60405162ffffff9091168152602001610218565b61024561054f565b60405161021891906133ee565b61025a6106fe565b005b6102837f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610218565b61025a61029f36600461337c565b610905565b61025a6102b23660046135b3565b610932565b61025a6102c536600461364b565b6109be565b61025a610b0b565b61025a6102e036600461367f565b610b51565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610218565b600080516020613e3f833981519152546001600160601b03165b6040516001600160601b039091168152602001610218565b61025a61034a3660046136ce565b610c50565b61032461035d3660046136ce565b610d5e565b61025a610370366004613879565b6117f5565b61025a6103833660046136ce565b611a20565b610283600081565b6102f2611aba565b61025a6103a636600461393d565b611bf1565b6103b3611e2a565b6040516001600160e01b03199091168152602001610218565b610283600080516020613e3f83398151915281565b61025a6103ef366004613988565b611e62565b60405160468152602001610218565b600080516020613e5f833981519152546001600160a01b03166102f2565b61025a61042f3660046139a5565b6120c8565b6005546001600160a01b03166102f2565b61044d6122f3565b604080516001600160a01b0398891681529688166020880152948716948601949094526001600160601b03909216606085015284166080840152831660a08301529190911660c082015260e001610218565b61025a6104ad3660046139c2565b612cfd565b61025a6104c03660046136ce565b612d74565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610526573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061054a91906139fb565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906105fa90613a20565b80601f016020809104026020016040519081016040528092919081815260200182805461062690613a20565b80156106735780601f1061064857610100808354040283529160200191610673565b820191906000526020600020905b81548152906001019060200180831161065657829003601f168201915b50505050508152505090506040518060e00160405280610691600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016106e2611aba565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020613e3f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561076d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107919190613a65565b156107c25780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b306107d56001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561081d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108419190613a65565b6108695760405163b9304b0d60e01b81526001600160a01b03821660048201526024016107b9565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa1580156108bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e19190613a8d565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b61090d612ee7565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b61093a612ee7565b6109448287612cfd565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016109b48382613af8565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c6109e06104c5565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610a20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a449190613bb7565b600080516020613e7f8339815191528054600160401b900460ff1680610a77575080546001600160401b03808416911610155b15610a955760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610abf83612f20565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610b13612ee7565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080516020613e7f8339815191528054600160401b810460ff1615906001600160401b0316600081158015610b845750825b90506000826001600160401b03166001148015610ba05750303b155b905081158015610bae575080155b15610bcc5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610bf657845460ff60401b1916600160401b1785555b610c008787612f28565b8315610c4757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610c58612ee7565b806001600160a01b03163b600003610c8e5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016107b9565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015610d08575060408051601f3d908101601f19168201909252610d0591810190613a65565b60015b610d305760405163fdeac91f60e01b81526001600160a01b03821660048201526024016107b9565b80610d595760405163fdeac91f60e01b81526001600160a01b03831660048201526024016107b9565b505b50565b6000610d68611aba565b6001600160a01b0316336001600160a01b031614610d9b5760405163086391f760e31b81523360048201526024016107b9565b6004546001600160a01b031615610dc557604051632c237de760e11b815260040160405180910390fd5b6002546001600160a01b031615610def57604051636519f6b960e01b815260040160405180910390fd5b6003546001600160a01b031615610e1957604051630157f74960e01b815260040160405180910390fd5b6006546001600160a01b031615610e4357604051637f405a2960e01b815260040160405180910390fd5b6001600160a01b038216610e6a576040516309353e4560e11b815260040160405180910390fd5b60008290506000816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eaf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed39190613bdf565b905060008190506000836001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3e9190613bdf565b905060008190506000856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa99190613bdf565b905060008190506000876001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ff0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110149190613bdf565b905060008190506000896001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561105b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107f9190613bdf565b9050806001600160a01b0389166110a95760405163078ddb7760e51b815260040160405180910390fd5b6001600160a01b0387166110d05760405163459e9b9760e01b815260040160405180910390fd5b6001600160a01b0385166110f75760405163e267254160e01b815260040160405180910390fd5b6001600160a01b03831661111e57604051630ddeaef560e11b815260040160405180910390fd5b6001600160a01b038116611145576040516301fa2a2b60e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611183573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a79190613bdf565b6001600160a01b03168b6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112129190613bdf565b6001600160a01b031614611239576040516334ddf1a760e21b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611277573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129b9190613bdf565b6001600160a01b0316846001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113069190613bdf565b6001600160a01b03161461132d576040516326c89a4160e01b815260040160405180910390fd5b876001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561136b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138f9190613bdf565b6001600160a01b0316826001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113fa9190613bdf565b6001600160a01b03161461142157604051631129422760e31b815260040160405180910390fd5b8a6001600160a01b0316866001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611469573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148d9190613bdf565b6001600160a01b0316146114b4576040516331783c7160e11b815260040160405180910390fd5b8a6001600160a01b0316846001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115209190613bdf565b6001600160a01b03161461154757604051631b25e96d60e31b815260040160405180910390fd5b88600260006101000a8154816001600160a01b0302191690836001600160a01b0316021790555086600360006101000a8154816001600160a01b0302191690836001600160a01b031602179055508c600460006101000a8154816001600160a01b0302191690836001600160a01b0316021790555084600560006101000a8154816001600160a01b0302191690836001600160a01b0316021790555082600660006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600760006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060006116456001546001600160a01b031690565b6001600160a01b031663d39e6043602861165d6104c5565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156116b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d69190613c07565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561171b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173f9190613bdf565b6004549091506001600160a01b0390811690600090831663026bc43b83611764611aba565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016000604051808303816000875af11580156117b1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526117d99190810190613c69565b905080600001519e505050505050505050505050505050919050565b6001546001600160a01b0316604051632b91e0a960e01b81523360048201526001600160a01b039190911690632b91e0a990602401602060405180830381865afa158015611847573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186b9190613a65565b61188a576040516302613e9f60e51b81523360048201526024016107b9565b6000806118978787613048565b915091506000826001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ff9190613bdf565b60405163044ec4c360e41b81529091506001600160a01b038216906344ec4c3090611930908a908a90600401613d3b565b600060405180830381600087803b15801561194a57600080fd5b505af115801561195e573d6000803e3d6000fd5b5050505060005b8451811015611a1557816001600160a01b0316630c8ae53e8888848151811061199057611990613d5f565b60200260200101518885815181106119aa576119aa613d5f565b60200260200101516040518463ffffffff1660e01b81526004016119d093929190613d75565b600060405180830381600087803b1580156119ea57600080fd5b505af11580156119fe573d6000803e3d6000fd5b505050508080611a0d90613de8565b915050611965565b505050505050505050565b33611a40600080516020613e5f833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b031614611a7b5760405162d1953b60e31b81526001600160a01b03821660048201526024016107b9565b816001600160a01b03163b600003611ab1576040516361798f2f60e11b81526001600160a01b03831660048201526024016107b9565b610d59826131f8565b600080600080516020613e3f83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611b2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b4e9190613a65565b15611bdb576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611bb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bd59190613bdf565b91505090565b54600160601b90046001600160a01b0316919050565b611bf9612ee7565b611c7983846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5f9190613a8d565b603c60008560405180602001604052806000815250610932565b6001600160a01b03821615611c9657611c9182613259565b611e05565b6000611caa6001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611d0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d2e9190613c07565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611d73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d979190613bdf565b9050611e03816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dfe9190613bdf565b613259565b505b611e15634a531f3360e01b610905565b611e2563b68d180960e01b610905565b505050565b600080516020613e5f833981519152805460009190600160a01b900460ff16611e54576000611bd5565b638fb3603760e01b91505090565b6001546001600160a01b0316604051630bee2f1560e11b81523360048201526001600160a01b0391909116906317dc5e2a90602401602060405180830381865afa158015611eb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ed89190613a65565b611ef7576040516302613e9f60e51b81523360048201526024016107b9565b336000611f0c6001546001600160a01b031690565b6040516308b09a5f60e41b81526001600160a01b038481166004830152919250600091831690638b09a5f090602401600060405180830381865afa158015611f58573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611f809190810190613c69565b602001516040516305247a1760e51b81526001600160601b03821660048201529091506000906001600160a01b0384169063a48f42e090602401600060405180830381865afa158015611fd7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611fff9190810190613c69565b608001519050806001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015612043573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120679190613bdf565b6040516313bfaf6360e31b81526001600160a01b03868116600483015287151560248301529190911690639dfd7b1890604401600060405180830381600087803b1580156120b457600080fd5b505af1158015611a15573d6000803e3d6000fd5b806120db6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561212a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214e9190613bdf565b6001600160a01b0316336001600160a01b031614612181576040516302613e9f60e51b81523360048201526024016107b9565b60006121956001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa1580156121e8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526122109190810190613c69565b608081015160055491925090600090612231906001600160a01b031661326a565b60405163189acdbd60e31b81526001600160a01b0384811660048301529192509082169063c4d66de890602401600060405180830381600087803b15801561227857600080fd5b505af115801561228c573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528516925063f7bc431c9150602401600060405180830381600087803b1580156122d357600080fd5b505af11580156122e7573d6000803e3d6000fd5b50505050505050505050565b6000808080808080338161230f6001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b038216600482018190529192506000919063d272ac1e90602401602060405180830381865afa15801561235a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061237e9190613a8d565b905060006001600160a01b03831663d39e6043602861239b6104c5565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156123f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124149190613c07565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015612459573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247d9190613bdf565b600254909150612495906001600160a01b031661326a565b60405163189acdbd60e31b8152306004820152909b506001600160a01b038c169063c4d66de890602401600060405180830381600087803b1580156124d957600080fd5b505af11580156124ed573d6000803e3d6000fd5b505060045461250792506001600160a01b0316905061326a565b60405163c0c53b8b60e01b81526001600160a01b038d8116600483015285811660248301528681166044830152919a50908a169063c0c53b8b90606401600060405180830381600087803b15801561255e57600080fd5b505af1158015612572573d6000803e3d6000fd5b505060075461258c92506001600160a01b0316905061326a565b60405163189acdbd60e31b81526001600160a01b038b811660048301529196509086169063c4d66de890602401600060405180830381600087803b1580156125d357600080fd5b505af11580156125e7573d6000803e3d6000fd5b505060405163048935d560e31b81526001600160a01b0388811660048301528c169250632449aea89150602401600060405180830381600087803b15801561262e57600080fd5b505af1158015612642573d6000803e3d6000fd5b505060055461265c92506001600160a01b0316905061326a565b60405163189acdbd60e31b81526001600160a01b038b811660048301529198509088169063c4d66de890602401600060405180830381600087803b1580156126a357600080fd5b505af11580156126b7573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b038a811660048301528c16925063f7bc431c9150602401600060405180830381600087803b1580156126fe57600080fd5b505af1158015612712573d6000803e3d6000fd5b505060065461272c92506001600160a01b0316905061326a565b60405163189acdbd60e31b81526001600160a01b038b811660048301529197509087169063c4d66de890602401600060405180830381600087803b15801561277357600080fd5b505af1158015612787573d6000803e3d6000fd5b505060405162422c9d60e81b81526001600160a01b0389811660048301528c16925063422c9d009150602401600060405180830381600087803b1580156127cd57600080fd5b505af11580156127e1573d6000803e3d6000fd5b50506003546127fb92506001600160a01b0316905061326a565b99508a6001600160a01b03166325c471a06128146132dc565b604051631517388760e21b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af415801561286d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128919190613bb7565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038d16602482015260006044820152606401600060405180830381600087803b1580156128e857600080fd5b505af11580156128fc573d6000803e3d6000fd5b505060405163189acdbd60e31b81526001600160a01b038c811660048301528d16925063c4d66de89150602401600060405180830381600087803b15801561294357600080fd5b505af1158015612957573d6000803e3d6000fd5b5050604051630f749a8960e01b81526001600160a01b038d811660048301528c169250630f749a899150602401600060405180830381600087803b15801561299e57600080fd5b505af11580156129b2573d6000803e3d6000fd5b5050505073__$2a34b1f180a6bf22a62a9bc53ba8adfaf5$__63a1b61ad48b8b8989896129e76001546001600160a01b031690565b6129ef6104c5565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015612a44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a689190613c07565b60405160e089901b6001600160e01b03191681526001600160a01b0397881660048201529587166024870152938616604486015291851660648501528416608484015290921660a482015260ff90911660c482015260e40160006040518083038186803b158015612ad857600080fd5b505af4158015612aec573d6000803e3d6000fd5b505050508a6001600160a01b031663fe0776f5612b076132dc565b604051631517388760e21b81526001600160401b03909116600482015273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015612b60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b849190613bb7565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152306024820152604401600060405180830381600087803b158015612bcb57600080fd5b505af1158015612bdf573d6000803e3d6000fd5b505060405163026bc43b60e01b81526001600160a01b038c811660048301528781166024830152600093508416915063026bc43b906044016000604051808303816000875af1158015612c36573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612c5e9190810190613c69565b9050806000015198507eccc9e339dab7298ad32b43864beb3b1c0cf136971be26f1e67d90bf43ebd3d8c8c8c898b8d8f604051612ce797969594939291906001600160a01b0397881681529587166020870152938616604086015291851660608501528416608084015290921660a08201526001600160601b039190911660c082015260e00190565b60405180910390a1505050505090919293949596565b612d05612ee7565b612d0e81610c50565b612d16610b0b565b6001600160a01b038216612d3d5760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020613e3f83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b612d7c611aba565b6001600160a01b0316336001600160a01b031614612daf5760405163086391f760e31b81523360048201526024016107b9565b6005546001600160a01b0316612dd8576040516358e5a4af60e01b815260040160405180910390fd5b6001600160a01b038116612dff57604051631aa1808560e31b815260040160405180910390fd5b6005546001600160a01b0390811690821603612e2e57604051630666e2a560e01b815260040160405180910390fd5b600480546040805163379ed74560e21b8152905184936001600160a01b039384169385169263de7b5d1492818301926020928290030181865afa158015612e79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e9d9190613bdf565b6001600160a01b031614612ec45760405163f026367160e01b815260040160405180910390fd5b50600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080516020613e7f83398151915254600160401b900460ff16612f1e57604051631afcd79f60e31b815260040160405180910390fd5b565b6101da612ee7565b600080516020613e7f8339815191528054600160401b810460ff1615906001600160401b0316600081158015612f5b5750825b90506000826001600160401b03166001148015612f775750303b155b905081158015612f85575080155b15612fa35760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612fcd57845460ff60401b1916600160401b1785555b60008087806020019051810190612fe49190613e0f565b92509050612ff48160008b611bf1565b613004630655ba6560e31b610905565b50508315610c4757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610c3e565b600080600061305f6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03871660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa1580156130b2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526130da9190810190613c69565b90506130f881604001516130ec604690565b60ff9081169116141590565b156131215760405163e3c2794960e01b81526001600160601b03871660048201526024016107b9565b6040516308b09a5f60e41b81526001600160a01b03868116600483015260009190841690638b09a5f090602401600060405180830381865afa15801561316b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526131939190810190613c69565b90506131b08160200151886001600160601b039081169116141590565b156131e457805160405163a811346560e01b81526001600160601b03808a16600483015290911660248201526044016107b9565b608090910151905190969095509350505050565b600080516020613e5f83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b613261612ee7565b610d5b81613353565b6000763d602d80600a3d3981f3363d3d373d3d3d363d730000008260601b60e81c176000526e5af43d82803e903d91602b57fd5bf38260781b17602052603760096000f090506001600160a01b0381166132d7576040516330be1a3d60e21b815260040160405180910390fd5b919050565b6040516368aebf7b60e01b81526000600482018190529073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af415801561332f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061054a9190613bb7565b61335b612ee7565b610d5b816131f8565b80356001600160e01b0319811681146132d757600080fd5b60006020828403121561338e57600080fd5b61339782613364565b9392505050565b60005b838110156133b95781810151838201526020016133a1565b50506000910152565b600081518084526133da81602086016020860161339e565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161345760c08401826001600160a01b03169052565b5060c083015160e0808401526134716101008401826133c2565b949350505050565b6001600160a01b0381168114610d5b57600080fd5b6001600160601b0381168114610d5b57600080fd5b60ff81168114610d5b57600080fd5b8015158114610d5b57600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156134f8576134f86134c0565b60405290565b604051601f8201601f191681016001600160401b0381118282101715613526576135266134c0565b604052919050565b60006001600160401b03821115613547576135476134c0565b50601f01601f191660200190565b60006135686135638461352e565b6134fe565b905082815283838301111561357c57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126135a457600080fd5b61339783833560208501613555565b60008060008060008060c087890312156135cc57600080fd5b86356135d781613479565b955060208701356135e78161348e565b945060408701356135f7816134a3565b93506060870135613607816134b2565b9250608087013561361781613479565b915060a08701356001600160401b0381111561363257600080fd5b61363e89828a01613593565b9150509295509295509295565b60006020828403121561365d57600080fd5b81356001600160401b0381111561367357600080fd5b61347184828501613593565b6000806040838503121561369257600080fd5b823561369d81613479565b915060208301356001600160401b038111156136b857600080fd5b6136c485828601613593565b9150509250929050565b6000602082840312156136e057600080fd5b813561339781613479565b60006001600160401b03821115613704576137046134c0565b5060051b60200190565b600082601f83011261371f57600080fd5b8135602061372f613563836136eb565b828152600592831b850182019282820191908785111561374e57600080fd5b8387015b858110156137e85780356001600160401b038111156137715760008081fd5b8801603f81018a136137835760008081fd5b858101356040613795613563836136eb565b82815291851b8301810191888101908d8411156137b25760008081fd5b938201935b838510156137d7576137c885613364565b825293890193908901906137b7565b885250505093850193508401613752565b5090979650505050505050565b6001600160401b0381168114610d5b57600080fd5b600082601f83011261381b57600080fd5b8135602061382b613563836136eb565b82815260059290921b8401810191818101908684111561384a57600080fd5b8286015b8481101561386e578035613861816137f5565b835291830191830161384e565b509695505050505050565b600080600080600060a0868803121561389157600080fd5b853561389c8161348e565b945060208601356138ac81613479565b935060408601356001600160401b03808211156138c857600080fd5b818801915088601f8301126138dc57600080fd5b6138eb89833560208501613555565b9450606088013591508082111561390157600080fd5b61390d89838a0161370e565b9350608088013591508082111561392357600080fd5b506139308882890161380a565b9150509295509295909350565b60008060006060848603121561395257600080fd5b833561395d81613479565b9250602084013561396d81613479565b9150604084013561397d81613479565b809150509250925092565b60006020828403121561399a57600080fd5b8135613397816134b2565b6000602082840312156139b757600080fd5b81356133978161348e565b600080604083850312156139d557600080fd5b82356139e081613479565b915060208301356139f081613479565b809150509250929050565b600060208284031215613a0d57600080fd5b815162ffffff8116811461339757600080fd5b600181811c90821680613a3457607f821691505b602082108103613a5457634e487b7160e01b600052602260045260246000fd5b50919050565b80516132d7816134b2565b600060208284031215613a7757600080fd5b8151613397816134b2565b80516132d78161348e565b600060208284031215613a9f57600080fd5b81516133978161348e565b601f821115611e2557600081815260208120601f850160051c81016020861015613ad15750805b601f850160051c820191505b81811015613af057828155600101613add565b505050505050565b81516001600160401b03811115613b1157613b116134c0565b613b2581613b1f8454613a20565b84613aaa565b602080601f831160018114613b5a5760008415613b425750858301515b600019600386901b1c1916600185901b178555613af0565b600085815260208120601f198616915b82811015613b8957888601518255948401946001909101908401613b6a565b5085821015613ba75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215613bc957600080fd5b8151613397816137f5565b80516132d781613479565b600060208284031215613bf157600080fd5b815161339781613479565b80516132d7816134a3565b600060208284031215613c1957600080fd5b8151613397816134a3565b600082601f830112613c3557600080fd5b8151613c436135638261352e565b818152846020838601011115613c5857600080fd5b61347182602083016020870161339e565b600060208284031215613c7b57600080fd5b81516001600160401b0380821115613c9257600080fd5b9083019060e08286031215613ca657600080fd5b613cae6134d6565b613cb783613a82565b8152613cc560208401613a82565b6020820152613cd660408401613bfc565b6040820152613ce760608401613a5a565b6060820152613cf860808401613bd4565b6080820152613d0960a08401613bd4565b60a082015260c083015182811115613d2057600080fd5b613d2c87828601613c24565b60c08301525095945050505050565b6001600160a01b0383168152604060208201819052600090613471908301846133c2565b634e487b7160e01b600052603260045260246000fd5b606081526000613d8860608301866133c2565b82810360208481019190915285518083528682019282019060005b81811015613dc95784516001600160e01b03191683529383019391830191600101613da3565b50508093505050506001600160401b0383166040830152949350505050565b600060018201613e0857634e487b7160e01b600052601160045260246000fd5b5060010190565b60008060408385031215613e2257600080fd5b8251613e2d81613479565b60208401519092506139f08161347956fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220853172cf4ae31c8ee03d9757b69ce9db2754ceced520e75e9d617d75fc0c7d1f64736f6c63430008140033",
889
+ "linkReferences": {
890
+ "contracts/instance/InstanceAuthorizationsLib.sol": {
891
+ "InstanceAuthorizationsLib": [
892
+ {
893
+ "length": 20,
894
+ "start": 10910
895
+ }
896
+ ]
897
+ },
898
+ "contracts/types/NftId.sol": {
899
+ "NftIdLib": [
900
+ {
901
+ "length": 20,
902
+ "start": 2073
903
+ },
904
+ {
905
+ "length": 20,
906
+ "start": 7126
907
+ }
908
+ ]
909
+ },
910
+ "contracts/types/RoleId.sol": {
911
+ "RoleIdLib": [
912
+ {
913
+ "length": 20,
914
+ "start": 10521
915
+ },
916
+ {
917
+ "length": 20,
918
+ "start": 11276
919
+ },
920
+ {
921
+ "length": 20,
922
+ "start": 13275
923
+ }
924
+ ]
925
+ },
926
+ "contracts/types/Version.sol": {
927
+ "VersionLib": [
928
+ {
929
+ "length": 20,
930
+ "start": 1490
931
+ },
932
+ {
933
+ "length": 20,
934
+ "start": 2726
935
+ },
936
+ {
937
+ "length": 20,
938
+ "start": 5982
939
+ },
940
+ {
941
+ "length": 20,
942
+ "start": 9372
943
+ },
944
+ {
945
+ "length": 20,
946
+ "start": 10992
947
+ }
948
+ ],
949
+ "VersionPartLib": [
950
+ {
951
+ "length": 20,
952
+ "start": 7606
953
+ }
954
+ ]
955
+ }
956
+ },
957
+ "deployedLinkReferences": {
958
+ "contracts/instance/InstanceAuthorizationsLib.sol": {
959
+ "InstanceAuthorizationsLib": [
960
+ {
961
+ "length": 20,
962
+ "start": 10680
963
+ }
964
+ ]
965
+ },
966
+ "contracts/types/NftId.sol": {
967
+ "NftIdLib": [
968
+ {
969
+ "length": 20,
970
+ "start": 1843
971
+ },
972
+ {
973
+ "length": 20,
974
+ "start": 6896
975
+ }
976
+ ]
977
+ },
978
+ "contracts/types/RoleId.sol": {
979
+ "RoleIdLib": [
980
+ {
981
+ "length": 20,
982
+ "start": 10291
983
+ },
984
+ {
985
+ "length": 20,
986
+ "start": 11046
987
+ },
988
+ {
989
+ "length": 20,
990
+ "start": 13045
991
+ }
992
+ ]
993
+ },
994
+ "contracts/types/Version.sol": {
995
+ "VersionLib": [
996
+ {
997
+ "length": 20,
998
+ "start": 1260
999
+ },
1000
+ {
1001
+ "length": 20,
1002
+ "start": 2496
1003
+ },
1004
+ {
1005
+ "length": 20,
1006
+ "start": 5752
1007
+ },
1008
+ {
1009
+ "length": 20,
1010
+ "start": 9142
1011
+ },
1012
+ {
1013
+ "length": 20,
1014
+ "start": 10762
1015
+ }
1016
+ ],
1017
+ "VersionPartLib": [
1018
+ {
1019
+ "length": 20,
1020
+ "start": 7376
1021
+ }
1022
+ ]
1023
+ }
1024
+ }
1025
+ }