@etherisc/gif-next 0.0.2-f99f1d2-109 → 0.0.2-fb8d07b-779
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +268 -7
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → components/BaseComponent.sol/BaseComponent.json} +171 -143
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +618 -0
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
- package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → IBaseComponent.sol/IBaseComponent.json} +136 -111
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +152 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/policy/IPolicy.sol/IPolicyModule.json → components/IPoolComponent.sol/IPoolComponent.json} +124 -129
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +157 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +531 -77
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +526 -97
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +2 -2
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +2 -2
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +101 -0
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +1132 -0
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +4 -0
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +1082 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +386 -1112
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +480 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2794 -980
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +917 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1388 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +891 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +492 -0
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +540 -0
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +211 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/{treasury → module}/ITreasury.sol/ITreasury.json +1 -1
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +827 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +716 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +448 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +466 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +446 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +561 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +751 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +855 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +460 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +239 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +589 -24
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +853 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +741 -50
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1237 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +525 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +410 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/{components/Component.sol/Component.json → shared/IRegisterable.sol/IRegisterable.json} +98 -102
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/shared/IService.sol/IService.json +421 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +274 -0
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +442 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/shared/Service.sol/Service.json +468 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +228 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +305 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
- package/artifacts/contracts/test/TestService.sol/TestService.json +600 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +286 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +77 -2
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
- package/contracts/components/BaseComponent.sol +91 -0
- package/contracts/components/Distribution.sol +160 -0
- package/contracts/components/IBaseComponent.sol +25 -0
- package/contracts/components/IDistributionComponent.sol +44 -0
- package/contracts/components/IPoolComponent.sol +62 -0
- package/contracts/components/IProductComponent.sol +35 -0
- package/contracts/components/Pool.sol +216 -25
- package/contracts/components/Product.sol +254 -46
- package/contracts/experiment/cloning/Cloner.sol +47 -0
- package/contracts/instance/AccessManagedSimple.sol +115 -0
- package/contracts/instance/AccessManagerSimple.sol +692 -0
- package/contracts/instance/IAccessManagerSimple.sol +391 -0
- package/contracts/instance/IInstance.sol +38 -24
- package/contracts/instance/IInstanceService.sol +30 -0
- package/contracts/instance/Instance.sol +423 -52
- package/contracts/instance/InstanceAccessManager.sol +288 -0
- package/contracts/instance/InstanceReader.sol +306 -0
- package/contracts/instance/InstanceService.sol +182 -0
- package/contracts/instance/InstanceServiceManager.sol +56 -0
- package/contracts/instance/base/ComponentServiceBase.sol +125 -0
- package/contracts/instance/base/IInstanceBase.sol +23 -0
- package/contracts/instance/base/IKeyValueStore.sol +49 -0
- package/contracts/instance/base/ILifecycle.sol +30 -0
- package/contracts/instance/base/KeyValueStore.sol +172 -0
- package/contracts/instance/base/Lifecycle.sol +100 -0
- package/contracts/instance/module/IAccess.sol +38 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IDistribution.sol +39 -0
- package/contracts/instance/module/IPolicy.sol +45 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +44 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/ComponentOwnerService.sol +317 -0
- package/contracts/instance/service/DistributionService.sol +87 -0
- package/contracts/instance/service/DistributionServiceManager.sol +53 -0
- package/contracts/instance/service/IComponentOwnerService.sol +20 -0
- package/contracts/instance/service/IDistributionService.sol +12 -0
- package/contracts/instance/service/IPoolService.sol +37 -0
- package/contracts/instance/service/IProductService.sol +107 -0
- package/contracts/instance/service/PoolService.sol +193 -0
- package/contracts/instance/service/PoolServiceManager.sol +53 -0
- package/contracts/registry/ChainNft.sol +129 -62
- package/contracts/registry/IRegistry.sol +70 -43
- package/contracts/registry/IRegistryService.sol +33 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +432 -125
- package/contracts/registry/RegistryService.sol +399 -0
- package/contracts/registry/RegistryServiceManager.sol +80 -0
- package/contracts/registry/TokenRegistry.sol +111 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +25 -0
- package/contracts/shared/INftOwnable.sol +22 -0
- package/contracts/shared/IRegisterable.sol +17 -0
- package/contracts/shared/IService.sol +15 -0
- package/contracts/shared/IVersionable.sol +96 -0
- package/contracts/shared/NftOwnable.sol +136 -0
- package/contracts/shared/ProxyManager.sol +94 -0
- package/contracts/shared/Registerable.sol +90 -0
- package/contracts/shared/RegisterableUpgradable.sol +16 -0
- package/contracts/shared/Service.sol +55 -0
- package/contracts/shared/TokenHandler.sol +27 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +147 -0
- package/contracts/test/TestFee.sol +25 -0
- package/contracts/test/TestRegisterable.sol +18 -0
- package/contracts/test/TestRoleId.sol +14 -0
- package/contracts/test/TestService.sol +24 -0
- package/contracts/test/TestToken.sol +26 -0
- package/contracts/test/TestVersion.sol +44 -0
- package/contracts/test/TestVersionable.sol +17 -0
- package/contracts/test/Usdc.sol +26 -0
- package/contracts/types/AddressSet.sol +58 -0
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +44 -20
- package/contracts/types/Key32.sol +50 -0
- package/contracts/types/NftId.sol +22 -1
- package/contracts/types/NftIdSet.sol +60 -0
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +60 -15
- package/contracts/types/Referral.sol +85 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +89 -0
- package/contracts/types/StateId.sol +18 -4
- package/contracts/types/Timestamp.sol +29 -4
- package/contracts/types/UFixed.sol +150 -31
- package/contracts/types/Version.sol +107 -0
- package/package.json +12 -5
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -127
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -453
- package/contracts/components/Component.sol +0 -77
- package/contracts/components/IPool.sol +0 -15
- package/contracts/components/IProduct.sol +0 -16
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/instance/access/Access.sol +0 -165
- package/contracts/instance/access/IAccess.sol +0 -63
- package/contracts/instance/component/ComponentModule.sol +0 -274
- package/contracts/instance/component/IComponent.sol +0 -74
- package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
- package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
- package/contracts/instance/policy/IPolicy.sol +0 -50
- package/contracts/instance/policy/PolicyModule.sol +0 -114
- package/contracts/instance/pool/IPoolModule.sol +0 -23
- package/contracts/instance/pool/PoolModule.sol +0 -81
- package/contracts/instance/product/IProductService.sol +0 -36
- package/contracts/instance/product/ProductService.sol +0 -136
- package/contracts/instance/treasury/ITreasury.sol +0 -91
- package/contracts/instance/treasury/TokenHandler.sol +0 -24
- package/contracts/instance/treasury/TreasuryModule.sol +0 -168
- package/contracts/registry/IChainNft.sol +0 -21
@@ -0,0 +1,855 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "PoolService",
|
4
|
+
"sourceName": "contracts/instance/service/PoolService.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "ObjectType",
|
10
|
+
"name": "componentType",
|
11
|
+
"type": "uint8"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "ComponentTypeInvalid",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "registry",
|
22
|
+
"type": "address"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"internalType": "NftId",
|
26
|
+
"name": "nftId",
|
27
|
+
"type": "uint96"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "ErrorAlreadyLinked",
|
31
|
+
"type": "error"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"inputs": [
|
35
|
+
{
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "contractAddress",
|
38
|
+
"type": "address"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"name": "ErrorContractNotRegistered",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
46
|
+
{
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "account",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "ErrorNotOwner",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
57
|
+
{
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "registryAddress",
|
60
|
+
"type": "address"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "ErrorNotRegistry",
|
64
|
+
"type": "error"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [
|
68
|
+
{
|
69
|
+
"internalType": "address",
|
70
|
+
"name": "registryAddress",
|
71
|
+
"type": "address"
|
72
|
+
}
|
73
|
+
],
|
74
|
+
"name": "ErrorRegisterableNotRegistry",
|
75
|
+
"type": "error"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"inputs": [],
|
79
|
+
"name": "ErrorRegistryAddressZero",
|
80
|
+
"type": "error"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"inputs": [
|
84
|
+
{
|
85
|
+
"internalType": "address",
|
86
|
+
"name": "registry",
|
87
|
+
"type": "address"
|
88
|
+
}
|
89
|
+
],
|
90
|
+
"name": "ErrorRegistryAlreadyInitialized",
|
91
|
+
"type": "error"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"inputs": [],
|
95
|
+
"name": "ErrorRegistryNotInitialized",
|
96
|
+
"type": "error"
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"inputs": [
|
100
|
+
{
|
101
|
+
"internalType": "RoleId",
|
102
|
+
"name": "expected",
|
103
|
+
"type": "uint64"
|
104
|
+
},
|
105
|
+
{
|
106
|
+
"internalType": "address",
|
107
|
+
"name": "caller",
|
108
|
+
"type": "address"
|
109
|
+
}
|
110
|
+
],
|
111
|
+
"name": "ExpectedRoleMissing",
|
112
|
+
"type": "error"
|
113
|
+
},
|
114
|
+
{
|
115
|
+
"inputs": [],
|
116
|
+
"name": "InvalidInitialization",
|
117
|
+
"type": "error"
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"inputs": [],
|
121
|
+
"name": "NotInitializing",
|
122
|
+
"type": "error"
|
123
|
+
},
|
124
|
+
{
|
125
|
+
"anonymous": false,
|
126
|
+
"inputs": [
|
127
|
+
{
|
128
|
+
"indexed": false,
|
129
|
+
"internalType": "uint64",
|
130
|
+
"name": "version",
|
131
|
+
"type": "uint64"
|
132
|
+
}
|
133
|
+
],
|
134
|
+
"name": "Initialized",
|
135
|
+
"type": "event"
|
136
|
+
},
|
137
|
+
{
|
138
|
+
"anonymous": false,
|
139
|
+
"inputs": [
|
140
|
+
{
|
141
|
+
"indexed": false,
|
142
|
+
"internalType": "Version",
|
143
|
+
"name": "version",
|
144
|
+
"type": "uint24"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"indexed": false,
|
148
|
+
"internalType": "address",
|
149
|
+
"name": "implementation",
|
150
|
+
"type": "address"
|
151
|
+
},
|
152
|
+
{
|
153
|
+
"indexed": false,
|
154
|
+
"internalType": "address",
|
155
|
+
"name": "activatedBy",
|
156
|
+
"type": "address"
|
157
|
+
}
|
158
|
+
],
|
159
|
+
"name": "LogVersionableInitialized",
|
160
|
+
"type": "event"
|
161
|
+
},
|
162
|
+
{
|
163
|
+
"inputs": [],
|
164
|
+
"name": "NAME",
|
165
|
+
"outputs": [
|
166
|
+
{
|
167
|
+
"internalType": "string",
|
168
|
+
"name": "",
|
169
|
+
"type": "string"
|
170
|
+
}
|
171
|
+
],
|
172
|
+
"stateMutability": "view",
|
173
|
+
"type": "function"
|
174
|
+
},
|
175
|
+
{
|
176
|
+
"inputs": [],
|
177
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
178
|
+
"outputs": [
|
179
|
+
{
|
180
|
+
"internalType": "bytes32",
|
181
|
+
"name": "",
|
182
|
+
"type": "bytes32"
|
183
|
+
}
|
184
|
+
],
|
185
|
+
"stateMutability": "view",
|
186
|
+
"type": "function"
|
187
|
+
},
|
188
|
+
{
|
189
|
+
"inputs": [
|
190
|
+
{
|
191
|
+
"internalType": "address",
|
192
|
+
"name": "owner",
|
193
|
+
"type": "address"
|
194
|
+
},
|
195
|
+
{
|
196
|
+
"components": [
|
197
|
+
{
|
198
|
+
"internalType": "UFixed",
|
199
|
+
"name": "fractionalFee",
|
200
|
+
"type": "uint256"
|
201
|
+
},
|
202
|
+
{
|
203
|
+
"internalType": "uint256",
|
204
|
+
"name": "fixedFee",
|
205
|
+
"type": "uint256"
|
206
|
+
}
|
207
|
+
],
|
208
|
+
"internalType": "struct Fee",
|
209
|
+
"name": "fee",
|
210
|
+
"type": "tuple"
|
211
|
+
},
|
212
|
+
{
|
213
|
+
"internalType": "uint256",
|
214
|
+
"name": "stakingAmount",
|
215
|
+
"type": "uint256"
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"internalType": "uint256",
|
219
|
+
"name": "lifetime",
|
220
|
+
"type": "uint256"
|
221
|
+
},
|
222
|
+
{
|
223
|
+
"internalType": "bytes",
|
224
|
+
"name": "filter",
|
225
|
+
"type": "bytes"
|
226
|
+
}
|
227
|
+
],
|
228
|
+
"name": "createBundle",
|
229
|
+
"outputs": [
|
230
|
+
{
|
231
|
+
"internalType": "NftId",
|
232
|
+
"name": "bundleNftId",
|
233
|
+
"type": "uint96"
|
234
|
+
}
|
235
|
+
],
|
236
|
+
"stateMutability": "nonpayable",
|
237
|
+
"type": "function"
|
238
|
+
},
|
239
|
+
{
|
240
|
+
"inputs": [],
|
241
|
+
"name": "getInitialInfo",
|
242
|
+
"outputs": [
|
243
|
+
{
|
244
|
+
"components": [
|
245
|
+
{
|
246
|
+
"internalType": "NftId",
|
247
|
+
"name": "nftId",
|
248
|
+
"type": "uint96"
|
249
|
+
},
|
250
|
+
{
|
251
|
+
"internalType": "NftId",
|
252
|
+
"name": "parentNftId",
|
253
|
+
"type": "uint96"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"internalType": "ObjectType",
|
257
|
+
"name": "objectType",
|
258
|
+
"type": "uint8"
|
259
|
+
},
|
260
|
+
{
|
261
|
+
"internalType": "bool",
|
262
|
+
"name": "isInterceptor",
|
263
|
+
"type": "bool"
|
264
|
+
},
|
265
|
+
{
|
266
|
+
"internalType": "address",
|
267
|
+
"name": "objectAddress",
|
268
|
+
"type": "address"
|
269
|
+
},
|
270
|
+
{
|
271
|
+
"internalType": "address",
|
272
|
+
"name": "initialOwner",
|
273
|
+
"type": "address"
|
274
|
+
},
|
275
|
+
{
|
276
|
+
"internalType": "bytes",
|
277
|
+
"name": "data",
|
278
|
+
"type": "bytes"
|
279
|
+
}
|
280
|
+
],
|
281
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
282
|
+
"name": "",
|
283
|
+
"type": "tuple"
|
284
|
+
},
|
285
|
+
{
|
286
|
+
"internalType": "bytes",
|
287
|
+
"name": "data",
|
288
|
+
"type": "bytes"
|
289
|
+
}
|
290
|
+
],
|
291
|
+
"stateMutability": "view",
|
292
|
+
"type": "function"
|
293
|
+
},
|
294
|
+
{
|
295
|
+
"inputs": [],
|
296
|
+
"name": "getInitializedVersion",
|
297
|
+
"outputs": [
|
298
|
+
{
|
299
|
+
"internalType": "uint64",
|
300
|
+
"name": "",
|
301
|
+
"type": "uint64"
|
302
|
+
}
|
303
|
+
],
|
304
|
+
"stateMutability": "view",
|
305
|
+
"type": "function"
|
306
|
+
},
|
307
|
+
{
|
308
|
+
"inputs": [],
|
309
|
+
"name": "getInstanceService",
|
310
|
+
"outputs": [
|
311
|
+
{
|
312
|
+
"internalType": "contract InstanceService",
|
313
|
+
"name": "",
|
314
|
+
"type": "address"
|
315
|
+
}
|
316
|
+
],
|
317
|
+
"stateMutability": "view",
|
318
|
+
"type": "function"
|
319
|
+
},
|
320
|
+
{
|
321
|
+
"inputs": [],
|
322
|
+
"name": "getMajorVersion",
|
323
|
+
"outputs": [
|
324
|
+
{
|
325
|
+
"internalType": "VersionPart",
|
326
|
+
"name": "majorVersion",
|
327
|
+
"type": "uint8"
|
328
|
+
}
|
329
|
+
],
|
330
|
+
"stateMutability": "view",
|
331
|
+
"type": "function"
|
332
|
+
},
|
333
|
+
{
|
334
|
+
"inputs": [],
|
335
|
+
"name": "getName",
|
336
|
+
"outputs": [
|
337
|
+
{
|
338
|
+
"internalType": "string",
|
339
|
+
"name": "name",
|
340
|
+
"type": "string"
|
341
|
+
}
|
342
|
+
],
|
343
|
+
"stateMutability": "pure",
|
344
|
+
"type": "function"
|
345
|
+
},
|
346
|
+
{
|
347
|
+
"inputs": [],
|
348
|
+
"name": "getNftId",
|
349
|
+
"outputs": [
|
350
|
+
{
|
351
|
+
"internalType": "NftId",
|
352
|
+
"name": "",
|
353
|
+
"type": "uint96"
|
354
|
+
}
|
355
|
+
],
|
356
|
+
"stateMutability": "view",
|
357
|
+
"type": "function"
|
358
|
+
},
|
359
|
+
{
|
360
|
+
"inputs": [],
|
361
|
+
"name": "getOwner",
|
362
|
+
"outputs": [
|
363
|
+
{
|
364
|
+
"internalType": "address",
|
365
|
+
"name": "",
|
366
|
+
"type": "address"
|
367
|
+
}
|
368
|
+
],
|
369
|
+
"stateMutability": "view",
|
370
|
+
"type": "function"
|
371
|
+
},
|
372
|
+
{
|
373
|
+
"inputs": [],
|
374
|
+
"name": "getRegistry",
|
375
|
+
"outputs": [
|
376
|
+
{
|
377
|
+
"internalType": "contract IRegistry",
|
378
|
+
"name": "",
|
379
|
+
"type": "address"
|
380
|
+
}
|
381
|
+
],
|
382
|
+
"stateMutability": "view",
|
383
|
+
"type": "function"
|
384
|
+
},
|
385
|
+
{
|
386
|
+
"inputs": [],
|
387
|
+
"name": "getRegistryService",
|
388
|
+
"outputs": [
|
389
|
+
{
|
390
|
+
"internalType": "contract IRegistryService",
|
391
|
+
"name": "",
|
392
|
+
"type": "address"
|
393
|
+
}
|
394
|
+
],
|
395
|
+
"stateMutability": "view",
|
396
|
+
"type": "function"
|
397
|
+
},
|
398
|
+
{
|
399
|
+
"inputs": [],
|
400
|
+
"name": "getVersion",
|
401
|
+
"outputs": [
|
402
|
+
{
|
403
|
+
"internalType": "Version",
|
404
|
+
"name": "",
|
405
|
+
"type": "uint24"
|
406
|
+
}
|
407
|
+
],
|
408
|
+
"stateMutability": "pure",
|
409
|
+
"type": "function"
|
410
|
+
},
|
411
|
+
{
|
412
|
+
"inputs": [
|
413
|
+
{
|
414
|
+
"internalType": "uint256",
|
415
|
+
"name": "idx",
|
416
|
+
"type": "uint256"
|
417
|
+
}
|
418
|
+
],
|
419
|
+
"name": "getVersion",
|
420
|
+
"outputs": [
|
421
|
+
{
|
422
|
+
"internalType": "Version",
|
423
|
+
"name": "",
|
424
|
+
"type": "uint24"
|
425
|
+
}
|
426
|
+
],
|
427
|
+
"stateMutability": "view",
|
428
|
+
"type": "function"
|
429
|
+
},
|
430
|
+
{
|
431
|
+
"inputs": [],
|
432
|
+
"name": "getVersionCount",
|
433
|
+
"outputs": [
|
434
|
+
{
|
435
|
+
"internalType": "uint256",
|
436
|
+
"name": "",
|
437
|
+
"type": "uint256"
|
438
|
+
}
|
439
|
+
],
|
440
|
+
"stateMutability": "view",
|
441
|
+
"type": "function"
|
442
|
+
},
|
443
|
+
{
|
444
|
+
"inputs": [
|
445
|
+
{
|
446
|
+
"internalType": "Version",
|
447
|
+
"name": "_version",
|
448
|
+
"type": "uint24"
|
449
|
+
}
|
450
|
+
],
|
451
|
+
"name": "getVersionInfo",
|
452
|
+
"outputs": [
|
453
|
+
{
|
454
|
+
"components": [
|
455
|
+
{
|
456
|
+
"internalType": "Version",
|
457
|
+
"name": "version",
|
458
|
+
"type": "uint24"
|
459
|
+
},
|
460
|
+
{
|
461
|
+
"internalType": "address",
|
462
|
+
"name": "implementation",
|
463
|
+
"type": "address"
|
464
|
+
},
|
465
|
+
{
|
466
|
+
"internalType": "address",
|
467
|
+
"name": "activatedBy",
|
468
|
+
"type": "address"
|
469
|
+
},
|
470
|
+
{
|
471
|
+
"internalType": "Timestamp",
|
472
|
+
"name": "activatedAt",
|
473
|
+
"type": "uint40"
|
474
|
+
},
|
475
|
+
{
|
476
|
+
"internalType": "Blocknumber",
|
477
|
+
"name": "activatedIn",
|
478
|
+
"type": "uint32"
|
479
|
+
}
|
480
|
+
],
|
481
|
+
"internalType": "struct IVersionable.VersionInfo",
|
482
|
+
"name": "",
|
483
|
+
"type": "tuple"
|
484
|
+
}
|
485
|
+
],
|
486
|
+
"stateMutability": "view",
|
487
|
+
"type": "function"
|
488
|
+
},
|
489
|
+
{
|
490
|
+
"inputs": [
|
491
|
+
{
|
492
|
+
"internalType": "address",
|
493
|
+
"name": "implementation",
|
494
|
+
"type": "address"
|
495
|
+
},
|
496
|
+
{
|
497
|
+
"internalType": "address",
|
498
|
+
"name": "activatedBy",
|
499
|
+
"type": "address"
|
500
|
+
},
|
501
|
+
{
|
502
|
+
"internalType": "bytes",
|
503
|
+
"name": "data",
|
504
|
+
"type": "bytes"
|
505
|
+
}
|
506
|
+
],
|
507
|
+
"name": "initialize",
|
508
|
+
"outputs": [],
|
509
|
+
"stateMutability": "nonpayable",
|
510
|
+
"type": "function"
|
511
|
+
},
|
512
|
+
{
|
513
|
+
"inputs": [
|
514
|
+
{
|
515
|
+
"internalType": "Version",
|
516
|
+
"name": "_version",
|
517
|
+
"type": "uint24"
|
518
|
+
}
|
519
|
+
],
|
520
|
+
"name": "isInitialized",
|
521
|
+
"outputs": [
|
522
|
+
{
|
523
|
+
"internalType": "bool",
|
524
|
+
"name": "",
|
525
|
+
"type": "bool"
|
526
|
+
}
|
527
|
+
],
|
528
|
+
"stateMutability": "view",
|
529
|
+
"type": "function"
|
530
|
+
},
|
531
|
+
{
|
532
|
+
"inputs": [],
|
533
|
+
"name": "linkToRegisteredNftId",
|
534
|
+
"outputs": [],
|
535
|
+
"stateMutability": "nonpayable",
|
536
|
+
"type": "function"
|
537
|
+
},
|
538
|
+
{
|
539
|
+
"inputs": [
|
540
|
+
{
|
541
|
+
"internalType": "address",
|
542
|
+
"name": "componentAddress",
|
543
|
+
"type": "address"
|
544
|
+
}
|
545
|
+
],
|
546
|
+
"name": "register",
|
547
|
+
"outputs": [
|
548
|
+
{
|
549
|
+
"internalType": "NftId",
|
550
|
+
"name": "componentNftId",
|
551
|
+
"type": "uint96"
|
552
|
+
}
|
553
|
+
],
|
554
|
+
"stateMutability": "nonpayable",
|
555
|
+
"type": "function"
|
556
|
+
},
|
557
|
+
{
|
558
|
+
"inputs": [
|
559
|
+
{
|
560
|
+
"internalType": "NftId",
|
561
|
+
"name": "bundleNftId",
|
562
|
+
"type": "uint96"
|
563
|
+
},
|
564
|
+
{
|
565
|
+
"components": [
|
566
|
+
{
|
567
|
+
"internalType": "UFixed",
|
568
|
+
"name": "fractionalFee",
|
569
|
+
"type": "uint256"
|
570
|
+
},
|
571
|
+
{
|
572
|
+
"internalType": "uint256",
|
573
|
+
"name": "fixedFee",
|
574
|
+
"type": "uint256"
|
575
|
+
}
|
576
|
+
],
|
577
|
+
"internalType": "struct Fee",
|
578
|
+
"name": "fee",
|
579
|
+
"type": "tuple"
|
580
|
+
}
|
581
|
+
],
|
582
|
+
"name": "setBundleFee",
|
583
|
+
"outputs": [],
|
584
|
+
"stateMutability": "nonpayable",
|
585
|
+
"type": "function"
|
586
|
+
},
|
587
|
+
{
|
588
|
+
"inputs": [
|
589
|
+
{
|
590
|
+
"components": [
|
591
|
+
{
|
592
|
+
"internalType": "UFixed",
|
593
|
+
"name": "fractionalFee",
|
594
|
+
"type": "uint256"
|
595
|
+
},
|
596
|
+
{
|
597
|
+
"internalType": "uint256",
|
598
|
+
"name": "fixedFee",
|
599
|
+
"type": "uint256"
|
600
|
+
}
|
601
|
+
],
|
602
|
+
"internalType": "struct Fee",
|
603
|
+
"name": "poolFee",
|
604
|
+
"type": "tuple"
|
605
|
+
},
|
606
|
+
{
|
607
|
+
"components": [
|
608
|
+
{
|
609
|
+
"internalType": "UFixed",
|
610
|
+
"name": "fractionalFee",
|
611
|
+
"type": "uint256"
|
612
|
+
},
|
613
|
+
{
|
614
|
+
"internalType": "uint256",
|
615
|
+
"name": "fixedFee",
|
616
|
+
"type": "uint256"
|
617
|
+
}
|
618
|
+
],
|
619
|
+
"internalType": "struct Fee",
|
620
|
+
"name": "stakingFee",
|
621
|
+
"type": "tuple"
|
622
|
+
},
|
623
|
+
{
|
624
|
+
"components": [
|
625
|
+
{
|
626
|
+
"internalType": "UFixed",
|
627
|
+
"name": "fractionalFee",
|
628
|
+
"type": "uint256"
|
629
|
+
},
|
630
|
+
{
|
631
|
+
"internalType": "uint256",
|
632
|
+
"name": "fixedFee",
|
633
|
+
"type": "uint256"
|
634
|
+
}
|
635
|
+
],
|
636
|
+
"internalType": "struct Fee",
|
637
|
+
"name": "performanceFee",
|
638
|
+
"type": "tuple"
|
639
|
+
}
|
640
|
+
],
|
641
|
+
"name": "setFees",
|
642
|
+
"outputs": [],
|
643
|
+
"stateMutability": "nonpayable",
|
644
|
+
"type": "function"
|
645
|
+
},
|
646
|
+
{
|
647
|
+
"inputs": [
|
648
|
+
{
|
649
|
+
"internalType": "bytes4",
|
650
|
+
"name": "interfaceId",
|
651
|
+
"type": "bytes4"
|
652
|
+
}
|
653
|
+
],
|
654
|
+
"name": "supportsInterface",
|
655
|
+
"outputs": [
|
656
|
+
{
|
657
|
+
"internalType": "bool",
|
658
|
+
"name": "",
|
659
|
+
"type": "bool"
|
660
|
+
}
|
661
|
+
],
|
662
|
+
"stateMutability": "view",
|
663
|
+
"type": "function"
|
664
|
+
},
|
665
|
+
{
|
666
|
+
"inputs": [
|
667
|
+
{
|
668
|
+
"internalType": "address",
|
669
|
+
"name": "implementation",
|
670
|
+
"type": "address"
|
671
|
+
},
|
672
|
+
{
|
673
|
+
"internalType": "address",
|
674
|
+
"name": "activatedBy",
|
675
|
+
"type": "address"
|
676
|
+
},
|
677
|
+
{
|
678
|
+
"internalType": "bytes",
|
679
|
+
"name": "data",
|
680
|
+
"type": "bytes"
|
681
|
+
}
|
682
|
+
],
|
683
|
+
"name": "upgrade",
|
684
|
+
"outputs": [],
|
685
|
+
"stateMutability": "nonpayable",
|
686
|
+
"type": "function"
|
687
|
+
}
|
688
|
+
],
|
689
|
+
"bytecode": "0x60806040523480156200001157600080fd5b50620000546301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600280546001600160a01b031916331790556200007062000076565b6200012a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000c75760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001275780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b613669806200013a6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806382678766116100c3578063b88da7591161007c578063b88da75914610486578063caf4e3d414610499578063cc9fc59a146104a1578063cde749f4146104a9578063cf7a1d77146104c3578063e3458d53146104d657600080fd5b806382678766146103e7578063893d20e8146103fa578063946dfcfe14610402578063a3f4df7e14610429578063a745e3df14610453578063b3c650151461046657600080fd5b80634420e486116101155780634420e486146102405780634d459c901461026b5780634f421333146103845780635ab1bd5314610397578063636450f5146103bc578063644c45e0146103cf57600080fd5b806301ffc9a71461015d5780630d8e6e2c1461019f5780630fec111c146101bb578063138461e0146101d157806317d7de7c146101db5780631eff4b221461020b575b600080fd5b61018a61016b3660046128d3565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a76104e9565b60405162ffffff9091168152602001610196565b6101c3610573565b6040516101969291906129cd565b6101d96106c6565b005b60408051808201909152600b81526a506f6f6c5365727669636560a81b60208201525b60405161019691906129fb565b6102327f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610196565b61025361024e366004612a23565b6108e8565b6040516001600160601b039091168152602001610196565b610327610279366004612a51565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915260008051602061361483398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610196565b61018a610392366004612a51565b610c4f565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610196565b6101d96103ca366004612b89565b610d02565b600154600160a01b90046001600160601b0316610253565b6101d96103f5366004612bbf565b610f9d565b6103a4611112565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed90154610232565b6101fe6040518060400160405280600b81526020016a506f6f6c5365727669636560a81b81525081565b6101d9610461366004612c2c565b61122c565b61046e611386565b6040516001600160401b039091168152602001610196565b6101a7610494366004612cd0565b6113a7565b6103a46113f8565b6103a46114b3565b6104b161152b565b60405160ff9091168152602001610196565b6101d96104d1366004612c2c565b6115ae565b6102536104e4366004612ce9565b6116b7565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801561054a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056e9190612d91565b905090565b61057b612895565b606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806105c76001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161060f611112565b6001600160a01b0316815260200182600101805461062c90612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461065890612dae565b80156106a55780601f1061067a576101008083540402835291602001916106a5565b820191906000526020600020905b81548152906001019060200180831161068857829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610728573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074c9190612dfd565b15610793576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166107bc5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610805573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108299190612dfd565b610851576040516372657a5160e01b81526001600160a01b038216600482015260240161078a565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561089b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108bf9190612e23565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b60008180826108f6826119a8565b60ff8116600090815260036020908152604080832054815163379ed74560e21b815291519495506001600160401b0316933393926001600160a01b0388169263de7b5d1492600480830193928290030181865afa15801561095b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097f9190612e40565b90506109896114b3565b6001600160a01b0316639c12c9c78385846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109fb9190612e23565b6040516001600160e01b031960e086901b1681526001600160a01b0390931660048401526001600160401b0390911660248301526001600160601b03166044820152606401602060405180830381865afa158015610a5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a819190612dfd565b610ab8576040516351302f8160e01b81526001600160401b03841660048201526001600160a01b038316602482015260440161078a565b33886000610ac5826119a8565b90506000610ad16113f8565b9050610adb612895565b6060610aef8460785b60ff90811691161490565b15610b7757604051638fbc2d8160e01b81526001600160a01b0386811660048301528781166024830152841690638fbc2d81906044015b6000604051808303816000875af1158015610b45573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610b6d9190810190612f74565b9092509050610c21565b610b8284606e610ae4565b15610bbd57604051635d96628960e01b81526001600160a01b0386811660048301528781166024830152841690635d96628990604401610b26565b610bc884608c610ae4565b15610c0357604051637286e5e560e01b81526001600160a01b0386811660048301528781166024830152841690637286e5e590604401610b26565b60405163062839b560e01b815260ff8516600482015260240161078a565b81519c506000610c308e611a1d565b9050610c3d8e8383611b3b565b50505050505050505050505050919050565b60008060008051602061361483398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610cd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfb9190612fd7565b1192915050565b600080610d0f608c611bb0565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d779190612e40565b8351604051634793b4ab60e01b81526001600160601b0388166004820152919250906000906001600160a01b03841690634793b4ab90602401600060405180830381865afa158015610dcd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610df59190810190613035565b80516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610e53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e779190612dfd565b610ec35760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a504c532d3031303a42554e444c455f554e4b4e4f574e00000000604482015260640161078a565b80516001600160601b03808416911614610f2a5760405162461bcd60e51b815260206004820152602260248201527f4552524f523a504c532d3031313a42554e444c455f504f4f4c5f4d49534d4154604482015261086960f31b606482015260840161078a565b602081018690526040516307f8b57360e31b81526001600160a01b03851690633fc5ab9890610f62908a90859060ff906004016131b4565b600060405180830381600087803b158015610f7c57600080fd5b505af1158015610f90573d6000803e3d6000fd5b5050505050505050505050565b600080610faa608c611bb0565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110129190612e40565b83516040516355e343a960e01b81526001600160601b0382166004820152919250906000906001600160a01b038416906355e343a99060240161016060405180830381865afa158015611069573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108d91906131e9565b606081018990526080810188905260a08101879052604051635ea7f02760e11b81529091506001600160a01b0385169063bd4fe04e906110d6908590859060ff90600401613320565b600060405180830381600087803b1580156110f057600080fd5b505af1158015611104573d6000803e3d6000fd5b505050505050505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611177573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119b9190612dfd565b1561121c57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a906024015b602060405180830381865afa1580156111f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056e9190612e40565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c61124e6104e9565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561128e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b29190613365565b6000805160206135f48339815191528054600160401b900460ff16806112e5575080546001600160401b03808416911610155b156113035760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561132e8585611e6e565b6113378361210d565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b600061056e6000805160206135f4833981519152546001600160401b031690565b600060008051602061361483398151915260010182815481106113cc576113cc613382565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60008061140d6001546001600160a01b031690565b6001600160a01b031663a3bcd81d61142361152b565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015611489573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ad9190612e40565b92915050565b60006114c76001546001600160a01b031690565b6001600160a01b031663a3bcd81d6114dd61152b565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e496e7374616e63655365727669636560881b606482015260ff90911660248201526084016111db565b60006115356104e9565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561158a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056e9190613398565b6000805160206135f48339815191528054600160401b810460ff1615906001600160401b03166000811580156115e15750825b90506000826001600160401b031660011480156115fd5750303b155b90508115801561160b575080155b156116295760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561165357845460ff60401b1916600160401b1785555b61165d8888611e6e565b6116678787612115565b83156116ad57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b600080806116c5608c611bb0565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611709573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172d9190612e40565b90506000836000015190506000604051806101200160405280836001600160601b0316815260200173__$a23651848365a6a5ca15f07b4331037f48$__632bd182d36040518163ffffffff1660e01b81526004016040805180830381865af415801561179d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c191906133b5565b815260200189898080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250938552505050602082018d90526040820152606081018c9052608081018b905260a001611823600090565b64ffffffffff1681526000602090910152905061183e6113f8565b6001600160a01b031663c2bf08c86040518060e0016040528061185f600090565b6001600160601b03168152602001856001600160601b0316815260200161188460dc90565b60ff16815260200160001515815260200160006001600160a01b031681526020018f6001600160a01b03168152602001846040516020016118c591906133d1565b6040516020818303038152906040528152506040518263ffffffff1660e01b81526004016118f391906133e4565b6020604051808303816000875af1158015611912573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119369190612e23565b604051633038d34760e11b81529096506001600160a01b03851690636071a68e9061196790899085906004016133f7565b600060405180830381600087803b15801561198157600080fd5b505af1158015611995573d6000803e3d6000fd5b5050505050505050509695505050505050565b600080826001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156119e9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611a119190810190612f74565b50604001519392505050565b600080611a326001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611a85573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611aad9190810190613419565b60208101516040516305247a1760e51b81526001600160601b0390911660048201529091506000906001600160a01b0384169063a48f42e090602401600060405180830381865afa158015611b06573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b2e9190810190613419565b6080015195945050505050565b600082806020019051810190611b5191906131e9565b6040516357f9680560e01b81529091506001600160a01b038316906357f9680590611b82908790859060040161344d565b600060405180830381600087803b158015611b9c57600080fd5b505af11580156116ad573d6000803e3d6000fd5b611bb8612895565b600154604051636939560f60e11b815233600482015260009182916001600160a01b039091169063d272ac1e90602401602060405180830381865afa158015611c05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c299190612e23565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611c84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ca89190612dfd565b611cf45760405162461bcd60e51b815260206004820152601760248201527f4552524f525f434f4d504f4e454e545f554e4b4e4f574e000000000000000000604482015260640161078a565b6001546001600160a01b03166040516305247a1760e51b81526001600160601b03831660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611d4f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d779190810190613419565b9250611d8d83604001518560ff90811691161490565b611dcf5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b604482015260640161078a565b6000611de36001546001600160a01b031690565b60208501516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611e38573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e609190810190613419565b608001519395939450505050565b611e7661226a565b6000805160206136148339815191526000611ea66000805160206135f4833981519152546001600160401b031690565b90506000611eb26104e9565b9050816001600160401b0316600103611edf5760028301805462ffffff191662ffffff8316179055611f2d565b600283015462ffffff90811690821611611f2d5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b604482015260640161078a565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611fe1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612005919061346b565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf68906113779083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b61015861226a565b6000805160206135f48339815191528054600160401b810460ff1615906001600160401b03166000811580156121485750825b90506000826001600160401b031660011480156121645750303b155b905081158015612172575080155b156121905760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156121ba57845460ff60401b1916600160401b1785555b6000868060200190518101906121d09190613486565b600480546001600160a01b039093166001600160a01b03199093168317905591506121fb90826122a3565b61220b631b4612f160e31b6123f9565b61221a6209196b60e61b6123f9565b50831561226157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6000805160206135f483398151915254600160401b900460ff166122a157604051631afcd79f60e31b815260040160405180910390fd5b565b6122ad828261241e565b6122b56124a7565b606e60005260036020527f0de2b21138735878e0660eef23d1131fad23d66157bfa1c473a82b60c5169926805467ffffffffffffffff19166001600160401b0392909216919091179055612307612520565b608c60005260036020527f83339eadc78535e76a031a9a544cf6fa252296becf88992d49fad5f832544a38805467ffffffffffffffff19166001600160401b039290921691909117905561235961255c565b607860005260036020527fe372c44748f4c2908ae7c0a1dc553464478b0394f70953faecd55173b039317c805467ffffffffffffffff19166001600160401b03929092169190911790556123ab612597565b608260005260036020527fc3d073881ce0daff4d900012573fe3b8d5b283519b2f509e59d1b978e7cf0fc5805467ffffffffffffffff19166001600160401b03929092169190911790555050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b600061244860408051808201909152600b81526a506f6f6c5365727669636560a81b602082015290565b61245061152b565b6040516020016124619291906134c0565b6040516020818303038152906040529050600061247d846125d2565b905060006124908583603c84888861263d565b6124a0631b4612f160e31b6123f9565b5050505050565b6040516368aebf7b60e01b8152610190600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024015b602060405180830381865af41580156124fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056e9190613365565b6040516368aebf7b60e01b815261012c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024016124df565b6040516368aebf7b60e01b81526064600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024016124df565b6040516368aebf7b60e01b815260c8600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024016124df565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015612619573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ad9190612e23565b61267e6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6126888287612709565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016126f88382613534565b506122616303fb044760e21b6123f9565b600280546001600160a01b0319166001600160a01b03841617905561272d81612731565b5050565b6001546001600160a01b03161561276a5760015460405163fcdbf2d960e01b81526001600160a01b03909116600482015260240161078a565b6001600160a01b0381166127915760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036127c75760405163fdeac91f60e01b81526001600160a01b038216600482015260240161078a565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e14a543960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015612841575060408051601f3d908101601f1916820190925261283e91810190612dfd565b60015b6128695760405163fdeac91f60e01b81526001600160a01b038216600482015260240161078a565b8061272d5760405163fdeac91f60e01b81526001600160a01b038316600482015260240161078a565b50565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6000602082840312156128e557600080fd5b81356001600160e01b0319811681146128fd57600080fd5b9392505050565b60005b8381101561291f578181015183820152602001612907565b50506000910152565b60008151808452612940816020860160208601612904565b601f01601f19169290920160200192915050565b60006001600160601b038083511684528060208401511660208501525060ff6040830151166040840152606082015115156060840152608082015160018060a01b0380821660808601528060a08501511660a0860152505060c082015160e060c08501526129c560e0850182612928565b949350505050565b6040815260006129e06040830185612954565b82810360208401526129f28185612928565b95945050505050565b6020815260006128fd6020830184612928565b6001600160a01b038116811461289257600080fd5b600060208284031215612a3557600080fd5b81356128fd81612a0e565b62ffffff8116811461289257600080fd5b600060208284031215612a6357600080fd5b81356128fd81612a40565b6001600160601b038116811461289257600080fd5b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715612abb57612abb612a83565b60405290565b60405160e081016001600160401b0381118282101715612abb57612abb612a83565b60405161012081016001600160401b0381118282101715612abb57612abb612a83565b60405161010081016001600160401b0381118282101715612abb57612abb612a83565b604051601f8201601f191681016001600160401b0381118282101715612b5157612b51612a83565b604052919050565b600060408284031215612b6b57600080fd5b612b73612a99565b9050813581526020820135602082015292915050565b60008060608385031215612b9c57600080fd5b8235612ba781612a6e565b9150612bb68460208501612b59565b90509250929050565b600080600060c08486031215612bd457600080fd5b612bde8585612b59565b9250612bed8560408601612b59565b9150612bfc8560808601612b59565b90509250925092565b60006001600160401b03821115612c1e57612c1e612a83565b50601f01601f191660200190565b600080600060608486031215612c4157600080fd5b8335612c4c81612a0e565b92506020840135612c5c81612a0e565b915060408401356001600160401b03811115612c7757600080fd5b8401601f81018613612c8857600080fd5b8035612c9b612c9682612c05565b612b29565b818152876020838501011115612cb057600080fd5b816020840160208301376000602083830101528093505050509250925092565b600060208284031215612ce257600080fd5b5035919050565b60008060008060008060c08789031215612d0257600080fd5b8635612d0d81612a0e565b9550612d1c8860208901612b59565b9450606087013593506080870135925060a08701356001600160401b0380821115612d4657600080fd5b818901915089601f830112612d5a57600080fd5b813581811115612d6957600080fd5b8a6020828501011115612d7b57600080fd5b6020830194508093505050509295509295509295565b600060208284031215612da357600080fd5b81516128fd81612a40565b600181811c90821680612dc257607f821691505b602082108103612de257634e487b7160e01b600052602260045260246000fd5b50919050565b80518015158114612df857600080fd5b919050565b600060208284031215612e0f57600080fd5b6128fd82612de8565b8051612df881612a6e565b600060208284031215612e3557600080fd5b81516128fd81612a6e565b600060208284031215612e5257600080fd5b81516128fd81612a0e565b60ff8116811461289257600080fd5b8051612df881612e5d565b8051612df881612a0e565b600082601f830112612e9357600080fd5b8151612ea1612c9682612c05565b818152846020838601011115612eb657600080fd5b6129c5826020830160208701612904565b600060e08284031215612ed957600080fd5b612ee1612ac1565b9050612eec82612e18565b8152612efa60208301612e18565b6020820152612f0b60408301612e6c565b6040820152612f1c60608301612de8565b6060820152612f2d60808301612e77565b6080820152612f3e60a08301612e77565b60a082015260c08201516001600160401b03811115612f5c57600080fd5b612f6884828501612e82565b60c08301525092915050565b60008060408385031215612f8757600080fd5b82516001600160401b0380821115612f9e57600080fd5b612faa86838701612ec7565b93506020850151915080821115612fc057600080fd5b50612fcd85828601612e82565b9150509250929050565b600060208284031215612fe957600080fd5b5051919050565b60006040828403121561300257600080fd5b61300a612a99565b9050815181526020820151602082015292915050565b805164ffffffffff81168114612df857600080fd5b60006020828403121561304757600080fd5b81516001600160401b038082111561305e57600080fd5b90830190610140828603121561307357600080fd5b61307b612ae3565b61308483612e18565b81526130938660208501612ff0565b60208201526060830151828111156130aa57600080fd5b6130b687828601612e82565b6040830152506080830151606082015260a0830151608082015260c083015160a082015260e083015160c082015261010091506130f4828401613020565b60e08201526131066101208401613020565b91810191909152949350505050565b80516001600160601b03168252600061014060208381015180518683015290810151604086015250604083015181606086015261315482860182612928565b91505060608301516080850152608083015160a085015260a083015160c085015260c083015160e085015260e08301516101006131998187018364ffffffffff169052565b84015164ffffffffff81166101208701529050509392505050565b6001600160601b03841681526060602082015260006131d66060830185613115565b905060ff83166040830152949350505050565b600061016082840312156131fc57600080fd5b613204612b06565b61320d83612e18565b815261321b60208401612e77565b6020820152604083015160408201526132378460608501612ff0565b60608201526132498460a08501612ff0565b608082015261325b8460e08501612ff0565b60a082015261326d6101208401612de8565b60c082015261327f6101408401612e77565b60e08201529392505050565b80516001600160601b031682526020808201516001600160a01b0390811682850152604080840151908501526060808401518051918601919091529182015160808501526080830151805160a0860152602081015160c0860152915060a0830151805160e08601526020810151610100860152915060c083015115156101208501528060e08401511661014085015250505050565b6001600160601b03841681526101a0810161333e602083018561328b565b60ff8316610180830152949350505050565b6001600160401b038116811461289257600080fd5b60006020828403121561337757600080fd5b81516128fd81613350565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156133aa57600080fd5b81516128fd81612e5d565b6000604082840312156133c757600080fd5b6128fd8383612ff0565b6020815260006128fd6020830184613115565b6020815260006128fd6020830184612954565b6001600160601b03831681526040602082015260006129c56040830184613115565b60006020828403121561342b57600080fd5b81516001600160401b0381111561344157600080fd5b6129c584828501612ec7565b6001600160601b038316815261018081016128fd602083018461328b565b60006020828403121561347d57600080fd5b6128fd82613020565b6000806040838503121561349957600080fd5b82516134a481612a0e565b60208401519092506134b581612a0e565b809150509250929050565b6040815260006134d36040830185612928565b905060ff831660208301529392505050565b601f82111561352f57600081815260208120601f850160051c8101602086101561350c5750805b601f850160051c820191505b8181101561352b57828155600101613518565b5050505b505050565b81516001600160401b0381111561354d5761354d612a83565b6135618161355b8454612dae565b846134e5565b602080601f831160018114613596576000841561357e5750858301515b600019600386901b1c1916600185901b17855561352b565b600085815260208120601f198616915b828110156135c5578886015182559484019460019091019084016135a6565b50858210156135e35787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a264697066735822122079a97aec8678cfebd98fcd4923becbcd9142ea2252bd6194ac66ede0828f042364736f6c63430008140033",
|
690
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101585760003560e01c806382678766116100c3578063b88da7591161007c578063b88da75914610486578063caf4e3d414610499578063cc9fc59a146104a1578063cde749f4146104a9578063cf7a1d77146104c3578063e3458d53146104d657600080fd5b806382678766146103e7578063893d20e8146103fa578063946dfcfe14610402578063a3f4df7e14610429578063a745e3df14610453578063b3c650151461046657600080fd5b80634420e486116101155780634420e486146102405780634d459c901461026b5780634f421333146103845780635ab1bd5314610397578063636450f5146103bc578063644c45e0146103cf57600080fd5b806301ffc9a71461015d5780630d8e6e2c1461019f5780630fec111c146101bb578063138461e0146101d157806317d7de7c146101db5780631eff4b221461020b575b600080fd5b61018a61016b3660046128d3565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a76104e9565b60405162ffffff9091168152602001610196565b6101c3610573565b6040516101969291906129cd565b6101d96106c6565b005b60408051808201909152600b81526a506f6f6c5365727669636560a81b60208201525b60405161019691906129fb565b6102327f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610196565b61025361024e366004612a23565b6108e8565b6040516001600160601b039091168152602001610196565b610327610279366004612a51565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915260008051602061361483398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610196565b61018a610392366004612a51565b610c4f565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610196565b6101d96103ca366004612b89565b610d02565b600154600160a01b90046001600160601b0316610253565b6101d96103f5366004612bbf565b610f9d565b6103a4611112565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed90154610232565b6101fe6040518060400160405280600b81526020016a506f6f6c5365727669636560a81b81525081565b6101d9610461366004612c2c565b61122c565b61046e611386565b6040516001600160401b039091168152602001610196565b6101a7610494366004612cd0565b6113a7565b6103a46113f8565b6103a46114b3565b6104b161152b565b60405160ff9091168152602001610196565b6101d96104d1366004612c2c565b6115ae565b6102536104e4366004612ce9565b6116b7565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801561054a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056e9190612d91565b905090565b61057b612895565b606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806105c76001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161060f611112565b6001600160a01b0316815260200182600101805461062c90612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461065890612dae565b80156106a55780601f1061067a576101008083540402835291602001916106a5565b820191906000526020600020905b81548152906001019060200180831161068857829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610728573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074c9190612dfd565b15610793576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166107bc5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610805573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108299190612dfd565b610851576040516372657a5160e01b81526001600160a01b038216600482015260240161078a565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561089b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108bf9190612e23565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b60008180826108f6826119a8565b60ff8116600090815260036020908152604080832054815163379ed74560e21b815291519495506001600160401b0316933393926001600160a01b0388169263de7b5d1492600480830193928290030181865afa15801561095b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097f9190612e40565b90506109896114b3565b6001600160a01b0316639c12c9c78385846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109fb9190612e23565b6040516001600160e01b031960e086901b1681526001600160a01b0390931660048401526001600160401b0390911660248301526001600160601b03166044820152606401602060405180830381865afa158015610a5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a819190612dfd565b610ab8576040516351302f8160e01b81526001600160401b03841660048201526001600160a01b038316602482015260440161078a565b33886000610ac5826119a8565b90506000610ad16113f8565b9050610adb612895565b6060610aef8460785b60ff90811691161490565b15610b7757604051638fbc2d8160e01b81526001600160a01b0386811660048301528781166024830152841690638fbc2d81906044015b6000604051808303816000875af1158015610b45573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610b6d9190810190612f74565b9092509050610c21565b610b8284606e610ae4565b15610bbd57604051635d96628960e01b81526001600160a01b0386811660048301528781166024830152841690635d96628990604401610b26565b610bc884608c610ae4565b15610c0357604051637286e5e560e01b81526001600160a01b0386811660048301528781166024830152841690637286e5e590604401610b26565b60405163062839b560e01b815260ff8516600482015260240161078a565b81519c506000610c308e611a1d565b9050610c3d8e8383611b3b565b50505050505050505050505050919050565b60008060008051602061361483398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015610cd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfb9190612fd7565b1192915050565b600080610d0f608c611bb0565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d779190612e40565b8351604051634793b4ab60e01b81526001600160601b0388166004820152919250906000906001600160a01b03841690634793b4ab90602401600060405180830381865afa158015610dcd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610df59190810190613035565b80516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610e53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e779190612dfd565b610ec35760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a504c532d3031303a42554e444c455f554e4b4e4f574e00000000604482015260640161078a565b80516001600160601b03808416911614610f2a5760405162461bcd60e51b815260206004820152602260248201527f4552524f523a504c532d3031313a42554e444c455f504f4f4c5f4d49534d4154604482015261086960f31b606482015260840161078a565b602081018690526040516307f8b57360e31b81526001600160a01b03851690633fc5ab9890610f62908a90859060ff906004016131b4565b600060405180830381600087803b158015610f7c57600080fd5b505af1158015610f90573d6000803e3d6000fd5b5050505050505050505050565b600080610faa608c611bb0565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110129190612e40565b83516040516355e343a960e01b81526001600160601b0382166004820152919250906000906001600160a01b038416906355e343a99060240161016060405180830381865afa158015611069573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108d91906131e9565b606081018990526080810188905260a08101879052604051635ea7f02760e11b81529091506001600160a01b0385169063bd4fe04e906110d6908590859060ff90600401613320565b600060405180830381600087803b1580156110f057600080fd5b505af1158015611104573d6000803e3d6000fd5b505050505050505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611177573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119b9190612dfd565b1561121c57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a906024015b602060405180830381865afa1580156111f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056e9190612e40565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c61124e6104e9565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561128e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b29190613365565b6000805160206135f48339815191528054600160401b900460ff16806112e5575080546001600160401b03808416911610155b156113035760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561132e8585611e6e565b6113378361210d565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b600061056e6000805160206135f4833981519152546001600160401b031690565b600060008051602061361483398151915260010182815481106113cc576113cc613382565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60008061140d6001546001600160a01b031690565b6001600160a01b031663a3bcd81d61142361152b565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015611489573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ad9190612e40565b92915050565b60006114c76001546001600160a01b031690565b6001600160a01b031663a3bcd81d6114dd61152b565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e496e7374616e63655365727669636560881b606482015260ff90911660248201526084016111db565b60006115356104e9565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801561158a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056e9190613398565b6000805160206135f48339815191528054600160401b810460ff1615906001600160401b03166000811580156115e15750825b90506000826001600160401b031660011480156115fd5750303b155b90508115801561160b575080155b156116295760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561165357845460ff60401b1916600160401b1785555b61165d8888611e6e565b6116678787612115565b83156116ad57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b600080806116c5608c611bb0565b915091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611709573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172d9190612e40565b90506000836000015190506000604051806101200160405280836001600160601b0316815260200173__$a23651848365a6a5ca15f07b4331037f48$__632bd182d36040518163ffffffff1660e01b81526004016040805180830381865af415801561179d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c191906133b5565b815260200189898080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250938552505050602082018d90526040820152606081018c9052608081018b905260a001611823600090565b64ffffffffff1681526000602090910152905061183e6113f8565b6001600160a01b031663c2bf08c86040518060e0016040528061185f600090565b6001600160601b03168152602001856001600160601b0316815260200161188460dc90565b60ff16815260200160001515815260200160006001600160a01b031681526020018f6001600160a01b03168152602001846040516020016118c591906133d1565b6040516020818303038152906040528152506040518263ffffffff1660e01b81526004016118f391906133e4565b6020604051808303816000875af1158015611912573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119369190612e23565b604051633038d34760e11b81529096506001600160a01b03851690636071a68e9061196790899085906004016133f7565b600060405180830381600087803b15801561198157600080fd5b505af1158015611995573d6000803e3d6000fd5b5050505050505050509695505050505050565b600080826001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156119e9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611a119190810190612f74565b50604001519392505050565b600080611a326001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03851660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611a85573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611aad9190810190613419565b60208101516040516305247a1760e51b81526001600160601b0390911660048201529091506000906001600160a01b0384169063a48f42e090602401600060405180830381865afa158015611b06573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b2e9190810190613419565b6080015195945050505050565b600082806020019051810190611b5191906131e9565b6040516357f9680560e01b81529091506001600160a01b038316906357f9680590611b82908790859060040161344d565b600060405180830381600087803b158015611b9c57600080fd5b505af11580156116ad573d6000803e3d6000fd5b611bb8612895565b600154604051636939560f60e11b815233600482015260009182916001600160a01b039091169063d272ac1e90602401602060405180830381865afa158015611c05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c299190612e23565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611c84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ca89190612dfd565b611cf45760405162461bcd60e51b815260206004820152601760248201527f4552524f525f434f4d504f4e454e545f554e4b4e4f574e000000000000000000604482015260640161078a565b6001546001600160a01b03166040516305247a1760e51b81526001600160601b03831660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611d4f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611d779190810190613419565b9250611d8d83604001518560ff90811691161490565b611dcf5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b604482015260640161078a565b6000611de36001546001600160a01b031690565b60208501516040516305247a1760e51b81526001600160601b0390911660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015611e38573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611e609190810190613419565b608001519395939450505050565b611e7661226a565b6000805160206136148339815191526000611ea66000805160206135f4833981519152546001600160401b031690565b90506000611eb26104e9565b9050816001600160401b0316600103611edf5760028301805462ffffff191662ffffff8316179055611f2d565b600283015462ffffff90811690821611611f2d5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b604482015260640161078a565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015611fe1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612005919061346b565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf68906113779083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b61015861226a565b6000805160206135f48339815191528054600160401b810460ff1615906001600160401b03166000811580156121485750825b90506000826001600160401b031660011480156121645750303b155b905081158015612172575080155b156121905760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156121ba57845460ff60401b1916600160401b1785555b6000868060200190518101906121d09190613486565b600480546001600160a01b039093166001600160a01b03199093168317905591506121fb90826122a3565b61220b631b4612f160e31b6123f9565b61221a6209196b60e61b6123f9565b50831561226157845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6000805160206135f483398151915254600160401b900460ff166122a157604051631afcd79f60e31b815260040160405180910390fd5b565b6122ad828261241e565b6122b56124a7565b606e60005260036020527f0de2b21138735878e0660eef23d1131fad23d66157bfa1c473a82b60c5169926805467ffffffffffffffff19166001600160401b0392909216919091179055612307612520565b608c60005260036020527f83339eadc78535e76a031a9a544cf6fa252296becf88992d49fad5f832544a38805467ffffffffffffffff19166001600160401b039290921691909117905561235961255c565b607860005260036020527fe372c44748f4c2908ae7c0a1dc553464478b0394f70953faecd55173b039317c805467ffffffffffffffff19166001600160401b03929092169190911790556123ab612597565b608260005260036020527fc3d073881ce0daff4d900012573fe3b8d5b283519b2f509e59d1b978e7cf0fc5805467ffffffffffffffff19166001600160401b03929092169190911790555050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b600061244860408051808201909152600b81526a506f6f6c5365727669636560a81b602082015290565b61245061152b565b6040516020016124619291906134c0565b6040516020818303038152906040529050600061247d846125d2565b905060006124908583603c84888861263d565b6124a0631b4612f160e31b6123f9565b5050505050565b6040516368aebf7b60e01b8152610190600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024015b602060405180830381865af41580156124fc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056e9190613365565b6040516368aebf7b60e01b815261012c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024016124df565b6040516368aebf7b60e01b81526064600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024016124df565b6040516368aebf7b60e01b815260c8600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024016124df565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015612619573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ad9190612e23565b61267e6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6126888287612709565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016126f88382613534565b506122616303fb044760e21b6123f9565b600280546001600160a01b0319166001600160a01b03841617905561272d81612731565b5050565b6001546001600160a01b03161561276a5760015460405163fcdbf2d960e01b81526001600160a01b03909116600482015260240161078a565b6001600160a01b0381166127915760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036127c75760405163fdeac91f60e01b81526001600160a01b038216600482015260240161078a565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e14a543960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015612841575060408051601f3d908101601f1916820190925261283e91810190612dfd565b60015b6128695760405163fdeac91f60e01b81526001600160a01b038216600482015260240161078a565b8061272d5760405163fdeac91f60e01b81526001600160a01b038316600482015260240161078a565b50565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6000602082840312156128e557600080fd5b81356001600160e01b0319811681146128fd57600080fd5b9392505050565b60005b8381101561291f578181015183820152602001612907565b50506000910152565b60008151808452612940816020860160208601612904565b601f01601f19169290920160200192915050565b60006001600160601b038083511684528060208401511660208501525060ff6040830151166040840152606082015115156060840152608082015160018060a01b0380821660808601528060a08501511660a0860152505060c082015160e060c08501526129c560e0850182612928565b949350505050565b6040815260006129e06040830185612954565b82810360208401526129f28185612928565b95945050505050565b6020815260006128fd6020830184612928565b6001600160a01b038116811461289257600080fd5b600060208284031215612a3557600080fd5b81356128fd81612a0e565b62ffffff8116811461289257600080fd5b600060208284031215612a6357600080fd5b81356128fd81612a40565b6001600160601b038116811461289257600080fd5b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715612abb57612abb612a83565b60405290565b60405160e081016001600160401b0381118282101715612abb57612abb612a83565b60405161012081016001600160401b0381118282101715612abb57612abb612a83565b60405161010081016001600160401b0381118282101715612abb57612abb612a83565b604051601f8201601f191681016001600160401b0381118282101715612b5157612b51612a83565b604052919050565b600060408284031215612b6b57600080fd5b612b73612a99565b9050813581526020820135602082015292915050565b60008060608385031215612b9c57600080fd5b8235612ba781612a6e565b9150612bb68460208501612b59565b90509250929050565b600080600060c08486031215612bd457600080fd5b612bde8585612b59565b9250612bed8560408601612b59565b9150612bfc8560808601612b59565b90509250925092565b60006001600160401b03821115612c1e57612c1e612a83565b50601f01601f191660200190565b600080600060608486031215612c4157600080fd5b8335612c4c81612a0e565b92506020840135612c5c81612a0e565b915060408401356001600160401b03811115612c7757600080fd5b8401601f81018613612c8857600080fd5b8035612c9b612c9682612c05565b612b29565b818152876020838501011115612cb057600080fd5b816020840160208301376000602083830101528093505050509250925092565b600060208284031215612ce257600080fd5b5035919050565b60008060008060008060c08789031215612d0257600080fd5b8635612d0d81612a0e565b9550612d1c8860208901612b59565b9450606087013593506080870135925060a08701356001600160401b0380821115612d4657600080fd5b818901915089601f830112612d5a57600080fd5b813581811115612d6957600080fd5b8a6020828501011115612d7b57600080fd5b6020830194508093505050509295509295509295565b600060208284031215612da357600080fd5b81516128fd81612a40565b600181811c90821680612dc257607f821691505b602082108103612de257634e487b7160e01b600052602260045260246000fd5b50919050565b80518015158114612df857600080fd5b919050565b600060208284031215612e0f57600080fd5b6128fd82612de8565b8051612df881612a6e565b600060208284031215612e3557600080fd5b81516128fd81612a6e565b600060208284031215612e5257600080fd5b81516128fd81612a0e565b60ff8116811461289257600080fd5b8051612df881612e5d565b8051612df881612a0e565b600082601f830112612e9357600080fd5b8151612ea1612c9682612c05565b818152846020838601011115612eb657600080fd5b6129c5826020830160208701612904565b600060e08284031215612ed957600080fd5b612ee1612ac1565b9050612eec82612e18565b8152612efa60208301612e18565b6020820152612f0b60408301612e6c565b6040820152612f1c60608301612de8565b6060820152612f2d60808301612e77565b6080820152612f3e60a08301612e77565b60a082015260c08201516001600160401b03811115612f5c57600080fd5b612f6884828501612e82565b60c08301525092915050565b60008060408385031215612f8757600080fd5b82516001600160401b0380821115612f9e57600080fd5b612faa86838701612ec7565b93506020850151915080821115612fc057600080fd5b50612fcd85828601612e82565b9150509250929050565b600060208284031215612fe957600080fd5b5051919050565b60006040828403121561300257600080fd5b61300a612a99565b9050815181526020820151602082015292915050565b805164ffffffffff81168114612df857600080fd5b60006020828403121561304757600080fd5b81516001600160401b038082111561305e57600080fd5b90830190610140828603121561307357600080fd5b61307b612ae3565b61308483612e18565b81526130938660208501612ff0565b60208201526060830151828111156130aa57600080fd5b6130b687828601612e82565b6040830152506080830151606082015260a0830151608082015260c083015160a082015260e083015160c082015261010091506130f4828401613020565b60e08201526131066101208401613020565b91810191909152949350505050565b80516001600160601b03168252600061014060208381015180518683015290810151604086015250604083015181606086015261315482860182612928565b91505060608301516080850152608083015160a085015260a083015160c085015260c083015160e085015260e08301516101006131998187018364ffffffffff169052565b84015164ffffffffff81166101208701529050509392505050565b6001600160601b03841681526060602082015260006131d66060830185613115565b905060ff83166040830152949350505050565b600061016082840312156131fc57600080fd5b613204612b06565b61320d83612e18565b815261321b60208401612e77565b6020820152604083015160408201526132378460608501612ff0565b60608201526132498460a08501612ff0565b608082015261325b8460e08501612ff0565b60a082015261326d6101208401612de8565b60c082015261327f6101408401612e77565b60e08201529392505050565b80516001600160601b031682526020808201516001600160a01b0390811682850152604080840151908501526060808401518051918601919091529182015160808501526080830151805160a0860152602081015160c0860152915060a0830151805160e08601526020810151610100860152915060c083015115156101208501528060e08401511661014085015250505050565b6001600160601b03841681526101a0810161333e602083018561328b565b60ff8316610180830152949350505050565b6001600160401b038116811461289257600080fd5b60006020828403121561337757600080fd5b81516128fd81613350565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156133aa57600080fd5b81516128fd81612e5d565b6000604082840312156133c757600080fd5b6128fd8383612ff0565b6020815260006128fd6020830184613115565b6020815260006128fd6020830184612954565b6001600160601b03831681526040602082015260006129c56040830184613115565b60006020828403121561342b57600080fd5b81516001600160401b0381111561344157600080fd5b6129c584828501612ec7565b6001600160601b038316815261018081016128fd602083018461328b565b60006020828403121561347d57600080fd5b6128fd82613020565b6000806040838503121561349957600080fd5b82516134a481612a0e565b60208401519092506134b581612a0e565b809150509250929050565b6040815260006134d36040830185612928565b905060ff831660208301529392505050565b601f82111561352f57600081815260208120601f850160051c8101602086101561350c5750805b601f850160051c820191505b8181101561352b57828155600101613518565b5050505b505050565b81516001600160401b0381111561354d5761354d612a83565b6135618161355b8454612dae565b846134e5565b602080601f831160018114613596576000841561357e5750858301515b600019600386901b1c1916600185901b17855561352b565b600085815260208120601f198616915b828110156135c5578886015182559484019460019091019084016135a6565b50858210156135e35787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a264697066735822122079a97aec8678cfebd98fcd4923becbcd9142ea2252bd6194ac66ede0828f042364736f6c63430008140033",
|
691
|
+
"linkReferences": {
|
692
|
+
"contracts/types/Blocknumber.sol": {
|
693
|
+
"BlocknumberLib": [
|
694
|
+
{
|
695
|
+
"length": 20,
|
696
|
+
"start": 3543
|
697
|
+
}
|
698
|
+
]
|
699
|
+
},
|
700
|
+
"contracts/types/Fee.sol": {
|
701
|
+
"FeeLib": [
|
702
|
+
{
|
703
|
+
"length": 20,
|
704
|
+
"start": 6289
|
705
|
+
}
|
706
|
+
]
|
707
|
+
},
|
708
|
+
"contracts/types/NftId.sol": {
|
709
|
+
"NftIdLib": [
|
710
|
+
{
|
711
|
+
"length": 20,
|
712
|
+
"start": 2088
|
713
|
+
},
|
714
|
+
{
|
715
|
+
"length": 20,
|
716
|
+
"start": 3923
|
717
|
+
},
|
718
|
+
{
|
719
|
+
"length": 20,
|
720
|
+
"start": 4727
|
721
|
+
},
|
722
|
+
{
|
723
|
+
"length": 20,
|
724
|
+
"start": 7556
|
725
|
+
}
|
726
|
+
]
|
727
|
+
},
|
728
|
+
"contracts/types/RoleId.sol": {
|
729
|
+
"RoleIdLib": [
|
730
|
+
{
|
731
|
+
"length": 20,
|
732
|
+
"start": 9723
|
733
|
+
},
|
734
|
+
{
|
735
|
+
"length": 20,
|
736
|
+
"start": 9844
|
737
|
+
},
|
738
|
+
{
|
739
|
+
"length": 20,
|
740
|
+
"start": 9903
|
741
|
+
},
|
742
|
+
{
|
743
|
+
"length": 20,
|
744
|
+
"start": 9962
|
745
|
+
}
|
746
|
+
]
|
747
|
+
},
|
748
|
+
"contracts/types/Timestamp.sol": {
|
749
|
+
"TimestampLib": [
|
750
|
+
{
|
751
|
+
"length": 20,
|
752
|
+
"start": 8417
|
753
|
+
}
|
754
|
+
]
|
755
|
+
},
|
756
|
+
"contracts/types/Version.sol": {
|
757
|
+
"VersionLib": [
|
758
|
+
{
|
759
|
+
"length": 20,
|
760
|
+
"start": 1610
|
761
|
+
},
|
762
|
+
{
|
763
|
+
"length": 20,
|
764
|
+
"start": 4968
|
765
|
+
},
|
766
|
+
{
|
767
|
+
"length": 20,
|
768
|
+
"start": 5770
|
769
|
+
}
|
770
|
+
]
|
771
|
+
}
|
772
|
+
},
|
773
|
+
"deployedLinkReferences": {
|
774
|
+
"contracts/types/Blocknumber.sol": {
|
775
|
+
"BlocknumberLib": [
|
776
|
+
{
|
777
|
+
"length": 20,
|
778
|
+
"start": 3229
|
779
|
+
}
|
780
|
+
]
|
781
|
+
},
|
782
|
+
"contracts/types/Fee.sol": {
|
783
|
+
"FeeLib": [
|
784
|
+
{
|
785
|
+
"length": 20,
|
786
|
+
"start": 5975
|
787
|
+
}
|
788
|
+
]
|
789
|
+
},
|
790
|
+
"contracts/types/NftId.sol": {
|
791
|
+
"NftIdLib": [
|
792
|
+
{
|
793
|
+
"length": 20,
|
794
|
+
"start": 1774
|
795
|
+
},
|
796
|
+
{
|
797
|
+
"length": 20,
|
798
|
+
"start": 3609
|
799
|
+
},
|
800
|
+
{
|
801
|
+
"length": 20,
|
802
|
+
"start": 4413
|
803
|
+
},
|
804
|
+
{
|
805
|
+
"length": 20,
|
806
|
+
"start": 7242
|
807
|
+
}
|
808
|
+
]
|
809
|
+
},
|
810
|
+
"contracts/types/RoleId.sol": {
|
811
|
+
"RoleIdLib": [
|
812
|
+
{
|
813
|
+
"length": 20,
|
814
|
+
"start": 9409
|
815
|
+
},
|
816
|
+
{
|
817
|
+
"length": 20,
|
818
|
+
"start": 9530
|
819
|
+
},
|
820
|
+
{
|
821
|
+
"length": 20,
|
822
|
+
"start": 9589
|
823
|
+
},
|
824
|
+
{
|
825
|
+
"length": 20,
|
826
|
+
"start": 9648
|
827
|
+
}
|
828
|
+
]
|
829
|
+
},
|
830
|
+
"contracts/types/Timestamp.sol": {
|
831
|
+
"TimestampLib": [
|
832
|
+
{
|
833
|
+
"length": 20,
|
834
|
+
"start": 8103
|
835
|
+
}
|
836
|
+
]
|
837
|
+
},
|
838
|
+
"contracts/types/Version.sol": {
|
839
|
+
"VersionLib": [
|
840
|
+
{
|
841
|
+
"length": 20,
|
842
|
+
"start": 1296
|
843
|
+
},
|
844
|
+
{
|
845
|
+
"length": 20,
|
846
|
+
"start": 4654
|
847
|
+
},
|
848
|
+
{
|
849
|
+
"length": 20,
|
850
|
+
"start": 5456
|
851
|
+
}
|
852
|
+
]
|
853
|
+
}
|
854
|
+
}
|
855
|
+
}
|