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