@etherisc/gif-next 0.0.2-93de5de-423 → 0.0.2-941d319-710
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 +139 -93
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1075 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +790 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +843 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1664 -0
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1289 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1403 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +790 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1372 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +455 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +397 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +646 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1244 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +805 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/{components/IDistributionComponent.sol/IDistributionComponent.json → distribution/Distribution.sol/Distribution.json} +368 -362
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1809 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +930 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +848 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/{components/Distribution.sol/Distribution.json → distribution/IDistributionService.sol/IDistributionService.json} +591 -696
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1484 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +805 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2053 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +805 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1439 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +805 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1171 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1647 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +805 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2585 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +650 -1982
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +666 -82
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +649 -2725
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2349 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +902 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1983 -723
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +610 -317
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +202 -123
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3792 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -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/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +957 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +810 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +772 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +762 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/{components/Component.sol/Component.json → oracle/Oracle.sol/Oracle.json} +312 -292
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1042 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +810 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +486 -566
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +805 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1438 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +866 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +1033 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → pool}/IPoolComponent.sol/IPoolComponent.json +401 -383
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1449 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1025 -0
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1833 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +866 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +1036 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +790 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +455 -542
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +805 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1536 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +886 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service → product}/IApplicationService.sol/IApplicationService.json +415 -73
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1104 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +1036 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IBundleService.sol/IBundleService.json → product/IPricingService.sol/IPricingService.json} +336 -306
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → product}/IProductComponent.sol/IProductComponent.json +520 -310
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IRiskService.sol/IRiskService.json} +285 -192
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1404 -0
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +854 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +932 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +814 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1117 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +873 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +774 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +515 -31
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +315 -122
- package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
- package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +999 -124
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2147 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1061 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +389 -257
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +213 -110
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2152 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1389 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +683 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +360 -137
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/Component.sol/Component.json} +338 -174
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1551 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +862 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +632 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +248 -131
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1175 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +707 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +101 -20
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +38 -10
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +163 -3
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +187 -17
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +795 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +47 -70
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +145 -100
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +172 -104
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +635 -8
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +2360 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1147 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +2820 -0
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +470 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +858 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +544 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1344 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +766 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2637 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +657 -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 +398 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +251 -0
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -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 +373 -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/Key32Set.sol/LibKey32Set.dbg.json +4 -0
- package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +241 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +254 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +289 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
- package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
- package/artifacts/contracts/type/String.sol/StrLib.json +180 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +572 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
- package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +11 -1
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +656 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +142 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +11 -1
- package/contracts/accounting/AccountingService.sol +274 -0
- package/contracts/accounting/AccountingServiceManager.sol +38 -0
- package/contracts/accounting/IAccountingService.sol +47 -0
- package/contracts/authorization/AccessAdmin.sol +780 -0
- package/contracts/authorization/AccessAdminLib.sol +396 -0
- package/contracts/authorization/AccessManagerCloneable.sol +158 -0
- package/contracts/authorization/Authorization.sol +169 -0
- package/contracts/authorization/IAccess.sol +67 -0
- package/contracts/authorization/IAccessAdmin.sol +144 -0
- package/contracts/authorization/IAuthorization.sol +26 -0
- package/contracts/authorization/IServiceAuthorization.sol +78 -0
- package/contracts/authorization/ServiceAuthorization.sol +320 -0
- package/contracts/distribution/BasicDistribution.sol +141 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
- package/contracts/distribution/Distribution.sol +247 -0
- package/contracts/distribution/DistributionService.sol +448 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +45 -0
- package/contracts/distribution/IDistributionService.sol +115 -0
- package/contracts/examples/fire/DamageLevel.sol +59 -0
- package/contracts/examples/fire/FirePool.sol +86 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
- package/contracts/examples/fire/FireProduct.sol +433 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
- package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
- package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +437 -0
- package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
- package/contracts/instance/BundleSet.sol +130 -0
- package/contracts/instance/IInstance.sol +119 -66
- package/contracts/instance/IInstanceService.sol +84 -26
- package/contracts/instance/Instance.sol +256 -200
- package/contracts/instance/InstanceAdmin.sol +383 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +266 -0
- package/contracts/instance/InstanceReader.sol +530 -191
- package/contracts/instance/InstanceService.sol +385 -361
- package/contracts/instance/InstanceServiceManager.sol +14 -29
- package/contracts/instance/InstanceStore.sol +298 -0
- package/contracts/instance/RiskSet.sol +126 -0
- package/contracts/instance/base/BalanceStore.sol +121 -0
- package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
- package/contracts/instance/base/ObjectCounter.sol +20 -0
- package/contracts/instance/base/ObjectLifecycle.sol +109 -0
- package/contracts/instance/base/ObjectSet.sol +77 -0
- package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
- package/contracts/instance/module/IBundle.sol +10 -9
- package/contracts/instance/module/IComponents.sol +62 -0
- package/contracts/instance/module/IDistribution.sol +25 -10
- package/contracts/instance/module/IPolicy.sol +78 -20
- package/contracts/instance/module/IRisk.sol +6 -1
- package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
- package/contracts/oracle/BasicOracle.sol +45 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +53 -0
- package/contracts/oracle/IOracle.sol +41 -0
- package/contracts/oracle/IOracleComponent.sol +33 -0
- package/contracts/oracle/IOracleService.sol +66 -0
- package/contracts/oracle/Oracle.sol +154 -0
- package/contracts/oracle/OracleService.sol +310 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +162 -0
- package/contracts/pool/BasicPoolAuthorization.sol +81 -0
- package/contracts/pool/BundleService.sol +386 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +116 -0
- package/contracts/pool/IPoolComponent.sol +62 -0
- package/contracts/pool/IPoolService.sol +170 -0
- package/contracts/pool/Pool.sol +333 -0
- package/contracts/pool/PoolLib.sol +341 -0
- package/contracts/pool/PoolService.sol +614 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +327 -0
- package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
- package/contracts/product/BasicProduct.sol +49 -0
- package/contracts/product/BasicProductAuthorization.sol +63 -0
- package/contracts/product/ClaimService.sol +630 -0
- package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
- package/contracts/{instance/service → product}/IApplicationService.sol +42 -36
- package/contracts/product/IClaimService.sol +136 -0
- package/contracts/product/IPolicyService.sol +102 -0
- package/contracts/product/IPricingService.sol +40 -0
- package/contracts/product/IProductComponent.sol +62 -0
- package/contracts/product/IRiskService.sol +48 -0
- package/contracts/product/PolicyService.sol +645 -0
- package/contracts/product/PolicyServiceLib.sol +139 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +306 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/product/Product.sol +493 -0
- package/contracts/product/RiskService.sol +190 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +83 -36
- package/contracts/registry/IRegistry.sol +106 -33
- package/contracts/registry/IRegistryService.sol +36 -41
- package/contracts/registry/IRelease.sol +29 -0
- package/contracts/registry/ITransferInterceptor.sol +1 -1
- package/contracts/registry/Registry.sol +481 -209
- package/contracts/registry/RegistryAdmin.sol +188 -0
- package/contracts/registry/RegistryAuthorization.sol +309 -0
- package/contracts/registry/RegistryService.sol +90 -132
- package/contracts/registry/RegistryServiceManager.sol +23 -32
- package/contracts/registry/ReleaseAdmin.sol +195 -0
- package/contracts/registry/ReleaseLifecycle.sol +32 -0
- package/contracts/registry/ReleaseRegistry.sol +525 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +342 -0
- package/contracts/registry/TokenRegistry.sol +265 -64
- package/contracts/shared/Component.sol +214 -0
- package/contracts/shared/ComponentService.sol +687 -0
- package/contracts/shared/ComponentServiceManager.sol +38 -0
- package/contracts/shared/ContractLib.sol +312 -0
- package/contracts/shared/IComponent.sol +58 -0
- package/contracts/shared/IComponentService.sol +111 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
- package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
- package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
- package/contracts/shared/INftOwnable.sol +6 -2
- package/contracts/shared/IPolicyHolder.sol +23 -14
- package/contracts/shared/IRegisterable.sol +22 -1
- package/contracts/shared/IRegistryLinked.sol +0 -1
- package/contracts/shared/IService.sol +12 -5
- package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +12 -4
- package/contracts/shared/InstanceLinkedComponent.sol +194 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +88 -0
- package/contracts/shared/NftIdSet.sol +65 -0
- package/contracts/shared/NftOwnable.sol +36 -27
- package/contracts/shared/PolicyHolder.sol +23 -41
- package/contracts/shared/Registerable.sol +51 -19
- package/contracts/shared/RegistryLinked.sol +9 -19
- package/contracts/shared/Service.sol +38 -29
- package/contracts/shared/TokenHandler.sol +327 -12
- package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
- package/contracts/staking/IStaking.sol +264 -0
- package/contracts/staking/IStakingService.sol +127 -0
- package/contracts/staking/Staking.sol +746 -0
- package/contracts/staking/StakingLib.sol +195 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +51 -0
- package/contracts/staking/StakingReader.sol +151 -0
- package/contracts/staking/StakingService.sol +321 -0
- package/contracts/staking/StakingServiceManager.sol +46 -0
- package/contracts/staking/StakingStore.sol +973 -0
- package/contracts/staking/TargetManagerLib.sol +211 -0
- package/contracts/{types → type}/AddressSet.sol +1 -1
- package/contracts/type/Amount.sol +154 -0
- package/contracts/{types → type}/Blocknumber.sol +36 -12
- package/contracts/type/ChainId.sol +101 -0
- package/contracts/{types → type}/ClaimId.sol +31 -3
- package/contracts/type/Fee.sol +66 -0
- package/contracts/{types → type}/Key32.sol +2 -2
- package/contracts/type/Key32Set.sol +62 -0
- package/contracts/{types → type}/NftId.sol +28 -15
- package/contracts/{types → type}/NftIdSet.sol +2 -2
- package/contracts/type/ObjectType.sol +307 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/{types → type}/Referral.sol +6 -1
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/type/RiskId.sol +75 -0
- package/contracts/type/RoleId.sol +180 -0
- package/contracts/type/Seconds.sol +115 -0
- package/contracts/type/Selector.sol +107 -0
- package/contracts/{types → type}/StateId.sol +48 -4
- package/contracts/type/String.sol +65 -0
- package/contracts/{types → type}/Timestamp.sol +36 -20
- package/contracts/type/UFixed.sol +263 -0
- package/contracts/{types → type}/Version.sol +59 -7
- package/contracts/{shared → upgradeability}/IVersionable.sol +4 -1
- package/contracts/{shared → upgradeability}/ProxyManager.sol +118 -41
- package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +24 -0
- package/contracts/{shared → upgradeability}/Versionable.sol +9 -6
- package/package.json +12 -8
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -764
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -984
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -261
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -254
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -858
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -657
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1085
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -661
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -743
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -935
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -677
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +0 -398
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +0 -480
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -336
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +0 -373
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1109
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -717
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -716
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -649
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -766
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -547
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
- package/artifacts/contracts/test/TestService.sol/TestService.json +0 -510
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
- 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/ChainId.sol/ChainIdLib.json +0 -10
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -249
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
- package/contracts/components/Component.sol +0 -241
- package/contracts/components/Distribution.sol +0 -308
- package/contracts/components/IComponent.sol +0 -54
- package/contracts/components/IDistributionComponent.sol +0 -100
- package/contracts/components/IPoolComponent.sol +0 -87
- package/contracts/components/IProductComponent.sol +0 -39
- package/contracts/components/Pool.sol +0 -254
- package/contracts/components/Product.sol +0 -285
- package/contracts/instance/BundleManager.sol +0 -125
- package/contracts/instance/InstanceAccessManager.sol +0 -297
- package/contracts/instance/ObjectManager.sol +0 -84
- package/contracts/instance/base/ComponentService.sol +0 -134
- package/contracts/instance/base/KeyValueStore.sol +0 -172
- package/contracts/instance/base/Lifecycle.sol +0 -100
- package/contracts/instance/module/IAccess.sol +0 -47
- package/contracts/instance/module/ISetup.sol +0 -47
- package/contracts/instance/module/ITreasury.sol +0 -23
- package/contracts/instance/service/ApplicationService.sol +0 -268
- package/contracts/instance/service/BundleService.sol +0 -298
- package/contracts/instance/service/BundleServiceManager.sol +0 -51
- package/contracts/instance/service/ClaimService.sol +0 -151
- package/contracts/instance/service/DistributionService.sol +0 -277
- package/contracts/instance/service/DistributionServiceManager.sol +0 -51
- package/contracts/instance/service/IBundleService.sol +0 -54
- package/contracts/instance/service/IClaimService.sol +0 -61
- package/contracts/instance/service/IDistributionService.sol +0 -65
- package/contracts/instance/service/IPolicyService.sol +0 -89
- package/contracts/instance/service/IPoolService.sol +0 -20
- package/contracts/instance/service/IProductService.sol +0 -40
- package/contracts/instance/service/PolicyService.sol +0 -474
- package/contracts/instance/service/PolicyServiceManager.sol +0 -54
- package/contracts/instance/service/PoolService.sol +0 -109
- package/contracts/instance/service/PoolServiceManager.sol +0 -51
- package/contracts/instance/service/ProductService.sol +0 -233
- package/contracts/instance/service/ProductServiceManager.sol +0 -54
- package/contracts/registry/RegistryAccessManager.sol +0 -216
- package/contracts/registry/ReleaseManager.sol +0 -322
- package/contracts/shared/ContractDeployerLib.sol +0 -72
- package/contracts/shared/UpgradableProxyWithAdmin.sol +0 -16
- package/contracts/test/TestFee.sol +0 -25
- package/contracts/test/TestRegisterable.sol +0 -18
- package/contracts/test/TestRoleId.sol +0 -14
- package/contracts/test/TestService.sol +0 -25
- package/contracts/test/TestToken.sol +0 -26
- package/contracts/test/TestVersion.sol +0 -44
- package/contracts/test/TestVersionable.sol +0 -17
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/Fee.sol +0 -56
- package/contracts/types/NumberId.sol +0 -52
- package/contracts/types/ObjectType.sol +0 -156
- package/contracts/types/PayoutId.sol +0 -54
- package/contracts/types/RiskId.sol +0 -43
- package/contracts/types/RoleId.sol +0 -90
- package/contracts/types/UFixed.sol +0 -325
- /package/contracts/{types → type}/DistributorType.sol +0 -0
@@ -0,0 +1,2820 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "Staking",
|
4
|
+
"sourceName": "contracts/staking/Staking.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": "address",
|
48
|
+
"name": "authority",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "ErrorAuthorityInvalid",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [],
|
57
|
+
"name": "ErrorComponentNameLengthZero",
|
58
|
+
"type": "error"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"inputs": [
|
62
|
+
{
|
63
|
+
"internalType": "address",
|
64
|
+
"name": "caller",
|
65
|
+
"type": "address"
|
66
|
+
}
|
67
|
+
],
|
68
|
+
"name": "ErrorComponentNotChainNft",
|
69
|
+
"type": "error"
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"inputs": [],
|
73
|
+
"name": "ErrorComponentProductNftIdNonzero",
|
74
|
+
"type": "error"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"inputs": [],
|
78
|
+
"name": "ErrorComponentProductNftIdZero",
|
79
|
+
"type": "error"
|
80
|
+
},
|
81
|
+
{
|
82
|
+
"inputs": [],
|
83
|
+
"name": "ErrorComponentWalletAddressIsSameAsCurrent",
|
84
|
+
"type": "error"
|
85
|
+
},
|
86
|
+
{
|
87
|
+
"inputs": [],
|
88
|
+
"name": "ErrorComponentWalletAddressZero",
|
89
|
+
"type": "error"
|
90
|
+
},
|
91
|
+
{
|
92
|
+
"inputs": [],
|
93
|
+
"name": "ErrorComponentWalletNotComponent",
|
94
|
+
"type": "error"
|
95
|
+
},
|
96
|
+
{
|
97
|
+
"inputs": [
|
98
|
+
{
|
99
|
+
"internalType": "NftId",
|
100
|
+
"name": "nftId",
|
101
|
+
"type": "uint96"
|
102
|
+
}
|
103
|
+
],
|
104
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
105
|
+
"type": "error"
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"inputs": [
|
109
|
+
{
|
110
|
+
"internalType": "address",
|
111
|
+
"name": "contractAddress",
|
112
|
+
"type": "address"
|
113
|
+
}
|
114
|
+
],
|
115
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
116
|
+
"type": "error"
|
117
|
+
},
|
118
|
+
{
|
119
|
+
"inputs": [],
|
120
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
121
|
+
"type": "error"
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"inputs": [
|
125
|
+
{
|
126
|
+
"internalType": "NftId",
|
127
|
+
"name": "nftId",
|
128
|
+
"type": "uint96"
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"internalType": "ObjectType",
|
132
|
+
"name": "expectedObjectType",
|
133
|
+
"type": "uint8"
|
134
|
+
}
|
135
|
+
],
|
136
|
+
"name": "ErrorNftOwnableInvalidType",
|
137
|
+
"type": "error"
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"inputs": [
|
141
|
+
{
|
142
|
+
"internalType": "address",
|
143
|
+
"name": "account",
|
144
|
+
"type": "address"
|
145
|
+
}
|
146
|
+
],
|
147
|
+
"name": "ErrorNftOwnableNotOwner",
|
148
|
+
"type": "error"
|
149
|
+
},
|
150
|
+
{
|
151
|
+
"inputs": [
|
152
|
+
{
|
153
|
+
"internalType": "address",
|
154
|
+
"name": "registryAddress",
|
155
|
+
"type": "address"
|
156
|
+
}
|
157
|
+
],
|
158
|
+
"name": "ErrorNotRegistry",
|
159
|
+
"type": "error"
|
160
|
+
},
|
161
|
+
{
|
162
|
+
"inputs": [],
|
163
|
+
"name": "ErrorRegisterableNotActive",
|
164
|
+
"type": "error"
|
165
|
+
},
|
166
|
+
{
|
167
|
+
"inputs": [
|
168
|
+
{
|
169
|
+
"internalType": "address",
|
170
|
+
"name": "owner",
|
171
|
+
"type": "address"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"internalType": "address",
|
175
|
+
"name": "tokenHandler",
|
176
|
+
"type": "address"
|
177
|
+
},
|
178
|
+
{
|
179
|
+
"internalType": "uint256",
|
180
|
+
"name": "amount",
|
181
|
+
"type": "uint256"
|
182
|
+
},
|
183
|
+
{
|
184
|
+
"internalType": "uint256",
|
185
|
+
"name": "dipAllowance",
|
186
|
+
"type": "uint256"
|
187
|
+
}
|
188
|
+
],
|
189
|
+
"name": "ErrorStakingDipAllowanceInsufficient",
|
190
|
+
"type": "error"
|
191
|
+
},
|
192
|
+
{
|
193
|
+
"inputs": [
|
194
|
+
{
|
195
|
+
"internalType": "address",
|
196
|
+
"name": "owner",
|
197
|
+
"type": "address"
|
198
|
+
},
|
199
|
+
{
|
200
|
+
"internalType": "uint256",
|
201
|
+
"name": "amount",
|
202
|
+
"type": "uint256"
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"internalType": "uint256",
|
206
|
+
"name": "dipBalance",
|
207
|
+
"type": "uint256"
|
208
|
+
}
|
209
|
+
],
|
210
|
+
"name": "ErrorStakingDipBalanceInsufficient",
|
211
|
+
"type": "error"
|
212
|
+
},
|
213
|
+
{
|
214
|
+
"inputs": [
|
215
|
+
{
|
216
|
+
"internalType": "NftId",
|
217
|
+
"name": "targetNftId",
|
218
|
+
"type": "uint96"
|
219
|
+
},
|
220
|
+
{
|
221
|
+
"internalType": "Seconds",
|
222
|
+
"name": "maxLockingPeriod",
|
223
|
+
"type": "uint40"
|
224
|
+
},
|
225
|
+
{
|
226
|
+
"internalType": "Seconds",
|
227
|
+
"name": "lockingPeriod",
|
228
|
+
"type": "uint40"
|
229
|
+
}
|
230
|
+
],
|
231
|
+
"name": "ErrorStakingLockingPeriodTooLong",
|
232
|
+
"type": "error"
|
233
|
+
},
|
234
|
+
{
|
235
|
+
"inputs": [
|
236
|
+
{
|
237
|
+
"internalType": "NftId",
|
238
|
+
"name": "targetNftId",
|
239
|
+
"type": "uint96"
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"internalType": "Seconds",
|
243
|
+
"name": "minLockingPeriod",
|
244
|
+
"type": "uint40"
|
245
|
+
},
|
246
|
+
{
|
247
|
+
"internalType": "Seconds",
|
248
|
+
"name": "lockingPeriod",
|
249
|
+
"type": "uint40"
|
250
|
+
}
|
251
|
+
],
|
252
|
+
"name": "ErrorStakingLockingPeriodTooShort",
|
253
|
+
"type": "error"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"inputs": [
|
257
|
+
{
|
258
|
+
"internalType": "NftId",
|
259
|
+
"name": "nftId",
|
260
|
+
"type": "uint96"
|
261
|
+
}
|
262
|
+
],
|
263
|
+
"name": "ErrorStakingNotNftOwner",
|
264
|
+
"type": "error"
|
265
|
+
},
|
266
|
+
{
|
267
|
+
"inputs": [
|
268
|
+
{
|
269
|
+
"internalType": "NftId",
|
270
|
+
"name": "stakeNftId",
|
271
|
+
"type": "uint96"
|
272
|
+
},
|
273
|
+
{
|
274
|
+
"internalType": "address",
|
275
|
+
"name": "expectedOwner",
|
276
|
+
"type": "address"
|
277
|
+
},
|
278
|
+
{
|
279
|
+
"internalType": "address",
|
280
|
+
"name": "actualOwner",
|
281
|
+
"type": "address"
|
282
|
+
}
|
283
|
+
],
|
284
|
+
"name": "ErrorStakingNotOwner",
|
285
|
+
"type": "error"
|
286
|
+
},
|
287
|
+
{
|
288
|
+
"inputs": [
|
289
|
+
{
|
290
|
+
"internalType": "address",
|
291
|
+
"name": "registry",
|
292
|
+
"type": "address"
|
293
|
+
}
|
294
|
+
],
|
295
|
+
"name": "ErrorStakingNotRegistry",
|
296
|
+
"type": "error"
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"inputs": [
|
300
|
+
{
|
301
|
+
"internalType": "NftId",
|
302
|
+
"name": "stakeNftId",
|
303
|
+
"type": "uint96"
|
304
|
+
}
|
305
|
+
],
|
306
|
+
"name": "ErrorStakingNotStake",
|
307
|
+
"type": "error"
|
308
|
+
},
|
309
|
+
{
|
310
|
+
"inputs": [],
|
311
|
+
"name": "ErrorStakingNotStakingOwner",
|
312
|
+
"type": "error"
|
313
|
+
},
|
314
|
+
{
|
315
|
+
"inputs": [
|
316
|
+
{
|
317
|
+
"internalType": "NftId",
|
318
|
+
"name": "targetNftId",
|
319
|
+
"type": "uint96"
|
320
|
+
}
|
321
|
+
],
|
322
|
+
"name": "ErrorStakingNotTarget",
|
323
|
+
"type": "error"
|
324
|
+
},
|
325
|
+
{
|
326
|
+
"inputs": [
|
327
|
+
{
|
328
|
+
"internalType": "VersionPart",
|
329
|
+
"name": "release",
|
330
|
+
"type": "uint8"
|
331
|
+
}
|
332
|
+
],
|
333
|
+
"name": "ErrorStakingReleaseNotActive",
|
334
|
+
"type": "error"
|
335
|
+
},
|
336
|
+
{
|
337
|
+
"inputs": [
|
338
|
+
{
|
339
|
+
"internalType": "NftId",
|
340
|
+
"name": "targetNftId",
|
341
|
+
"type": "uint96"
|
342
|
+
},
|
343
|
+
{
|
344
|
+
"internalType": "UFixed",
|
345
|
+
"name": "maxRewardRate",
|
346
|
+
"type": "uint160"
|
347
|
+
},
|
348
|
+
{
|
349
|
+
"internalType": "UFixed",
|
350
|
+
"name": "rewardRate",
|
351
|
+
"type": "uint160"
|
352
|
+
}
|
353
|
+
],
|
354
|
+
"name": "ErrorStakingRewardRateTooHigh",
|
355
|
+
"type": "error"
|
356
|
+
},
|
357
|
+
{
|
358
|
+
"inputs": [
|
359
|
+
{
|
360
|
+
"internalType": "VersionPart",
|
361
|
+
"name": "release",
|
362
|
+
"type": "uint8"
|
363
|
+
}
|
364
|
+
],
|
365
|
+
"name": "ErrorStakingServiceNotFound",
|
366
|
+
"type": "error"
|
367
|
+
},
|
368
|
+
{
|
369
|
+
"inputs": [
|
370
|
+
{
|
371
|
+
"internalType": "NftId",
|
372
|
+
"name": "targetNftId",
|
373
|
+
"type": "uint96"
|
374
|
+
}
|
375
|
+
],
|
376
|
+
"name": "ErrorStakingStakeAmountZero",
|
377
|
+
"type": "error"
|
378
|
+
},
|
379
|
+
{
|
380
|
+
"inputs": [
|
381
|
+
{
|
382
|
+
"internalType": "NftId",
|
383
|
+
"name": "stakeNftId",
|
384
|
+
"type": "uint96"
|
385
|
+
},
|
386
|
+
{
|
387
|
+
"internalType": "Timestamp",
|
388
|
+
"name": "lockedUntil",
|
389
|
+
"type": "uint40"
|
390
|
+
}
|
391
|
+
],
|
392
|
+
"name": "ErrorStakingStakeLocked",
|
393
|
+
"type": "error"
|
394
|
+
},
|
395
|
+
{
|
396
|
+
"inputs": [
|
397
|
+
{
|
398
|
+
"internalType": "address",
|
399
|
+
"name": "stakingByStakingReader",
|
400
|
+
"type": "address"
|
401
|
+
}
|
402
|
+
],
|
403
|
+
"name": "ErrorStakingStakingReaderStakingMismatch",
|
404
|
+
"type": "error"
|
405
|
+
},
|
406
|
+
{
|
407
|
+
"inputs": [
|
408
|
+
{
|
409
|
+
"internalType": "NftId",
|
410
|
+
"name": "targetNftId",
|
411
|
+
"type": "uint96"
|
412
|
+
}
|
413
|
+
],
|
414
|
+
"name": "ErrorStakingTargetAlreadyRegistered",
|
415
|
+
"type": "error"
|
416
|
+
},
|
417
|
+
{
|
418
|
+
"inputs": [
|
419
|
+
{
|
420
|
+
"internalType": "NftId",
|
421
|
+
"name": "targetNftId",
|
422
|
+
"type": "uint96"
|
423
|
+
},
|
424
|
+
{
|
425
|
+
"internalType": "Amount",
|
426
|
+
"name": "maxStakedAmount",
|
427
|
+
"type": "uint96"
|
428
|
+
},
|
429
|
+
{
|
430
|
+
"internalType": "Amount",
|
431
|
+
"name": "stakedAmount",
|
432
|
+
"type": "uint96"
|
433
|
+
}
|
434
|
+
],
|
435
|
+
"name": "ErrorStakingTargetMaxStakedAmountExceeded",
|
436
|
+
"type": "error"
|
437
|
+
},
|
438
|
+
{
|
439
|
+
"inputs": [],
|
440
|
+
"name": "ErrorStakingTargetNftIdZero",
|
441
|
+
"type": "error"
|
442
|
+
},
|
443
|
+
{
|
444
|
+
"inputs": [
|
445
|
+
{
|
446
|
+
"internalType": "NftId",
|
447
|
+
"name": "targetNftId",
|
448
|
+
"type": "uint96"
|
449
|
+
}
|
450
|
+
],
|
451
|
+
"name": "ErrorStakingTargetNotFound",
|
452
|
+
"type": "error"
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"inputs": [
|
456
|
+
{
|
457
|
+
"internalType": "NftId",
|
458
|
+
"name": "targetNftId",
|
459
|
+
"type": "uint96"
|
460
|
+
},
|
461
|
+
{
|
462
|
+
"internalType": "ChainId",
|
463
|
+
"name": "chainId",
|
464
|
+
"type": "uint96"
|
465
|
+
},
|
466
|
+
{
|
467
|
+
"internalType": "address",
|
468
|
+
"name": "token",
|
469
|
+
"type": "address"
|
470
|
+
}
|
471
|
+
],
|
472
|
+
"name": "ErrorStakingTargetTokenNotFound",
|
473
|
+
"type": "error"
|
474
|
+
},
|
475
|
+
{
|
476
|
+
"inputs": [
|
477
|
+
{
|
478
|
+
"internalType": "NftId",
|
479
|
+
"name": "targetNftId",
|
480
|
+
"type": "uint96"
|
481
|
+
},
|
482
|
+
{
|
483
|
+
"internalType": "ObjectType",
|
484
|
+
"name": "objectType",
|
485
|
+
"type": "uint8"
|
486
|
+
}
|
487
|
+
],
|
488
|
+
"name": "ErrorStakingTargetTypeNotSupported",
|
489
|
+
"type": "error"
|
490
|
+
},
|
491
|
+
{
|
492
|
+
"inputs": [
|
493
|
+
{
|
494
|
+
"internalType": "NftId",
|
495
|
+
"name": "targetNftId",
|
496
|
+
"type": "uint96"
|
497
|
+
},
|
498
|
+
{
|
499
|
+
"internalType": "ObjectType",
|
500
|
+
"name": "expectedObjectType",
|
501
|
+
"type": "uint8"
|
502
|
+
},
|
503
|
+
{
|
504
|
+
"internalType": "ObjectType",
|
505
|
+
"name": "actualObjectType",
|
506
|
+
"type": "uint8"
|
507
|
+
}
|
508
|
+
],
|
509
|
+
"name": "ErrorStakingTargetUnexpectedObjectType",
|
510
|
+
"type": "error"
|
511
|
+
},
|
512
|
+
{
|
513
|
+
"inputs": [
|
514
|
+
{
|
515
|
+
"internalType": "ChainId",
|
516
|
+
"name": "chainId",
|
517
|
+
"type": "uint96"
|
518
|
+
},
|
519
|
+
{
|
520
|
+
"internalType": "address",
|
521
|
+
"name": "token",
|
522
|
+
"type": "address"
|
523
|
+
}
|
524
|
+
],
|
525
|
+
"name": "ErrorStakingTokenNotRegistered",
|
526
|
+
"type": "error"
|
527
|
+
},
|
528
|
+
{
|
529
|
+
"inputs": [],
|
530
|
+
"name": "ErrorVersionableInitializeNotImplemented",
|
531
|
+
"type": "error"
|
532
|
+
},
|
533
|
+
{
|
534
|
+
"inputs": [],
|
535
|
+
"name": "ErrorVersionableUpgradeNotImplemented",
|
536
|
+
"type": "error"
|
537
|
+
},
|
538
|
+
{
|
539
|
+
"inputs": [],
|
540
|
+
"name": "InvalidInitialization",
|
541
|
+
"type": "error"
|
542
|
+
},
|
543
|
+
{
|
544
|
+
"inputs": [],
|
545
|
+
"name": "NotInitializing",
|
546
|
+
"type": "error"
|
547
|
+
},
|
548
|
+
{
|
549
|
+
"anonymous": false,
|
550
|
+
"inputs": [
|
551
|
+
{
|
552
|
+
"indexed": false,
|
553
|
+
"internalType": "address",
|
554
|
+
"name": "authority",
|
555
|
+
"type": "address"
|
556
|
+
}
|
557
|
+
],
|
558
|
+
"name": "AuthorityUpdated",
|
559
|
+
"type": "event"
|
560
|
+
},
|
561
|
+
{
|
562
|
+
"anonymous": false,
|
563
|
+
"inputs": [
|
564
|
+
{
|
565
|
+
"indexed": false,
|
566
|
+
"internalType": "uint64",
|
567
|
+
"name": "version",
|
568
|
+
"type": "uint64"
|
569
|
+
}
|
570
|
+
],
|
571
|
+
"name": "Initialized",
|
572
|
+
"type": "event"
|
573
|
+
},
|
574
|
+
{
|
575
|
+
"anonymous": false,
|
576
|
+
"inputs": [
|
577
|
+
{
|
578
|
+
"indexed": false,
|
579
|
+
"internalType": "address",
|
580
|
+
"name": "tokenHandler",
|
581
|
+
"type": "address"
|
582
|
+
},
|
583
|
+
{
|
584
|
+
"indexed": false,
|
585
|
+
"internalType": "address",
|
586
|
+
"name": "token",
|
587
|
+
"type": "address"
|
588
|
+
},
|
589
|
+
{
|
590
|
+
"indexed": false,
|
591
|
+
"internalType": "Amount",
|
592
|
+
"name": "limit",
|
593
|
+
"type": "uint96"
|
594
|
+
},
|
595
|
+
{
|
596
|
+
"indexed": false,
|
597
|
+
"internalType": "bool",
|
598
|
+
"name": "isMaxAmount",
|
599
|
+
"type": "bool"
|
600
|
+
}
|
601
|
+
],
|
602
|
+
"name": "LogComponentTokenHandlerApproved",
|
603
|
+
"type": "event"
|
604
|
+
},
|
605
|
+
{
|
606
|
+
"anonymous": false,
|
607
|
+
"inputs": [
|
608
|
+
{
|
609
|
+
"indexed": false,
|
610
|
+
"internalType": "address",
|
611
|
+
"name": "oldWallet",
|
612
|
+
"type": "address"
|
613
|
+
},
|
614
|
+
{
|
615
|
+
"indexed": false,
|
616
|
+
"internalType": "address",
|
617
|
+
"name": "newWallet",
|
618
|
+
"type": "address"
|
619
|
+
}
|
620
|
+
],
|
621
|
+
"name": "LogComponentWalletAddressChanged",
|
622
|
+
"type": "event"
|
623
|
+
},
|
624
|
+
{
|
625
|
+
"anonymous": false,
|
626
|
+
"inputs": [
|
627
|
+
{
|
628
|
+
"indexed": false,
|
629
|
+
"internalType": "address",
|
630
|
+
"name": "from",
|
631
|
+
"type": "address"
|
632
|
+
},
|
633
|
+
{
|
634
|
+
"indexed": false,
|
635
|
+
"internalType": "address",
|
636
|
+
"name": "to",
|
637
|
+
"type": "address"
|
638
|
+
},
|
639
|
+
{
|
640
|
+
"indexed": false,
|
641
|
+
"internalType": "uint256",
|
642
|
+
"name": "amount",
|
643
|
+
"type": "uint256"
|
644
|
+
}
|
645
|
+
],
|
646
|
+
"name": "LogComponentWalletTokensTransferred",
|
647
|
+
"type": "event"
|
648
|
+
},
|
649
|
+
{
|
650
|
+
"anonymous": false,
|
651
|
+
"inputs": [
|
652
|
+
{
|
653
|
+
"indexed": false,
|
654
|
+
"internalType": "NftId",
|
655
|
+
"name": "nftId",
|
656
|
+
"type": "uint96"
|
657
|
+
},
|
658
|
+
{
|
659
|
+
"indexed": false,
|
660
|
+
"internalType": "address",
|
661
|
+
"name": "owner",
|
662
|
+
"type": "address"
|
663
|
+
}
|
664
|
+
],
|
665
|
+
"name": "LogNftOwnableNftLinkedToAddress",
|
666
|
+
"type": "event"
|
667
|
+
},
|
668
|
+
{
|
669
|
+
"anonymous": false,
|
670
|
+
"inputs": [
|
671
|
+
{
|
672
|
+
"indexed": false,
|
673
|
+
"internalType": "NftId",
|
674
|
+
"name": "targetNftId",
|
675
|
+
"type": "uint96"
|
676
|
+
},
|
677
|
+
{
|
678
|
+
"indexed": false,
|
679
|
+
"internalType": "Seconds",
|
680
|
+
"name": "newLockingPeriod",
|
681
|
+
"type": "uint40"
|
682
|
+
},
|
683
|
+
{
|
684
|
+
"indexed": false,
|
685
|
+
"internalType": "Seconds",
|
686
|
+
"name": "oldLockingPeriod",
|
687
|
+
"type": "uint40"
|
688
|
+
},
|
689
|
+
{
|
690
|
+
"indexed": false,
|
691
|
+
"internalType": "Blocknumber",
|
692
|
+
"name": "lastUpdatedIn",
|
693
|
+
"type": "uint40"
|
694
|
+
}
|
695
|
+
],
|
696
|
+
"name": "LogStakingProtocolLockingPeriodSet",
|
697
|
+
"type": "event"
|
698
|
+
},
|
699
|
+
{
|
700
|
+
"anonymous": false,
|
701
|
+
"inputs": [
|
702
|
+
{
|
703
|
+
"indexed": false,
|
704
|
+
"internalType": "NftId",
|
705
|
+
"name": "targetNftId",
|
706
|
+
"type": "uint96"
|
707
|
+
},
|
708
|
+
{
|
709
|
+
"indexed": false,
|
710
|
+
"internalType": "UFixed",
|
711
|
+
"name": "newRewardRate",
|
712
|
+
"type": "uint160"
|
713
|
+
},
|
714
|
+
{
|
715
|
+
"indexed": false,
|
716
|
+
"internalType": "UFixed",
|
717
|
+
"name": "oldRewardRate",
|
718
|
+
"type": "uint160"
|
719
|
+
},
|
720
|
+
{
|
721
|
+
"indexed": false,
|
722
|
+
"internalType": "Blocknumber",
|
723
|
+
"name": "lastUpdatedIn",
|
724
|
+
"type": "uint40"
|
725
|
+
}
|
726
|
+
],
|
727
|
+
"name": "LogStakingProtocolRewardRateSet",
|
728
|
+
"type": "event"
|
729
|
+
},
|
730
|
+
{
|
731
|
+
"anonymous": false,
|
732
|
+
"inputs": [
|
733
|
+
{
|
734
|
+
"indexed": false,
|
735
|
+
"internalType": "NftId",
|
736
|
+
"name": "targetNftId",
|
737
|
+
"type": "uint96"
|
738
|
+
},
|
739
|
+
{
|
740
|
+
"indexed": false,
|
741
|
+
"internalType": "Amount",
|
742
|
+
"name": "dipAmount",
|
743
|
+
"type": "uint96"
|
744
|
+
},
|
745
|
+
{
|
746
|
+
"indexed": false,
|
747
|
+
"internalType": "address",
|
748
|
+
"name": "targetOwner",
|
749
|
+
"type": "address"
|
750
|
+
},
|
751
|
+
{
|
752
|
+
"indexed": false,
|
753
|
+
"internalType": "Amount",
|
754
|
+
"name": "reserveBalance",
|
755
|
+
"type": "uint96"
|
756
|
+
},
|
757
|
+
{
|
758
|
+
"indexed": false,
|
759
|
+
"internalType": "Blocknumber",
|
760
|
+
"name": "lastUpdateIn",
|
761
|
+
"type": "uint40"
|
762
|
+
}
|
763
|
+
],
|
764
|
+
"name": "LogStakingRewardReservesRefilled",
|
765
|
+
"type": "event"
|
766
|
+
},
|
767
|
+
{
|
768
|
+
"anonymous": false,
|
769
|
+
"inputs": [
|
770
|
+
{
|
771
|
+
"indexed": false,
|
772
|
+
"internalType": "NftId",
|
773
|
+
"name": "targetNftId",
|
774
|
+
"type": "uint96"
|
775
|
+
},
|
776
|
+
{
|
777
|
+
"indexed": false,
|
778
|
+
"internalType": "Amount",
|
779
|
+
"name": "dipAmount",
|
780
|
+
"type": "uint96"
|
781
|
+
},
|
782
|
+
{
|
783
|
+
"indexed": false,
|
784
|
+
"internalType": "Amount",
|
785
|
+
"name": "reserveBalance",
|
786
|
+
"type": "uint96"
|
787
|
+
},
|
788
|
+
{
|
789
|
+
"indexed": false,
|
790
|
+
"internalType": "Blocknumber",
|
791
|
+
"name": "lastUpdateIn",
|
792
|
+
"type": "uint40"
|
793
|
+
}
|
794
|
+
],
|
795
|
+
"name": "LogStakingRewardReservesSpent",
|
796
|
+
"type": "event"
|
797
|
+
},
|
798
|
+
{
|
799
|
+
"anonymous": false,
|
800
|
+
"inputs": [
|
801
|
+
{
|
802
|
+
"indexed": false,
|
803
|
+
"internalType": "NftId",
|
804
|
+
"name": "targetNftId",
|
805
|
+
"type": "uint96"
|
806
|
+
},
|
807
|
+
{
|
808
|
+
"indexed": false,
|
809
|
+
"internalType": "Amount",
|
810
|
+
"name": "dipAmount",
|
811
|
+
"type": "uint96"
|
812
|
+
},
|
813
|
+
{
|
814
|
+
"indexed": false,
|
815
|
+
"internalType": "address",
|
816
|
+
"name": "targetOwner",
|
817
|
+
"type": "address"
|
818
|
+
},
|
819
|
+
{
|
820
|
+
"indexed": false,
|
821
|
+
"internalType": "Amount",
|
822
|
+
"name": "reserveBalance",
|
823
|
+
"type": "uint96"
|
824
|
+
},
|
825
|
+
{
|
826
|
+
"indexed": false,
|
827
|
+
"internalType": "Blocknumber",
|
828
|
+
"name": "lastUpdateIn",
|
829
|
+
"type": "uint40"
|
830
|
+
}
|
831
|
+
],
|
832
|
+
"name": "LogStakingRewardReservesWithdrawn",
|
833
|
+
"type": "event"
|
834
|
+
},
|
835
|
+
{
|
836
|
+
"anonymous": false,
|
837
|
+
"inputs": [
|
838
|
+
{
|
839
|
+
"indexed": false,
|
840
|
+
"internalType": "NftId",
|
841
|
+
"name": "stakeNftId",
|
842
|
+
"type": "uint96"
|
843
|
+
},
|
844
|
+
{
|
845
|
+
"indexed": false,
|
846
|
+
"internalType": "Amount",
|
847
|
+
"name": "claimedAmount",
|
848
|
+
"type": "uint96"
|
849
|
+
},
|
850
|
+
{
|
851
|
+
"indexed": false,
|
852
|
+
"internalType": "Amount",
|
853
|
+
"name": "stakeBalance",
|
854
|
+
"type": "uint96"
|
855
|
+
},
|
856
|
+
{
|
857
|
+
"indexed": false,
|
858
|
+
"internalType": "Amount",
|
859
|
+
"name": "rewardBalance",
|
860
|
+
"type": "uint96"
|
861
|
+
},
|
862
|
+
{
|
863
|
+
"indexed": false,
|
864
|
+
"internalType": "Timestamp",
|
865
|
+
"name": "lockedUntil",
|
866
|
+
"type": "uint40"
|
867
|
+
}
|
868
|
+
],
|
869
|
+
"name": "LogStakingRewardsClaimed",
|
870
|
+
"type": "event"
|
871
|
+
},
|
872
|
+
{
|
873
|
+
"anonymous": false,
|
874
|
+
"inputs": [
|
875
|
+
{
|
876
|
+
"indexed": false,
|
877
|
+
"internalType": "NftId",
|
878
|
+
"name": "stakeNftId",
|
879
|
+
"type": "uint96"
|
880
|
+
},
|
881
|
+
{
|
882
|
+
"indexed": false,
|
883
|
+
"internalType": "Amount",
|
884
|
+
"name": "restakedAmount",
|
885
|
+
"type": "uint96"
|
886
|
+
},
|
887
|
+
{
|
888
|
+
"indexed": false,
|
889
|
+
"internalType": "Amount",
|
890
|
+
"name": "stakeBalance",
|
891
|
+
"type": "uint96"
|
892
|
+
},
|
893
|
+
{
|
894
|
+
"indexed": false,
|
895
|
+
"internalType": "Amount",
|
896
|
+
"name": "rewardBalance",
|
897
|
+
"type": "uint96"
|
898
|
+
},
|
899
|
+
{
|
900
|
+
"indexed": false,
|
901
|
+
"internalType": "Timestamp",
|
902
|
+
"name": "lockedUntil",
|
903
|
+
"type": "uint40"
|
904
|
+
}
|
905
|
+
],
|
906
|
+
"name": "LogStakingRewardsRestaked",
|
907
|
+
"type": "event"
|
908
|
+
},
|
909
|
+
{
|
910
|
+
"anonymous": false,
|
911
|
+
"inputs": [
|
912
|
+
{
|
913
|
+
"indexed": false,
|
914
|
+
"internalType": "NftId",
|
915
|
+
"name": "stakeNftId",
|
916
|
+
"type": "uint96"
|
917
|
+
},
|
918
|
+
{
|
919
|
+
"indexed": false,
|
920
|
+
"internalType": "NftId",
|
921
|
+
"name": "targetNftId",
|
922
|
+
"type": "uint96"
|
923
|
+
},
|
924
|
+
{
|
925
|
+
"indexed": false,
|
926
|
+
"internalType": "Amount",
|
927
|
+
"name": "stakeAmount",
|
928
|
+
"type": "uint96"
|
929
|
+
},
|
930
|
+
{
|
931
|
+
"indexed": false,
|
932
|
+
"internalType": "Timestamp",
|
933
|
+
"name": "lockedUntil",
|
934
|
+
"type": "uint40"
|
935
|
+
},
|
936
|
+
{
|
937
|
+
"indexed": false,
|
938
|
+
"internalType": "address",
|
939
|
+
"name": "stakeOwner",
|
940
|
+
"type": "address"
|
941
|
+
}
|
942
|
+
],
|
943
|
+
"name": "LogStakingStakeCreated",
|
944
|
+
"type": "event"
|
945
|
+
},
|
946
|
+
{
|
947
|
+
"anonymous": false,
|
948
|
+
"inputs": [
|
949
|
+
{
|
950
|
+
"indexed": false,
|
951
|
+
"internalType": "NftId",
|
952
|
+
"name": "stakeNftId",
|
953
|
+
"type": "uint96"
|
954
|
+
},
|
955
|
+
{
|
956
|
+
"indexed": false,
|
957
|
+
"internalType": "NftId",
|
958
|
+
"name": "targetNftId",
|
959
|
+
"type": "uint96"
|
960
|
+
},
|
961
|
+
{
|
962
|
+
"indexed": false,
|
963
|
+
"internalType": "Amount",
|
964
|
+
"name": "stakeAmount",
|
965
|
+
"type": "uint96"
|
966
|
+
},
|
967
|
+
{
|
968
|
+
"indexed": false,
|
969
|
+
"internalType": "address",
|
970
|
+
"name": "owner",
|
971
|
+
"type": "address"
|
972
|
+
},
|
973
|
+
{
|
974
|
+
"indexed": false,
|
975
|
+
"internalType": "NftId",
|
976
|
+
"name": "oldStakeNftId",
|
977
|
+
"type": "uint96"
|
978
|
+
}
|
979
|
+
],
|
980
|
+
"name": "LogStakingStakeRestaked",
|
981
|
+
"type": "event"
|
982
|
+
},
|
983
|
+
{
|
984
|
+
"anonymous": false,
|
985
|
+
"inputs": [
|
986
|
+
{
|
987
|
+
"indexed": false,
|
988
|
+
"internalType": "NftId",
|
989
|
+
"name": "stakeNftId",
|
990
|
+
"type": "uint96"
|
991
|
+
},
|
992
|
+
{
|
993
|
+
"indexed": false,
|
994
|
+
"internalType": "Amount",
|
995
|
+
"name": "rewardIncrementAmount",
|
996
|
+
"type": "uint96"
|
997
|
+
},
|
998
|
+
{
|
999
|
+
"indexed": false,
|
1000
|
+
"internalType": "Amount",
|
1001
|
+
"name": "stakeBalance",
|
1002
|
+
"type": "uint96"
|
1003
|
+
},
|
1004
|
+
{
|
1005
|
+
"indexed": false,
|
1006
|
+
"internalType": "Amount",
|
1007
|
+
"name": "rewardBalance",
|
1008
|
+
"type": "uint96"
|
1009
|
+
},
|
1010
|
+
{
|
1011
|
+
"indexed": false,
|
1012
|
+
"internalType": "Timestamp",
|
1013
|
+
"name": "lockedUntil",
|
1014
|
+
"type": "uint40"
|
1015
|
+
}
|
1016
|
+
],
|
1017
|
+
"name": "LogStakingStakeRewardsUpdated",
|
1018
|
+
"type": "event"
|
1019
|
+
},
|
1020
|
+
{
|
1021
|
+
"anonymous": false,
|
1022
|
+
"inputs": [
|
1023
|
+
{
|
1024
|
+
"indexed": false,
|
1025
|
+
"internalType": "NftId",
|
1026
|
+
"name": "stakeNftId",
|
1027
|
+
"type": "uint96"
|
1028
|
+
},
|
1029
|
+
{
|
1030
|
+
"indexed": false,
|
1031
|
+
"internalType": "Amount",
|
1032
|
+
"name": "stakedAmount",
|
1033
|
+
"type": "uint96"
|
1034
|
+
},
|
1035
|
+
{
|
1036
|
+
"indexed": false,
|
1037
|
+
"internalType": "Amount",
|
1038
|
+
"name": "stakeBalance",
|
1039
|
+
"type": "uint96"
|
1040
|
+
},
|
1041
|
+
{
|
1042
|
+
"indexed": false,
|
1043
|
+
"internalType": "Amount",
|
1044
|
+
"name": "rewardBalance",
|
1045
|
+
"type": "uint96"
|
1046
|
+
},
|
1047
|
+
{
|
1048
|
+
"indexed": false,
|
1049
|
+
"internalType": "Timestamp",
|
1050
|
+
"name": "lockedUntil",
|
1051
|
+
"type": "uint40"
|
1052
|
+
}
|
1053
|
+
],
|
1054
|
+
"name": "LogStakingStaked",
|
1055
|
+
"type": "event"
|
1056
|
+
},
|
1057
|
+
{
|
1058
|
+
"anonymous": false,
|
1059
|
+
"inputs": [
|
1060
|
+
{
|
1061
|
+
"indexed": false,
|
1062
|
+
"internalType": "ChainId",
|
1063
|
+
"name": "chainId",
|
1064
|
+
"type": "uint96"
|
1065
|
+
},
|
1066
|
+
{
|
1067
|
+
"indexed": false,
|
1068
|
+
"internalType": "address",
|
1069
|
+
"name": "token",
|
1070
|
+
"type": "address"
|
1071
|
+
},
|
1072
|
+
{
|
1073
|
+
"indexed": false,
|
1074
|
+
"internalType": "UFixed",
|
1075
|
+
"name": "newStakingRate",
|
1076
|
+
"type": "uint160"
|
1077
|
+
},
|
1078
|
+
{
|
1079
|
+
"indexed": false,
|
1080
|
+
"internalType": "UFixed",
|
1081
|
+
"name": "oldStakingRate",
|
1082
|
+
"type": "uint160"
|
1083
|
+
},
|
1084
|
+
{
|
1085
|
+
"indexed": false,
|
1086
|
+
"internalType": "Blocknumber",
|
1087
|
+
"name": "lastUpdatedIn",
|
1088
|
+
"type": "uint40"
|
1089
|
+
}
|
1090
|
+
],
|
1091
|
+
"name": "LogStakingStakingRateSet",
|
1092
|
+
"type": "event"
|
1093
|
+
},
|
1094
|
+
{
|
1095
|
+
"anonymous": false,
|
1096
|
+
"inputs": [
|
1097
|
+
{
|
1098
|
+
"indexed": false,
|
1099
|
+
"internalType": "address",
|
1100
|
+
"name": "stakingReader",
|
1101
|
+
"type": "address"
|
1102
|
+
},
|
1103
|
+
{
|
1104
|
+
"indexed": false,
|
1105
|
+
"internalType": "address",
|
1106
|
+
"name": "oldStakingReader",
|
1107
|
+
"type": "address"
|
1108
|
+
}
|
1109
|
+
],
|
1110
|
+
"name": "LogStakingStakingReaderSet",
|
1111
|
+
"type": "event"
|
1112
|
+
},
|
1113
|
+
{
|
1114
|
+
"anonymous": false,
|
1115
|
+
"inputs": [
|
1116
|
+
{
|
1117
|
+
"indexed": false,
|
1118
|
+
"internalType": "address",
|
1119
|
+
"name": "stakingService",
|
1120
|
+
"type": "address"
|
1121
|
+
},
|
1122
|
+
{
|
1123
|
+
"indexed": false,
|
1124
|
+
"internalType": "VersionPart",
|
1125
|
+
"name": "release",
|
1126
|
+
"type": "uint8"
|
1127
|
+
},
|
1128
|
+
{
|
1129
|
+
"indexed": false,
|
1130
|
+
"internalType": "address",
|
1131
|
+
"name": "oldStakingService",
|
1132
|
+
"type": "address"
|
1133
|
+
}
|
1134
|
+
],
|
1135
|
+
"name": "LogStakingStakingServiceSet",
|
1136
|
+
"type": "event"
|
1137
|
+
},
|
1138
|
+
{
|
1139
|
+
"anonymous": false,
|
1140
|
+
"inputs": [
|
1141
|
+
{
|
1142
|
+
"indexed": false,
|
1143
|
+
"internalType": "NftId",
|
1144
|
+
"name": "targetNftId",
|
1145
|
+
"type": "uint96"
|
1146
|
+
},
|
1147
|
+
{
|
1148
|
+
"indexed": false,
|
1149
|
+
"internalType": "ObjectType",
|
1150
|
+
"name": "objectType",
|
1151
|
+
"type": "uint8"
|
1152
|
+
},
|
1153
|
+
{
|
1154
|
+
"indexed": false,
|
1155
|
+
"internalType": "Seconds",
|
1156
|
+
"name": "lockingPeriod",
|
1157
|
+
"type": "uint40"
|
1158
|
+
},
|
1159
|
+
{
|
1160
|
+
"indexed": false,
|
1161
|
+
"internalType": "UFixed",
|
1162
|
+
"name": "rewardRate",
|
1163
|
+
"type": "uint160"
|
1164
|
+
},
|
1165
|
+
{
|
1166
|
+
"indexed": false,
|
1167
|
+
"internalType": "Amount",
|
1168
|
+
"name": "maxStakedAmount",
|
1169
|
+
"type": "uint96"
|
1170
|
+
}
|
1171
|
+
],
|
1172
|
+
"name": "LogStakingTargetCreated",
|
1173
|
+
"type": "event"
|
1174
|
+
},
|
1175
|
+
{
|
1176
|
+
"anonymous": false,
|
1177
|
+
"inputs": [
|
1178
|
+
{
|
1179
|
+
"indexed": false,
|
1180
|
+
"internalType": "NftId",
|
1181
|
+
"name": "targetNftId",
|
1182
|
+
"type": "uint96"
|
1183
|
+
},
|
1184
|
+
{
|
1185
|
+
"indexed": false,
|
1186
|
+
"internalType": "Seconds",
|
1187
|
+
"name": "oldLockingPeriod",
|
1188
|
+
"type": "uint40"
|
1189
|
+
},
|
1190
|
+
{
|
1191
|
+
"indexed": false,
|
1192
|
+
"internalType": "Seconds",
|
1193
|
+
"name": "lockingPeriod",
|
1194
|
+
"type": "uint40"
|
1195
|
+
}
|
1196
|
+
],
|
1197
|
+
"name": "LogStakingTargetLockingPeriodSet",
|
1198
|
+
"type": "event"
|
1199
|
+
},
|
1200
|
+
{
|
1201
|
+
"anonymous": false,
|
1202
|
+
"inputs": [
|
1203
|
+
{
|
1204
|
+
"indexed": false,
|
1205
|
+
"internalType": "NftId",
|
1206
|
+
"name": "targetNftId",
|
1207
|
+
"type": "uint96"
|
1208
|
+
},
|
1209
|
+
{
|
1210
|
+
"indexed": false,
|
1211
|
+
"internalType": "Amount",
|
1212
|
+
"name": "maxStakedAmount",
|
1213
|
+
"type": "uint96"
|
1214
|
+
}
|
1215
|
+
],
|
1216
|
+
"name": "LogStakingTargetMaxStakedAmountSet",
|
1217
|
+
"type": "event"
|
1218
|
+
},
|
1219
|
+
{
|
1220
|
+
"anonymous": false,
|
1221
|
+
"inputs": [
|
1222
|
+
{
|
1223
|
+
"indexed": false,
|
1224
|
+
"internalType": "NftId",
|
1225
|
+
"name": "targetNftId",
|
1226
|
+
"type": "uint96"
|
1227
|
+
},
|
1228
|
+
{
|
1229
|
+
"indexed": false,
|
1230
|
+
"internalType": "UFixed",
|
1231
|
+
"name": "rewardRate",
|
1232
|
+
"type": "uint160"
|
1233
|
+
},
|
1234
|
+
{
|
1235
|
+
"indexed": false,
|
1236
|
+
"internalType": "UFixed",
|
1237
|
+
"name": "oldRewardRate",
|
1238
|
+
"type": "uint160"
|
1239
|
+
}
|
1240
|
+
],
|
1241
|
+
"name": "LogStakingTargetRewardRateSet",
|
1242
|
+
"type": "event"
|
1243
|
+
},
|
1244
|
+
{
|
1245
|
+
"anonymous": false,
|
1246
|
+
"inputs": [
|
1247
|
+
{
|
1248
|
+
"indexed": false,
|
1249
|
+
"internalType": "NftId",
|
1250
|
+
"name": "targetNftId",
|
1251
|
+
"type": "uint96"
|
1252
|
+
},
|
1253
|
+
{
|
1254
|
+
"indexed": false,
|
1255
|
+
"internalType": "ChainId",
|
1256
|
+
"name": "chainId",
|
1257
|
+
"type": "uint96"
|
1258
|
+
},
|
1259
|
+
{
|
1260
|
+
"indexed": false,
|
1261
|
+
"internalType": "address",
|
1262
|
+
"name": "token",
|
1263
|
+
"type": "address"
|
1264
|
+
}
|
1265
|
+
],
|
1266
|
+
"name": "LogStakingTargetTokenAdded",
|
1267
|
+
"type": "event"
|
1268
|
+
},
|
1269
|
+
{
|
1270
|
+
"anonymous": false,
|
1271
|
+
"inputs": [
|
1272
|
+
{
|
1273
|
+
"indexed": false,
|
1274
|
+
"internalType": "ChainId",
|
1275
|
+
"name": "chainId",
|
1276
|
+
"type": "uint96"
|
1277
|
+
},
|
1278
|
+
{
|
1279
|
+
"indexed": false,
|
1280
|
+
"internalType": "address",
|
1281
|
+
"name": "token",
|
1282
|
+
"type": "address"
|
1283
|
+
}
|
1284
|
+
],
|
1285
|
+
"name": "LogStakingTokenAdded",
|
1286
|
+
"type": "event"
|
1287
|
+
},
|
1288
|
+
{
|
1289
|
+
"anonymous": false,
|
1290
|
+
"inputs": [
|
1291
|
+
{
|
1292
|
+
"indexed": false,
|
1293
|
+
"internalType": "address",
|
1294
|
+
"name": "token",
|
1295
|
+
"type": "address"
|
1296
|
+
},
|
1297
|
+
{
|
1298
|
+
"indexed": false,
|
1299
|
+
"internalType": "Amount",
|
1300
|
+
"name": "approvalAmount",
|
1301
|
+
"type": "uint96"
|
1302
|
+
},
|
1303
|
+
{
|
1304
|
+
"indexed": false,
|
1305
|
+
"internalType": "Amount",
|
1306
|
+
"name": "oldApprovalAmount",
|
1307
|
+
"type": "uint96"
|
1308
|
+
}
|
1309
|
+
],
|
1310
|
+
"name": "LogStakingTokenHandlerApproved",
|
1311
|
+
"type": "event"
|
1312
|
+
},
|
1313
|
+
{
|
1314
|
+
"anonymous": false,
|
1315
|
+
"inputs": [
|
1316
|
+
{
|
1317
|
+
"indexed": false,
|
1318
|
+
"internalType": "NftId",
|
1319
|
+
"name": "targetNftId",
|
1320
|
+
"type": "uint96"
|
1321
|
+
},
|
1322
|
+
{
|
1323
|
+
"indexed": false,
|
1324
|
+
"internalType": "address",
|
1325
|
+
"name": "token",
|
1326
|
+
"type": "address"
|
1327
|
+
},
|
1328
|
+
{
|
1329
|
+
"indexed": false,
|
1330
|
+
"internalType": "Amount",
|
1331
|
+
"name": "amount",
|
1332
|
+
"type": "uint96"
|
1333
|
+
},
|
1334
|
+
{
|
1335
|
+
"indexed": false,
|
1336
|
+
"internalType": "Amount",
|
1337
|
+
"name": "newBalance",
|
1338
|
+
"type": "uint96"
|
1339
|
+
}
|
1340
|
+
],
|
1341
|
+
"name": "LogStakingTotalValueLockedDecreased",
|
1342
|
+
"type": "event"
|
1343
|
+
},
|
1344
|
+
{
|
1345
|
+
"anonymous": false,
|
1346
|
+
"inputs": [
|
1347
|
+
{
|
1348
|
+
"indexed": false,
|
1349
|
+
"internalType": "NftId",
|
1350
|
+
"name": "targetNftId",
|
1351
|
+
"type": "uint96"
|
1352
|
+
},
|
1353
|
+
{
|
1354
|
+
"indexed": false,
|
1355
|
+
"internalType": "address",
|
1356
|
+
"name": "token",
|
1357
|
+
"type": "address"
|
1358
|
+
},
|
1359
|
+
{
|
1360
|
+
"indexed": false,
|
1361
|
+
"internalType": "Amount",
|
1362
|
+
"name": "amount",
|
1363
|
+
"type": "uint96"
|
1364
|
+
},
|
1365
|
+
{
|
1366
|
+
"indexed": false,
|
1367
|
+
"internalType": "Amount",
|
1368
|
+
"name": "newBalance",
|
1369
|
+
"type": "uint96"
|
1370
|
+
}
|
1371
|
+
],
|
1372
|
+
"name": "LogStakingTotalValueLockedIncreased",
|
1373
|
+
"type": "event"
|
1374
|
+
},
|
1375
|
+
{
|
1376
|
+
"anonymous": false,
|
1377
|
+
"inputs": [
|
1378
|
+
{
|
1379
|
+
"indexed": false,
|
1380
|
+
"internalType": "NftId",
|
1381
|
+
"name": "stakeNftId",
|
1382
|
+
"type": "uint96"
|
1383
|
+
},
|
1384
|
+
{
|
1385
|
+
"indexed": false,
|
1386
|
+
"internalType": "Amount",
|
1387
|
+
"name": "unstakedAmount",
|
1388
|
+
"type": "uint96"
|
1389
|
+
},
|
1390
|
+
{
|
1391
|
+
"indexed": false,
|
1392
|
+
"internalType": "Amount",
|
1393
|
+
"name": "stakeBalance",
|
1394
|
+
"type": "uint96"
|
1395
|
+
},
|
1396
|
+
{
|
1397
|
+
"indexed": false,
|
1398
|
+
"internalType": "Amount",
|
1399
|
+
"name": "rewardBalance",
|
1400
|
+
"type": "uint96"
|
1401
|
+
},
|
1402
|
+
{
|
1403
|
+
"indexed": false,
|
1404
|
+
"internalType": "Timestamp",
|
1405
|
+
"name": "lockedUntil",
|
1406
|
+
"type": "uint40"
|
1407
|
+
}
|
1408
|
+
],
|
1409
|
+
"name": "LogStakingUnstaked",
|
1410
|
+
"type": "event"
|
1411
|
+
},
|
1412
|
+
{
|
1413
|
+
"inputs": [],
|
1414
|
+
"name": "COMPONENT_LOCATION_V1",
|
1415
|
+
"outputs": [
|
1416
|
+
{
|
1417
|
+
"internalType": "bytes32",
|
1418
|
+
"name": "",
|
1419
|
+
"type": "bytes32"
|
1420
|
+
}
|
1421
|
+
],
|
1422
|
+
"stateMutability": "view",
|
1423
|
+
"type": "function"
|
1424
|
+
},
|
1425
|
+
{
|
1426
|
+
"inputs": [],
|
1427
|
+
"name": "CONTRACT_NAME",
|
1428
|
+
"outputs": [
|
1429
|
+
{
|
1430
|
+
"internalType": "string",
|
1431
|
+
"name": "",
|
1432
|
+
"type": "string"
|
1433
|
+
}
|
1434
|
+
],
|
1435
|
+
"stateMutability": "view",
|
1436
|
+
"type": "function"
|
1437
|
+
},
|
1438
|
+
{
|
1439
|
+
"inputs": [],
|
1440
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
1441
|
+
"outputs": [
|
1442
|
+
{
|
1443
|
+
"internalType": "bytes32",
|
1444
|
+
"name": "",
|
1445
|
+
"type": "bytes32"
|
1446
|
+
}
|
1447
|
+
],
|
1448
|
+
"stateMutability": "view",
|
1449
|
+
"type": "function"
|
1450
|
+
},
|
1451
|
+
{
|
1452
|
+
"inputs": [],
|
1453
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
1454
|
+
"outputs": [
|
1455
|
+
{
|
1456
|
+
"internalType": "bytes32",
|
1457
|
+
"name": "",
|
1458
|
+
"type": "bytes32"
|
1459
|
+
}
|
1460
|
+
],
|
1461
|
+
"stateMutability": "view",
|
1462
|
+
"type": "function"
|
1463
|
+
},
|
1464
|
+
{
|
1465
|
+
"inputs": [],
|
1466
|
+
"name": "STAKING_LOCATION_V1",
|
1467
|
+
"outputs": [
|
1468
|
+
{
|
1469
|
+
"internalType": "bytes32",
|
1470
|
+
"name": "",
|
1471
|
+
"type": "bytes32"
|
1472
|
+
}
|
1473
|
+
],
|
1474
|
+
"stateMutability": "view",
|
1475
|
+
"type": "function"
|
1476
|
+
},
|
1477
|
+
{
|
1478
|
+
"inputs": [
|
1479
|
+
{
|
1480
|
+
"internalType": "NftId",
|
1481
|
+
"name": "targetNftId",
|
1482
|
+
"type": "uint96"
|
1483
|
+
},
|
1484
|
+
{
|
1485
|
+
"internalType": "address",
|
1486
|
+
"name": "token",
|
1487
|
+
"type": "address"
|
1488
|
+
}
|
1489
|
+
],
|
1490
|
+
"name": "addTargetToken",
|
1491
|
+
"outputs": [],
|
1492
|
+
"stateMutability": "nonpayable",
|
1493
|
+
"type": "function"
|
1494
|
+
},
|
1495
|
+
{
|
1496
|
+
"inputs": [
|
1497
|
+
{
|
1498
|
+
"internalType": "ChainId",
|
1499
|
+
"name": "chainId",
|
1500
|
+
"type": "uint96"
|
1501
|
+
},
|
1502
|
+
{
|
1503
|
+
"internalType": "address",
|
1504
|
+
"name": "token",
|
1505
|
+
"type": "address"
|
1506
|
+
}
|
1507
|
+
],
|
1508
|
+
"name": "addToken",
|
1509
|
+
"outputs": [],
|
1510
|
+
"stateMutability": "nonpayable",
|
1511
|
+
"type": "function"
|
1512
|
+
},
|
1513
|
+
{
|
1514
|
+
"inputs": [
|
1515
|
+
{
|
1516
|
+
"internalType": "contract IERC20Metadata",
|
1517
|
+
"name": "token",
|
1518
|
+
"type": "address"
|
1519
|
+
},
|
1520
|
+
{
|
1521
|
+
"internalType": "Amount",
|
1522
|
+
"name": "amount",
|
1523
|
+
"type": "uint96"
|
1524
|
+
}
|
1525
|
+
],
|
1526
|
+
"name": "approveTokenHandler",
|
1527
|
+
"outputs": [],
|
1528
|
+
"stateMutability": "nonpayable",
|
1529
|
+
"type": "function"
|
1530
|
+
},
|
1531
|
+
{
|
1532
|
+
"inputs": [],
|
1533
|
+
"name": "authority",
|
1534
|
+
"outputs": [
|
1535
|
+
{
|
1536
|
+
"internalType": "address",
|
1537
|
+
"name": "",
|
1538
|
+
"type": "address"
|
1539
|
+
}
|
1540
|
+
],
|
1541
|
+
"stateMutability": "view",
|
1542
|
+
"type": "function"
|
1543
|
+
},
|
1544
|
+
{
|
1545
|
+
"inputs": [
|
1546
|
+
{
|
1547
|
+
"internalType": "NftId",
|
1548
|
+
"name": "stakeNftId",
|
1549
|
+
"type": "uint96"
|
1550
|
+
}
|
1551
|
+
],
|
1552
|
+
"name": "claimRewards",
|
1553
|
+
"outputs": [
|
1554
|
+
{
|
1555
|
+
"internalType": "Amount",
|
1556
|
+
"name": "claimedAmount",
|
1557
|
+
"type": "uint96"
|
1558
|
+
}
|
1559
|
+
],
|
1560
|
+
"stateMutability": "nonpayable",
|
1561
|
+
"type": "function"
|
1562
|
+
},
|
1563
|
+
{
|
1564
|
+
"inputs": [
|
1565
|
+
{
|
1566
|
+
"internalType": "NftId",
|
1567
|
+
"name": "targetNftId",
|
1568
|
+
"type": "uint96"
|
1569
|
+
},
|
1570
|
+
{
|
1571
|
+
"internalType": "Amount",
|
1572
|
+
"name": "stakeAmount",
|
1573
|
+
"type": "uint96"
|
1574
|
+
},
|
1575
|
+
{
|
1576
|
+
"internalType": "address",
|
1577
|
+
"name": "stakeOwner",
|
1578
|
+
"type": "address"
|
1579
|
+
}
|
1580
|
+
],
|
1581
|
+
"name": "createStake",
|
1582
|
+
"outputs": [
|
1583
|
+
{
|
1584
|
+
"internalType": "NftId",
|
1585
|
+
"name": "stakeNftId",
|
1586
|
+
"type": "uint96"
|
1587
|
+
}
|
1588
|
+
],
|
1589
|
+
"stateMutability": "nonpayable",
|
1590
|
+
"type": "function"
|
1591
|
+
},
|
1592
|
+
{
|
1593
|
+
"inputs": [
|
1594
|
+
{
|
1595
|
+
"internalType": "NftId",
|
1596
|
+
"name": "targetNftId",
|
1597
|
+
"type": "uint96"
|
1598
|
+
},
|
1599
|
+
{
|
1600
|
+
"internalType": "address",
|
1601
|
+
"name": "token",
|
1602
|
+
"type": "address"
|
1603
|
+
},
|
1604
|
+
{
|
1605
|
+
"internalType": "Amount",
|
1606
|
+
"name": "amount",
|
1607
|
+
"type": "uint96"
|
1608
|
+
}
|
1609
|
+
],
|
1610
|
+
"name": "decreaseTotalValueLocked",
|
1611
|
+
"outputs": [
|
1612
|
+
{
|
1613
|
+
"internalType": "Amount",
|
1614
|
+
"name": "newBalance",
|
1615
|
+
"type": "uint96"
|
1616
|
+
}
|
1617
|
+
],
|
1618
|
+
"stateMutability": "nonpayable",
|
1619
|
+
"type": "function"
|
1620
|
+
},
|
1621
|
+
{
|
1622
|
+
"inputs": [],
|
1623
|
+
"name": "getComponentInfo",
|
1624
|
+
"outputs": [
|
1625
|
+
{
|
1626
|
+
"components": [
|
1627
|
+
{
|
1628
|
+
"internalType": "string",
|
1629
|
+
"name": "name",
|
1630
|
+
"type": "string"
|
1631
|
+
},
|
1632
|
+
{
|
1633
|
+
"internalType": "contract TokenHandler",
|
1634
|
+
"name": "tokenHandler",
|
1635
|
+
"type": "address"
|
1636
|
+
},
|
1637
|
+
{
|
1638
|
+
"internalType": "bytes",
|
1639
|
+
"name": "data",
|
1640
|
+
"type": "bytes"
|
1641
|
+
}
|
1642
|
+
],
|
1643
|
+
"internalType": "struct IComponents.ComponentInfo",
|
1644
|
+
"name": "info",
|
1645
|
+
"type": "tuple"
|
1646
|
+
}
|
1647
|
+
],
|
1648
|
+
"stateMutability": "view",
|
1649
|
+
"type": "function"
|
1650
|
+
},
|
1651
|
+
{
|
1652
|
+
"inputs": [],
|
1653
|
+
"name": "getInitialComponentInfo",
|
1654
|
+
"outputs": [
|
1655
|
+
{
|
1656
|
+
"components": [
|
1657
|
+
{
|
1658
|
+
"internalType": "string",
|
1659
|
+
"name": "name",
|
1660
|
+
"type": "string"
|
1661
|
+
},
|
1662
|
+
{
|
1663
|
+
"internalType": "contract TokenHandler",
|
1664
|
+
"name": "tokenHandler",
|
1665
|
+
"type": "address"
|
1666
|
+
},
|
1667
|
+
{
|
1668
|
+
"internalType": "bytes",
|
1669
|
+
"name": "data",
|
1670
|
+
"type": "bytes"
|
1671
|
+
}
|
1672
|
+
],
|
1673
|
+
"internalType": "struct IComponents.ComponentInfo",
|
1674
|
+
"name": "info",
|
1675
|
+
"type": "tuple"
|
1676
|
+
}
|
1677
|
+
],
|
1678
|
+
"stateMutability": "view",
|
1679
|
+
"type": "function"
|
1680
|
+
},
|
1681
|
+
{
|
1682
|
+
"inputs": [],
|
1683
|
+
"name": "getInitialInfo",
|
1684
|
+
"outputs": [
|
1685
|
+
{
|
1686
|
+
"components": [
|
1687
|
+
{
|
1688
|
+
"internalType": "NftId",
|
1689
|
+
"name": "nftId",
|
1690
|
+
"type": "uint96"
|
1691
|
+
},
|
1692
|
+
{
|
1693
|
+
"internalType": "NftId",
|
1694
|
+
"name": "parentNftId",
|
1695
|
+
"type": "uint96"
|
1696
|
+
},
|
1697
|
+
{
|
1698
|
+
"internalType": "ObjectType",
|
1699
|
+
"name": "objectType",
|
1700
|
+
"type": "uint8"
|
1701
|
+
},
|
1702
|
+
{
|
1703
|
+
"internalType": "bool",
|
1704
|
+
"name": "isInterceptor",
|
1705
|
+
"type": "bool"
|
1706
|
+
},
|
1707
|
+
{
|
1708
|
+
"internalType": "address",
|
1709
|
+
"name": "objectAddress",
|
1710
|
+
"type": "address"
|
1711
|
+
},
|
1712
|
+
{
|
1713
|
+
"internalType": "address",
|
1714
|
+
"name": "initialOwner",
|
1715
|
+
"type": "address"
|
1716
|
+
},
|
1717
|
+
{
|
1718
|
+
"internalType": "bytes",
|
1719
|
+
"name": "data",
|
1720
|
+
"type": "bytes"
|
1721
|
+
}
|
1722
|
+
],
|
1723
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
1724
|
+
"name": "info",
|
1725
|
+
"type": "tuple"
|
1726
|
+
}
|
1727
|
+
],
|
1728
|
+
"stateMutability": "view",
|
1729
|
+
"type": "function"
|
1730
|
+
},
|
1731
|
+
{
|
1732
|
+
"inputs": [],
|
1733
|
+
"name": "getName",
|
1734
|
+
"outputs": [
|
1735
|
+
{
|
1736
|
+
"internalType": "string",
|
1737
|
+
"name": "name",
|
1738
|
+
"type": "string"
|
1739
|
+
}
|
1740
|
+
],
|
1741
|
+
"stateMutability": "view",
|
1742
|
+
"type": "function"
|
1743
|
+
},
|
1744
|
+
{
|
1745
|
+
"inputs": [],
|
1746
|
+
"name": "getNftId",
|
1747
|
+
"outputs": [
|
1748
|
+
{
|
1749
|
+
"internalType": "NftId",
|
1750
|
+
"name": "",
|
1751
|
+
"type": "uint96"
|
1752
|
+
}
|
1753
|
+
],
|
1754
|
+
"stateMutability": "view",
|
1755
|
+
"type": "function"
|
1756
|
+
},
|
1757
|
+
{
|
1758
|
+
"inputs": [],
|
1759
|
+
"name": "getOwner",
|
1760
|
+
"outputs": [
|
1761
|
+
{
|
1762
|
+
"internalType": "address",
|
1763
|
+
"name": "",
|
1764
|
+
"type": "address"
|
1765
|
+
}
|
1766
|
+
],
|
1767
|
+
"stateMutability": "view",
|
1768
|
+
"type": "function"
|
1769
|
+
},
|
1770
|
+
{
|
1771
|
+
"inputs": [],
|
1772
|
+
"name": "getRegistry",
|
1773
|
+
"outputs": [
|
1774
|
+
{
|
1775
|
+
"internalType": "contract IRegistry",
|
1776
|
+
"name": "",
|
1777
|
+
"type": "address"
|
1778
|
+
}
|
1779
|
+
],
|
1780
|
+
"stateMutability": "view",
|
1781
|
+
"type": "function"
|
1782
|
+
},
|
1783
|
+
{
|
1784
|
+
"inputs": [],
|
1785
|
+
"name": "getRelease",
|
1786
|
+
"outputs": [
|
1787
|
+
{
|
1788
|
+
"internalType": "VersionPart",
|
1789
|
+
"name": "",
|
1790
|
+
"type": "uint8"
|
1791
|
+
}
|
1792
|
+
],
|
1793
|
+
"stateMutability": "pure",
|
1794
|
+
"type": "function"
|
1795
|
+
},
|
1796
|
+
{
|
1797
|
+
"inputs": [],
|
1798
|
+
"name": "getStakingReader",
|
1799
|
+
"outputs": [
|
1800
|
+
{
|
1801
|
+
"internalType": "contract StakingReader",
|
1802
|
+
"name": "reader",
|
1803
|
+
"type": "address"
|
1804
|
+
}
|
1805
|
+
],
|
1806
|
+
"stateMutability": "view",
|
1807
|
+
"type": "function"
|
1808
|
+
},
|
1809
|
+
{
|
1810
|
+
"inputs": [],
|
1811
|
+
"name": "getStakingStore",
|
1812
|
+
"outputs": [
|
1813
|
+
{
|
1814
|
+
"internalType": "contract StakingStore",
|
1815
|
+
"name": "stakingStore",
|
1816
|
+
"type": "address"
|
1817
|
+
}
|
1818
|
+
],
|
1819
|
+
"stateMutability": "view",
|
1820
|
+
"type": "function"
|
1821
|
+
},
|
1822
|
+
{
|
1823
|
+
"inputs": [],
|
1824
|
+
"name": "getToken",
|
1825
|
+
"outputs": [
|
1826
|
+
{
|
1827
|
+
"internalType": "contract IERC20Metadata",
|
1828
|
+
"name": "token",
|
1829
|
+
"type": "address"
|
1830
|
+
}
|
1831
|
+
],
|
1832
|
+
"stateMutability": "view",
|
1833
|
+
"type": "function"
|
1834
|
+
},
|
1835
|
+
{
|
1836
|
+
"inputs": [],
|
1837
|
+
"name": "getTokenHandler",
|
1838
|
+
"outputs": [
|
1839
|
+
{
|
1840
|
+
"internalType": "contract TokenHandler",
|
1841
|
+
"name": "tokenHandler",
|
1842
|
+
"type": "address"
|
1843
|
+
}
|
1844
|
+
],
|
1845
|
+
"stateMutability": "view",
|
1846
|
+
"type": "function"
|
1847
|
+
},
|
1848
|
+
{
|
1849
|
+
"inputs": [],
|
1850
|
+
"name": "getTokenRegistryAddress",
|
1851
|
+
"outputs": [
|
1852
|
+
{
|
1853
|
+
"internalType": "address",
|
1854
|
+
"name": "tokenRegistry",
|
1855
|
+
"type": "address"
|
1856
|
+
}
|
1857
|
+
],
|
1858
|
+
"stateMutability": "view",
|
1859
|
+
"type": "function"
|
1860
|
+
},
|
1861
|
+
{
|
1862
|
+
"inputs": [],
|
1863
|
+
"name": "getVersion",
|
1864
|
+
"outputs": [
|
1865
|
+
{
|
1866
|
+
"internalType": "Version",
|
1867
|
+
"name": "",
|
1868
|
+
"type": "uint24"
|
1869
|
+
}
|
1870
|
+
],
|
1871
|
+
"stateMutability": "pure",
|
1872
|
+
"type": "function"
|
1873
|
+
},
|
1874
|
+
{
|
1875
|
+
"inputs": [],
|
1876
|
+
"name": "getWallet",
|
1877
|
+
"outputs": [
|
1878
|
+
{
|
1879
|
+
"internalType": "address",
|
1880
|
+
"name": "walletAddress",
|
1881
|
+
"type": "address"
|
1882
|
+
}
|
1883
|
+
],
|
1884
|
+
"stateMutability": "view",
|
1885
|
+
"type": "function"
|
1886
|
+
},
|
1887
|
+
{
|
1888
|
+
"inputs": [
|
1889
|
+
{
|
1890
|
+
"internalType": "NftId",
|
1891
|
+
"name": "targetNftId",
|
1892
|
+
"type": "uint96"
|
1893
|
+
},
|
1894
|
+
{
|
1895
|
+
"internalType": "address",
|
1896
|
+
"name": "token",
|
1897
|
+
"type": "address"
|
1898
|
+
},
|
1899
|
+
{
|
1900
|
+
"internalType": "Amount",
|
1901
|
+
"name": "amount",
|
1902
|
+
"type": "uint96"
|
1903
|
+
}
|
1904
|
+
],
|
1905
|
+
"name": "increaseTotalValueLocked",
|
1906
|
+
"outputs": [
|
1907
|
+
{
|
1908
|
+
"internalType": "Amount",
|
1909
|
+
"name": "newBalance",
|
1910
|
+
"type": "uint96"
|
1911
|
+
}
|
1912
|
+
],
|
1913
|
+
"stateMutability": "nonpayable",
|
1914
|
+
"type": "function"
|
1915
|
+
},
|
1916
|
+
{
|
1917
|
+
"inputs": [],
|
1918
|
+
"name": "initializeTokenHandler",
|
1919
|
+
"outputs": [],
|
1920
|
+
"stateMutability": "nonpayable",
|
1921
|
+
"type": "function"
|
1922
|
+
},
|
1923
|
+
{
|
1924
|
+
"inputs": [
|
1925
|
+
{
|
1926
|
+
"internalType": "address",
|
1927
|
+
"name": "activatedBy",
|
1928
|
+
"type": "address"
|
1929
|
+
},
|
1930
|
+
{
|
1931
|
+
"internalType": "bytes",
|
1932
|
+
"name": "data",
|
1933
|
+
"type": "bytes"
|
1934
|
+
}
|
1935
|
+
],
|
1936
|
+
"name": "initializeVersionable",
|
1937
|
+
"outputs": [],
|
1938
|
+
"stateMutability": "nonpayable",
|
1939
|
+
"type": "function"
|
1940
|
+
},
|
1941
|
+
{
|
1942
|
+
"inputs": [],
|
1943
|
+
"name": "isActive",
|
1944
|
+
"outputs": [
|
1945
|
+
{
|
1946
|
+
"internalType": "bool",
|
1947
|
+
"name": "active",
|
1948
|
+
"type": "bool"
|
1949
|
+
}
|
1950
|
+
],
|
1951
|
+
"stateMutability": "view",
|
1952
|
+
"type": "function"
|
1953
|
+
},
|
1954
|
+
{
|
1955
|
+
"inputs": [],
|
1956
|
+
"name": "isConsumingScheduledOp",
|
1957
|
+
"outputs": [
|
1958
|
+
{
|
1959
|
+
"internalType": "bytes4",
|
1960
|
+
"name": "",
|
1961
|
+
"type": "bytes4"
|
1962
|
+
}
|
1963
|
+
],
|
1964
|
+
"stateMutability": "view",
|
1965
|
+
"type": "function"
|
1966
|
+
},
|
1967
|
+
{
|
1968
|
+
"inputs": [],
|
1969
|
+
"name": "isNftInterceptor",
|
1970
|
+
"outputs": [
|
1971
|
+
{
|
1972
|
+
"internalType": "bool",
|
1973
|
+
"name": "isInterceptor",
|
1974
|
+
"type": "bool"
|
1975
|
+
}
|
1976
|
+
],
|
1977
|
+
"stateMutability": "view",
|
1978
|
+
"type": "function"
|
1979
|
+
},
|
1980
|
+
{
|
1981
|
+
"inputs": [],
|
1982
|
+
"name": "isRegistered",
|
1983
|
+
"outputs": [
|
1984
|
+
{
|
1985
|
+
"internalType": "bool",
|
1986
|
+
"name": "",
|
1987
|
+
"type": "bool"
|
1988
|
+
}
|
1989
|
+
],
|
1990
|
+
"stateMutability": "view",
|
1991
|
+
"type": "function"
|
1992
|
+
},
|
1993
|
+
{
|
1994
|
+
"inputs": [],
|
1995
|
+
"name": "linkToRegisteredNftId",
|
1996
|
+
"outputs": [
|
1997
|
+
{
|
1998
|
+
"internalType": "NftId",
|
1999
|
+
"name": "nftId",
|
2000
|
+
"type": "uint96"
|
2001
|
+
}
|
2002
|
+
],
|
2003
|
+
"stateMutability": "nonpayable",
|
2004
|
+
"type": "function"
|
2005
|
+
},
|
2006
|
+
{
|
2007
|
+
"inputs": [
|
2008
|
+
{
|
2009
|
+
"internalType": "address",
|
2010
|
+
"name": "from",
|
2011
|
+
"type": "address"
|
2012
|
+
},
|
2013
|
+
{
|
2014
|
+
"internalType": "address",
|
2015
|
+
"name": "to",
|
2016
|
+
"type": "address"
|
2017
|
+
},
|
2018
|
+
{
|
2019
|
+
"internalType": "uint256",
|
2020
|
+
"name": "tokenId",
|
2021
|
+
"type": "uint256"
|
2022
|
+
},
|
2023
|
+
{
|
2024
|
+
"internalType": "address",
|
2025
|
+
"name": "operator",
|
2026
|
+
"type": "address"
|
2027
|
+
}
|
2028
|
+
],
|
2029
|
+
"name": "nftTransferFrom",
|
2030
|
+
"outputs": [],
|
2031
|
+
"stateMutability": "nonpayable",
|
2032
|
+
"type": "function"
|
2033
|
+
},
|
2034
|
+
{
|
2035
|
+
"inputs": [
|
2036
|
+
{
|
2037
|
+
"internalType": "NftId",
|
2038
|
+
"name": "targetNftId",
|
2039
|
+
"type": "uint96"
|
2040
|
+
},
|
2041
|
+
{
|
2042
|
+
"internalType": "Amount",
|
2043
|
+
"name": "dipAmount",
|
2044
|
+
"type": "uint96"
|
2045
|
+
}
|
2046
|
+
],
|
2047
|
+
"name": "refillRewardReserves",
|
2048
|
+
"outputs": [
|
2049
|
+
{
|
2050
|
+
"internalType": "Amount",
|
2051
|
+
"name": "newBalance",
|
2052
|
+
"type": "uint96"
|
2053
|
+
}
|
2054
|
+
],
|
2055
|
+
"stateMutability": "nonpayable",
|
2056
|
+
"type": "function"
|
2057
|
+
},
|
2058
|
+
{
|
2059
|
+
"inputs": [
|
2060
|
+
{
|
2061
|
+
"internalType": "NftId",
|
2062
|
+
"name": "targetNftId",
|
2063
|
+
"type": "uint96"
|
2064
|
+
},
|
2065
|
+
{
|
2066
|
+
"internalType": "Amount",
|
2067
|
+
"name": "dipAmount",
|
2068
|
+
"type": "uint96"
|
2069
|
+
},
|
2070
|
+
{
|
2071
|
+
"internalType": "address",
|
2072
|
+
"name": "transferFrom",
|
2073
|
+
"type": "address"
|
2074
|
+
}
|
2075
|
+
],
|
2076
|
+
"name": "refillRewardReservesByService",
|
2077
|
+
"outputs": [
|
2078
|
+
{
|
2079
|
+
"internalType": "Amount",
|
2080
|
+
"name": "newBalance",
|
2081
|
+
"type": "uint96"
|
2082
|
+
}
|
2083
|
+
],
|
2084
|
+
"stateMutability": "nonpayable",
|
2085
|
+
"type": "function"
|
2086
|
+
},
|
2087
|
+
{
|
2088
|
+
"inputs": [
|
2089
|
+
{
|
2090
|
+
"internalType": "NftId",
|
2091
|
+
"name": "targetNftId",
|
2092
|
+
"type": "uint96"
|
2093
|
+
},
|
2094
|
+
{
|
2095
|
+
"components": [
|
2096
|
+
{
|
2097
|
+
"internalType": "Amount",
|
2098
|
+
"name": "stakedAmount",
|
2099
|
+
"type": "uint96"
|
2100
|
+
},
|
2101
|
+
{
|
2102
|
+
"internalType": "Amount",
|
2103
|
+
"name": "rewardAmount",
|
2104
|
+
"type": "uint96"
|
2105
|
+
},
|
2106
|
+
{
|
2107
|
+
"internalType": "Blocknumber",
|
2108
|
+
"name": "lastUpdateIn",
|
2109
|
+
"type": "uint40"
|
2110
|
+
},
|
2111
|
+
{
|
2112
|
+
"internalType": "Amount",
|
2113
|
+
"name": "reserveAmount",
|
2114
|
+
"type": "uint96"
|
2115
|
+
},
|
2116
|
+
{
|
2117
|
+
"internalType": "Amount",
|
2118
|
+
"name": "maxStakedAmount",
|
2119
|
+
"type": "uint96"
|
2120
|
+
},
|
2121
|
+
{
|
2122
|
+
"internalType": "Seconds",
|
2123
|
+
"name": "lockingPeriod",
|
2124
|
+
"type": "uint40"
|
2125
|
+
},
|
2126
|
+
{
|
2127
|
+
"internalType": "ObjectType",
|
2128
|
+
"name": "objectType",
|
2129
|
+
"type": "uint8"
|
2130
|
+
},
|
2131
|
+
{
|
2132
|
+
"internalType": "UFixed",
|
2133
|
+
"name": "rewardRate",
|
2134
|
+
"type": "uint160"
|
2135
|
+
},
|
2136
|
+
{
|
2137
|
+
"internalType": "ChainId",
|
2138
|
+
"name": "chainId",
|
2139
|
+
"type": "uint96"
|
2140
|
+
}
|
2141
|
+
],
|
2142
|
+
"internalType": "struct IStaking.TargetInfo",
|
2143
|
+
"name": "targetInfo",
|
2144
|
+
"type": "tuple"
|
2145
|
+
}
|
2146
|
+
],
|
2147
|
+
"name": "registerRemoteTarget",
|
2148
|
+
"outputs": [],
|
2149
|
+
"stateMutability": "nonpayable",
|
2150
|
+
"type": "function"
|
2151
|
+
},
|
2152
|
+
{
|
2153
|
+
"inputs": [
|
2154
|
+
{
|
2155
|
+
"internalType": "NftId",
|
2156
|
+
"name": "targetNftId",
|
2157
|
+
"type": "uint96"
|
2158
|
+
},
|
2159
|
+
{
|
2160
|
+
"internalType": "ObjectType",
|
2161
|
+
"name": "expectedObjectType",
|
2162
|
+
"type": "uint8"
|
2163
|
+
},
|
2164
|
+
{
|
2165
|
+
"internalType": "Seconds",
|
2166
|
+
"name": "initialLockingPeriod",
|
2167
|
+
"type": "uint40"
|
2168
|
+
},
|
2169
|
+
{
|
2170
|
+
"internalType": "UFixed",
|
2171
|
+
"name": "initialRewardRate",
|
2172
|
+
"type": "uint160"
|
2173
|
+
}
|
2174
|
+
],
|
2175
|
+
"name": "registerTarget",
|
2176
|
+
"outputs": [],
|
2177
|
+
"stateMutability": "nonpayable",
|
2178
|
+
"type": "function"
|
2179
|
+
},
|
2180
|
+
{
|
2181
|
+
"inputs": [
|
2182
|
+
{
|
2183
|
+
"internalType": "NftId",
|
2184
|
+
"name": "stakeNftId",
|
2185
|
+
"type": "uint96"
|
2186
|
+
},
|
2187
|
+
{
|
2188
|
+
"internalType": "NftId",
|
2189
|
+
"name": "newTargetNftId",
|
2190
|
+
"type": "uint96"
|
2191
|
+
}
|
2192
|
+
],
|
2193
|
+
"name": "restake",
|
2194
|
+
"outputs": [
|
2195
|
+
{
|
2196
|
+
"internalType": "NftId",
|
2197
|
+
"name": "newStakeNftId",
|
2198
|
+
"type": "uint96"
|
2199
|
+
},
|
2200
|
+
{
|
2201
|
+
"internalType": "Amount",
|
2202
|
+
"name": "newStakedAmount",
|
2203
|
+
"type": "uint96"
|
2204
|
+
}
|
2205
|
+
],
|
2206
|
+
"stateMutability": "nonpayable",
|
2207
|
+
"type": "function"
|
2208
|
+
},
|
2209
|
+
{
|
2210
|
+
"inputs": [
|
2211
|
+
{
|
2212
|
+
"internalType": "address",
|
2213
|
+
"name": "newAuthority",
|
2214
|
+
"type": "address"
|
2215
|
+
}
|
2216
|
+
],
|
2217
|
+
"name": "setAuthority",
|
2218
|
+
"outputs": [],
|
2219
|
+
"stateMutability": "nonpayable",
|
2220
|
+
"type": "function"
|
2221
|
+
},
|
2222
|
+
{
|
2223
|
+
"inputs": [
|
2224
|
+
{
|
2225
|
+
"internalType": "NftId",
|
2226
|
+
"name": "targetNftId",
|
2227
|
+
"type": "uint96"
|
2228
|
+
},
|
2229
|
+
{
|
2230
|
+
"internalType": "Seconds",
|
2231
|
+
"name": "lockingPeriod",
|
2232
|
+
"type": "uint40"
|
2233
|
+
}
|
2234
|
+
],
|
2235
|
+
"name": "setLockingPeriod",
|
2236
|
+
"outputs": [],
|
2237
|
+
"stateMutability": "nonpayable",
|
2238
|
+
"type": "function"
|
2239
|
+
},
|
2240
|
+
{
|
2241
|
+
"inputs": [
|
2242
|
+
{
|
2243
|
+
"internalType": "NftId",
|
2244
|
+
"name": "targetNftId",
|
2245
|
+
"type": "uint96"
|
2246
|
+
},
|
2247
|
+
{
|
2248
|
+
"internalType": "Amount",
|
2249
|
+
"name": "maxStakedAmount",
|
2250
|
+
"type": "uint96"
|
2251
|
+
}
|
2252
|
+
],
|
2253
|
+
"name": "setMaxStakedAmount",
|
2254
|
+
"outputs": [],
|
2255
|
+
"stateMutability": "nonpayable",
|
2256
|
+
"type": "function"
|
2257
|
+
},
|
2258
|
+
{
|
2259
|
+
"inputs": [
|
2260
|
+
{
|
2261
|
+
"internalType": "Seconds",
|
2262
|
+
"name": "newLockingPeriod",
|
2263
|
+
"type": "uint40"
|
2264
|
+
}
|
2265
|
+
],
|
2266
|
+
"name": "setProtocolLockingPeriod",
|
2267
|
+
"outputs": [],
|
2268
|
+
"stateMutability": "nonpayable",
|
2269
|
+
"type": "function"
|
2270
|
+
},
|
2271
|
+
{
|
2272
|
+
"inputs": [
|
2273
|
+
{
|
2274
|
+
"internalType": "UFixed",
|
2275
|
+
"name": "newRewardRate",
|
2276
|
+
"type": "uint160"
|
2277
|
+
}
|
2278
|
+
],
|
2279
|
+
"name": "setProtocolRewardRate",
|
2280
|
+
"outputs": [],
|
2281
|
+
"stateMutability": "nonpayable",
|
2282
|
+
"type": "function"
|
2283
|
+
},
|
2284
|
+
{
|
2285
|
+
"inputs": [
|
2286
|
+
{
|
2287
|
+
"internalType": "NftId",
|
2288
|
+
"name": "targetNftId",
|
2289
|
+
"type": "uint96"
|
2290
|
+
},
|
2291
|
+
{
|
2292
|
+
"internalType": "UFixed",
|
2293
|
+
"name": "rewardRate",
|
2294
|
+
"type": "uint160"
|
2295
|
+
}
|
2296
|
+
],
|
2297
|
+
"name": "setRewardRate",
|
2298
|
+
"outputs": [],
|
2299
|
+
"stateMutability": "nonpayable",
|
2300
|
+
"type": "function"
|
2301
|
+
},
|
2302
|
+
{
|
2303
|
+
"inputs": [
|
2304
|
+
{
|
2305
|
+
"internalType": "ChainId",
|
2306
|
+
"name": "chainId",
|
2307
|
+
"type": "uint96"
|
2308
|
+
},
|
2309
|
+
{
|
2310
|
+
"internalType": "address",
|
2311
|
+
"name": "token",
|
2312
|
+
"type": "address"
|
2313
|
+
},
|
2314
|
+
{
|
2315
|
+
"internalType": "UFixed",
|
2316
|
+
"name": "stakingRate",
|
2317
|
+
"type": "uint160"
|
2318
|
+
}
|
2319
|
+
],
|
2320
|
+
"name": "setStakingRate",
|
2321
|
+
"outputs": [],
|
2322
|
+
"stateMutability": "nonpayable",
|
2323
|
+
"type": "function"
|
2324
|
+
},
|
2325
|
+
{
|
2326
|
+
"inputs": [
|
2327
|
+
{
|
2328
|
+
"internalType": "contract StakingReader",
|
2329
|
+
"name": "stakingReader",
|
2330
|
+
"type": "address"
|
2331
|
+
}
|
2332
|
+
],
|
2333
|
+
"name": "setStakingReader",
|
2334
|
+
"outputs": [],
|
2335
|
+
"stateMutability": "nonpayable",
|
2336
|
+
"type": "function"
|
2337
|
+
},
|
2338
|
+
{
|
2339
|
+
"inputs": [
|
2340
|
+
{
|
2341
|
+
"internalType": "VersionPart",
|
2342
|
+
"name": "release",
|
2343
|
+
"type": "uint8"
|
2344
|
+
}
|
2345
|
+
],
|
2346
|
+
"name": "setStakingService",
|
2347
|
+
"outputs": [],
|
2348
|
+
"stateMutability": "nonpayable",
|
2349
|
+
"type": "function"
|
2350
|
+
},
|
2351
|
+
{
|
2352
|
+
"inputs": [
|
2353
|
+
{
|
2354
|
+
"internalType": "NftId",
|
2355
|
+
"name": "stakeNftId",
|
2356
|
+
"type": "uint96"
|
2357
|
+
},
|
2358
|
+
{
|
2359
|
+
"internalType": "Amount",
|
2360
|
+
"name": "stakeAmount",
|
2361
|
+
"type": "uint96"
|
2362
|
+
}
|
2363
|
+
],
|
2364
|
+
"name": "stake",
|
2365
|
+
"outputs": [
|
2366
|
+
{
|
2367
|
+
"internalType": "Amount",
|
2368
|
+
"name": "newStakeBalance",
|
2369
|
+
"type": "uint96"
|
2370
|
+
}
|
2371
|
+
],
|
2372
|
+
"stateMutability": "nonpayable",
|
2373
|
+
"type": "function"
|
2374
|
+
},
|
2375
|
+
{
|
2376
|
+
"inputs": [
|
2377
|
+
{
|
2378
|
+
"internalType": "bytes4",
|
2379
|
+
"name": "interfaceId",
|
2380
|
+
"type": "bytes4"
|
2381
|
+
}
|
2382
|
+
],
|
2383
|
+
"name": "supportsInterface",
|
2384
|
+
"outputs": [
|
2385
|
+
{
|
2386
|
+
"internalType": "bool",
|
2387
|
+
"name": "",
|
2388
|
+
"type": "bool"
|
2389
|
+
}
|
2390
|
+
],
|
2391
|
+
"stateMutability": "view",
|
2392
|
+
"type": "function"
|
2393
|
+
},
|
2394
|
+
{
|
2395
|
+
"inputs": [
|
2396
|
+
{
|
2397
|
+
"internalType": "NftId",
|
2398
|
+
"name": "stakeNftId",
|
2399
|
+
"type": "uint96"
|
2400
|
+
}
|
2401
|
+
],
|
2402
|
+
"name": "unstake",
|
2403
|
+
"outputs": [
|
2404
|
+
{
|
2405
|
+
"internalType": "Amount",
|
2406
|
+
"name": "unstakedAmount",
|
2407
|
+
"type": "uint96"
|
2408
|
+
}
|
2409
|
+
],
|
2410
|
+
"stateMutability": "nonpayable",
|
2411
|
+
"type": "function"
|
2412
|
+
},
|
2413
|
+
{
|
2414
|
+
"inputs": [
|
2415
|
+
{
|
2416
|
+
"internalType": "NftId",
|
2417
|
+
"name": "targetNftId",
|
2418
|
+
"type": "uint96"
|
2419
|
+
},
|
2420
|
+
{
|
2421
|
+
"internalType": "address",
|
2422
|
+
"name": "token",
|
2423
|
+
"type": "address"
|
2424
|
+
},
|
2425
|
+
{
|
2426
|
+
"internalType": "Amount",
|
2427
|
+
"name": "amount",
|
2428
|
+
"type": "uint96"
|
2429
|
+
}
|
2430
|
+
],
|
2431
|
+
"name": "updateRemoteTvl",
|
2432
|
+
"outputs": [],
|
2433
|
+
"stateMutability": "nonpayable",
|
2434
|
+
"type": "function"
|
2435
|
+
},
|
2436
|
+
{
|
2437
|
+
"inputs": [
|
2438
|
+
{
|
2439
|
+
"internalType": "NftId",
|
2440
|
+
"name": "stakeNftId",
|
2441
|
+
"type": "uint96"
|
2442
|
+
}
|
2443
|
+
],
|
2444
|
+
"name": "updateRewards",
|
2445
|
+
"outputs": [
|
2446
|
+
{
|
2447
|
+
"internalType": "Amount",
|
2448
|
+
"name": "newRewardAmount",
|
2449
|
+
"type": "uint96"
|
2450
|
+
}
|
2451
|
+
],
|
2452
|
+
"stateMutability": "nonpayable",
|
2453
|
+
"type": "function"
|
2454
|
+
},
|
2455
|
+
{
|
2456
|
+
"inputs": [
|
2457
|
+
{
|
2458
|
+
"internalType": "bytes",
|
2459
|
+
"name": "data",
|
2460
|
+
"type": "bytes"
|
2461
|
+
}
|
2462
|
+
],
|
2463
|
+
"name": "upgradeVersionable",
|
2464
|
+
"outputs": [],
|
2465
|
+
"stateMutability": "nonpayable",
|
2466
|
+
"type": "function"
|
2467
|
+
},
|
2468
|
+
{
|
2469
|
+
"inputs": [
|
2470
|
+
{
|
2471
|
+
"internalType": "NftId",
|
2472
|
+
"name": "targetNftId",
|
2473
|
+
"type": "uint96"
|
2474
|
+
},
|
2475
|
+
{
|
2476
|
+
"internalType": "Amount",
|
2477
|
+
"name": "dipAmount",
|
2478
|
+
"type": "uint96"
|
2479
|
+
}
|
2480
|
+
],
|
2481
|
+
"name": "withdrawRewardReserves",
|
2482
|
+
"outputs": [
|
2483
|
+
{
|
2484
|
+
"internalType": "Amount",
|
2485
|
+
"name": "newBalance",
|
2486
|
+
"type": "uint96"
|
2487
|
+
}
|
2488
|
+
],
|
2489
|
+
"stateMutability": "nonpayable",
|
2490
|
+
"type": "function"
|
2491
|
+
},
|
2492
|
+
{
|
2493
|
+
"inputs": [
|
2494
|
+
{
|
2495
|
+
"internalType": "NftId",
|
2496
|
+
"name": "targetNftId",
|
2497
|
+
"type": "uint96"
|
2498
|
+
},
|
2499
|
+
{
|
2500
|
+
"internalType": "Amount",
|
2501
|
+
"name": "dipAmount",
|
2502
|
+
"type": "uint96"
|
2503
|
+
},
|
2504
|
+
{
|
2505
|
+
"internalType": "address",
|
2506
|
+
"name": "transferTo",
|
2507
|
+
"type": "address"
|
2508
|
+
}
|
2509
|
+
],
|
2510
|
+
"name": "withdrawRewardReservesByService",
|
2511
|
+
"outputs": [
|
2512
|
+
{
|
2513
|
+
"internalType": "Amount",
|
2514
|
+
"name": "newBalance",
|
2515
|
+
"type": "uint96"
|
2516
|
+
}
|
2517
|
+
],
|
2518
|
+
"stateMutability": "nonpayable",
|
2519
|
+
"type": "function"
|
2520
|
+
}
|
2521
|
+
],
|
2522
|
+
"bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6159d6806100d65f395ff3fe608060405234801561000f575f80fd5b506004361061037d575f3560e01c80636c1e9dff116101d4578063b283765d11610109578063d43a2623116100a9578063e8ce883d11610079578063e8ce883d146107df578063ea15869f146107f2578063ea48ce9b14610819578063ec0407d91461082c575f80fd5b8063d43a262314610793578063d44f8a4b146107a6578063de0eb85f146107b9578063dea4ccf2146107cc575f80fd5b8063bf7e214f116100e4578063bf7e214f1461075d578063c813d79114610765578063caed989714610778578063cdf73d5014610780575f80fd5b8063b283765d1461072f578063b423086c14610742578063b47f48881461074a575f80fd5b80638fb3603711610174578063a6bc7cb81161014f578063a6bc7cb8146106e2578063a71bfbb7146106f5578063ad12ad6014610708578063ada9652e1461071b575f80fd5b80638fb360371461069957806390edbd35146106ba578063958697a0146106cf575f80fd5b806376b707b7116101af57806376b707b71461065c5780637a9e5e4b1461067657806386c7575414610689578063893d20e814610691575f80fd5b80636c1e9dff146106235780636d387fe414610636578063719f761a14610649575f80fd5b806322f3e2d4116102b55780635741e5e9116102555780635fd1efec116102255780635fd1efec146105c5578063614d08f8146105d85780636291423a146105fe578063644c45e014610606575f80fd5b80635741e5e9146105665780635ab1bd531461056e5780635cbb7d851461057f5780635ecf260f146105b2575f80fd5b8063419197fe11610290578063419197fe1461052557806343d752d31461053857806344dcf7301461054057806349bb9e4b14610553575f80fd5b806322f3e2d4146104f75780632391b052146104ff578063329d6e7414610512575f80fd5b806313299604116103205780631eff4b22116102fb5780631eff4b22146104ad57806321df0da7146104d457806322366844146104dc57806322e16406146104e4575f80fd5b80631329960414610470578063138461e01461049057806317d7de7c14610498575f80fd5b806309980bfd1161035b57806309980bfd1461040c5780630d8e6e2c146104145780630fec111c1461043057806310a0638a14610445575f80fd5b806301ffc9a7146103815780630345861d146103c2578063062c9cdf146103d7575b5f80fd5b6103ad61038f366004614bcc565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6103d56103d0366004614c36565b61083f565b005b6103fe7fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0081565b6040519081526020016103b9565b6103d5610917565b61041c610b0d565b60405162ffffff90911681526020016103b9565b610438610b94565b6040516103b99190614c9b565b610458610453366004614d2f565b610d4e565b6040516001600160601b0390911681526020016103b9565b610478610ddb565b6040516001600160a01b0390911681526020016103b9565b610458610e43565b6104a0610e4d565b6040516103b99190614d4a565b6103fe7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b610478610e5d565b6103ad610ea1565b6103d56104f2366004614c36565b610f97565b6103ad610ff1565b61045861050d366004614d5c565b611068565b6103d5610520366004614eab565b61125f565b6103d5610533366004614edc565b6113bd565b6104786115bd565b6103d561054e366004614f3e565b6115d8565b6103d5610561366004614f97565b61170a565b6103ad611818565b6001546001600160a01b0316610478565b61059261058d366004614fe3565b6118ce565b604080516001600160601b039384168152929091166020830152016103b9565b6103d56105c0366004614fff565b611bf0565b6103d56105d336600461502b565b611ce4565b6104a0604051806040016040528060078152602001665374616b696e6760c81b81525081565b610478611ea4565b5f80516020615961833981519152546001600160601b0316610458565b610458610631366004614fe3565b611ebf565b6103d5610644366004614fe3565b61215b565b610458610657366004614d2f565b612236565b6106646124d3565b60405160ff90911681526020016103b9565b6103d561068436600461502b565b612547565b6104786125c9565b6104786125e4565b6106a1612715565b6040516001600160e01b031990911681526020016103b9565b6106c261274a565b6040516103b99190615046565b6103d56106dd366004615094565b61276f565b6103d56106f03660046150d1565b6127b8565b6103d5610703366004614c36565b6128f3565b6103d56107163660046150fe565b612a52565b6103fe5f8051602061596183398151915281565b6103d561073d36600461502b565b612af5565b6106c2612c3c565b6103d5610758366004615143565b612c4c565b610478612d99565b6103d561077336600461515e565b612db4565b610478612df8565b6103d561078e36600461523d565b612e10565b6104586107a1366004614d5c565b612f6e565b6104586107b4366004615094565b612f8f565b6104586107c7366004614fe3565b613072565b6104586107da366004614d2f565b61309d565b6104586107ed366004614fe3565b613196565b6103fe7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b610458610827366004615094565b6133f2565b61045861083a366004614d5c565b6134c5565b61084b335b5f366135be565b8161085981601f5b5f6136bc565b5f610862613950565b60030154604051630345861d60e01b81526001600160a01b0390911690630345861d906108959087908790600401615258565b60408051808303815f875af11580156108b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108d49190615290565b5090507ec60e9fa0b11ba4353f1efa957e6380e75820bcf5afd13713f0c7c268b18a5b848483604051610909939291906152bd565b60405180910390a150505050565b6001546001600160a01b0316331461094957604051632a6e1a8960e01b81523360048201526024015b60405180910390fd5b5f610952613950565b90505f61095d613950565b546040805163b201f70960e01b815290516001600160a01b039092169163b201f709916004808201926020929091908290030181865afa1580156109a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c791906152e7565b905073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d6109f56001546001600160a01b031690565b3084610a096001546001600160a01b031690565b6001600160a01b031663e2b178a06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a44573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a6891906152e7565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af4158015610ac2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae691906152e7565b60019290920180546001600160a01b0319166001600160a01b039093169290921790915550565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610b6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b8f9190615302565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c64919061532f565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610cac6125e4565b6001600160a01b03168152602001826001018054610cc99061534a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf59061534a565b8015610d405780601f10610d1757610100808354040283529160200191610d40565b820191905f5260205f20905b815481529060010190602001808311610d2357829003601f168201915b505050505081525091505090565b5f610d5833610844565b81610d6781601e5b60016136bc565b5f610d70613950565b600381015460405163085031c560e11b81526001600160601b03871660048201529192506001600160a01b0316906310a0638a906024015f604051808303815f87803b158015610dbe575f80fd5b505af1158015610dd0573d5f803e3d5ffd5b505050505050919050565b5f610de46115bd565b6001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e1f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b8f91906152e7565b5f610b8f30613974565b6060610e5761274a565b51919050565b5f610e666115bd565b6001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e1f573d5f803e3d5ffd5b5f610eb46001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610ef8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f1c919061532f565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610f73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b8f9190615391565b610fa033610844565b610fa86125e4565b6001600160a01b0316336001600160a01b031614610fdb5760405163086391f760e31b8152336004820152602401610940565b610fed610fe6613950565b8383613bb6565b5050565b5f610ffa612d99565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa15801561103e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110629190615391565b15905090565b5f61107233610844565b8361107e81601f610853565b5f611087613950565b6002810154604051627c1b7d60e71b81529192506001600160a01b031690633e0dbe80906110bb9089908890600401615258565b6020604051808303815f875af11580156110d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110fb919061532f565b60038201546040516351486e7d60e01b81529194506001600160a01b0316906351486e7d906111349086908a9089908b906004016153aa565b6020604051808303815f875af1158015611150573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061117491906153de565b506040516330b8415f60e01b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156111cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ef9190615391565b1561125657600281015460405163f71c4cef60e01b81526001600160a01b039091169063f71c4cef906112289088908890600401615258565b5f604051808303815f87803b15801561123f575f80fd5b505af1158015611251573d5f803e3d5ffd5b505050505b50509392505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c611281610b0d565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156112bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112e391906153f9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b900460ff1680611328575080546001600160401b03808416911610155b156113465760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561137083613d07565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a1505050565b6113c633610844565b6113ce6125e4565b6001600160a01b0316336001600160a01b0316146114015760405163086391f760e31b8152336004820152602401610940565b5f61140a613950565b6001810154604051636eb1769f60e11b81523060048201526001600160a01b0391821660248201529192505f9173__$3bac17678db7ae928afa209f2f44deec9c$__91634c41dd96919087169063dd62ed3e90604401602060405180830381865afa15801561147b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061149f919061541f565b6040518263ffffffff1660e01b81526004016114bd91815260200190565b602060405180830381865af41580156114d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114fc919061532f565b60028301546040516320c8cbff60e11b81526001600160a01b0387811660048301526001600160601b038716602483015292935091169063419197fe906044015f604051808303815f87803b158015611553575f80fd5b505af1158015611565573d5f803e3d5ffd5b5050604080516001600160a01b03881681526001600160601b0380881660208301528516918101919091527fd04c7a08e8de83264477350e162e0d3e26406e3eaf786d06d976ea7f229d5c4e92506060019050610909565b5f6115c6613950565b600101546001600160a01b0316919050565b6115e133610844565b6115e9613950565b60030154604051639a148b7f60e01b81526001600160601b038616600482015260ff8516602482015264ffffffffff841660448201526001600160a01b03838116606483015290911690639a148b7f906084015f604051808303815f87803b158015611653575f80fd5b505af1158015611665573d5f803e3d5ffd5b505050507fc849e103742be0a3f6a0ce76fbdbf4c40caa5cd6eb6bdee9c12c925cff885fa58484848473__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156116d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116f9919061532f565b604051610909959493929190615436565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f8115801561174e5750825b90505f826001600160401b031660011480156117695750303b155b905081158015611777575080155b156117955760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156117bf57845460ff60401b1916600160401b1785555b6117c98787613d28565b831561180f57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f611821610ea1565b156118a5576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015611875573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261189c91908101906154d1565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f015460ff1690565b5f806118d933610844565b836118e581601e610d60565b836118f181601f610853565b5f6118fa613950565b9050806003015f9054906101000a90046001600160a01b03166001600160a01b0316630ad044ce8860018073__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af415801561196c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611990919061532f565b60405160e086901b6001600160e01b03191681526001600160601b0394851660048201529215156024840152901515604483015290911660648201526084016020604051808303815f875af11580156119eb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a0f919061532f565b93505f611a246001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038a1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611a71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a9591906152e7565b6002830154604051627c1b7d60e71b81529192506001600160a01b031690633e0dbe8090611ac9908a908590600401615258565b6020604051808303815f875af1158015611ae5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b09919061532f565b60038301546040516351486e7d60e01b81529197506001600160a01b0316906351486e7d90611b429089908b9086908b906004016153aa565b6020604051808303815f875af1158015611b5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b8291906153de565b50604080516001600160601b0388811682528981166020830152878116828401526001600160a01b03841660608301528a16608082015290517fb83b505434e350ef4d02aa4d11d8c3bf9903b943ecba24fffa1061de4a109e199181900360a00190a1505050509250929050565b611bf933610844565b81611c0581601f610853565b5f611c0e613950565b60030154604051635ecf260f60e01b81526001600160601b038616600482015264ffffffffff851660248201526001600160a01b0390911690635ecf260f9060440160408051808303815f875af1158015611c6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c8f91906155a1565b50604080516001600160601b038716815264ffffffffff80871660208301528316918101919091529091507f30c0fd8161ee020f45ae168e89fb340e68c952a10aad14f7a895dc9393818e4690606001610909565b611ced33610844565b611cf56125e4565b6001600160a01b0316336001600160a01b031614611d285760405163086391f760e31b8152336004820152602401610940565b306001600160a01b0316816001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d6e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d9291906152e7565b6001600160a01b031614611e2557806001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ddc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0091906152e7565b604051631641c88f60e11b81526001600160a01b039091166004820152602401610940565b5f611e2e613950565b600401546001600160a01b0316905081611e46613950565b60040180546001600160a01b0319166001600160a01b0392831617905560408051848316815291831660208301527f8414c1d6352c513484c229579bca3842a94d9c46e1dd28ec9b03c9b3d5a4ae4291015b60405180910390a15050565b5f611ead613950565b600401546001600160a01b0316919050565b5f611ec933610844565b82611ed581601e610d60565b5f611ede613950565b9050806003015f9054906101000a90046001600160a01b03166001600160a01b03166359386f8e8660018073__$71e292c09eace9601b3e21e68a1278917a$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611f50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f7491906153de565b6040516001600160e01b031960e087901b1681526001600160601b0394851660048201529215156024840152901515604483015264ffffffffff166064820152908716608482015260a4015f604051808303815f87803b158015611fd6575f80fd5b505af1158015611fe8573d5f803e3d5ffd5b50506040516330b8415f60e01b81526001600160601b038716600482015273__$3bac17678db7ae928afa209f2f44deec9c$__92506330b8415f9150602401602060405180830381865af4158015612042573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120669190615391565b15612153575f61207e6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03881660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156120cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120ef91906152e7565b600283015460405163f71c4cef60e01b81529192506001600160a01b03169063f71c4cef906121249088908590600401615258565b5f604051808303815f87803b15801561213b575f80fd5b505af115801561214d573d5f803e3d5ffd5b50505050505b505092915050565b61216433610844565b8161217081601f610853565b612178613950565b60030154604051631b4e1ff960e21b81526001600160601b038086166004830152841660248201526001600160a01b0390911690636d387fe49060440160408051808303815f875af11580156121d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f491906155bd565b5050604080516001600160601b038086168252841660208201527ff595ceebb66e043dea95b0b28e85ab6e8200e13aca74757365131310dc01793c91016113b0565b5f61224033610844565b8161224c81601e610d60565b5f612255613950565b9050806003015f9054906101000a90046001600160a01b03166001600160a01b0316634a923f0c85600173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156122c6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ea919061532f565b60405160e085901b6001600160e01b03191681526001600160601b039384166004820152911515602483015290911660448201526064015b6020604051808303815f875af115801561233e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612362919061532f565b6040516330b8415f60e01b81526001600160601b038216600482015290935073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156123bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123df9190615391565b156124cc575f6123f76001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612444573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061246891906152e7565b6002830154604051630cb9145560e41b81529192506001600160a01b03169063cb9145509061249d9087908590600401615258565b5f604051808303815f87803b1580156124b4575f80fd5b505af11580156124c6573d5f803e3d5ffd5b50505050505b5050919050565b604051632392b61b60e21b8152600360048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015612523573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b8f91906155d9565b33612550612d99565b6001600160a01b0316816001600160a01b03161461258b5760405162d1953b60e31b81526001600160a01b0382166004820152602401610940565b816001600160a01b03163b5f036125c0576040516361798f2f60e11b81526001600160a01b0383166004820152602401610940565b610fed82613fa0565b5f6125d2613950565b600301546001600160a01b0316919050565b5f805f8051602061596183398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612650573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126749190615391565b156126ff576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156126d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126f991906152e7565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061598183398151915280545f9190600160a01b900460ff1661273c575f6126f9565b638fb3603760e01b91505090565b612752614ba3565b61275a610ea1565b1561276757610b8f613ff9565b610b8f612c3c565b61277833610844565b6127806125e4565b6001600160a01b0316336001600160a01b0316146127b35760405163086391f760e31b8152336004820152602401610940565b505050565b6127c133610844565b6127c96125e4565b6001600160a01b0316336001600160a01b0316146127fc5760405163086391f760e31b8152336004820152602401610940565b5f80612806613950565b600301546040516314d78f9760e31b81526001600160a01b039091169063a6bc7cb89061283b908890889088906004016152bd565b60408051808303815f875af1158015612856573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061287a9190615290565b604080516001600160601b03891681526001600160a01b03808916602083015280881692820192909252908316606082015264ffffffffff8216608082015291935091507f519b91b3c7a09332814e208f4ff950747fd39d6aa537517322893c161f6ac9459060a0015b60405180910390a15050505050565b6128fc33610844565b8161290881601f610853565b5f612911613950565b6040516301f8588560e51b81526001600160601b03861660048201529091505f9073__$dacf551d137a232f87fa09e79113e25430$__90633f0b10a090602401602060405180830381865af415801561296c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612990919061532f565b905061299d828286613bb6565b600382015460405163a71bfbb760e01b81526001600160a01b039091169063a71bfbb7906129d19088908890600401615258565b5f604051808303815f87803b1580156129e8575f80fd5b505af11580156129fa573d5f803e3d5ffd5b5050604080516001600160601b03808a168252851660208201526001600160a01b038816918101919091527f7a2e316a9c20094b9155914cb3caab21339f9fc6d45d341144e1c25011031328925060600190506128e4565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a99573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612abd91906152e7565b6001600160a01b0316336001600160a01b031614612aef5760405162f0630960e01b8152336004820152602401610940565b50505050565b612afe33610844565b612b066125e4565b6001600160a01b0316336001600160a01b031614612b395760405163086391f760e31b8152336004820152602401610940565b5f612b42613950565b6003810154600480830154604051630345861d60e01b81529394505f9384936001600160a01b031692630345861d92612b8f92600160a01b9091046001600160601b031691899101615258565b60408051808303815f875af1158015612baa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bce9190615290565b600485015460408051600160a01b9092046001600160601b031682526001600160a01b03888116602084015284169082015264ffffffffff8216606082015291935091507f089233199b2878dc789e4ec6789758b5d04a0df1cd1e2f75b8e1077b0ed7806b90608001610909565b612c44614ba3565b610b8f613ff9565b612c5533610844565b612c5d6125e4565b6001600160a01b0316336001600160a01b031614612c905760405163086391f760e31b8152336004820152602401610940565b5f612c99613950565b6003810154600480830154604051635ecf260f60e01b8152600160a01b9091046001600160601b03169181019190915264ffffffffff851660248201529192505f9182916001600160a01b031690635ecf260f9060440160408051808303815f875af1158015612d0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d2f91906155a1565b600485015460408051600160a01b9092046001600160601b0316825264ffffffffff8881166020840152848116918301919091528216606082015291935091507f4de81d4f6acfa293451d20e78b7ce05c2e9f676381b7e41b986c75e7ce10491c90608001610909565b5f80516020615981833981519152546001600160a01b031690565b612dbd33610844565b612dc56125e4565b6001600160a01b0316336001600160a01b031614610fed5760405163086391f760e31b8152336004820152602401610940565b5f612e01613950565b546001600160a01b0316919050565b612e1933610844565b612e216125e4565b6001600160a01b0316336001600160a01b031614612e545760405163086391f760e31b8152336004820152602401610940565b5f612e5d613950565b60028101549091506001600160a01b031673__$f048dbd5170c0ac319fa0222065b281d84$__63cf7601bf612e9a6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260ff86166024820152604401602060405180830381865af4158015612ee5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f0991906152e7565b6002830180546001600160a01b0319166001600160a01b039283169081179091556040805191825260ff86166020830152918316918101919091527f0d3c2937ad932ccd841592977cdeb6dabbfb6fc4df9d7569f35a84f0864ac3c5906060016113b0565b5f612f7833610844565b83612f8481601f610853565b6112568585856140dd565b5f612f9933610844565b5f612fa2613950565b600381015460405163d44f8a4b60e01b81526001600160601b0380891660048301526001600160a01b038881166024840152908716604483015292935091169063d44f8a4b906064016020604051808303815f875af1158015613007573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061302b919061532f565b91507f7e242460dd6c92d78287e1000e16b4bc99b2e4b3c6377c63c83dd83845302ec48585858560405161306294939291906155f4565b60405180910390a1509392505050565b5f61307c33610844565b8261308881601f610853565b336130948585836140dd565b50505092915050565b5f6130a733610844565b816130b381601e610d60565b5f6130bc613950565b9050806003015f9054906101000a90046001600160a01b03166001600160a01b0316630ad044ce8560018073__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af415801561312e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613152919061532f565b60405160e086901b6001600160e01b03191681526001600160601b039485166004820152921515602484015290151560448301529091166064820152608401612322565b5f6131a033610844565b826131ac81601f610853565b5f613227856131c36001546001600160a01b031690565b6001600160a01b031663fff74f6c6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131fe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613222919061532f565b614251565b15613264576132346125e4565b9050336001600160a01b0382161461325f57604051631928390360e21b815260040160405180910390fd5b6133de565b60405163f2c821f760e01b81526001600160601b038616600482015273__$dacf551d137a232f87fa09e79113e25430$__9063f2c821f790602401602060405180830381865af41580156132ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132de9190615391565b15613396576001546001600160a01b0316604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561333c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061336091906152e7565b9050336001600160a01b0382161461325f57604051635520388f60e01b81526001600160601b0386166004820152602401610940565b60405162461bcd60e51b815260206004820181905260248201527f43726f73732d636861696e20746172676574206e6f7420737570706f727465646044820152606401610940565b6133e98585836142dc565b95945050505050565b5f6133fc33610844565b5f613405613950565b600381015460405163ea48ce9b60e01b81526001600160601b0380891660048301526001600160a01b038881166024840152908716604483015292935091169063ea48ce9b906064016020604051808303815f875af115801561346a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061348e919061532f565b91507f4bfa3a293bec95a822b40b97aefb460cdc94363179f8636f068f2a569b0790678585858560405161306294939291906155f4565b5f6134cf33610844565b836134db81601f610853565b6134f1856131c36001546001600160a01b031690565b1561352157604051632778739960e11b81526001600160601b038616600482015260016024820152604401610940565b5f6135346001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03881660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015613581573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135a591906152e7565b90506135b28686836142dc565b9250505b509392505050565b5f805160206159818339815191525f806135f66135d9612d99565b87306135e860045f8a8c615628565b6135f19161564f565b61441b565b91509150816136b45763ffffffff81161561369157825460ff60a01b1916600160a01b178355613624612d99565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161365393929190615687565b5f604051808303815f87803b15801561366a575f80fd5b505af115801561367c573d5f803e3d5ffd5b5050845460ff60a01b19168555506136b49050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610940565b505050505050565b5f6136c5613950565b905060ff8316601e03613774576003810154604051634f9c1c0960e01b81526001600160601b03861660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa158015613723573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137479190615391565b61376f57604051632ab4595b60e11b81526001600160601b0385166004820152602401610940565b61388e565b60ff8316601f0361388e57806003015f9054906101000a90046001600160a01b03166001600160a01b0316633a208dc76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137d1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137f591906152e7565b604051634f9c1c0960e01b81526001600160601b03861660048201526001600160a01b039190911690634f9c1c0990602401602060405180830381865afa158015613842573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138669190615391565b61388e576040516396cff01560e01b81526001600160601b0385166004820152602401610940565b8115612aef575f6138a76001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156138f4573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061391891906152e7565b9050336001600160a01b0382161461394957848133604051630807d41d60e41b8152600401610940939291906152bd565b5050505050565b7fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0090565b5f805f8051602061596183398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156139e0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a049190615391565b15613a305780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610940565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613a82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613aa69190615391565b613ace5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610940565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015613b20573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b44919061532f565b81546bffffffffffffffffffffffff19166001600160601b039190911690811782557f88857b75cbef7f257c9d5a473e28aaf6a91cc28f717f60f2cda3bcf5623d7b5490613b906125e4565b604051613b9e929190615258565b60405180910390a1546001600160601b031692915050565b6003830154604051635809c85d60e01b81526001600160a01b0390911690635809c85d90613bea9085908590600401615258565b6040805180830381865afa158015613c04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c2891906156c6565b6020015160405163790a38ad60e01b815264ffffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063790a38ad90602401602060405180830381865af4158015613c81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ca59190615391565b156127b3576003830154604051631170b20360e11b81526001600160a01b03909116906322e1640690613cde9085908590600401615258565b5f604051808303815f87803b158015613cf5575f80fd5b505af115801561180f573d5f803e3d5ffd5b613d0f614523565b60405163502ec37160e01b815260040160405180910390fd5b613d30614523565b5f805f83806020019051810190613d479190615724565b91945092509050825f613d58613950565b9050816001600160a01b031663fff74f6c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d96573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613dba919061532f565b600480830180546001600160601b0393909316600160a01b026001600160a01b039384161790556003830180549286166001600160a01b0319939093168317905560408051633148a11d60e11b81529051636291423a928281019260209291908290030181865afa158015613e31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e5591906152e7565b600482810180546001600160a01b03199081166001600160a01b0394851617909155835416868316178355604080516307158bc560e51b81529051613f879386169263e2b178a0928082019260209290918290030181865afa158015613ebd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ee191906152e7565b83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f1e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f42919061532f565b6040805180820190915260078152665374616b696e6760c81b602082015260035f8d60405180602001604052805f81525060405180602001604052805f81525061456e565b613f908161464a565b61180f63667de56960e01b6147e6565b5f8051602061598183398151915280546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad90602001611e98565b614001614ba3565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060600160405280825f01805461403e9061534a565b80601f016020809104026020016040519081016040528092919081815260200182805461406a9061534a565b80156140b55780601f1061408c576101008083540402835291602001916140b5565b820191905f5260205f20905b81548152906001019060200180831161409857829003601f168201915b505050505081526020015f6001600160a01b03168152602001826002018054610cc99061534a565b5f806140e7613950565b600381015460405163de0eb85f60e01b81526001600160601b038089166004830152871660248201529192506001600160a01b03169063de0eb85f906044016020604051808303815f875af1158015614142573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614166919061532f565b6040516330b8415f60e01b81526001600160601b038616600482015290925073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156141bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141e39190615391565b156135b657600281015460405163f71c4cef60e01b81526001600160a01b039091169063f71c4cef9061421c9087908790600401615258565b5f604051808303815f87803b158015614233575f80fd5b505af1158015614245573d5f803e3d5ffd5b50505050509392505050565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__9063c4cade9d90604401602060405180830381865af41580156142b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142d59190615391565b9392505050565b5f806142e6613950565b600381015460405163e8ce883d60e01b81526001600160601b038089166004830152871660248201529192506001600160a01b03169063e8ce883d906044016020604051808303815f875af1158015614341573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614365919061532f565b6040516330b8415f60e01b81526001600160601b038616600482015290925073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156143be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143e29190615391565b156135b6576002810154604051630cb9145560e41b81526001600160a01b039091169063cb9145509061421c9087908790600401615258565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516144899190615763565b5f60405180830381855afa9150503d805f81146144c1576040519150601f19603f3d011682016040523d82523d5f602084013e6144c6565b606091505b509150915081156145185760408151106144f857808060200190518101906144ee9190615779565b9094509250614518565b602081511061451857808060200190518101906145159190615391565b93505b505094509492505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661456c57604051631afcd79f60e31b815260040160405180910390fd5b565b614576614523565b85515f036145975760405163591eebf360e11b815260040160405180910390fd5b6145a689898988888888614819565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00806145d288826157ef565b5060018101805460ff1916861515179055600281016145f183826157ef565b506145fc600b614960565b6003820180546001600160a01b0319166001600160a01b039290921691909117905561462e634a531f3360e01b6147e6565b61463e6306e9e5ff60e31b6147e6565b50505050505050505050565b600381015460048083015460405163153d412560e31b8152600160a01b9091046001600160601b0316918101919091525f916001600160a01b03169063a9ea09289060240161012060405180830381865afa1580156146ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146cf91906158a9565b604080820151905163790a38ad60e01b815264ffffffffff909116600482015290915073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063790a38ad90602401602060405180830381865af415801561472c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906147509190615391565b156147885760048281015460405163686c563560e11b8152600160a01b9091046001600160601b031691810191909152602401610940565b7fc849e103742be0a3f6a0ce76fbdbf4c40caa5cd6eb6bdee9c12c925cff885fa58260040160149054906101000a90046001600160601b03168260c001518360a001518460e001518560800151604051611e98959493929190615436565b6147ee614523565b614816816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b614821614523565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015614877573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061489b9190615391565b6148c35760405163cf6935e560e01b81526001600160a01b0388166004820152602401610940565b6148cc876149f7565b6148d68683614a08565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b8615150217815590506001810161494583826157ef565b50614956634a531f3360e01b6147e6565b5050505050505050565b5f6149736001546001600160a01b031690565b6001600160a01b031663d39e60438361498a6124d3565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156149cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906149f191906152e7565b92915050565b6149ff614523565b61481681614a7e565b614a10614523565b614a18614a8f565b614a2182614ad7565b6001600160a01b038116614a485760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061596183398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b614a86614523565b61481681613fa0565b614a97614523565b61456c6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b614adf614523565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614b35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614b599190615391565b614b815760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610940565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040518060600160405280606081526020015f6001600160a01b03168152602001606081525090565b5f60208284031215614bdc575f80fd5b81356001600160e01b0319811681146142d5575f80fd5b6001600160601b0381168114614816575f80fd5b8035614c1281614bf3565b919050565b6001600160a01b0381168114614816575f80fd5b8035614c1281614c17565b5f8060408385031215614c47575f80fd5b8235614c5281614bf3565b91506020830135614c6281614c17565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614ce3608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614d27610100840182614c6d565b949350505050565b5f60208284031215614d3f575f80fd5b81356142d581614bf3565b602081525f6142d56020830184614c6d565b5f805f60608486031215614d6e575f80fd5b8335614d7981614bf3565b92506020840135614d8981614bf3565b91506040840135614d9981614c17565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b60405161012081016001600160401b0381118282101715614ddb57614ddb614da4565b60405290565b60405160e081016001600160401b0381118282101715614ddb57614ddb614da4565b604051601f8201601f191681016001600160401b0381118282101715614e2b57614e2b614da4565b604052919050565b5f6001600160401b03821115614e4b57614e4b614da4565b50601f01601f191660200190565b5f82601f830112614e68575f80fd5b8135614e7b614e7682614e33565b614e03565b818152846020838601011115614e8f575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614ebb575f80fd5b81356001600160401b03811115614ed0575f80fd5b614d2784828501614e59565b5f8060408385031215614eed575f80fd5b8235614ef881614c17565b91506020830135614c6281614bf3565b60ff81168114614816575f80fd5b8035614c1281614f08565b64ffffffffff81168114614816575f80fd5b8035614c1281614f21565b5f805f8060808587031215614f51575f80fd5b8435614f5c81614bf3565b93506020850135614f6c81614f08565b92506040850135614f7c81614f21565b91506060850135614f8c81614c17565b939692955090935050565b5f8060408385031215614fa8575f80fd5b8235614fb381614c17565b915060208301356001600160401b03811115614fcd575f80fd5b614fd985828601614e59565b9150509250929050565b5f8060408385031215614ff4575f80fd5b8235614ef881614bf3565b5f8060408385031215615010575f80fd5b823561501b81614bf3565b91506020830135614c6281614f21565b5f6020828403121561503b575f80fd5b81356142d581614c17565b602081525f8251606060208401526150616080840182614c6d565b60208501516001600160a01b0316604085810191909152850151848203601f190160608601529091506133e98282614c6d565b5f805f606084860312156150a6575f80fd5b83356150b181614bf3565b925060208401356150c181614c17565b91506040840135614d9981614bf3565b5f805f606084860312156150e3575f80fd5b83356150ee81614bf3565b92506020840135614d8981614c17565b5f805f8060808587031215615111575f80fd5b843561511c81614c17565b9350602085013561512c81614c17565b9250604085013591506060850135614f8c81614c17565b5f60208284031215615153575f80fd5b81356142d581614f21565b5f80828403610140811215615171575f80fd5b833561517c81614bf3565b9250610120601f1982011215615190575f80fd5b50615199614db8565b6151a560208501614c07565b81526151b360408501614c07565b60208201526151c460608501614f33565b60408201526151d560808501614c07565b60608201526151e660a08501614c07565b60808201526151f760c08501614f33565b60a082015261520860e08501614f16565b60c082015261521a6101008501614c2b565b60e082015261522c6101208501614c07565b610100820152809150509250929050565b5f6020828403121561524d575f80fd5b81356142d581614f08565b6001600160601b039290921682526001600160a01b0316602082015260400190565b8051614c1281614c17565b8051614c1281614f21565b5f80604083850312156152a1575f80fd5b82516152ac81614c17565b6020840151909250614c6281614f21565b6001600160601b039390931683526001600160a01b03918216602084015216604082015260600190565b5f602082840312156152f7575f80fd5b81516142d581614c17565b5f60208284031215615312575f80fd5b815162ffffff811681146142d5575f80fd5b8051614c1281614bf3565b5f6020828403121561533f575f80fd5b81516142d581614bf3565b600181811c9082168061535e57607f821691505b60208210810361537c57634e487b7160e01b5f52602260045260245ffd5b50919050565b80518015158114614c12575f80fd5b5f602082840312156153a1575f80fd5b6142d582615382565b6001600160601b03948516815292841660208401526001600160a01b03919091166040830152909116606082015260800190565b5f602082840312156153ee575f80fd5b81516142d581614f21565b5f60208284031215615409575f80fd5b81516001600160401b03811681146142d5575f80fd5b5f6020828403121561542f575f80fd5b5051919050565b6001600160601b03958616815260ff94909416602085015264ffffffffff9290921660408401526001600160a01b03166060830152909116608082015260a00190565b8051614c1281614f08565b5f82601f830112615493575f80fd5b81516154a1614e7682614e33565b8181528460208386010111156154b5575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f602082840312156154e1575f80fd5b81516001600160401b038111156154f6575f80fd5b820160e08185031215615507575f80fd5b61550f614de1565b61551882615324565b815261552660208301615324565b602082015261553760408301615479565b604082015261554860608301615382565b60608201526155596080830161527a565b608082015261556a60a0830161527a565b60a082015260c08201516001600160401b03811115615587575f80fd5b61559386828501615484565b60c083015250949350505050565b5f80604083850312156155b2575f80fd5b82516152ac81614f21565b5f80604083850312156155ce575f80fd5b82516152ac81614bf3565b5f602082840312156155e9575f80fd5b81516142d581614f08565b6001600160601b0394851681526001600160a01b039390931660208401529083166040830152909116606082015260800190565b5f8085851115615636575f80fd5b83861115615642575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615680576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60408284031280156156d7575f80fd5b50604080519081016001600160401b03811182821017156156fa576156fa614da4565b604052825161570881614c17565b8152602083015161571881614f21565b60208201529392505050565b5f805f60608486031215615736575f80fd5b835161574181614c17565b602085015190935061575281614c17565b6040850151909250614d9981614c17565b5f82518060208501845e5f920191825250919050565b5f806040838503121561578a575f80fd5b61579383615382565b9150602083015163ffffffff81168114614c62575f80fd5b601f8211156127b357805f5260205f20601f840160051c810160208510156157d05750805b601f840160051c820191505b81811015613949575f81556001016157dc565b81516001600160401b0381111561580857615808614da4565b61581c81615816845461534a565b846157ab565b6020601f82116001811461584e575f83156158375750848201515b5f19600385901b1c1916600184901b178455613949565b5f84815260208120601f198516915b8281101561587d578785015182556020948501946001909201910161585d565b508482101561589a57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f6101208284031280156158bb575f80fd5b506158c4614db8565b6158cd83615324565b81526158db60208401615324565b60208201526158ec60408401615285565b60408201526158fd60608401615324565b606082015261590e60808401615324565b608082015261591f60a08401615285565b60a082015261593060c08401615479565b60c082015261594160e0840161527a565b60e08201526159536101008401615324565b610100820152939250505056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220b0e35fe9c25192092bd35f1269d644ab73840fd64ec836bc117a3ddd0198720764736f6c634300081a0033",
|
2523
|
+
"deployedBytecode": "0x608060405234801561000f575f80fd5b506004361061037d575f3560e01c80636c1e9dff116101d4578063b283765d11610109578063d43a2623116100a9578063e8ce883d11610079578063e8ce883d146107df578063ea15869f146107f2578063ea48ce9b14610819578063ec0407d91461082c575f80fd5b8063d43a262314610793578063d44f8a4b146107a6578063de0eb85f146107b9578063dea4ccf2146107cc575f80fd5b8063bf7e214f116100e4578063bf7e214f1461075d578063c813d79114610765578063caed989714610778578063cdf73d5014610780575f80fd5b8063b283765d1461072f578063b423086c14610742578063b47f48881461074a575f80fd5b80638fb3603711610174578063a6bc7cb81161014f578063a6bc7cb8146106e2578063a71bfbb7146106f5578063ad12ad6014610708578063ada9652e1461071b575f80fd5b80638fb360371461069957806390edbd35146106ba578063958697a0146106cf575f80fd5b806376b707b7116101af57806376b707b71461065c5780637a9e5e4b1461067657806386c7575414610689578063893d20e814610691575f80fd5b80636c1e9dff146106235780636d387fe414610636578063719f761a14610649575f80fd5b806322f3e2d4116102b55780635741e5e9116102555780635fd1efec116102255780635fd1efec146105c5578063614d08f8146105d85780636291423a146105fe578063644c45e014610606575f80fd5b80635741e5e9146105665780635ab1bd531461056e5780635cbb7d851461057f5780635ecf260f146105b2575f80fd5b8063419197fe11610290578063419197fe1461052557806343d752d31461053857806344dcf7301461054057806349bb9e4b14610553575f80fd5b806322f3e2d4146104f75780632391b052146104ff578063329d6e7414610512575f80fd5b806313299604116103205780631eff4b22116102fb5780631eff4b22146104ad57806321df0da7146104d457806322366844146104dc57806322e16406146104e4575f80fd5b80631329960414610470578063138461e01461049057806317d7de7c14610498575f80fd5b806309980bfd1161035b57806309980bfd1461040c5780630d8e6e2c146104145780630fec111c1461043057806310a0638a14610445575f80fd5b806301ffc9a7146103815780630345861d146103c2578063062c9cdf146103d7575b5f80fd5b6103ad61038f366004614bcc565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6103d56103d0366004614c36565b61083f565b005b6103fe7fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0081565b6040519081526020016103b9565b6103d5610917565b61041c610b0d565b60405162ffffff90911681526020016103b9565b610438610b94565b6040516103b99190614c9b565b610458610453366004614d2f565b610d4e565b6040516001600160601b0390911681526020016103b9565b610478610ddb565b6040516001600160a01b0390911681526020016103b9565b610458610e43565b6104a0610e4d565b6040516103b99190614d4a565b6103fe7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b610478610e5d565b6103ad610ea1565b6103d56104f2366004614c36565b610f97565b6103ad610ff1565b61045861050d366004614d5c565b611068565b6103d5610520366004614eab565b61125f565b6103d5610533366004614edc565b6113bd565b6104786115bd565b6103d561054e366004614f3e565b6115d8565b6103d5610561366004614f97565b61170a565b6103ad611818565b6001546001600160a01b0316610478565b61059261058d366004614fe3565b6118ce565b604080516001600160601b039384168152929091166020830152016103b9565b6103d56105c0366004614fff565b611bf0565b6103d56105d336600461502b565b611ce4565b6104a0604051806040016040528060078152602001665374616b696e6760c81b81525081565b610478611ea4565b5f80516020615961833981519152546001600160601b0316610458565b610458610631366004614fe3565b611ebf565b6103d5610644366004614fe3565b61215b565b610458610657366004614d2f565b612236565b6106646124d3565b60405160ff90911681526020016103b9565b6103d561068436600461502b565b612547565b6104786125c9565b6104786125e4565b6106a1612715565b6040516001600160e01b031990911681526020016103b9565b6106c261274a565b6040516103b99190615046565b6103d56106dd366004615094565b61276f565b6103d56106f03660046150d1565b6127b8565b6103d5610703366004614c36565b6128f3565b6103d56107163660046150fe565b612a52565b6103fe5f8051602061596183398151915281565b6103d561073d36600461502b565b612af5565b6106c2612c3c565b6103d5610758366004615143565b612c4c565b610478612d99565b6103d561077336600461515e565b612db4565b610478612df8565b6103d561078e36600461523d565b612e10565b6104586107a1366004614d5c565b612f6e565b6104586107b4366004615094565b612f8f565b6104586107c7366004614fe3565b613072565b6104586107da366004614d2f565b61309d565b6104586107ed366004614fe3565b613196565b6103fe7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b610458610827366004615094565b6133f2565b61045861083a366004614d5c565b6134c5565b61084b335b5f366135be565b8161085981601f5b5f6136bc565b5f610862613950565b60030154604051630345861d60e01b81526001600160a01b0390911690630345861d906108959087908790600401615258565b60408051808303815f875af11580156108b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108d49190615290565b5090507ec60e9fa0b11ba4353f1efa957e6380e75820bcf5afd13713f0c7c268b18a5b848483604051610909939291906152bd565b60405180910390a150505050565b6001546001600160a01b0316331461094957604051632a6e1a8960e01b81523360048201526024015b60405180910390fd5b5f610952613950565b90505f61095d613950565b546040805163b201f70960e01b815290516001600160a01b039092169163b201f709916004808201926020929091908290030181865afa1580156109a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c791906152e7565b905073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d6109f56001546001600160a01b031690565b3084610a096001546001600160a01b031690565b6001600160a01b031663e2b178a06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a44573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a6891906152e7565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af4158015610ac2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae691906152e7565b60019290920180546001600160a01b0319166001600160a01b039093169290921790915550565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610b6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b8f9190615302565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610c40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c64919061532f565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610cac6125e4565b6001600160a01b03168152602001826001018054610cc99061534a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf59061534a565b8015610d405780601f10610d1757610100808354040283529160200191610d40565b820191905f5260205f20905b815481529060010190602001808311610d2357829003601f168201915b505050505081525091505090565b5f610d5833610844565b81610d6781601e5b60016136bc565b5f610d70613950565b600381015460405163085031c560e11b81526001600160601b03871660048201529192506001600160a01b0316906310a0638a906024015f604051808303815f87803b158015610dbe575f80fd5b505af1158015610dd0573d5f803e3d5ffd5b505050505050919050565b5f610de46115bd565b6001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e1f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b8f91906152e7565b5f610b8f30613974565b6060610e5761274a565b51919050565b5f610e666115bd565b6001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e1f573d5f803e3d5ffd5b5f610eb46001546001600160a01b031690565b604051632f2a35f760e11b81523060048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610ef8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f1c919061532f565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610f73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b8f9190615391565b610fa033610844565b610fa86125e4565b6001600160a01b0316336001600160a01b031614610fdb5760405163086391f760e31b8152336004820152602401610940565b610fed610fe6613950565b8383613bb6565b5050565b5f610ffa612d99565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa15801561103e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110629190615391565b15905090565b5f61107233610844565b8361107e81601f610853565b5f611087613950565b6002810154604051627c1b7d60e71b81529192506001600160a01b031690633e0dbe80906110bb9089908890600401615258565b6020604051808303815f875af11580156110d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110fb919061532f565b60038201546040516351486e7d60e01b81529194506001600160a01b0316906351486e7d906111349086908a9089908b906004016153aa565b6020604051808303815f875af1158015611150573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061117491906153de565b506040516330b8415f60e01b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156111cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ef9190615391565b1561125657600281015460405163f71c4cef60e01b81526001600160a01b039091169063f71c4cef906112289088908890600401615258565b5f604051808303815f87803b15801561123f575f80fd5b505af1158015611251573d5f803e3d5ffd5b505050505b50509392505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c611281610b0d565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156112bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112e391906153f9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b900460ff1680611328575080546001600160401b03808416911610155b156113465760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561137083613d07565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a1505050565b6113c633610844565b6113ce6125e4565b6001600160a01b0316336001600160a01b0316146114015760405163086391f760e31b8152336004820152602401610940565b5f61140a613950565b6001810154604051636eb1769f60e11b81523060048201526001600160a01b0391821660248201529192505f9173__$3bac17678db7ae928afa209f2f44deec9c$__91634c41dd96919087169063dd62ed3e90604401602060405180830381865afa15801561147b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061149f919061541f565b6040518263ffffffff1660e01b81526004016114bd91815260200190565b602060405180830381865af41580156114d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114fc919061532f565b60028301546040516320c8cbff60e11b81526001600160a01b0387811660048301526001600160601b038716602483015292935091169063419197fe906044015f604051808303815f87803b158015611553575f80fd5b505af1158015611565573d5f803e3d5ffd5b5050604080516001600160a01b03881681526001600160601b0380881660208301528516918101919091527fd04c7a08e8de83264477350e162e0d3e26406e3eaf786d06d976ea7f229d5c4e92506060019050610909565b5f6115c6613950565b600101546001600160a01b0316919050565b6115e133610844565b6115e9613950565b60030154604051639a148b7f60e01b81526001600160601b038616600482015260ff8516602482015264ffffffffff841660448201526001600160a01b03838116606483015290911690639a148b7f906084015f604051808303815f87803b158015611653575f80fd5b505af1158015611665573d5f803e3d5ffd5b505050507fc849e103742be0a3f6a0ce76fbdbf4c40caa5cd6eb6bdee9c12c925cff885fa58484848473__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156116d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116f9919061532f565b604051610909959493929190615436565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03165f8115801561174e5750825b90505f826001600160401b031660011480156117695750303b155b905081158015611777575080155b156117955760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156117bf57845460ff60401b1916600160401b1785555b6117c98787613d28565b831561180f57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b5f611821610ea1565b156118a5576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015611875573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261189c91908101906154d1565b60600151905090565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f015460ff1690565b5f806118d933610844565b836118e581601e610d60565b836118f181601f610853565b5f6118fa613950565b9050806003015f9054906101000a90046001600160a01b03166001600160a01b0316630ad044ce8860018073__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af415801561196c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611990919061532f565b60405160e086901b6001600160e01b03191681526001600160601b0394851660048201529215156024840152901515604483015290911660648201526084016020604051808303815f875af11580156119eb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a0f919061532f565b93505f611a246001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038a1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611a71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a9591906152e7565b6002830154604051627c1b7d60e71b81529192506001600160a01b031690633e0dbe8090611ac9908a908590600401615258565b6020604051808303815f875af1158015611ae5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b09919061532f565b60038301546040516351486e7d60e01b81529197506001600160a01b0316906351486e7d90611b429089908b9086908b906004016153aa565b6020604051808303815f875af1158015611b5e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b8291906153de565b50604080516001600160601b0388811682528981166020830152878116828401526001600160a01b03841660608301528a16608082015290517fb83b505434e350ef4d02aa4d11d8c3bf9903b943ecba24fffa1061de4a109e199181900360a00190a1505050509250929050565b611bf933610844565b81611c0581601f610853565b5f611c0e613950565b60030154604051635ecf260f60e01b81526001600160601b038616600482015264ffffffffff851660248201526001600160a01b0390911690635ecf260f9060440160408051808303815f875af1158015611c6b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c8f91906155a1565b50604080516001600160601b038716815264ffffffffff80871660208301528316918101919091529091507f30c0fd8161ee020f45ae168e89fb340e68c952a10aad14f7a895dc9393818e4690606001610909565b611ced33610844565b611cf56125e4565b6001600160a01b0316336001600160a01b031614611d285760405163086391f760e31b8152336004820152602401610940565b306001600160a01b0316816001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d6e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d9291906152e7565b6001600160a01b031614611e2557806001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ddc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0091906152e7565b604051631641c88f60e11b81526001600160a01b039091166004820152602401610940565b5f611e2e613950565b600401546001600160a01b0316905081611e46613950565b60040180546001600160a01b0319166001600160a01b0392831617905560408051848316815291831660208301527f8414c1d6352c513484c229579bca3842a94d9c46e1dd28ec9b03c9b3d5a4ae4291015b60405180910390a15050565b5f611ead613950565b600401546001600160a01b0316919050565b5f611ec933610844565b82611ed581601e610d60565b5f611ede613950565b9050806003015f9054906101000a90046001600160a01b03166001600160a01b03166359386f8e8660018073__$71e292c09eace9601b3e21e68a1278917a$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611f50573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f7491906153de565b6040516001600160e01b031960e087901b1681526001600160601b0394851660048201529215156024840152901515604483015264ffffffffff166064820152908716608482015260a4015f604051808303815f87803b158015611fd6575f80fd5b505af1158015611fe8573d5f803e3d5ffd5b50506040516330b8415f60e01b81526001600160601b038716600482015273__$3bac17678db7ae928afa209f2f44deec9c$__92506330b8415f9150602401602060405180830381865af4158015612042573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120669190615391565b15612153575f61207e6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03881660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156120cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120ef91906152e7565b600283015460405163f71c4cef60e01b81529192506001600160a01b03169063f71c4cef906121249088908590600401615258565b5f604051808303815f87803b15801561213b575f80fd5b505af115801561214d573d5f803e3d5ffd5b50505050505b505092915050565b61216433610844565b8161217081601f610853565b612178613950565b60030154604051631b4e1ff960e21b81526001600160601b038086166004830152841660248201526001600160a01b0390911690636d387fe49060440160408051808303815f875af11580156121d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f491906155bd565b5050604080516001600160601b038086168252841660208201527ff595ceebb66e043dea95b0b28e85ab6e8200e13aca74757365131310dc01793c91016113b0565b5f61224033610844565b8161224c81601e610d60565b5f612255613950565b9050806003015f9054906101000a90046001600160a01b03166001600160a01b0316634a923f0c85600173__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156122c6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ea919061532f565b60405160e085901b6001600160e01b03191681526001600160601b039384166004820152911515602483015290911660448201526064015b6020604051808303815f875af115801561233e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612362919061532f565b6040516330b8415f60e01b81526001600160601b038216600482015290935073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156123bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123df9190615391565b156124cc575f6123f76001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612444573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061246891906152e7565b6002830154604051630cb9145560e41b81529192506001600160a01b03169063cb9145509061249d9087908590600401615258565b5f604051808303815f87803b1580156124b4575f80fd5b505af11580156124c6573d5f803e3d5ffd5b50505050505b5050919050565b604051632392b61b60e21b8152600360048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015612523573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b8f91906155d9565b33612550612d99565b6001600160a01b0316816001600160a01b03161461258b5760405162d1953b60e31b81526001600160a01b0382166004820152602401610940565b816001600160a01b03163b5f036125c0576040516361798f2f60e11b81526001600160a01b0383166004820152602401610940565b610fed82613fa0565b5f6125d2613950565b600301546001600160a01b0316919050565b5f805f8051602061596183398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612650573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126749190615391565b156126ff576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156126d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126f991906152e7565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061598183398151915280545f9190600160a01b900460ff1661273c575f6126f9565b638fb3603760e01b91505090565b612752614ba3565b61275a610ea1565b1561276757610b8f613ff9565b610b8f612c3c565b61277833610844565b6127806125e4565b6001600160a01b0316336001600160a01b0316146127b35760405163086391f760e31b8152336004820152602401610940565b505050565b6127c133610844565b6127c96125e4565b6001600160a01b0316336001600160a01b0316146127fc5760405163086391f760e31b8152336004820152602401610940565b5f80612806613950565b600301546040516314d78f9760e31b81526001600160a01b039091169063a6bc7cb89061283b908890889088906004016152bd565b60408051808303815f875af1158015612856573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061287a9190615290565b604080516001600160601b03891681526001600160a01b03808916602083015280881692820192909252908316606082015264ffffffffff8216608082015291935091507f519b91b3c7a09332814e208f4ff950747fd39d6aa537517322893c161f6ac9459060a0015b60405180910390a15050505050565b6128fc33610844565b8161290881601f610853565b5f612911613950565b6040516301f8588560e51b81526001600160601b03861660048201529091505f9073__$dacf551d137a232f87fa09e79113e25430$__90633f0b10a090602401602060405180830381865af415801561296c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612990919061532f565b905061299d828286613bb6565b600382015460405163a71bfbb760e01b81526001600160a01b039091169063a71bfbb7906129d19088908890600401615258565b5f604051808303815f87803b1580156129e8575f80fd5b505af11580156129fa573d5f803e3d5ffd5b5050604080516001600160601b03808a168252851660208201526001600160a01b038816918101919091527f7a2e316a9c20094b9155914cb3caab21339f9fc6d45d341144e1c25011031328925060600190506128e4565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a99573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612abd91906152e7565b6001600160a01b0316336001600160a01b031614612aef5760405162f0630960e01b8152336004820152602401610940565b50505050565b612afe33610844565b612b066125e4565b6001600160a01b0316336001600160a01b031614612b395760405163086391f760e31b8152336004820152602401610940565b5f612b42613950565b6003810154600480830154604051630345861d60e01b81529394505f9384936001600160a01b031692630345861d92612b8f92600160a01b9091046001600160601b031691899101615258565b60408051808303815f875af1158015612baa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bce9190615290565b600485015460408051600160a01b9092046001600160601b031682526001600160a01b03888116602084015284169082015264ffffffffff8216606082015291935091507f089233199b2878dc789e4ec6789758b5d04a0df1cd1e2f75b8e1077b0ed7806b90608001610909565b612c44614ba3565b610b8f613ff9565b612c5533610844565b612c5d6125e4565b6001600160a01b0316336001600160a01b031614612c905760405163086391f760e31b8152336004820152602401610940565b5f612c99613950565b6003810154600480830154604051635ecf260f60e01b8152600160a01b9091046001600160601b03169181019190915264ffffffffff851660248201529192505f9182916001600160a01b031690635ecf260f9060440160408051808303815f875af1158015612d0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d2f91906155a1565b600485015460408051600160a01b9092046001600160601b0316825264ffffffffff8881166020840152848116918301919091528216606082015291935091507f4de81d4f6acfa293451d20e78b7ce05c2e9f676381b7e41b986c75e7ce10491c90608001610909565b5f80516020615981833981519152546001600160a01b031690565b612dbd33610844565b612dc56125e4565b6001600160a01b0316336001600160a01b031614610fed5760405163086391f760e31b8152336004820152602401610940565b5f612e01613950565b546001600160a01b0316919050565b612e1933610844565b612e216125e4565b6001600160a01b0316336001600160a01b031614612e545760405163086391f760e31b8152336004820152602401610940565b5f612e5d613950565b60028101549091506001600160a01b031673__$f048dbd5170c0ac319fa0222065b281d84$__63cf7601bf612e9a6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260ff86166024820152604401602060405180830381865af4158015612ee5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f0991906152e7565b6002830180546001600160a01b0319166001600160a01b039283169081179091556040805191825260ff86166020830152918316918101919091527f0d3c2937ad932ccd841592977cdeb6dabbfb6fc4df9d7569f35a84f0864ac3c5906060016113b0565b5f612f7833610844565b83612f8481601f610853565b6112568585856140dd565b5f612f9933610844565b5f612fa2613950565b600381015460405163d44f8a4b60e01b81526001600160601b0380891660048301526001600160a01b038881166024840152908716604483015292935091169063d44f8a4b906064016020604051808303815f875af1158015613007573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061302b919061532f565b91507f7e242460dd6c92d78287e1000e16b4bc99b2e4b3c6377c63c83dd83845302ec48585858560405161306294939291906155f4565b60405180910390a1509392505050565b5f61307c33610844565b8261308881601f610853565b336130948585836140dd565b50505092915050565b5f6130a733610844565b816130b381601e610d60565b5f6130bc613950565b9050806003015f9054906101000a90046001600160a01b03166001600160a01b0316630ad044ce8560018073__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af415801561312e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613152919061532f565b60405160e086901b6001600160e01b03191681526001600160601b039485166004820152921515602484015290151560448301529091166064820152608401612322565b5f6131a033610844565b826131ac81601f610853565b5f613227856131c36001546001600160a01b031690565b6001600160a01b031663fff74f6c6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131fe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613222919061532f565b614251565b15613264576132346125e4565b9050336001600160a01b0382161461325f57604051631928390360e21b815260040160405180910390fd5b6133de565b60405163f2c821f760e01b81526001600160601b038616600482015273__$dacf551d137a232f87fa09e79113e25430$__9063f2c821f790602401602060405180830381865af41580156132ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132de9190615391565b15613396576001546001600160a01b0316604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561333c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061336091906152e7565b9050336001600160a01b0382161461325f57604051635520388f60e01b81526001600160601b0386166004820152602401610940565b60405162461bcd60e51b815260206004820181905260248201527f43726f73732d636861696e20746172676574206e6f7420737570706f727465646044820152606401610940565b6133e98585836142dc565b95945050505050565b5f6133fc33610844565b5f613405613950565b600381015460405163ea48ce9b60e01b81526001600160601b0380891660048301526001600160a01b038881166024840152908716604483015292935091169063ea48ce9b906064016020604051808303815f875af115801561346a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061348e919061532f565b91507f4bfa3a293bec95a822b40b97aefb460cdc94363179f8636f068f2a569b0790678585858560405161306294939291906155f4565b5f6134cf33610844565b836134db81601f610853565b6134f1856131c36001546001600160a01b031690565b1561352157604051632778739960e11b81526001600160601b038616600482015260016024820152604401610940565b5f6135346001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03881660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015613581573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135a591906152e7565b90506135b28686836142dc565b9250505b509392505050565b5f805160206159818339815191525f806135f66135d9612d99565b87306135e860045f8a8c615628565b6135f19161564f565b61441b565b91509150816136b45763ffffffff81161561369157825460ff60a01b1916600160a01b178355613624612d99565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161365393929190615687565b5f604051808303815f87803b15801561366a575f80fd5b505af115801561367c573d5f803e3d5ffd5b5050845460ff60a01b19168555506136b49050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610940565b505050505050565b5f6136c5613950565b905060ff8316601e03613774576003810154604051634f9c1c0960e01b81526001600160601b03861660048201526001600160a01b0390911690634f9c1c0990602401602060405180830381865afa158015613723573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137479190615391565b61376f57604051632ab4595b60e11b81526001600160601b0385166004820152602401610940565b61388e565b60ff8316601f0361388e57806003015f9054906101000a90046001600160a01b03166001600160a01b0316633a208dc76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156137d1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137f591906152e7565b604051634f9c1c0960e01b81526001600160601b03861660048201526001600160a01b039190911690634f9c1c0990602401602060405180830381865afa158015613842573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138669190615391565b61388e576040516396cff01560e01b81526001600160601b0385166004820152602401610940565b8115612aef575f6138a76001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156138f4573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061391891906152e7565b9050336001600160a01b0382161461394957848133604051630807d41d60e41b8152600401610940939291906152bd565b5050505050565b7fafe8d4462b2ed26a47154f4b8f6d1497d2f772496965791d25bd456e342b7f0090565b5f805f8051602061596183398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156139e0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a049190615391565b15613a305780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610940565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613a82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613aa69190615391565b613ace5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610940565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015613b20573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b44919061532f565b81546bffffffffffffffffffffffff19166001600160601b039190911690811782557f88857b75cbef7f257c9d5a473e28aaf6a91cc28f717f60f2cda3bcf5623d7b5490613b906125e4565b604051613b9e929190615258565b60405180910390a1546001600160601b031692915050565b6003830154604051635809c85d60e01b81526001600160a01b0390911690635809c85d90613bea9085908590600401615258565b6040805180830381865afa158015613c04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c2891906156c6565b6020015160405163790a38ad60e01b815264ffffffffff909116600482015273__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063790a38ad90602401602060405180830381865af4158015613c81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ca59190615391565b156127b3576003830154604051631170b20360e11b81526001600160a01b03909116906322e1640690613cde9085908590600401615258565b5f604051808303815f87803b158015613cf5575f80fd5b505af115801561180f573d5f803e3d5ffd5b613d0f614523565b60405163502ec37160e01b815260040160405180910390fd5b613d30614523565b5f805f83806020019051810190613d479190615724565b91945092509050825f613d58613950565b9050816001600160a01b031663fff74f6c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d96573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613dba919061532f565b600480830180546001600160601b0393909316600160a01b026001600160a01b039384161790556003830180549286166001600160a01b0319939093168317905560408051633148a11d60e11b81529051636291423a928281019260209291908290030181865afa158015613e31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e5591906152e7565b600482810180546001600160a01b03199081166001600160a01b0394851617909155835416868316178355604080516307158bc560e51b81529051613f879386169263e2b178a0928082019260209290918290030181865afa158015613ebd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ee191906152e7565b83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f1e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f42919061532f565b6040805180820190915260078152665374616b696e6760c81b602082015260035f8d60405180602001604052805f81525060405180602001604052805f81525061456e565b613f908161464a565b61180f63667de56960e01b6147e6565b5f8051602061598183398151915280546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad90602001611e98565b614001614ba3565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060600160405280825f01805461403e9061534a565b80601f016020809104026020016040519081016040528092919081815260200182805461406a9061534a565b80156140b55780601f1061408c576101008083540402835291602001916140b5565b820191905f5260205f20905b81548152906001019060200180831161409857829003601f168201915b505050505081526020015f6001600160a01b03168152602001826002018054610cc99061534a565b5f806140e7613950565b600381015460405163de0eb85f60e01b81526001600160601b038089166004830152871660248201529192506001600160a01b03169063de0eb85f906044016020604051808303815f875af1158015614142573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614166919061532f565b6040516330b8415f60e01b81526001600160601b038616600482015290925073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156141bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141e39190615391565b156135b657600281015460405163f71c4cef60e01b81526001600160a01b039091169063f71c4cef9061421c9087908790600401615258565b5f604051808303815f87803b158015614233575f80fd5b505af1158015614245573d5f803e3d5ffd5b50505050509392505050565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__9063c4cade9d90604401602060405180830381865af41580156142b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142d59190615391565b9392505050565b5f806142e6613950565b600381015460405163e8ce883d60e01b81526001600160601b038089166004830152871660248201529192506001600160a01b03169063e8ce883d906044016020604051808303815f875af1158015614341573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614365919061532f565b6040516330b8415f60e01b81526001600160601b038616600482015290925073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af41580156143be573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143e29190615391565b156135b6576002810154604051630cb9145560e41b81526001600160a01b039091169063cb9145509061421c9087908790600401615258565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516144899190615763565b5f60405180830381855afa9150503d805f81146144c1576040519150601f19603f3d011682016040523d82523d5f602084013e6144c6565b606091505b509150915081156145185760408151106144f857808060200190518101906144ee9190615779565b9094509250614518565b602081511061451857808060200190518101906145159190615391565b93505b505094509492505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661456c57604051631afcd79f60e31b815260040160405180910390fd5b565b614576614523565b85515f036145975760405163591eebf360e11b815260040160405180910390fd5b6145a689898988888888614819565b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00806145d288826157ef565b5060018101805460ff1916861515179055600281016145f183826157ef565b506145fc600b614960565b6003820180546001600160a01b0319166001600160a01b039290921691909117905561462e634a531f3360e01b6147e6565b61463e6306e9e5ff60e31b6147e6565b50505050505050505050565b600381015460048083015460405163153d412560e31b8152600160a01b9091046001600160601b0316918101919091525f916001600160a01b03169063a9ea09289060240161012060405180830381865afa1580156146ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146cf91906158a9565b604080820151905163790a38ad60e01b815264ffffffffff909116600482015290915073__$f55ca14f1ddce1b88fe30d23ae45f595f4$__9063790a38ad90602401602060405180830381865af415801561472c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906147509190615391565b156147885760048281015460405163686c563560e11b8152600160a01b9091046001600160601b031691810191909152602401610940565b7fc849e103742be0a3f6a0ce76fbdbf4c40caa5cd6eb6bdee9c12c925cff885fa58260040160149054906101000a90046001600160601b03168260c001518360a001518460e001518560800151604051611e98959493929190615436565b6147ee614523565b614816816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b614821614523565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015614877573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061489b9190615391565b6148c35760405163cf6935e560e01b81526001600160a01b0388166004820152602401610940565b6148cc876149f7565b6148d68683614a08565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b8615150217815590506001810161494583826157ef565b50614956634a531f3360e01b6147e6565b5050505050505050565b5f6149736001546001600160a01b031690565b6001600160a01b031663d39e60438361498a6124d3565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156149cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906149f191906152e7565b92915050565b6149ff614523565b61481681614a7e565b614a10614523565b614a18614a8f565b614a2182614ad7565b6001600160a01b038116614a485760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061596183398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b614a86614523565b61481681613fa0565b614a97614523565b61456c6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b614adf614523565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614b35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614b599190615391565b614b815760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610940565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040518060600160405280606081526020015f6001600160a01b03168152602001606081525090565b5f60208284031215614bdc575f80fd5b81356001600160e01b0319811681146142d5575f80fd5b6001600160601b0381168114614816575f80fd5b8035614c1281614bf3565b919050565b6001600160a01b0381168114614816575f80fd5b8035614c1281614c17565b5f8060408385031215614c47575f80fd5b8235614c5281614bf3565b91506020830135614c6281614c17565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614ce3608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614d27610100840182614c6d565b949350505050565b5f60208284031215614d3f575f80fd5b81356142d581614bf3565b602081525f6142d56020830184614c6d565b5f805f60608486031215614d6e575f80fd5b8335614d7981614bf3565b92506020840135614d8981614bf3565b91506040840135614d9981614c17565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b60405161012081016001600160401b0381118282101715614ddb57614ddb614da4565b60405290565b60405160e081016001600160401b0381118282101715614ddb57614ddb614da4565b604051601f8201601f191681016001600160401b0381118282101715614e2b57614e2b614da4565b604052919050565b5f6001600160401b03821115614e4b57614e4b614da4565b50601f01601f191660200190565b5f82601f830112614e68575f80fd5b8135614e7b614e7682614e33565b614e03565b818152846020838601011115614e8f575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614ebb575f80fd5b81356001600160401b03811115614ed0575f80fd5b614d2784828501614e59565b5f8060408385031215614eed575f80fd5b8235614ef881614c17565b91506020830135614c6281614bf3565b60ff81168114614816575f80fd5b8035614c1281614f08565b64ffffffffff81168114614816575f80fd5b8035614c1281614f21565b5f805f8060808587031215614f51575f80fd5b8435614f5c81614bf3565b93506020850135614f6c81614f08565b92506040850135614f7c81614f21565b91506060850135614f8c81614c17565b939692955090935050565b5f8060408385031215614fa8575f80fd5b8235614fb381614c17565b915060208301356001600160401b03811115614fcd575f80fd5b614fd985828601614e59565b9150509250929050565b5f8060408385031215614ff4575f80fd5b8235614ef881614bf3565b5f8060408385031215615010575f80fd5b823561501b81614bf3565b91506020830135614c6281614f21565b5f6020828403121561503b575f80fd5b81356142d581614c17565b602081525f8251606060208401526150616080840182614c6d565b60208501516001600160a01b0316604085810191909152850151848203601f190160608601529091506133e98282614c6d565b5f805f606084860312156150a6575f80fd5b83356150b181614bf3565b925060208401356150c181614c17565b91506040840135614d9981614bf3565b5f805f606084860312156150e3575f80fd5b83356150ee81614bf3565b92506020840135614d8981614c17565b5f805f8060808587031215615111575f80fd5b843561511c81614c17565b9350602085013561512c81614c17565b9250604085013591506060850135614f8c81614c17565b5f60208284031215615153575f80fd5b81356142d581614f21565b5f80828403610140811215615171575f80fd5b833561517c81614bf3565b9250610120601f1982011215615190575f80fd5b50615199614db8565b6151a560208501614c07565b81526151b360408501614c07565b60208201526151c460608501614f33565b60408201526151d560808501614c07565b60608201526151e660a08501614c07565b60808201526151f760c08501614f33565b60a082015261520860e08501614f16565b60c082015261521a6101008501614c2b565b60e082015261522c6101208501614c07565b610100820152809150509250929050565b5f6020828403121561524d575f80fd5b81356142d581614f08565b6001600160601b039290921682526001600160a01b0316602082015260400190565b8051614c1281614c17565b8051614c1281614f21565b5f80604083850312156152a1575f80fd5b82516152ac81614c17565b6020840151909250614c6281614f21565b6001600160601b039390931683526001600160a01b03918216602084015216604082015260600190565b5f602082840312156152f7575f80fd5b81516142d581614c17565b5f60208284031215615312575f80fd5b815162ffffff811681146142d5575f80fd5b8051614c1281614bf3565b5f6020828403121561533f575f80fd5b81516142d581614bf3565b600181811c9082168061535e57607f821691505b60208210810361537c57634e487b7160e01b5f52602260045260245ffd5b50919050565b80518015158114614c12575f80fd5b5f602082840312156153a1575f80fd5b6142d582615382565b6001600160601b03948516815292841660208401526001600160a01b03919091166040830152909116606082015260800190565b5f602082840312156153ee575f80fd5b81516142d581614f21565b5f60208284031215615409575f80fd5b81516001600160401b03811681146142d5575f80fd5b5f6020828403121561542f575f80fd5b5051919050565b6001600160601b03958616815260ff94909416602085015264ffffffffff9290921660408401526001600160a01b03166060830152909116608082015260a00190565b8051614c1281614f08565b5f82601f830112615493575f80fd5b81516154a1614e7682614e33565b8181528460208386010111156154b5575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f602082840312156154e1575f80fd5b81516001600160401b038111156154f6575f80fd5b820160e08185031215615507575f80fd5b61550f614de1565b61551882615324565b815261552660208301615324565b602082015261553760408301615479565b604082015261554860608301615382565b60608201526155596080830161527a565b608082015261556a60a0830161527a565b60a082015260c08201516001600160401b03811115615587575f80fd5b61559386828501615484565b60c083015250949350505050565b5f80604083850312156155b2575f80fd5b82516152ac81614f21565b5f80604083850312156155ce575f80fd5b82516152ac81614bf3565b5f602082840312156155e9575f80fd5b81516142d581614f08565b6001600160601b0394851681526001600160a01b039390931660208401529083166040830152909116606082015260800190565b5f8085851115615636575f80fd5b83861115615642575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615680576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60408284031280156156d7575f80fd5b50604080519081016001600160401b03811182821017156156fa576156fa614da4565b604052825161570881614c17565b8152602083015161571881614f21565b60208201529392505050565b5f805f60608486031215615736575f80fd5b835161574181614c17565b602085015190935061575281614c17565b6040850151909250614d9981614c17565b5f82518060208501845e5f920191825250919050565b5f806040838503121561578a575f80fd5b61579383615382565b9150602083015163ffffffff81168114614c62575f80fd5b601f8211156127b357805f5260205f20601f840160051c810160208510156157d05750805b601f840160051c820191505b81811015613949575f81556001016157dc565b81516001600160401b0381111561580857615808614da4565b61581c81615816845461534a565b846157ab565b6020601f82116001811461584e575f83156158375750848201515b5f19600385901b1c1916600184901b178455613949565b5f84815260208120601f198516915b8281101561587d578785015182556020948501946001909201910161585d565b508482101561589a57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f6101208284031280156158bb575f80fd5b506158c4614db8565b6158cd83615324565b81526158db60208401615324565b60208201526158ec60408401615285565b60408201526158fd60608401615324565b606082015261590e60808401615324565b608082015261591f60a08401615285565b60a082015261593060c08401615479565b60c082015261594160e0840161527a565b60e08201526159536101008401615324565b610100820152939250505056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220b0e35fe9c25192092bd35f1269d644ab73840fd64ec836bc117a3ddd0198720764736f6c634300081a0033",
|
2524
|
+
"linkReferences": {
|
2525
|
+
"contracts/shared/ContractLib.sol": {
|
2526
|
+
"ContractLib": [
|
2527
|
+
{
|
2528
|
+
"length": 20,
|
2529
|
+
"start": 18709
|
2530
|
+
},
|
2531
|
+
{
|
2532
|
+
"length": 20,
|
2533
|
+
"start": 19411
|
2534
|
+
}
|
2535
|
+
]
|
2536
|
+
},
|
2537
|
+
"contracts/shared/TokenHandlerDeployerLib.sol": {
|
2538
|
+
"TokenHandlerDeployerLib": [
|
2539
|
+
{
|
2540
|
+
"length": 20,
|
2541
|
+
"start": 2721
|
2542
|
+
}
|
2543
|
+
]
|
2544
|
+
},
|
2545
|
+
"contracts/staking/StakingLib.sol": {
|
2546
|
+
"StakingLib": [
|
2547
|
+
{
|
2548
|
+
"length": 20,
|
2549
|
+
"start": 12102
|
2550
|
+
}
|
2551
|
+
]
|
2552
|
+
},
|
2553
|
+
"contracts/type/Amount.sol": {
|
2554
|
+
"AmountLib": [
|
2555
|
+
{
|
2556
|
+
"length": 20,
|
2557
|
+
"start": 4713
|
2558
|
+
},
|
2559
|
+
{
|
2560
|
+
"length": 20,
|
2561
|
+
"start": 5391
|
2562
|
+
},
|
2563
|
+
{
|
2564
|
+
"length": 20,
|
2565
|
+
"start": 5990
|
2566
|
+
},
|
2567
|
+
{
|
2568
|
+
"length": 20,
|
2569
|
+
"start": 6653
|
2570
|
+
},
|
2571
|
+
{
|
2572
|
+
"length": 20,
|
2573
|
+
"start": 8414
|
2574
|
+
},
|
2575
|
+
{
|
2576
|
+
"length": 20,
|
2577
|
+
"start": 9047
|
2578
|
+
},
|
2579
|
+
{
|
2580
|
+
"length": 20,
|
2581
|
+
"start": 9305
|
2582
|
+
},
|
2583
|
+
{
|
2584
|
+
"length": 20,
|
2585
|
+
"start": 12735
|
2586
|
+
},
|
2587
|
+
{
|
2588
|
+
"length": 20,
|
2589
|
+
"start": 16989
|
2590
|
+
},
|
2591
|
+
{
|
2592
|
+
"length": 20,
|
2593
|
+
"start": 17500
|
2594
|
+
}
|
2595
|
+
]
|
2596
|
+
},
|
2597
|
+
"contracts/type/Blocknumber.sol": {
|
2598
|
+
"BlocknumberLib": [
|
2599
|
+
{
|
2600
|
+
"length": 20,
|
2601
|
+
"start": 15647
|
2602
|
+
},
|
2603
|
+
{
|
2604
|
+
"length": 20,
|
2605
|
+
"start": 18378
|
2606
|
+
}
|
2607
|
+
]
|
2608
|
+
},
|
2609
|
+
"contracts/type/ChainId.sol": {
|
2610
|
+
"ChainIdLib": [
|
2611
|
+
{
|
2612
|
+
"length": 20,
|
2613
|
+
"start": 10762
|
2614
|
+
},
|
2615
|
+
{
|
2616
|
+
"length": 20,
|
2617
|
+
"start": 13144
|
2618
|
+
}
|
2619
|
+
]
|
2620
|
+
},
|
2621
|
+
"contracts/type/NftId.sol": {
|
2622
|
+
"NftIdLib": [
|
2623
|
+
{
|
2624
|
+
"length": 20,
|
2625
|
+
"start": 3281
|
2626
|
+
},
|
2627
|
+
{
|
2628
|
+
"length": 20,
|
2629
|
+
"start": 4113
|
2630
|
+
},
|
2631
|
+
{
|
2632
|
+
"length": 20,
|
2633
|
+
"start": 9966
|
2634
|
+
},
|
2635
|
+
{
|
2636
|
+
"length": 20,
|
2637
|
+
"start": 14974
|
2638
|
+
},
|
2639
|
+
{
|
2640
|
+
"length": 20,
|
2641
|
+
"start": 17231
|
2642
|
+
}
|
2643
|
+
]
|
2644
|
+
},
|
2645
|
+
"contracts/type/Seconds.sol": {
|
2646
|
+
"SecondsLib": [
|
2647
|
+
{
|
2648
|
+
"length": 20,
|
2649
|
+
"start": 8161
|
2650
|
+
}
|
2651
|
+
]
|
2652
|
+
},
|
2653
|
+
"contracts/type/Version.sol": {
|
2654
|
+
"VersionLib": [
|
2655
|
+
{
|
2656
|
+
"length": 20,
|
2657
|
+
"start": 3081
|
2658
|
+
},
|
2659
|
+
{
|
2660
|
+
"length": 20,
|
2661
|
+
"start": 4919
|
2662
|
+
}
|
2663
|
+
],
|
2664
|
+
"VersionPartLib": [
|
2665
|
+
{
|
2666
|
+
"length": 20,
|
2667
|
+
"start": 9665
|
2668
|
+
}
|
2669
|
+
]
|
2670
|
+
}
|
2671
|
+
},
|
2672
|
+
"deployedLinkReferences": {
|
2673
|
+
"contracts/shared/ContractLib.sol": {
|
2674
|
+
"ContractLib": [
|
2675
|
+
{
|
2676
|
+
"length": 20,
|
2677
|
+
"start": 18495
|
2678
|
+
},
|
2679
|
+
{
|
2680
|
+
"length": 20,
|
2681
|
+
"start": 19197
|
2682
|
+
}
|
2683
|
+
]
|
2684
|
+
},
|
2685
|
+
"contracts/shared/TokenHandlerDeployerLib.sol": {
|
2686
|
+
"TokenHandlerDeployerLib": [
|
2687
|
+
{
|
2688
|
+
"length": 20,
|
2689
|
+
"start": 2507
|
2690
|
+
}
|
2691
|
+
]
|
2692
|
+
},
|
2693
|
+
"contracts/staking/StakingLib.sol": {
|
2694
|
+
"StakingLib": [
|
2695
|
+
{
|
2696
|
+
"length": 20,
|
2697
|
+
"start": 11888
|
2698
|
+
}
|
2699
|
+
]
|
2700
|
+
},
|
2701
|
+
"contracts/type/Amount.sol": {
|
2702
|
+
"AmountLib": [
|
2703
|
+
{
|
2704
|
+
"length": 20,
|
2705
|
+
"start": 4499
|
2706
|
+
},
|
2707
|
+
{
|
2708
|
+
"length": 20,
|
2709
|
+
"start": 5177
|
2710
|
+
},
|
2711
|
+
{
|
2712
|
+
"length": 20,
|
2713
|
+
"start": 5776
|
2714
|
+
},
|
2715
|
+
{
|
2716
|
+
"length": 20,
|
2717
|
+
"start": 6439
|
2718
|
+
},
|
2719
|
+
{
|
2720
|
+
"length": 20,
|
2721
|
+
"start": 8200
|
2722
|
+
},
|
2723
|
+
{
|
2724
|
+
"length": 20,
|
2725
|
+
"start": 8833
|
2726
|
+
},
|
2727
|
+
{
|
2728
|
+
"length": 20,
|
2729
|
+
"start": 9091
|
2730
|
+
},
|
2731
|
+
{
|
2732
|
+
"length": 20,
|
2733
|
+
"start": 12521
|
2734
|
+
},
|
2735
|
+
{
|
2736
|
+
"length": 20,
|
2737
|
+
"start": 16775
|
2738
|
+
},
|
2739
|
+
{
|
2740
|
+
"length": 20,
|
2741
|
+
"start": 17286
|
2742
|
+
}
|
2743
|
+
]
|
2744
|
+
},
|
2745
|
+
"contracts/type/Blocknumber.sol": {
|
2746
|
+
"BlocknumberLib": [
|
2747
|
+
{
|
2748
|
+
"length": 20,
|
2749
|
+
"start": 15433
|
2750
|
+
},
|
2751
|
+
{
|
2752
|
+
"length": 20,
|
2753
|
+
"start": 18164
|
2754
|
+
}
|
2755
|
+
]
|
2756
|
+
},
|
2757
|
+
"contracts/type/ChainId.sol": {
|
2758
|
+
"ChainIdLib": [
|
2759
|
+
{
|
2760
|
+
"length": 20,
|
2761
|
+
"start": 10548
|
2762
|
+
},
|
2763
|
+
{
|
2764
|
+
"length": 20,
|
2765
|
+
"start": 12930
|
2766
|
+
}
|
2767
|
+
]
|
2768
|
+
},
|
2769
|
+
"contracts/type/NftId.sol": {
|
2770
|
+
"NftIdLib": [
|
2771
|
+
{
|
2772
|
+
"length": 20,
|
2773
|
+
"start": 3067
|
2774
|
+
},
|
2775
|
+
{
|
2776
|
+
"length": 20,
|
2777
|
+
"start": 3899
|
2778
|
+
},
|
2779
|
+
{
|
2780
|
+
"length": 20,
|
2781
|
+
"start": 9752
|
2782
|
+
},
|
2783
|
+
{
|
2784
|
+
"length": 20,
|
2785
|
+
"start": 14760
|
2786
|
+
},
|
2787
|
+
{
|
2788
|
+
"length": 20,
|
2789
|
+
"start": 17017
|
2790
|
+
}
|
2791
|
+
]
|
2792
|
+
},
|
2793
|
+
"contracts/type/Seconds.sol": {
|
2794
|
+
"SecondsLib": [
|
2795
|
+
{
|
2796
|
+
"length": 20,
|
2797
|
+
"start": 7947
|
2798
|
+
}
|
2799
|
+
]
|
2800
|
+
},
|
2801
|
+
"contracts/type/Version.sol": {
|
2802
|
+
"VersionLib": [
|
2803
|
+
{
|
2804
|
+
"length": 20,
|
2805
|
+
"start": 2867
|
2806
|
+
},
|
2807
|
+
{
|
2808
|
+
"length": 20,
|
2809
|
+
"start": 4705
|
2810
|
+
}
|
2811
|
+
],
|
2812
|
+
"VersionPartLib": [
|
2813
|
+
{
|
2814
|
+
"length": 20,
|
2815
|
+
"start": 9451
|
2816
|
+
}
|
2817
|
+
]
|
2818
|
+
}
|
2819
|
+
}
|
2820
|
+
}
|