@etherisc/gif-next 0.0.2-8eb96a8-113 → 0.0.2-9105e58-225

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