@etherisc/gif-next 0.0.2-e6ad61d-739 → 0.0.2-e802d97-713
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +338 -19
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1416 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1349 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +818 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +975 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +814 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +331 -1138
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +650 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +463 -1216
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +708 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +228 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1701 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1053 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +734 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3642 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +190 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +256 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -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/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
- 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/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/{instance/treasury/ITreasury.sol/ITreasury.json → oracle/IOracle.sol/IOracle.json} +2 -2
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +759 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +662 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1146 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +718 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1105 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +746 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +690 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1154 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1065 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1565 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1432 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +738 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +834 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +722 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1278 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +810 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +499 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +759 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +707 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +536 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +995 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.json +387 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1146 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +754 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +983 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +778 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1397 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +679 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +694 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +252 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +744 -26
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1110 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +1026 -52
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +407 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1415 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +709 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1292 -0
- package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.json +137 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +1193 -0
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +1715 -0
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +1728 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +1806 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +1824 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1490 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +792 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +526 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +1562 -0
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +4 -0
- package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +1600 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +867 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +705 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +468 -0
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/lifecycle/ILifecycle.sol/ILifecycleModule.json → shared/ILifecycle.sol/ILifecycle.json} +10 -77
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +42 -77
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +181 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +11 -11
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → shared/IService.sol/IService.json} +168 -134
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1036 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +571 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +194 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +617 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +353 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +260 -218
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -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 +78 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +993 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +444 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +2045 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +777 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1324 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +726 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2189 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +571 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +345 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +105 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +156 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +293 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/{types/ChainId.sol/ChainIdLib.json → type/UFixed.sol/MathLib.json} +4 -4
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +479 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
- package/contracts/distribution/Distribution.sol +261 -0
- package/contracts/distribution/DistributionService.sol +298 -0
- package/contracts/distribution/DistributionServiceManager.sol +42 -0
- package/contracts/distribution/IDistributionComponent.sol +66 -0
- package/contracts/distribution/IDistributionService.sol +81 -0
- package/contracts/instance/BundleManager.sol +126 -0
- package/contracts/instance/IInstance.sol +79 -22
- package/contracts/instance/IInstanceService.sol +81 -0
- package/contracts/instance/Instance.sol +217 -53
- package/contracts/instance/InstanceAdmin.sol +331 -0
- package/contracts/instance/InstanceAuthorizationsLib.sol +377 -0
- package/contracts/instance/InstanceReader.sol +390 -0
- package/contracts/instance/InstanceService.sol +362 -0
- package/contracts/instance/InstanceServiceManager.sol +44 -0
- package/contracts/instance/InstanceStore.sol +281 -0
- package/contracts/instance/base/BalanceStore.sol +118 -0
- package/contracts/instance/base/Cloneable.sol +51 -0
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/base/ObjectManager.sol +82 -0
- package/contracts/instance/module/IAccess.sol +46 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IComponents.sol +52 -0
- package/contracts/instance/module/IDistribution.sol +42 -0
- package/contracts/instance/module/IPolicy.sol +84 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/mock/Dip.sol +26 -0
- package/contracts/oracle/IOracle.sol +20 -0
- package/contracts/oracle/IOracleComponent.sol +32 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +145 -0
- package/contracts/oracle/OracleService.sol +277 -0
- package/contracts/oracle/OracleServiceManager.sol +42 -0
- package/contracts/pool/BundleService.sol +296 -0
- package/contracts/pool/BundleServiceManager.sol +42 -0
- package/contracts/pool/IBundleService.sol +106 -0
- package/contracts/pool/IPoolComponent.sol +112 -0
- package/contracts/pool/IPoolService.sol +150 -0
- package/contracts/pool/Pool.sol +299 -0
- package/contracts/pool/PoolService.sol +453 -0
- package/contracts/pool/PoolServiceManager.sol +42 -0
- package/contracts/product/ApplicationService.sol +254 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/ClaimService.sol +442 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +62 -0
- package/contracts/product/IClaimService.sol +99 -0
- package/contracts/product/IPolicyService.sol +78 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +42 -0
- package/contracts/product/IProductService.sol +33 -0
- package/contracts/product/PolicyService.sol +475 -0
- package/contracts/product/PolicyServiceManager.sol +42 -0
- package/contracts/product/PricingService.sol +301 -0
- package/contracts/product/PricingServiceManager.sol +42 -0
- package/contracts/product/Product.sol +377 -0
- package/contracts/product/ProductService.sol +124 -0
- package/contracts/product/ProductServiceManager.sol +42 -0
- package/contracts/registry/ChainNft.sol +144 -62
- package/contracts/registry/IRegistry.sol +99 -42
- package/contracts/registry/IRegistryService.sol +69 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +521 -127
- package/contracts/registry/RegistryAdmin.sol +237 -0
- package/contracts/registry/RegistryService.sol +266 -0
- package/contracts/registry/RegistryServiceManager.sol +58 -0
- package/contracts/registry/ReleaseManager.sol +600 -0
- package/contracts/registry/ServiceAuthorizationsLib.sol +173 -0
- package/contracts/registry/TokenRegistry.sol +315 -0
- package/contracts/shared/AccessManagerCustom.sol +736 -0
- package/contracts/shared/AccessManagerExtended.sol +470 -0
- package/contracts/shared/AccessManagerExtendedInitializeable.sol +13 -0
- package/contracts/shared/AccessManagerExtendedWithDisable.sol +137 -0
- package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +14 -0
- package/contracts/shared/Component.sol +281 -0
- package/contracts/shared/ComponentService.sol +618 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +117 -0
- package/contracts/shared/ERC165.sol +27 -0
- package/contracts/shared/IAccessManagerExtended.sol +74 -0
- package/contracts/shared/IAccessManagerExtendedWithDisable.sol +18 -0
- package/contracts/shared/IComponent.sol +70 -0
- package/contracts/shared/IComponentService.sol +102 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
- package/contracts/shared/IKeyValueStore.sol +53 -0
- package/contracts/shared/ILifecycle.sol +30 -0
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +45 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +18 -0
- package/contracts/shared/IVersionable.sol +53 -0
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/InstanceLinkedComponent.sol +144 -0
- package/contracts/shared/KeyValueStore.sol +127 -0
- package/contracts/shared/Lifecycle.sol +130 -0
- package/contracts/shared/NftIdSetManager.sol +65 -0
- package/contracts/shared/NftOwnable.sol +107 -0
- package/contracts/shared/PolicyHolder.sol +102 -0
- package/contracts/shared/ProxyManager.sol +199 -0
- package/contracts/shared/Registerable.sol +75 -0
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +77 -0
- package/contracts/shared/TokenHandler.sol +58 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +59 -0
- package/contracts/staking/IStaking.sol +168 -0
- package/contracts/staking/IStakingService.sol +149 -0
- package/contracts/staking/StakeManagerLib.sol +179 -0
- package/contracts/staking/Staking.sol +551 -0
- package/contracts/staking/StakingManager.sol +54 -0
- package/contracts/staking/StakingReader.sol +187 -0
- package/contracts/staking/StakingService.sol +406 -0
- package/contracts/staking/StakingServiceManager.sol +45 -0
- package/contracts/staking/StakingStore.sol +572 -0
- package/contracts/staking/TargetManagerLib.sol +207 -0
- package/contracts/type/AddressSet.sol +58 -0
- package/contracts/type/Amount.sol +128 -0
- package/contracts/{types → type}/Blocknumber.sol +21 -3
- package/contracts/type/ClaimId.sol +75 -0
- package/contracts/type/DistributorType.sol +55 -0
- package/contracts/type/Fee.sol +66 -0
- package/contracts/type/Key32.sol +50 -0
- package/contracts/type/NftId.sol +78 -0
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/{types → type}/ObjectType.sol +81 -20
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/type/Referral.sol +89 -0
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/type/RiskId.sol +43 -0
- package/contracts/type/RoleId.sol +146 -0
- package/contracts/type/Seconds.sol +81 -0
- package/contracts/{types → type}/StateId.sol +50 -6
- package/contracts/{types → type}/Timestamp.sol +41 -7
- package/contracts/type/UFixed.sol +326 -0
- package/contracts/type/Version.sol +108 -0
- package/package.json +14 -7
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/Component.json +0 -205
- 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/IPool.sol/IPoolComponent.json +0 -255
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -328
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -346
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- 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/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/IPolicy.sol/IPolicyModule.json +0 -254
- 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/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/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -92
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -174
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
- package/contracts/components/Component.sol +0 -77
- package/contracts/components/IPool.sol +0 -15
- package/contracts/components/IProduct.sol +0 -16
- package/contracts/components/Pool.sol +0 -52
- package/contracts/components/Product.sol +0 -89
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- 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
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/Fee.sol +0 -32
- package/contracts/types/NftId.sol +0 -51
- package/contracts/types/UFixed.sol +0 -210
@@ -0,0 +1,1415 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "RegistryService",
|
4
|
+
"sourceName": "contracts/registry/RegistryService.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "authority",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
|
+
"type": "error"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"inputs": [
|
35
|
+
{
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "caller",
|
38
|
+
"type": "address"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
46
|
+
{
|
47
|
+
"internalType": "NftId",
|
48
|
+
"name": "nftId",
|
49
|
+
"type": "uint96"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
57
|
+
{
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "contractAddress",
|
60
|
+
"type": "address"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
64
|
+
"type": "error"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [],
|
68
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
69
|
+
"type": "error"
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"inputs": [
|
73
|
+
{
|
74
|
+
"internalType": "address",
|
75
|
+
"name": "account",
|
76
|
+
"type": "address"
|
77
|
+
}
|
78
|
+
],
|
79
|
+
"name": "ErrorNftOwnableNotOwner",
|
80
|
+
"type": "error"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"inputs": [
|
84
|
+
{
|
85
|
+
"internalType": "address",
|
86
|
+
"name": "registryAddress",
|
87
|
+
"type": "address"
|
88
|
+
}
|
89
|
+
],
|
90
|
+
"name": "ErrorNotRegistry",
|
91
|
+
"type": "error"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"inputs": [
|
95
|
+
{
|
96
|
+
"internalType": "address",
|
97
|
+
"name": "registerableAddress",
|
98
|
+
"type": "address"
|
99
|
+
}
|
100
|
+
],
|
101
|
+
"name": "ErrorRegistryServiceInvalidAddress",
|
102
|
+
"type": "error"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"inputs": [
|
106
|
+
{
|
107
|
+
"internalType": "address",
|
108
|
+
"name": "initialOwner",
|
109
|
+
"type": "address"
|
110
|
+
}
|
111
|
+
],
|
112
|
+
"name": "ErrorRegistryServiceInvalidInitialOwner",
|
113
|
+
"type": "error"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"inputs": [
|
117
|
+
{
|
118
|
+
"internalType": "address",
|
119
|
+
"name": "notComponent",
|
120
|
+
"type": "address"
|
121
|
+
}
|
122
|
+
],
|
123
|
+
"name": "ErrorRegistryServiceNotComponent",
|
124
|
+
"type": "error"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"inputs": [
|
128
|
+
{
|
129
|
+
"internalType": "address",
|
130
|
+
"name": "notDistribution",
|
131
|
+
"type": "address"
|
132
|
+
}
|
133
|
+
],
|
134
|
+
"name": "ErrorRegistryServiceNotDistribution",
|
135
|
+
"type": "error"
|
136
|
+
},
|
137
|
+
{
|
138
|
+
"inputs": [
|
139
|
+
{
|
140
|
+
"internalType": "address",
|
141
|
+
"name": "notInstance",
|
142
|
+
"type": "address"
|
143
|
+
}
|
144
|
+
],
|
145
|
+
"name": "ErrorRegistryServiceNotInstance",
|
146
|
+
"type": "error"
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"inputs": [
|
150
|
+
{
|
151
|
+
"internalType": "address",
|
152
|
+
"name": "notPool",
|
153
|
+
"type": "address"
|
154
|
+
}
|
155
|
+
],
|
156
|
+
"name": "ErrorRegistryServiceNotPool",
|
157
|
+
"type": "error"
|
158
|
+
},
|
159
|
+
{
|
160
|
+
"inputs": [
|
161
|
+
{
|
162
|
+
"internalType": "address",
|
163
|
+
"name": "notProduct",
|
164
|
+
"type": "address"
|
165
|
+
}
|
166
|
+
],
|
167
|
+
"name": "ErrorRegistryServiceNotProduct",
|
168
|
+
"type": "error"
|
169
|
+
},
|
170
|
+
{
|
171
|
+
"inputs": [],
|
172
|
+
"name": "ErrorRegistryServiceNotRegistryOwner",
|
173
|
+
"type": "error"
|
174
|
+
},
|
175
|
+
{
|
176
|
+
"inputs": [
|
177
|
+
{
|
178
|
+
"internalType": "address",
|
179
|
+
"name": "notService",
|
180
|
+
"type": "address"
|
181
|
+
}
|
182
|
+
],
|
183
|
+
"name": "ErrorRegistryServiceNotService",
|
184
|
+
"type": "error"
|
185
|
+
},
|
186
|
+
{
|
187
|
+
"inputs": [
|
188
|
+
{
|
189
|
+
"internalType": "ObjectType",
|
190
|
+
"name": "objectType",
|
191
|
+
"type": "uint8"
|
192
|
+
}
|
193
|
+
],
|
194
|
+
"name": "ErrorRegistryServiceObjectAddressNotZero",
|
195
|
+
"type": "error"
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"inputs": [
|
199
|
+
{
|
200
|
+
"internalType": "ObjectType",
|
201
|
+
"name": "objectType",
|
202
|
+
"type": "uint8"
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"internalType": "address",
|
206
|
+
"name": "owner",
|
207
|
+
"type": "address"
|
208
|
+
}
|
209
|
+
],
|
210
|
+
"name": "ErrorRegistryServiceObjectOwnerRegistered",
|
211
|
+
"type": "error"
|
212
|
+
},
|
213
|
+
{
|
214
|
+
"inputs": [
|
215
|
+
{
|
216
|
+
"internalType": "ObjectType",
|
217
|
+
"name": "objectType",
|
218
|
+
"type": "uint8"
|
219
|
+
}
|
220
|
+
],
|
221
|
+
"name": "ErrorRegistryServiceObjectOwnerZero",
|
222
|
+
"type": "error"
|
223
|
+
},
|
224
|
+
{
|
225
|
+
"inputs": [
|
226
|
+
{
|
227
|
+
"internalType": "ObjectType",
|
228
|
+
"name": "expected",
|
229
|
+
"type": "uint8"
|
230
|
+
},
|
231
|
+
{
|
232
|
+
"internalType": "ObjectType",
|
233
|
+
"name": "found",
|
234
|
+
"type": "uint8"
|
235
|
+
}
|
236
|
+
],
|
237
|
+
"name": "ErrorRegistryServiceObjectTypeInvalid",
|
238
|
+
"type": "error"
|
239
|
+
},
|
240
|
+
{
|
241
|
+
"inputs": [
|
242
|
+
{
|
243
|
+
"internalType": "contract IRegisterable",
|
244
|
+
"name": "registerable",
|
245
|
+
"type": "address"
|
246
|
+
},
|
247
|
+
{
|
248
|
+
"internalType": "address",
|
249
|
+
"name": "found",
|
250
|
+
"type": "address"
|
251
|
+
}
|
252
|
+
],
|
253
|
+
"name": "ErrorRegistryServiceRegisterableAddressInvalid",
|
254
|
+
"type": "error"
|
255
|
+
},
|
256
|
+
{
|
257
|
+
"inputs": [
|
258
|
+
{
|
259
|
+
"internalType": "contract IRegisterable",
|
260
|
+
"name": "registerable",
|
261
|
+
"type": "address"
|
262
|
+
},
|
263
|
+
{
|
264
|
+
"internalType": "address",
|
265
|
+
"name": "expected",
|
266
|
+
"type": "address"
|
267
|
+
},
|
268
|
+
{
|
269
|
+
"internalType": "address",
|
270
|
+
"name": "found",
|
271
|
+
"type": "address"
|
272
|
+
}
|
273
|
+
],
|
274
|
+
"name": "ErrorRegistryServiceRegisterableOwnerInvalid",
|
275
|
+
"type": "error"
|
276
|
+
},
|
277
|
+
{
|
278
|
+
"inputs": [
|
279
|
+
{
|
280
|
+
"internalType": "contract IRegisterable",
|
281
|
+
"name": "registerable",
|
282
|
+
"type": "address"
|
283
|
+
},
|
284
|
+
{
|
285
|
+
"internalType": "address",
|
286
|
+
"name": "owner",
|
287
|
+
"type": "address"
|
288
|
+
}
|
289
|
+
],
|
290
|
+
"name": "ErrorRegistryServiceRegisterableOwnerRegistered",
|
291
|
+
"type": "error"
|
292
|
+
},
|
293
|
+
{
|
294
|
+
"inputs": [
|
295
|
+
{
|
296
|
+
"internalType": "contract IRegisterable",
|
297
|
+
"name": "registerable",
|
298
|
+
"type": "address"
|
299
|
+
}
|
300
|
+
],
|
301
|
+
"name": "ErrorRegistryServiceRegisterableOwnerZero",
|
302
|
+
"type": "error"
|
303
|
+
},
|
304
|
+
{
|
305
|
+
"inputs": [
|
306
|
+
{
|
307
|
+
"internalType": "contract IRegisterable",
|
308
|
+
"name": "registerable",
|
309
|
+
"type": "address"
|
310
|
+
}
|
311
|
+
],
|
312
|
+
"name": "ErrorRegistryServiceRegisterableSelfRegistration",
|
313
|
+
"type": "error"
|
314
|
+
},
|
315
|
+
{
|
316
|
+
"inputs": [
|
317
|
+
{
|
318
|
+
"internalType": "contract IRegisterable",
|
319
|
+
"name": "registerable",
|
320
|
+
"type": "address"
|
321
|
+
},
|
322
|
+
{
|
323
|
+
"internalType": "ObjectType",
|
324
|
+
"name": "expected",
|
325
|
+
"type": "uint8"
|
326
|
+
},
|
327
|
+
{
|
328
|
+
"internalType": "ObjectType",
|
329
|
+
"name": "found",
|
330
|
+
"type": "uint8"
|
331
|
+
}
|
332
|
+
],
|
333
|
+
"name": "ErrorRegistryServiceRegisterableTypeInvalid",
|
334
|
+
"type": "error"
|
335
|
+
},
|
336
|
+
{
|
337
|
+
"inputs": [],
|
338
|
+
"name": "ErrorServiceNotImplemented",
|
339
|
+
"type": "error"
|
340
|
+
},
|
341
|
+
{
|
342
|
+
"inputs": [],
|
343
|
+
"name": "InvalidInitialization",
|
344
|
+
"type": "error"
|
345
|
+
},
|
346
|
+
{
|
347
|
+
"inputs": [],
|
348
|
+
"name": "NotInitializing",
|
349
|
+
"type": "error"
|
350
|
+
},
|
351
|
+
{
|
352
|
+
"anonymous": false,
|
353
|
+
"inputs": [
|
354
|
+
{
|
355
|
+
"indexed": false,
|
356
|
+
"internalType": "address",
|
357
|
+
"name": "authority",
|
358
|
+
"type": "address"
|
359
|
+
}
|
360
|
+
],
|
361
|
+
"name": "AuthorityUpdated",
|
362
|
+
"type": "event"
|
363
|
+
},
|
364
|
+
{
|
365
|
+
"anonymous": false,
|
366
|
+
"inputs": [
|
367
|
+
{
|
368
|
+
"indexed": false,
|
369
|
+
"internalType": "uint64",
|
370
|
+
"name": "version",
|
371
|
+
"type": "uint64"
|
372
|
+
}
|
373
|
+
],
|
374
|
+
"name": "Initialized",
|
375
|
+
"type": "event"
|
376
|
+
},
|
377
|
+
{
|
378
|
+
"inputs": [],
|
379
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
380
|
+
"outputs": [
|
381
|
+
{
|
382
|
+
"internalType": "bytes32",
|
383
|
+
"name": "",
|
384
|
+
"type": "bytes32"
|
385
|
+
}
|
386
|
+
],
|
387
|
+
"stateMutability": "view",
|
388
|
+
"type": "function"
|
389
|
+
},
|
390
|
+
{
|
391
|
+
"inputs": [],
|
392
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
393
|
+
"outputs": [
|
394
|
+
{
|
395
|
+
"internalType": "bytes32",
|
396
|
+
"name": "",
|
397
|
+
"type": "bytes32"
|
398
|
+
}
|
399
|
+
],
|
400
|
+
"stateMutability": "view",
|
401
|
+
"type": "function"
|
402
|
+
},
|
403
|
+
{
|
404
|
+
"inputs": [],
|
405
|
+
"name": "REGISTRY_CREATION_CODE_HASH",
|
406
|
+
"outputs": [
|
407
|
+
{
|
408
|
+
"internalType": "bytes32",
|
409
|
+
"name": "",
|
410
|
+
"type": "bytes32"
|
411
|
+
}
|
412
|
+
],
|
413
|
+
"stateMutability": "view",
|
414
|
+
"type": "function"
|
415
|
+
},
|
416
|
+
{
|
417
|
+
"inputs": [],
|
418
|
+
"name": "authority",
|
419
|
+
"outputs": [
|
420
|
+
{
|
421
|
+
"internalType": "address",
|
422
|
+
"name": "",
|
423
|
+
"type": "address"
|
424
|
+
}
|
425
|
+
],
|
426
|
+
"stateMutability": "view",
|
427
|
+
"type": "function"
|
428
|
+
},
|
429
|
+
{
|
430
|
+
"inputs": [],
|
431
|
+
"name": "getDomain",
|
432
|
+
"outputs": [
|
433
|
+
{
|
434
|
+
"internalType": "ObjectType",
|
435
|
+
"name": "serviceDomain",
|
436
|
+
"type": "uint8"
|
437
|
+
}
|
438
|
+
],
|
439
|
+
"stateMutability": "pure",
|
440
|
+
"type": "function"
|
441
|
+
},
|
442
|
+
{
|
443
|
+
"inputs": [],
|
444
|
+
"name": "getInitialInfo",
|
445
|
+
"outputs": [
|
446
|
+
{
|
447
|
+
"components": [
|
448
|
+
{
|
449
|
+
"internalType": "NftId",
|
450
|
+
"name": "nftId",
|
451
|
+
"type": "uint96"
|
452
|
+
},
|
453
|
+
{
|
454
|
+
"internalType": "NftId",
|
455
|
+
"name": "parentNftId",
|
456
|
+
"type": "uint96"
|
457
|
+
},
|
458
|
+
{
|
459
|
+
"internalType": "ObjectType",
|
460
|
+
"name": "objectType",
|
461
|
+
"type": "uint8"
|
462
|
+
},
|
463
|
+
{
|
464
|
+
"internalType": "bool",
|
465
|
+
"name": "isInterceptor",
|
466
|
+
"type": "bool"
|
467
|
+
},
|
468
|
+
{
|
469
|
+
"internalType": "address",
|
470
|
+
"name": "objectAddress",
|
471
|
+
"type": "address"
|
472
|
+
},
|
473
|
+
{
|
474
|
+
"internalType": "address",
|
475
|
+
"name": "initialOwner",
|
476
|
+
"type": "address"
|
477
|
+
},
|
478
|
+
{
|
479
|
+
"internalType": "bytes",
|
480
|
+
"name": "data",
|
481
|
+
"type": "bytes"
|
482
|
+
}
|
483
|
+
],
|
484
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
485
|
+
"name": "info",
|
486
|
+
"type": "tuple"
|
487
|
+
}
|
488
|
+
],
|
489
|
+
"stateMutability": "view",
|
490
|
+
"type": "function"
|
491
|
+
},
|
492
|
+
{
|
493
|
+
"inputs": [],
|
494
|
+
"name": "getNftId",
|
495
|
+
"outputs": [
|
496
|
+
{
|
497
|
+
"internalType": "NftId",
|
498
|
+
"name": "",
|
499
|
+
"type": "uint96"
|
500
|
+
}
|
501
|
+
],
|
502
|
+
"stateMutability": "view",
|
503
|
+
"type": "function"
|
504
|
+
},
|
505
|
+
{
|
506
|
+
"inputs": [],
|
507
|
+
"name": "getOwner",
|
508
|
+
"outputs": [
|
509
|
+
{
|
510
|
+
"internalType": "address",
|
511
|
+
"name": "",
|
512
|
+
"type": "address"
|
513
|
+
}
|
514
|
+
],
|
515
|
+
"stateMutability": "view",
|
516
|
+
"type": "function"
|
517
|
+
},
|
518
|
+
{
|
519
|
+
"inputs": [],
|
520
|
+
"name": "getRegistry",
|
521
|
+
"outputs": [
|
522
|
+
{
|
523
|
+
"internalType": "contract IRegistry",
|
524
|
+
"name": "",
|
525
|
+
"type": "address"
|
526
|
+
}
|
527
|
+
],
|
528
|
+
"stateMutability": "view",
|
529
|
+
"type": "function"
|
530
|
+
},
|
531
|
+
{
|
532
|
+
"inputs": [],
|
533
|
+
"name": "getVersion",
|
534
|
+
"outputs": [
|
535
|
+
{
|
536
|
+
"internalType": "Version",
|
537
|
+
"name": "",
|
538
|
+
"type": "uint24"
|
539
|
+
}
|
540
|
+
],
|
541
|
+
"stateMutability": "pure",
|
542
|
+
"type": "function"
|
543
|
+
},
|
544
|
+
{
|
545
|
+
"inputs": [],
|
546
|
+
"name": "initializeERC165",
|
547
|
+
"outputs": [],
|
548
|
+
"stateMutability": "nonpayable",
|
549
|
+
"type": "function"
|
550
|
+
},
|
551
|
+
{
|
552
|
+
"inputs": [
|
553
|
+
{
|
554
|
+
"internalType": "address",
|
555
|
+
"name": "initialOwner",
|
556
|
+
"type": "address"
|
557
|
+
},
|
558
|
+
{
|
559
|
+
"internalType": "address",
|
560
|
+
"name": "registryAddress",
|
561
|
+
"type": "address"
|
562
|
+
}
|
563
|
+
],
|
564
|
+
"name": "initializeNftOwnable",
|
565
|
+
"outputs": [],
|
566
|
+
"stateMutability": "nonpayable",
|
567
|
+
"type": "function"
|
568
|
+
},
|
569
|
+
{
|
570
|
+
"inputs": [
|
571
|
+
{
|
572
|
+
"internalType": "address",
|
573
|
+
"name": "registryAddress",
|
574
|
+
"type": "address"
|
575
|
+
},
|
576
|
+
{
|
577
|
+
"internalType": "NftId",
|
578
|
+
"name": "parentNftId",
|
579
|
+
"type": "uint96"
|
580
|
+
},
|
581
|
+
{
|
582
|
+
"internalType": "ObjectType",
|
583
|
+
"name": "objectType",
|
584
|
+
"type": "uint8"
|
585
|
+
},
|
586
|
+
{
|
587
|
+
"internalType": "bool",
|
588
|
+
"name": "isInterceptor",
|
589
|
+
"type": "bool"
|
590
|
+
},
|
591
|
+
{
|
592
|
+
"internalType": "address",
|
593
|
+
"name": "initialOwner",
|
594
|
+
"type": "address"
|
595
|
+
},
|
596
|
+
{
|
597
|
+
"internalType": "bytes",
|
598
|
+
"name": "registryData",
|
599
|
+
"type": "bytes"
|
600
|
+
}
|
601
|
+
],
|
602
|
+
"name": "initializeRegisterable",
|
603
|
+
"outputs": [],
|
604
|
+
"stateMutability": "nonpayable",
|
605
|
+
"type": "function"
|
606
|
+
},
|
607
|
+
{
|
608
|
+
"inputs": [
|
609
|
+
{
|
610
|
+
"internalType": "address",
|
611
|
+
"name": "registryAddress",
|
612
|
+
"type": "address"
|
613
|
+
}
|
614
|
+
],
|
615
|
+
"name": "initializeRegistryLinked",
|
616
|
+
"outputs": [],
|
617
|
+
"stateMutability": "nonpayable",
|
618
|
+
"type": "function"
|
619
|
+
},
|
620
|
+
{
|
621
|
+
"inputs": [
|
622
|
+
{
|
623
|
+
"internalType": "address",
|
624
|
+
"name": "registry",
|
625
|
+
"type": "address"
|
626
|
+
},
|
627
|
+
{
|
628
|
+
"internalType": "address",
|
629
|
+
"name": "authority",
|
630
|
+
"type": "address"
|
631
|
+
},
|
632
|
+
{
|
633
|
+
"internalType": "address",
|
634
|
+
"name": "initialOwner",
|
635
|
+
"type": "address"
|
636
|
+
}
|
637
|
+
],
|
638
|
+
"name": "initializeService",
|
639
|
+
"outputs": [],
|
640
|
+
"stateMutability": "nonpayable",
|
641
|
+
"type": "function"
|
642
|
+
},
|
643
|
+
{
|
644
|
+
"inputs": [
|
645
|
+
{
|
646
|
+
"internalType": "address",
|
647
|
+
"name": "activatedBy",
|
648
|
+
"type": "address"
|
649
|
+
},
|
650
|
+
{
|
651
|
+
"internalType": "bytes",
|
652
|
+
"name": "data",
|
653
|
+
"type": "bytes"
|
654
|
+
}
|
655
|
+
],
|
656
|
+
"name": "initializeVersionable",
|
657
|
+
"outputs": [],
|
658
|
+
"stateMutability": "nonpayable",
|
659
|
+
"type": "function"
|
660
|
+
},
|
661
|
+
{
|
662
|
+
"inputs": [],
|
663
|
+
"name": "isConsumingScheduledOp",
|
664
|
+
"outputs": [
|
665
|
+
{
|
666
|
+
"internalType": "bytes4",
|
667
|
+
"name": "",
|
668
|
+
"type": "bytes4"
|
669
|
+
}
|
670
|
+
],
|
671
|
+
"stateMutability": "view",
|
672
|
+
"type": "function"
|
673
|
+
},
|
674
|
+
{
|
675
|
+
"inputs": [],
|
676
|
+
"name": "linkToRegisteredNftId",
|
677
|
+
"outputs": [
|
678
|
+
{
|
679
|
+
"internalType": "NftId",
|
680
|
+
"name": "nftId",
|
681
|
+
"type": "uint96"
|
682
|
+
}
|
683
|
+
],
|
684
|
+
"stateMutability": "nonpayable",
|
685
|
+
"type": "function"
|
686
|
+
},
|
687
|
+
{
|
688
|
+
"inputs": [
|
689
|
+
{
|
690
|
+
"components": [
|
691
|
+
{
|
692
|
+
"internalType": "NftId",
|
693
|
+
"name": "nftId",
|
694
|
+
"type": "uint96"
|
695
|
+
},
|
696
|
+
{
|
697
|
+
"internalType": "NftId",
|
698
|
+
"name": "parentNftId",
|
699
|
+
"type": "uint96"
|
700
|
+
},
|
701
|
+
{
|
702
|
+
"internalType": "ObjectType",
|
703
|
+
"name": "objectType",
|
704
|
+
"type": "uint8"
|
705
|
+
},
|
706
|
+
{
|
707
|
+
"internalType": "bool",
|
708
|
+
"name": "isInterceptor",
|
709
|
+
"type": "bool"
|
710
|
+
},
|
711
|
+
{
|
712
|
+
"internalType": "address",
|
713
|
+
"name": "objectAddress",
|
714
|
+
"type": "address"
|
715
|
+
},
|
716
|
+
{
|
717
|
+
"internalType": "address",
|
718
|
+
"name": "initialOwner",
|
719
|
+
"type": "address"
|
720
|
+
},
|
721
|
+
{
|
722
|
+
"internalType": "bytes",
|
723
|
+
"name": "data",
|
724
|
+
"type": "bytes"
|
725
|
+
}
|
726
|
+
],
|
727
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
728
|
+
"name": "info",
|
729
|
+
"type": "tuple"
|
730
|
+
}
|
731
|
+
],
|
732
|
+
"name": "registerBundle",
|
733
|
+
"outputs": [
|
734
|
+
{
|
735
|
+
"internalType": "NftId",
|
736
|
+
"name": "nftId",
|
737
|
+
"type": "uint96"
|
738
|
+
}
|
739
|
+
],
|
740
|
+
"stateMutability": "nonpayable",
|
741
|
+
"type": "function"
|
742
|
+
},
|
743
|
+
{
|
744
|
+
"inputs": [
|
745
|
+
{
|
746
|
+
"internalType": "contract IComponent",
|
747
|
+
"name": "component",
|
748
|
+
"type": "address"
|
749
|
+
},
|
750
|
+
{
|
751
|
+
"internalType": "ObjectType",
|
752
|
+
"name": "objectType",
|
753
|
+
"type": "uint8"
|
754
|
+
},
|
755
|
+
{
|
756
|
+
"internalType": "address",
|
757
|
+
"name": "initialOwner",
|
758
|
+
"type": "address"
|
759
|
+
}
|
760
|
+
],
|
761
|
+
"name": "registerComponent",
|
762
|
+
"outputs": [
|
763
|
+
{
|
764
|
+
"components": [
|
765
|
+
{
|
766
|
+
"internalType": "NftId",
|
767
|
+
"name": "nftId",
|
768
|
+
"type": "uint96"
|
769
|
+
},
|
770
|
+
{
|
771
|
+
"internalType": "NftId",
|
772
|
+
"name": "parentNftId",
|
773
|
+
"type": "uint96"
|
774
|
+
},
|
775
|
+
{
|
776
|
+
"internalType": "ObjectType",
|
777
|
+
"name": "objectType",
|
778
|
+
"type": "uint8"
|
779
|
+
},
|
780
|
+
{
|
781
|
+
"internalType": "bool",
|
782
|
+
"name": "isInterceptor",
|
783
|
+
"type": "bool"
|
784
|
+
},
|
785
|
+
{
|
786
|
+
"internalType": "address",
|
787
|
+
"name": "objectAddress",
|
788
|
+
"type": "address"
|
789
|
+
},
|
790
|
+
{
|
791
|
+
"internalType": "address",
|
792
|
+
"name": "initialOwner",
|
793
|
+
"type": "address"
|
794
|
+
},
|
795
|
+
{
|
796
|
+
"internalType": "bytes",
|
797
|
+
"name": "data",
|
798
|
+
"type": "bytes"
|
799
|
+
}
|
800
|
+
],
|
801
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
802
|
+
"name": "info",
|
803
|
+
"type": "tuple"
|
804
|
+
}
|
805
|
+
],
|
806
|
+
"stateMutability": "nonpayable",
|
807
|
+
"type": "function"
|
808
|
+
},
|
809
|
+
{
|
810
|
+
"inputs": [
|
811
|
+
{
|
812
|
+
"internalType": "contract IComponent",
|
813
|
+
"name": "distribution",
|
814
|
+
"type": "address"
|
815
|
+
},
|
816
|
+
{
|
817
|
+
"internalType": "address",
|
818
|
+
"name": "owner",
|
819
|
+
"type": "address"
|
820
|
+
}
|
821
|
+
],
|
822
|
+
"name": "registerDistribution",
|
823
|
+
"outputs": [
|
824
|
+
{
|
825
|
+
"components": [
|
826
|
+
{
|
827
|
+
"internalType": "NftId",
|
828
|
+
"name": "nftId",
|
829
|
+
"type": "uint96"
|
830
|
+
},
|
831
|
+
{
|
832
|
+
"internalType": "NftId",
|
833
|
+
"name": "parentNftId",
|
834
|
+
"type": "uint96"
|
835
|
+
},
|
836
|
+
{
|
837
|
+
"internalType": "ObjectType",
|
838
|
+
"name": "objectType",
|
839
|
+
"type": "uint8"
|
840
|
+
},
|
841
|
+
{
|
842
|
+
"internalType": "bool",
|
843
|
+
"name": "isInterceptor",
|
844
|
+
"type": "bool"
|
845
|
+
},
|
846
|
+
{
|
847
|
+
"internalType": "address",
|
848
|
+
"name": "objectAddress",
|
849
|
+
"type": "address"
|
850
|
+
},
|
851
|
+
{
|
852
|
+
"internalType": "address",
|
853
|
+
"name": "initialOwner",
|
854
|
+
"type": "address"
|
855
|
+
},
|
856
|
+
{
|
857
|
+
"internalType": "bytes",
|
858
|
+
"name": "data",
|
859
|
+
"type": "bytes"
|
860
|
+
}
|
861
|
+
],
|
862
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
863
|
+
"name": "info",
|
864
|
+
"type": "tuple"
|
865
|
+
}
|
866
|
+
],
|
867
|
+
"stateMutability": "nonpayable",
|
868
|
+
"type": "function"
|
869
|
+
},
|
870
|
+
{
|
871
|
+
"inputs": [
|
872
|
+
{
|
873
|
+
"components": [
|
874
|
+
{
|
875
|
+
"internalType": "NftId",
|
876
|
+
"name": "nftId",
|
877
|
+
"type": "uint96"
|
878
|
+
},
|
879
|
+
{
|
880
|
+
"internalType": "NftId",
|
881
|
+
"name": "parentNftId",
|
882
|
+
"type": "uint96"
|
883
|
+
},
|
884
|
+
{
|
885
|
+
"internalType": "ObjectType",
|
886
|
+
"name": "objectType",
|
887
|
+
"type": "uint8"
|
888
|
+
},
|
889
|
+
{
|
890
|
+
"internalType": "bool",
|
891
|
+
"name": "isInterceptor",
|
892
|
+
"type": "bool"
|
893
|
+
},
|
894
|
+
{
|
895
|
+
"internalType": "address",
|
896
|
+
"name": "objectAddress",
|
897
|
+
"type": "address"
|
898
|
+
},
|
899
|
+
{
|
900
|
+
"internalType": "address",
|
901
|
+
"name": "initialOwner",
|
902
|
+
"type": "address"
|
903
|
+
},
|
904
|
+
{
|
905
|
+
"internalType": "bytes",
|
906
|
+
"name": "data",
|
907
|
+
"type": "bytes"
|
908
|
+
}
|
909
|
+
],
|
910
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
911
|
+
"name": "info",
|
912
|
+
"type": "tuple"
|
913
|
+
}
|
914
|
+
],
|
915
|
+
"name": "registerDistributor",
|
916
|
+
"outputs": [
|
917
|
+
{
|
918
|
+
"internalType": "NftId",
|
919
|
+
"name": "nftId",
|
920
|
+
"type": "uint96"
|
921
|
+
}
|
922
|
+
],
|
923
|
+
"stateMutability": "nonpayable",
|
924
|
+
"type": "function"
|
925
|
+
},
|
926
|
+
{
|
927
|
+
"inputs": [
|
928
|
+
{
|
929
|
+
"internalType": "contract IRegisterable",
|
930
|
+
"name": "instance",
|
931
|
+
"type": "address"
|
932
|
+
},
|
933
|
+
{
|
934
|
+
"internalType": "address",
|
935
|
+
"name": "owner",
|
936
|
+
"type": "address"
|
937
|
+
}
|
938
|
+
],
|
939
|
+
"name": "registerInstance",
|
940
|
+
"outputs": [
|
941
|
+
{
|
942
|
+
"components": [
|
943
|
+
{
|
944
|
+
"internalType": "NftId",
|
945
|
+
"name": "nftId",
|
946
|
+
"type": "uint96"
|
947
|
+
},
|
948
|
+
{
|
949
|
+
"internalType": "NftId",
|
950
|
+
"name": "parentNftId",
|
951
|
+
"type": "uint96"
|
952
|
+
},
|
953
|
+
{
|
954
|
+
"internalType": "ObjectType",
|
955
|
+
"name": "objectType",
|
956
|
+
"type": "uint8"
|
957
|
+
},
|
958
|
+
{
|
959
|
+
"internalType": "bool",
|
960
|
+
"name": "isInterceptor",
|
961
|
+
"type": "bool"
|
962
|
+
},
|
963
|
+
{
|
964
|
+
"internalType": "address",
|
965
|
+
"name": "objectAddress",
|
966
|
+
"type": "address"
|
967
|
+
},
|
968
|
+
{
|
969
|
+
"internalType": "address",
|
970
|
+
"name": "initialOwner",
|
971
|
+
"type": "address"
|
972
|
+
},
|
973
|
+
{
|
974
|
+
"internalType": "bytes",
|
975
|
+
"name": "data",
|
976
|
+
"type": "bytes"
|
977
|
+
}
|
978
|
+
],
|
979
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
980
|
+
"name": "info",
|
981
|
+
"type": "tuple"
|
982
|
+
}
|
983
|
+
],
|
984
|
+
"stateMutability": "nonpayable",
|
985
|
+
"type": "function"
|
986
|
+
},
|
987
|
+
{
|
988
|
+
"inputs": [
|
989
|
+
{
|
990
|
+
"internalType": "bytes4",
|
991
|
+
"name": "interfaceId",
|
992
|
+
"type": "bytes4"
|
993
|
+
}
|
994
|
+
],
|
995
|
+
"name": "registerInterface",
|
996
|
+
"outputs": [],
|
997
|
+
"stateMutability": "nonpayable",
|
998
|
+
"type": "function"
|
999
|
+
},
|
1000
|
+
{
|
1001
|
+
"inputs": [
|
1002
|
+
{
|
1003
|
+
"components": [
|
1004
|
+
{
|
1005
|
+
"internalType": "NftId",
|
1006
|
+
"name": "nftId",
|
1007
|
+
"type": "uint96"
|
1008
|
+
},
|
1009
|
+
{
|
1010
|
+
"internalType": "NftId",
|
1011
|
+
"name": "parentNftId",
|
1012
|
+
"type": "uint96"
|
1013
|
+
},
|
1014
|
+
{
|
1015
|
+
"internalType": "ObjectType",
|
1016
|
+
"name": "objectType",
|
1017
|
+
"type": "uint8"
|
1018
|
+
},
|
1019
|
+
{
|
1020
|
+
"internalType": "bool",
|
1021
|
+
"name": "isInterceptor",
|
1022
|
+
"type": "bool"
|
1023
|
+
},
|
1024
|
+
{
|
1025
|
+
"internalType": "address",
|
1026
|
+
"name": "objectAddress",
|
1027
|
+
"type": "address"
|
1028
|
+
},
|
1029
|
+
{
|
1030
|
+
"internalType": "address",
|
1031
|
+
"name": "initialOwner",
|
1032
|
+
"type": "address"
|
1033
|
+
},
|
1034
|
+
{
|
1035
|
+
"internalType": "bytes",
|
1036
|
+
"name": "data",
|
1037
|
+
"type": "bytes"
|
1038
|
+
}
|
1039
|
+
],
|
1040
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1041
|
+
"name": "info",
|
1042
|
+
"type": "tuple"
|
1043
|
+
}
|
1044
|
+
],
|
1045
|
+
"name": "registerPolicy",
|
1046
|
+
"outputs": [
|
1047
|
+
{
|
1048
|
+
"internalType": "NftId",
|
1049
|
+
"name": "nftId",
|
1050
|
+
"type": "uint96"
|
1051
|
+
}
|
1052
|
+
],
|
1053
|
+
"stateMutability": "nonpayable",
|
1054
|
+
"type": "function"
|
1055
|
+
},
|
1056
|
+
{
|
1057
|
+
"inputs": [
|
1058
|
+
{
|
1059
|
+
"internalType": "contract IComponent",
|
1060
|
+
"name": "pool",
|
1061
|
+
"type": "address"
|
1062
|
+
},
|
1063
|
+
{
|
1064
|
+
"internalType": "address",
|
1065
|
+
"name": "owner",
|
1066
|
+
"type": "address"
|
1067
|
+
}
|
1068
|
+
],
|
1069
|
+
"name": "registerPool",
|
1070
|
+
"outputs": [
|
1071
|
+
{
|
1072
|
+
"components": [
|
1073
|
+
{
|
1074
|
+
"internalType": "NftId",
|
1075
|
+
"name": "nftId",
|
1076
|
+
"type": "uint96"
|
1077
|
+
},
|
1078
|
+
{
|
1079
|
+
"internalType": "NftId",
|
1080
|
+
"name": "parentNftId",
|
1081
|
+
"type": "uint96"
|
1082
|
+
},
|
1083
|
+
{
|
1084
|
+
"internalType": "ObjectType",
|
1085
|
+
"name": "objectType",
|
1086
|
+
"type": "uint8"
|
1087
|
+
},
|
1088
|
+
{
|
1089
|
+
"internalType": "bool",
|
1090
|
+
"name": "isInterceptor",
|
1091
|
+
"type": "bool"
|
1092
|
+
},
|
1093
|
+
{
|
1094
|
+
"internalType": "address",
|
1095
|
+
"name": "objectAddress",
|
1096
|
+
"type": "address"
|
1097
|
+
},
|
1098
|
+
{
|
1099
|
+
"internalType": "address",
|
1100
|
+
"name": "initialOwner",
|
1101
|
+
"type": "address"
|
1102
|
+
},
|
1103
|
+
{
|
1104
|
+
"internalType": "bytes",
|
1105
|
+
"name": "data",
|
1106
|
+
"type": "bytes"
|
1107
|
+
}
|
1108
|
+
],
|
1109
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1110
|
+
"name": "info",
|
1111
|
+
"type": "tuple"
|
1112
|
+
}
|
1113
|
+
],
|
1114
|
+
"stateMutability": "nonpayable",
|
1115
|
+
"type": "function"
|
1116
|
+
},
|
1117
|
+
{
|
1118
|
+
"inputs": [
|
1119
|
+
{
|
1120
|
+
"internalType": "contract IComponent",
|
1121
|
+
"name": "product",
|
1122
|
+
"type": "address"
|
1123
|
+
},
|
1124
|
+
{
|
1125
|
+
"internalType": "address",
|
1126
|
+
"name": "owner",
|
1127
|
+
"type": "address"
|
1128
|
+
}
|
1129
|
+
],
|
1130
|
+
"name": "registerProduct",
|
1131
|
+
"outputs": [
|
1132
|
+
{
|
1133
|
+
"components": [
|
1134
|
+
{
|
1135
|
+
"internalType": "NftId",
|
1136
|
+
"name": "nftId",
|
1137
|
+
"type": "uint96"
|
1138
|
+
},
|
1139
|
+
{
|
1140
|
+
"internalType": "NftId",
|
1141
|
+
"name": "parentNftId",
|
1142
|
+
"type": "uint96"
|
1143
|
+
},
|
1144
|
+
{
|
1145
|
+
"internalType": "ObjectType",
|
1146
|
+
"name": "objectType",
|
1147
|
+
"type": "uint8"
|
1148
|
+
},
|
1149
|
+
{
|
1150
|
+
"internalType": "bool",
|
1151
|
+
"name": "isInterceptor",
|
1152
|
+
"type": "bool"
|
1153
|
+
},
|
1154
|
+
{
|
1155
|
+
"internalType": "address",
|
1156
|
+
"name": "objectAddress",
|
1157
|
+
"type": "address"
|
1158
|
+
},
|
1159
|
+
{
|
1160
|
+
"internalType": "address",
|
1161
|
+
"name": "initialOwner",
|
1162
|
+
"type": "address"
|
1163
|
+
},
|
1164
|
+
{
|
1165
|
+
"internalType": "bytes",
|
1166
|
+
"name": "data",
|
1167
|
+
"type": "bytes"
|
1168
|
+
}
|
1169
|
+
],
|
1170
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1171
|
+
"name": "info",
|
1172
|
+
"type": "tuple"
|
1173
|
+
}
|
1174
|
+
],
|
1175
|
+
"stateMutability": "nonpayable",
|
1176
|
+
"type": "function"
|
1177
|
+
},
|
1178
|
+
{
|
1179
|
+
"inputs": [
|
1180
|
+
{
|
1181
|
+
"components": [
|
1182
|
+
{
|
1183
|
+
"internalType": "NftId",
|
1184
|
+
"name": "nftId",
|
1185
|
+
"type": "uint96"
|
1186
|
+
},
|
1187
|
+
{
|
1188
|
+
"internalType": "NftId",
|
1189
|
+
"name": "parentNftId",
|
1190
|
+
"type": "uint96"
|
1191
|
+
},
|
1192
|
+
{
|
1193
|
+
"internalType": "ObjectType",
|
1194
|
+
"name": "objectType",
|
1195
|
+
"type": "uint8"
|
1196
|
+
},
|
1197
|
+
{
|
1198
|
+
"internalType": "bool",
|
1199
|
+
"name": "isInterceptor",
|
1200
|
+
"type": "bool"
|
1201
|
+
},
|
1202
|
+
{
|
1203
|
+
"internalType": "address",
|
1204
|
+
"name": "objectAddress",
|
1205
|
+
"type": "address"
|
1206
|
+
},
|
1207
|
+
{
|
1208
|
+
"internalType": "address",
|
1209
|
+
"name": "initialOwner",
|
1210
|
+
"type": "address"
|
1211
|
+
},
|
1212
|
+
{
|
1213
|
+
"internalType": "bytes",
|
1214
|
+
"name": "data",
|
1215
|
+
"type": "bytes"
|
1216
|
+
}
|
1217
|
+
],
|
1218
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1219
|
+
"name": "info",
|
1220
|
+
"type": "tuple"
|
1221
|
+
}
|
1222
|
+
],
|
1223
|
+
"name": "registerStake",
|
1224
|
+
"outputs": [
|
1225
|
+
{
|
1226
|
+
"internalType": "NftId",
|
1227
|
+
"name": "nftId",
|
1228
|
+
"type": "uint96"
|
1229
|
+
}
|
1230
|
+
],
|
1231
|
+
"stateMutability": "nonpayable",
|
1232
|
+
"type": "function"
|
1233
|
+
},
|
1234
|
+
{
|
1235
|
+
"inputs": [
|
1236
|
+
{
|
1237
|
+
"internalType": "contract IRegisterable",
|
1238
|
+
"name": "staking",
|
1239
|
+
"type": "address"
|
1240
|
+
},
|
1241
|
+
{
|
1242
|
+
"internalType": "address",
|
1243
|
+
"name": "owner",
|
1244
|
+
"type": "address"
|
1245
|
+
}
|
1246
|
+
],
|
1247
|
+
"name": "registerStaking",
|
1248
|
+
"outputs": [
|
1249
|
+
{
|
1250
|
+
"components": [
|
1251
|
+
{
|
1252
|
+
"internalType": "NftId",
|
1253
|
+
"name": "nftId",
|
1254
|
+
"type": "uint96"
|
1255
|
+
},
|
1256
|
+
{
|
1257
|
+
"internalType": "NftId",
|
1258
|
+
"name": "parentNftId",
|
1259
|
+
"type": "uint96"
|
1260
|
+
},
|
1261
|
+
{
|
1262
|
+
"internalType": "ObjectType",
|
1263
|
+
"name": "objectType",
|
1264
|
+
"type": "uint8"
|
1265
|
+
},
|
1266
|
+
{
|
1267
|
+
"internalType": "bool",
|
1268
|
+
"name": "isInterceptor",
|
1269
|
+
"type": "bool"
|
1270
|
+
},
|
1271
|
+
{
|
1272
|
+
"internalType": "address",
|
1273
|
+
"name": "objectAddress",
|
1274
|
+
"type": "address"
|
1275
|
+
},
|
1276
|
+
{
|
1277
|
+
"internalType": "address",
|
1278
|
+
"name": "initialOwner",
|
1279
|
+
"type": "address"
|
1280
|
+
},
|
1281
|
+
{
|
1282
|
+
"internalType": "bytes",
|
1283
|
+
"name": "data",
|
1284
|
+
"type": "bytes"
|
1285
|
+
}
|
1286
|
+
],
|
1287
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1288
|
+
"name": "info",
|
1289
|
+
"type": "tuple"
|
1290
|
+
}
|
1291
|
+
],
|
1292
|
+
"stateMutability": "nonpayable",
|
1293
|
+
"type": "function"
|
1294
|
+
},
|
1295
|
+
{
|
1296
|
+
"inputs": [
|
1297
|
+
{
|
1298
|
+
"internalType": "address",
|
1299
|
+
"name": "newAuthority",
|
1300
|
+
"type": "address"
|
1301
|
+
}
|
1302
|
+
],
|
1303
|
+
"name": "setAuthority",
|
1304
|
+
"outputs": [],
|
1305
|
+
"stateMutability": "nonpayable",
|
1306
|
+
"type": "function"
|
1307
|
+
},
|
1308
|
+
{
|
1309
|
+
"inputs": [
|
1310
|
+
{
|
1311
|
+
"internalType": "bytes4",
|
1312
|
+
"name": "interfaceId",
|
1313
|
+
"type": "bytes4"
|
1314
|
+
}
|
1315
|
+
],
|
1316
|
+
"name": "supportsInterface",
|
1317
|
+
"outputs": [
|
1318
|
+
{
|
1319
|
+
"internalType": "bool",
|
1320
|
+
"name": "",
|
1321
|
+
"type": "bool"
|
1322
|
+
}
|
1323
|
+
],
|
1324
|
+
"stateMutability": "view",
|
1325
|
+
"type": "function"
|
1326
|
+
},
|
1327
|
+
{
|
1328
|
+
"inputs": [
|
1329
|
+
{
|
1330
|
+
"internalType": "bytes",
|
1331
|
+
"name": "data",
|
1332
|
+
"type": "bytes"
|
1333
|
+
}
|
1334
|
+
],
|
1335
|
+
"name": "upgradeVersionable",
|
1336
|
+
"outputs": [],
|
1337
|
+
"stateMutability": "nonpayable",
|
1338
|
+
"type": "function"
|
1339
|
+
}
|
1340
|
+
],
|
1341
|
+
"bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b612af180620000e66000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063675393bf1161010f578063ada9652e116100a2578063c4c79d8b11610071578063c4c79d8b14610470578063d943342d14610483578063ed841d0c14610496578063f7c34ee01461049e57600080fd5b8063ada9652e14610431578063b68d180914610446578063bf7e214f14610455578063c2bf08c81461045d57600080fd5b8063893d20e8116100de578063893d20e8146103ee5780638e32e979146103f65780638fb36037146104095780638fbc2d811461041e57600080fd5b8063675393bf146103a25780637286e5e5146103b55780637a9e5e4b146103c85780638105cc7f146103db57600080fd5b8063329d6e74116101875780635ab1bd53116101565780635ab1bd53146103395780635c992fed1461035e5780635d96628914610371578063644c45e01461038457600080fd5b8063329d6e74146102f857806336fc697e1461030b57806349bb9e4b1461031357806357a8fba71461032657600080fd5b8063138461e0116101c3578063138461e01461027b5780631eff4b221461029b578063214cdb80146102d057806327bb7a33146102e557600080fd5b806301ffc9a7146101f5578063026bc43b146102375780630d8e6e2c146102575780630fec111c14610273575b600080fd5b6102226102033660046120c7565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61024a61024536600461211d565b6104b1565b60405161022e91906121a6565b61025f610672565b60405162ffffff909116815260200161022e565b61024a6106fc565b61028361088d565b6040516001600160601b03909116815260200161022e565b6102c27f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161022e565b6102e36102de3660046120c7565b610898565b005b6102e36102f336600461236f565b6108c5565b6102e3610306366004612407565b61096a565b6102e3610ab7565b6102e361032136600461243b565b610afd565b61028361033436600461248a565b610bfc565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161022e565b61028361036c36600461248a565b610c8b565b61024a61037f36600461211d565b610ca1565b600080516020612a5c833981519152546001600160601b0316610283565b6102e36103b036600461255c565b610dec565b61024a6103c336600461211d565b610eff565b6102e36103d636600461255c565b610fb7565b6102836103e936600461248a565b61103a565b610346611050565b6102e3610404366004612579565b611187565b6104116113c0565b60405161022e91906125c4565b61024a61042c36600461211d565b6113f8565b6102c2600080516020612a5c83398151915281565b6040516028815260200161022e565b6103466114b0565b61028361046b36600461248a565b6114cc565b61024a61047e36600461211d565b6114e2565b61024a6104913660046125d9565b6114fe565b6102c2600081565b6102e36104ac36600461211d565b61164a565b6104b9612089565b6104c6335b6000366116c1565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906104f990637344136d60e01b906004016125c4565b602060405180830381865afa158015610516573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061053a9190612614565b61056757604051631c8275e960e21b81526001600160a01b03841660048201526024015b60405180910390fd5b6105748360465b846117c7565b90506105886001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016105b391906121a6565b6020604051808303816000875af11580156105d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f6919061263c565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192602092919082900301816000875af1158015610647573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066b919061263c565b5092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156106d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f79190612659565b905090565b610704612089565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561077d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a1919061263c565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016107e9611050565b6001600160a01b031681526020018260010180546108069061267e565b80601f01602080910402602001604051908101604052809291908181526020018280546108329061267e565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b505050505081525091505090565b60006106f730611a3e565b6108a0611c3f565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6108cd611c3f565b6108d7828761164a565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30161096083826126fe565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61098c610672565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156109cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f091906127bd565b600080516020612a9c8339815191528054600160401b900460ff1680610a23575080546001600160401b03808416911610155b15610a415760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a6b83611c78565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610abf611c3f565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080516020612a9c8339815191528054600160401b810460ff1615906001600160401b0316600081158015610b305750825b90506000826001600160401b03166001148015610b4c5750303b155b905081158015610b5a575080155b15610b785760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ba257845460ff60401b1916600160401b1785555b610bac8787611c80565b8315610bf357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b6000610c07336104be565b610c1282607a611d9f565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610c429085906004016121a6565b6020604051808303816000875af1158015610c61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c85919061263c565b92915050565b6000610c96336104be565b610c128260d3611d9f565b610ca9612089565b610cb2336104be565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610ce59063153c0ad960e01b906004016125c4565b602060405180830381865afa158015610d02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d269190612614565b610d4e5760405163704b6c6d60e11b81526001600160a01b038416600482015260240161055e565b610d5983606e61056e565b9050610d6d6001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b8152600401610d9891906121a6565b6020604051808303816000875af1158015610db7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddb919061263c565b6001600160601b0316815292915050565b610df4611c3f565b806001600160a01b03163b600003610e2a5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161055e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a790610e709063e607072160e01b906004016125c4565b602060405180830381865afa925050508015610ea9575060408051601f3d908101601f19168201909252610ea691810190612614565b60015b610ed15760405163fdeac91f60e01b81526001600160a01b038216600482015260240161055e565b80610efa5760405163fdeac91f60e01b81526001600160a01b038316600482015260240161055e565b505b50565b610f07612089565b610f10336104be565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610f4390632363b9ed60e21b906004016125c4565b602060405180830381865afa158015610f60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f849190612614565b610fac576040516304c983f360e41b81526001600160a01b038416600482015260240161055e565b610d5983608c61056e565b33610fc06114b0565b6001600160a01b0316816001600160a01b031614610ffb5760405162d1953b60e31b81526001600160a01b038216600482015260240161055e565b816001600160a01b03163b600003611031576040516361798f2f60e11b81526001600160a01b038316600482015260240161055e565b610efa82611efa565b6000611045336104be565b610c12826050611d9f565b600080600080516020612a5c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156110c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e49190612614565b15611171576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611147573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116b91906127f1565b91505090565b54600160601b90046001600160a01b0316919050565b61118f611c3f565b61120f83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f5919061263c565b603c600085604051806020016040528060008152506108c5565b6001600160a01b0382161561122c5761122782611f5b565b61139b565b60006112406001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156112a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c49190612819565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611309573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132d91906127f1565b9050611399816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611370573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139491906127f1565b611f5b565b505b6113ab634a531f3360e01b610898565b6113bb63b68d180960e01b610898565b505050565b600080516020612a7c833981519152805460009190600160a01b900460ff166113ea57600061116b565b638fb3603760e01b91505090565b611400612089565b611409336104be565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061143c906363541cc160e11b906004016125c4565b602060405180830381865afa158015611459573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147d9190612614565b6114a5576040516367237f5b60e11b81526001600160a01b038416600482015260240161055e565b610d5983607861056e565b600080516020612a7c833981519152546001600160a01b031690565b60006114d7336104be565b610c128260dc611d9f565b6114ea612089565b6114f3336104be565b610d5983602d61056e565b611506612089565b61150f336104be565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a79061154290632986755f60e11b906004016125c4565b602060405180830381865afa15801561155f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115839190612614565b6115ab57604051632624ae7760e01b81526001600160a01b038516600482015260240161055e565b6115b68484846117c7565b90506115ca6001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016115f591906121a6565b6020604051808303816000875af1158015611614573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611638919061263c565b6001600160601b031681529392505050565b611652611c3f565b61165b81610dec565b611663610ab7565b6001600160a01b03821661168a5760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020612a5c83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600080516020612a7c8339815191526000806116fc6116de6114b0565b87306116ee600460008a8c612836565b6116f791612860565b611f6c565b91509150816117bf5763ffffffff81161561179c57825460ff60a01b1916600160a01b17835561172a6114b0565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161175993929190612890565b600060405180830381600087803b15801561177357600080fd5b505af1158015611787573d6000803e3d6000fd5b5050845460ff60a01b19168555506117bf9050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161055e565b505050505050565b6117cf612089565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801561180d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118359190810190612915565b9050836001600160a01b031681608001516001600160a01b0316146118865760808101516040516306704ad960e11b81526001600160a01b038087166004830152909116602482015260440161055e565b604081015160ff8481169116146118d257604080820151905163137f2ac560e31b81526001600160a01b038616600482015260ff8086166024830152909116604482015260640161055e565b60a08101516001600160a01b038082169084161461191e576040516335ce70c360e21b81526001600160a01b03808716600483015280851660248301528216604482015260640161055e565b846001600160a01b0316816001600160a01b03160361195b57604051638e80a3f960e01b81526001600160a01b038616600482015260240161055e565b6001600160a01b03811661198d576040516343e40cb560e01b81526001600160a01b038616600482015260240161055e565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156119e1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a059190612614565b15611a36576040516309ad872b60e41b81526001600160a01b0380871660048301528216602482015260440161055e565b509392505050565b600080600080516020612a5c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad29190612614565b15611afe5780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161055e565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611b52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b769190612614565b611b9e5760405163b9304b0d60e01b81526001600160a01b038416600482015260240161055e565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611bf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c16919061263c565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b600080516020612a9c83398151915254600160401b900460ff16611c7657604051631afcd79f60e31b815260040160405180910390fd5b565b6101f0611c3f565b600080516020612a9c8339815191528054600160401b810460ff1615906001600160401b0316600081158015611cb35750825b90506000826001600160401b03166001148015611ccf5750303b155b905081158015611cdd575080155b15611cfb5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611d2557845460ff60401b1916600160401b1785555b60008087806020019051810190611d3c91906129d8565b91509150611d4b82828b611187565b611d5b631987a50360e11b610898565b50508315610bf357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610bea565b60808201516001600160a01b031615611dd65760408083015190516340fda83160e11b815260ff909116600482015260240161055e565b604082015160ff828116911614611e13576040808301519051632e5fbed960e21b815260ff8084166004830152909116602482015260440161055e565b60a08201516001600160a01b038116611e4a576040808401519051633312954f60e21b815260ff909116600482015260240161055e565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611e9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec29190612614565b156113bb57604080840151905163b4139d2560e01b815260ff90911660048201526001600160a01b038216602482015260440161055e565b600080516020612a7c83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611f63611c3f565b610efc81612078565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251611fdb9190612a07565b600060405180830381855afa9150503d8060008114612016576040519150601f19603f3d011682016040523d82523d6000602084013e61201b565b606091505b5091509150811561206d57604081511061204d57808060200190518101906120439190612a23565b909450925061206d565b602081511061206d578080602001905181019061206a9190612614565b93505b505094509492505050565b612080611c3f565b610efc81611efa565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6000602082840312156120d957600080fd5b81356001600160e01b0319811681146120f157600080fd5b9392505050565b6001600160a01b0381168114610efc57600080fd5b8035612118816120f8565b919050565b6000806040838503121561213057600080fd5b823561213b816120f8565b9150602083013561214b816120f8565b809150509250929050565b60005b83811015612171578181015183820152602001612159565b50506000910152565b60008151808452612192816020860160208601612156565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161220f60c08401826001600160a01b03169052565b5060c083015160e08084015261222961010084018261217a565b949350505050565b6001600160601b0381168114610efc57600080fd5b803561211881612231565b60ff81168114610efc57600080fd5b803561211881612251565b8015158114610efc57600080fd5b80356121188161226b565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156122bc576122bc612284565b60405290565b604051601f8201601f191681016001600160401b03811182821017156122ea576122ea612284565b604052919050565b60006001600160401b0382111561230b5761230b612284565b50601f01601f191660200190565b600082601f83011261232a57600080fd5b813561233d612338826122f2565b6122c2565b81815284602083860101111561235257600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c0878903121561238857600080fd5b8635612393816120f8565b955060208701356123a381612231565b945060408701356123b381612251565b935060608701356123c38161226b565b925060808701356123d3816120f8565b915060a08701356001600160401b038111156123ee57600080fd5b6123fa89828a01612319565b9150509295509295509295565b60006020828403121561241957600080fd5b81356001600160401b0381111561242f57600080fd5b61222984828501612319565b6000806040838503121561244e57600080fd5b8235612459816120f8565b915060208301356001600160401b0381111561247457600080fd5b61248085828601612319565b9150509250929050565b60006020828403121561249c57600080fd5b81356001600160401b03808211156124b357600080fd5b9083019060e082860312156124c757600080fd5b6124cf61229a565b6124d883612246565b81526124e660208401612246565b60208201526124f760408401612260565b604082015261250860608401612279565b60608201526125196080840161210d565b608082015261252a60a0840161210d565b60a082015260c08301358281111561254157600080fd5b61254d87828601612319565b60c08301525095945050505050565b60006020828403121561256e57600080fd5b81356120f1816120f8565b60008060006060848603121561258e57600080fd5b8335612599816120f8565b925060208401356125a9816120f8565b915060408401356125b9816120f8565b809150509250925092565b6001600160e01b031991909116815260200190565b6000806000606084860312156125ee57600080fd5b83356125f9816120f8565b925060208401356125a981612251565b80516121188161226b565b60006020828403121561262657600080fd5b81516120f18161226b565b805161211881612231565b60006020828403121561264e57600080fd5b81516120f181612231565b60006020828403121561266b57600080fd5b815162ffffff811681146120f157600080fd5b600181811c9082168061269257607f821691505b6020821081036126b257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156113bb57600081815260208120601f850160051c810160208610156126df5750805b601f850160051c820191505b818110156117bf578281556001016126eb565b81516001600160401b0381111561271757612717612284565b61272b81612725845461267e565b846126b8565b602080601f83116001811461276057600084156127485750858301515b600019600386901b1c1916600185901b1785556117bf565b600085815260208120601f198616915b8281101561278f57888601518255948401946001909101908401612770565b50858210156127ad5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156127cf57600080fd5b81516001600160401b03811681146120f157600080fd5b8051612118816120f8565b60006020828403121561280357600080fd5b81516120f1816120f8565b805161211881612251565b60006020828403121561282b57600080fd5b81516120f181612251565b6000808585111561284657600080fd5b8386111561285357600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156128885780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f8301126128e157600080fd5b81516128ef612338826122f2565b81815284602083860101111561290457600080fd5b612229826020830160208701612156565b60006020828403121561292757600080fd5b81516001600160401b038082111561293e57600080fd5b9083019060e0828603121561295257600080fd5b61295a61229a565b61296383612631565b815261297160208401612631565b60208201526129826040840161280e565b604082015261299360608401612609565b60608201526129a4608084016127e6565b60808201526129b560a084016127e6565b60a082015260c0830151828111156129cc57600080fd5b61254d878286016128d0565b600080604083850312156129eb57600080fd5b82516129f6816120f8565b602084015190925061214b816120f8565b60008251612a19818460208701612156565b9190910192915050565b60008060408385031215612a3657600080fd5b8251612a418161226b565b602084015190925063ffffffff8116811461214b57600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212206c52b123b6f6732a32af02ad53a85526621faf99f2b968eb35fe1ea085d1910364736f6c63430008140033",
|
1342
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063675393bf1161010f578063ada9652e116100a2578063c4c79d8b11610071578063c4c79d8b14610470578063d943342d14610483578063ed841d0c14610496578063f7c34ee01461049e57600080fd5b8063ada9652e14610431578063b68d180914610446578063bf7e214f14610455578063c2bf08c81461045d57600080fd5b8063893d20e8116100de578063893d20e8146103ee5780638e32e979146103f65780638fb36037146104095780638fbc2d811461041e57600080fd5b8063675393bf146103a25780637286e5e5146103b55780637a9e5e4b146103c85780638105cc7f146103db57600080fd5b8063329d6e74116101875780635ab1bd53116101565780635ab1bd53146103395780635c992fed1461035e5780635d96628914610371578063644c45e01461038457600080fd5b8063329d6e74146102f857806336fc697e1461030b57806349bb9e4b1461031357806357a8fba71461032657600080fd5b8063138461e0116101c3578063138461e01461027b5780631eff4b221461029b578063214cdb80146102d057806327bb7a33146102e557600080fd5b806301ffc9a7146101f5578063026bc43b146102375780630d8e6e2c146102575780630fec111c14610273575b600080fd5b6102226102033660046120c7565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61024a61024536600461211d565b6104b1565b60405161022e91906121a6565b61025f610672565b60405162ffffff909116815260200161022e565b61024a6106fc565b61028361088d565b6040516001600160601b03909116815260200161022e565b6102c27f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161022e565b6102e36102de3660046120c7565b610898565b005b6102e36102f336600461236f565b6108c5565b6102e3610306366004612407565b61096a565b6102e3610ab7565b6102e361032136600461243b565b610afd565b61028361033436600461248a565b610bfc565b6001546001600160a01b03165b6040516001600160a01b03909116815260200161022e565b61028361036c36600461248a565b610c8b565b61024a61037f36600461211d565b610ca1565b600080516020612a5c833981519152546001600160601b0316610283565b6102e36103b036600461255c565b610dec565b61024a6103c336600461211d565b610eff565b6102e36103d636600461255c565b610fb7565b6102836103e936600461248a565b61103a565b610346611050565b6102e3610404366004612579565b611187565b6104116113c0565b60405161022e91906125c4565b61024a61042c36600461211d565b6113f8565b6102c2600080516020612a5c83398151915281565b6040516028815260200161022e565b6103466114b0565b61028361046b36600461248a565b6114cc565b61024a61047e36600461211d565b6114e2565b61024a6104913660046125d9565b6114fe565b6102c2600081565b6102e36104ac36600461211d565b61164a565b6104b9612089565b6104c6335b6000366116c1565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906104f990637344136d60e01b906004016125c4565b602060405180830381865afa158015610516573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061053a9190612614565b61056757604051631c8275e960e21b81526001600160a01b03841660048201526024015b60405180910390fd5b6105748360465b846117c7565b90506105886001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016105b391906121a6565b6020604051808303816000875af11580156105d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f6919061263c565b6001600160601b0316815260408051629c230f60e51b815290516001600160a01b0385169163138461e091600480830192602092919082900301816000875af1158015610647573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066b919061263c565b5092915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af41580156106d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f79190612659565b905090565b610704612089565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561077d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a1919061263c565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016107e9611050565b6001600160a01b031681526020018260010180546108069061267e565b80601f01602080910402602001604051908101604052809291908181526020018280546108329061267e565b801561087f5780601f106108545761010080835404028352916020019161087f565b820191906000526020600020905b81548152906001019060200180831161086257829003601f168201915b505050505081525091505090565b60006106f730611a3e565b6108a0611c3f565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6108cd611c3f565b6108d7828761164a565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30161096083826126fe565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61098c610672565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156109cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f091906127bd565b600080516020612a9c8339815191528054600160401b900460ff1680610a23575080546001600160401b03808416911610155b15610a415760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610a6b83611c78565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610abf611c3f565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600080516020612a9c8339815191528054600160401b810460ff1615906001600160401b0316600081158015610b305750825b90506000826001600160401b03166001148015610b4c5750303b155b905081158015610b5a575080155b15610b785760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ba257845460ff60401b1916600160401b1785555b610bac8787611c80565b8315610bf357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b6000610c07336104be565b610c1282607a611d9f565b6001546040516352efcf2760e11b81526001600160a01b039091169063a5df9e4e90610c429085906004016121a6565b6020604051808303816000875af1158015610c61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c85919061263c565b92915050565b6000610c96336104be565b610c128260d3611d9f565b610ca9612089565b610cb2336104be565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610ce59063153c0ad960e01b906004016125c4565b602060405180830381865afa158015610d02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d269190612614565b610d4e5760405163704b6c6d60e11b81526001600160a01b038416600482015260240161055e565b610d5983606e61056e565b9050610d6d6001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b8152600401610d9891906121a6565b6020604051808303816000875af1158015610db7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddb919061263c565b6001600160601b0316815292915050565b610df4611c3f565b806001600160a01b03163b600003610e2a5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161055e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526301ffc9a790610e709063e607072160e01b906004016125c4565b602060405180830381865afa925050508015610ea9575060408051601f3d908101601f19168201909252610ea691810190612614565b60015b610ed15760405163fdeac91f60e01b81526001600160a01b038216600482015260240161055e565b80610efa5760405163fdeac91f60e01b81526001600160a01b038316600482015260240161055e565b505b50565b610f07612089565b610f10336104be565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a790610f4390632363b9ed60e21b906004016125c4565b602060405180830381865afa158015610f60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f849190612614565b610fac576040516304c983f360e41b81526001600160a01b038416600482015260240161055e565b610d5983608c61056e565b33610fc06114b0565b6001600160a01b0316816001600160a01b031614610ffb5760405162d1953b60e31b81526001600160a01b038216600482015260240161055e565b816001600160a01b03163b600003611031576040516361798f2f60e11b81526001600160a01b038316600482015260240161055e565b610efa82611efa565b6000611045336104be565b610c12826050611d9f565b600080600080516020612a5c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156110c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e49190612614565b15611171576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611147573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116b91906127f1565b91505090565b54600160601b90046001600160a01b0316919050565b61118f611c3f565b61120f83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f5919061263c565b603c600085604051806020016040528060008152506108c5565b6001600160a01b0382161561122c5761122782611f5b565b61139b565b60006112406001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156112a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c49190612819565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015611309573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132d91906127f1565b9050611399816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611370573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139491906127f1565b611f5b565b505b6113ab634a531f3360e01b610898565b6113bb63b68d180960e01b610898565b505050565b600080516020612a7c833981519152805460009190600160a01b900460ff166113ea57600061116b565b638fb3603760e01b91505090565b611400612089565b611409336104be565b6040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061143c906363541cc160e11b906004016125c4565b602060405180830381865afa158015611459573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147d9190612614565b6114a5576040516367237f5b60e11b81526001600160a01b038416600482015260240161055e565b610d5983607861056e565b600080516020612a7c833981519152546001600160a01b031690565b60006114d7336104be565b610c128260dc611d9f565b6114ea612089565b6114f3336104be565b610d5983602d61056e565b611506612089565b61150f336104be565b6040516301ffc9a760e01b81526001600160a01b038516906301ffc9a79061154290632986755f60e11b906004016125c4565b602060405180830381865afa15801561155f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115839190612614565b6115ab57604051632624ae7760e01b81526001600160a01b038516600482015260240161055e565b6115b68484846117c7565b90506115ca6001546001600160a01b031690565b6001600160a01b031663a5df9e4e826040518263ffffffff1660e01b81526004016115f591906121a6565b6020604051808303816000875af1158015611614573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611638919061263c565b6001600160601b031681529392505050565b611652611c3f565b61165b81610dec565b611663610ab7565b6001600160a01b03821661168a5760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020612a5c83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b600080516020612a7c8339815191526000806116fc6116de6114b0565b87306116ee600460008a8c612836565b6116f791612860565b611f6c565b91509150816117bf5763ffffffff81161561179c57825460ff60a01b1916600160a01b17835561172a6114b0565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161175993929190612890565b600060405180830381600087803b15801561177357600080fd5b505af1158015611787573d6000803e3d6000fd5b5050845460ff60a01b19168555506117bf9050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161055e565b505050505050565b6117cf612089565b836001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801561180d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118359190810190612915565b9050836001600160a01b031681608001516001600160a01b0316146118865760808101516040516306704ad960e11b81526001600160a01b038087166004830152909116602482015260440161055e565b604081015160ff8481169116146118d257604080820151905163137f2ac560e31b81526001600160a01b038616600482015260ff8086166024830152909116604482015260640161055e565b60a08101516001600160a01b038082169084161461191e576040516335ce70c360e21b81526001600160a01b03808716600483015280851660248301528216604482015260640161055e565b846001600160a01b0316816001600160a01b03160361195b57604051638e80a3f960e01b81526001600160a01b038616600482015260240161055e565b6001600160a01b03811661198d576040516343e40cb560e01b81526001600160a01b038616600482015260240161055e565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156119e1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a059190612614565b15611a36576040516309ad872b60e41b81526001600160a01b0380871660048301528216602482015260440161055e565b509392505050565b600080600080516020612a5c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad29190612614565b15611afe5780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161055e565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015611b52573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b769190612614565b611b9e5760405163b9304b0d60e01b81526001600160a01b038416600482015260240161055e565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611bf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c16919061263c565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b600080516020612a9c83398151915254600160401b900460ff16611c7657604051631afcd79f60e31b815260040160405180910390fd5b565b6101f0611c3f565b600080516020612a9c8339815191528054600160401b810460ff1615906001600160401b0316600081158015611cb35750825b90506000826001600160401b03166001148015611ccf5750303b155b905081158015611cdd575080155b15611cfb5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611d2557845460ff60401b1916600160401b1785555b60008087806020019051810190611d3c91906129d8565b91509150611d4b82828b611187565b611d5b631987a50360e11b610898565b50508315610bf357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610bea565b60808201516001600160a01b031615611dd65760408083015190516340fda83160e11b815260ff909116600482015260240161055e565b604082015160ff828116911614611e13576040808301519051632e5fbed960e21b815260ff8084166004830152909116602482015260440161055e565b60a08201516001600160a01b038116611e4a576040808401519051633312954f60e21b815260ff909116600482015260240161055e565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611e9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec29190612614565b156113bb57604080840151905163b4139d2560e01b815260ff90911660048201526001600160a01b038216602482015260440161055e565b600080516020612a7c83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611f63611c3f565b610efc81612078565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251611fdb9190612a07565b600060405180830381855afa9150503d8060008114612016576040519150601f19603f3d011682016040523d82523d6000602084013e61201b565b606091505b5091509150811561206d57604081511061204d57808060200190518101906120439190612a23565b909450925061206d565b602081511061206d578080602001905181019061206a9190612614565b93505b505094509492505050565b612080611c3f565b610efc81611efa565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6000602082840312156120d957600080fd5b81356001600160e01b0319811681146120f157600080fd5b9392505050565b6001600160a01b0381168114610efc57600080fd5b8035612118816120f8565b919050565b6000806040838503121561213057600080fd5b823561213b816120f8565b9150602083013561214b816120f8565b809150509250929050565b60005b83811015612171578181015183820152602001612159565b50506000910152565b60008151808452612192816020860160208601612156565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161220f60c08401826001600160a01b03169052565b5060c083015160e08084015261222961010084018261217a565b949350505050565b6001600160601b0381168114610efc57600080fd5b803561211881612231565b60ff81168114610efc57600080fd5b803561211881612251565b8015158114610efc57600080fd5b80356121188161226b565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156122bc576122bc612284565b60405290565b604051601f8201601f191681016001600160401b03811182821017156122ea576122ea612284565b604052919050565b60006001600160401b0382111561230b5761230b612284565b50601f01601f191660200190565b600082601f83011261232a57600080fd5b813561233d612338826122f2565b6122c2565b81815284602083860101111561235257600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c0878903121561238857600080fd5b8635612393816120f8565b955060208701356123a381612231565b945060408701356123b381612251565b935060608701356123c38161226b565b925060808701356123d3816120f8565b915060a08701356001600160401b038111156123ee57600080fd5b6123fa89828a01612319565b9150509295509295509295565b60006020828403121561241957600080fd5b81356001600160401b0381111561242f57600080fd5b61222984828501612319565b6000806040838503121561244e57600080fd5b8235612459816120f8565b915060208301356001600160401b0381111561247457600080fd5b61248085828601612319565b9150509250929050565b60006020828403121561249c57600080fd5b81356001600160401b03808211156124b357600080fd5b9083019060e082860312156124c757600080fd5b6124cf61229a565b6124d883612246565b81526124e660208401612246565b60208201526124f760408401612260565b604082015261250860608401612279565b60608201526125196080840161210d565b608082015261252a60a0840161210d565b60a082015260c08301358281111561254157600080fd5b61254d87828601612319565b60c08301525095945050505050565b60006020828403121561256e57600080fd5b81356120f1816120f8565b60008060006060848603121561258e57600080fd5b8335612599816120f8565b925060208401356125a9816120f8565b915060408401356125b9816120f8565b809150509250925092565b6001600160e01b031991909116815260200190565b6000806000606084860312156125ee57600080fd5b83356125f9816120f8565b925060208401356125a981612251565b80516121188161226b565b60006020828403121561262657600080fd5b81516120f18161226b565b805161211881612231565b60006020828403121561264e57600080fd5b81516120f181612231565b60006020828403121561266b57600080fd5b815162ffffff811681146120f157600080fd5b600181811c9082168061269257607f821691505b6020821081036126b257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156113bb57600081815260208120601f850160051c810160208610156126df5750805b601f850160051c820191505b818110156117bf578281556001016126eb565b81516001600160401b0381111561271757612717612284565b61272b81612725845461267e565b846126b8565b602080601f83116001811461276057600084156127485750858301515b600019600386901b1c1916600185901b1785556117bf565b600085815260208120601f198616915b8281101561278f57888601518255948401946001909101908401612770565b50858210156127ad5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156127cf57600080fd5b81516001600160401b03811681146120f157600080fd5b8051612118816120f8565b60006020828403121561280357600080fd5b81516120f1816120f8565b805161211881612251565b60006020828403121561282b57600080fd5b81516120f181612251565b6000808585111561284657600080fd5b8386111561285357600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156128885780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600082601f8301126128e157600080fd5b81516128ef612338826122f2565b81815284602083860101111561290457600080fd5b612229826020830160208701612156565b60006020828403121561292757600080fd5b81516001600160401b038082111561293e57600080fd5b9083019060e0828603121561295257600080fd5b61295a61229a565b61296383612631565b815261297160208401612631565b60208201526129826040840161280e565b604082015261299360608401612609565b60608201526129a4608084016127e6565b60808201526129b560a084016127e6565b60a082015260c0830151828111156129cc57600080fd5b61254d878286016128d0565b600080604083850312156129eb57600080fd5b82516129f6816120f8565b602084015190925061214b816120f8565b60008251612a19818460208701612156565b9190910192915050565b60008060408385031215612a3657600080fd5b8251612a418161226b565b602084015190925063ffffffff8116811461214b57600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212206c52b123b6f6732a32af02ad53a85526621faf99f2b968eb35fe1ea085d1910364736f6c63430008140033",
|
1343
|
+
"linkReferences": {
|
1344
|
+
"contracts/type/NftId.sol": {
|
1345
|
+
"NftIdLib": [
|
1346
|
+
{
|
1347
|
+
"length": 20,
|
1348
|
+
"start": 2076
|
1349
|
+
},
|
1350
|
+
{
|
1351
|
+
"length": 20,
|
1352
|
+
"start": 4460
|
1353
|
+
},
|
1354
|
+
{
|
1355
|
+
"length": 20,
|
1356
|
+
"start": 7002
|
1357
|
+
}
|
1358
|
+
]
|
1359
|
+
},
|
1360
|
+
"contracts/type/Version.sol": {
|
1361
|
+
"VersionLib": [
|
1362
|
+
{
|
1363
|
+
"length": 20,
|
1364
|
+
"start": 1919
|
1365
|
+
},
|
1366
|
+
{
|
1367
|
+
"length": 20,
|
1368
|
+
"start": 2642
|
1369
|
+
}
|
1370
|
+
],
|
1371
|
+
"VersionPartLib": [
|
1372
|
+
{
|
1373
|
+
"length": 20,
|
1374
|
+
"start": 4940
|
1375
|
+
}
|
1376
|
+
]
|
1377
|
+
}
|
1378
|
+
},
|
1379
|
+
"deployedLinkReferences": {
|
1380
|
+
"contracts/type/NftId.sol": {
|
1381
|
+
"NftIdLib": [
|
1382
|
+
{
|
1383
|
+
"length": 20,
|
1384
|
+
"start": 1846
|
1385
|
+
},
|
1386
|
+
{
|
1387
|
+
"length": 20,
|
1388
|
+
"start": 4230
|
1389
|
+
},
|
1390
|
+
{
|
1391
|
+
"length": 20,
|
1392
|
+
"start": 6772
|
1393
|
+
}
|
1394
|
+
]
|
1395
|
+
},
|
1396
|
+
"contracts/type/Version.sol": {
|
1397
|
+
"VersionLib": [
|
1398
|
+
{
|
1399
|
+
"length": 20,
|
1400
|
+
"start": 1689
|
1401
|
+
},
|
1402
|
+
{
|
1403
|
+
"length": 20,
|
1404
|
+
"start": 2412
|
1405
|
+
}
|
1406
|
+
],
|
1407
|
+
"VersionPartLib": [
|
1408
|
+
{
|
1409
|
+
"length": 20,
|
1410
|
+
"start": 4710
|
1411
|
+
}
|
1412
|
+
]
|
1413
|
+
}
|
1414
|
+
}
|
1415
|
+
}
|