@etherisc/gif-next 0.0.2-aa0bd77 → 0.0.2-aa7068b-175
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 +427 -9
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1023 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +752 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
- package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +791 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1494 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
- package/artifacts/contracts/{registry/IRegistry.sol/IOwnable.json → authorization/AccessAdmin.sol/IAccessManagedChecker.json} +4 -4
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +673 -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 +615 -0
- package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/{instance/access → authorization}/IAccess.sol/IAccess.json +1 -1
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1224 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +382 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1338 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +644 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1016 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1525 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +872 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +915 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1008 -0
- 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 +1491 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +644 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2048 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +644 -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 +1495 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +644 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1195 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1671 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +644 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2448 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +644 -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 +413 -487
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +789 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +553 -561
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2036 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +716 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +2429 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1035 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +734 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3718 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
- package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
- package/artifacts/contracts/instance/base/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 +4 -0
- package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IBundle.sol/IBundle.json} +2 -2
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IComponents.sol/IComponents.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.json +10 -0
- 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 +959 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +632 -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 +774 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +733 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +875 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1013 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +772 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1252 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +644 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1277 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +808 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +880 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +907 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1230 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1027 -0
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +456 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1590 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +816 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +829 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +736 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1161 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +644 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1512 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +856 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +597 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1064 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +981 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +602 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +1018 -0
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
- package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +459 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1349 -0
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +293 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +816 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +946 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +792 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1119 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
- package/artifacts/contracts/product/RiskService.sol/RiskService.json +659 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +732 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +295 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +1054 -123
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1043 -0
- 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 +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +39 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +1559 -161
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2018 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +878 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1269 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +735 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1954 -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 +1337 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
- package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/shared/Component.sol/Component.json +707 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1532 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +812 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +485 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +597 -0
- package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
- package/artifacts/contracts/{instance/component/IComponent.sol/IInstanceLinked.json → shared/ContractLib.sol/IInstanceAdminHelper.json} +5 -5
- package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
- package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/ContractLib.sol/ITargetHelper.json} +4 -9
- 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/shared/IComponent.sol/IComponent.json +632 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1180 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +709 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +510 -0
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +146 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +147 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +329 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +5 -19
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/shared/IService.sol/IService.json +399 -0
- 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 +797 -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 +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +209 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +378 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/shared/Service.sol/Service.json +453 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +723 -0
- 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 +1465 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1096 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +1849 -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 +788 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +587 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1317 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +740 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2283 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -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 +225 -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 +317 -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 +433 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -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 +132 -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 +548 -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/upgradeability/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +78 -0
- package/contracts/accounting/AccountingService.sol +261 -0
- package/contracts/accounting/AccountingServiceManager.sol +38 -0
- package/contracts/accounting/IAccountingService.sol +45 -0
- package/contracts/authorization/AccessAdmin.sol +704 -0
- package/contracts/authorization/AccessAdminLib.sol +183 -0
- package/contracts/authorization/AccessManagerCloneable.sol +158 -0
- package/contracts/authorization/Authorization.sol +365 -0
- package/contracts/authorization/IAccess.sol +49 -0
- package/contracts/authorization/IAccessAdmin.sol +170 -0
- package/contracts/authorization/IAuthorization.sol +80 -0
- package/contracts/authorization/IServiceAuthorization.sol +40 -0
- package/contracts/authorization/ServiceAuthorization.sol +106 -0
- package/contracts/distribution/BasicDistribution.sol +141 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +60 -0
- package/contracts/distribution/Distribution.sol +289 -0
- package/contracts/distribution/DistributionService.sol +362 -0
- package/contracts/distribution/DistributionServiceManager.sol +39 -0
- package/contracts/distribution/IDistributionComponent.sol +52 -0
- package/contracts/distribution/IDistributionService.sol +101 -0
- package/contracts/examples/fire/DamageLevel.sol +59 -0
- package/contracts/examples/fire/FirePool.sol +90 -0
- package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
- package/contracts/examples/fire/FireProduct.sol +437 -0
- package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
- package/contracts/examples/fire/FireUSD.sol +26 -0
- package/contracts/examples/unpermissioned/SimpleDistribution.sol +57 -0
- package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
- package/contracts/examples/unpermissioned/SimplePool.sol +106 -0
- package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
- package/contracts/examples/unpermissioned/SimpleProduct.sol +377 -0
- package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
- package/contracts/instance/BundleSet.sol +130 -0
- package/contracts/instance/IInstance.sol +98 -15
- package/contracts/instance/IInstanceService.sol +83 -0
- package/contracts/instance/Instance.sol +271 -45
- package/contracts/instance/InstanceAdmin.sol +450 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +235 -0
- package/contracts/instance/InstanceReader.sol +637 -0
- package/contracts/instance/InstanceService.sol +450 -0
- package/contracts/instance/InstanceServiceManager.sol +39 -0
- package/contracts/instance/InstanceStore.sol +298 -0
- package/contracts/instance/RiskSet.sol +118 -0
- package/contracts/instance/base/BalanceStore.sol +123 -0
- package/contracts/instance/base/Cloneable.sol +28 -0
- package/contracts/instance/base/ObjectCounter.sol +20 -0
- package/contracts/instance/base/ObjectLifecycle.sol +113 -0
- package/contracts/instance/base/ObjectSet.sol +77 -0
- package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IComponents.sol +51 -0
- package/contracts/instance/module/IDistribution.sol +42 -0
- package/contracts/instance/module/IPolicy.sol +85 -0
- package/contracts/instance/module/IRisk.sol +14 -0
- package/contracts/mock/Dip.sol +26 -0
- package/contracts/oracle/BasicOracle.sol +47 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +37 -0
- package/contracts/oracle/IOracle.sol +36 -0
- package/contracts/oracle/IOracleComponent.sol +33 -0
- package/contracts/oracle/IOracleService.sol +66 -0
- package/contracts/oracle/Oracle.sol +156 -0
- package/contracts/oracle/OracleService.sol +310 -0
- package/contracts/oracle/OracleServiceManager.sol +39 -0
- package/contracts/pool/BasicPool.sol +175 -0
- package/contracts/pool/BasicPoolAuthorization.sol +76 -0
- package/contracts/pool/BundleService.sol +395 -0
- package/contracts/pool/BundleServiceManager.sol +39 -0
- package/contracts/pool/IBundleService.sol +115 -0
- package/contracts/pool/IPoolComponent.sol +62 -0
- package/contracts/pool/IPoolService.sol +165 -0
- package/contracts/pool/Pool.sol +345 -0
- package/contracts/pool/PoolLib.sol +216 -0
- package/contracts/pool/PoolService.sol +760 -0
- package/contracts/pool/PoolServiceManager.sol +39 -0
- package/contracts/product/ApplicationService.sol +263 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/BasicProduct.sol +51 -0
- package/contracts/product/BasicProductAuthorization.sol +56 -0
- package/contracts/product/ClaimService.sol +640 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +66 -0
- package/contracts/product/IClaimService.sol +135 -0
- package/contracts/product/IPolicyService.sol +95 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +62 -0
- package/contracts/product/IRiskService.sol +30 -0
- package/contracts/product/PolicyService.sol +672 -0
- package/contracts/product/PolicyServiceLib.sol +65 -0
- package/contracts/product/PolicyServiceManager.sol +39 -0
- package/contracts/product/PricingService.sol +304 -0
- package/contracts/product/PricingServiceManager.sol +39 -0
- package/contracts/product/Product.sol +469 -0
- package/contracts/product/RiskService.sol +144 -0
- package/contracts/product/RiskServiceManager.sol +39 -0
- package/contracts/registry/ChainNft.sol +176 -100
- package/contracts/registry/IRegistry.sol +149 -51
- package/contracts/registry/IRegistryService.sol +62 -0
- package/contracts/registry/IRelease.sol +26 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +665 -111
- package/contracts/registry/RegistryAdmin.sol +258 -0
- package/contracts/registry/RegistryAuthorization.sol +266 -0
- package/contracts/registry/RegistryService.sol +241 -0
- package/contracts/registry/RegistryServiceManager.sol +53 -0
- package/contracts/registry/ReleaseAdmin.sol +253 -0
- package/contracts/registry/ReleaseLifecycle.sol +32 -0
- package/contracts/registry/ReleaseRegistry.sol +517 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +330 -0
- package/contracts/registry/TokenRegistry.sol +313 -0
- package/contracts/shared/Component.sol +227 -0
- package/contracts/shared/ComponentService.sol +696 -0
- package/contracts/shared/ComponentServiceManager.sol +38 -0
- package/contracts/shared/ComponentVerifyingService.sol +128 -0
- package/contracts/shared/ContractLib.sol +281 -0
- package/contracts/shared/IComponent.sol +61 -0
- package/contracts/shared/IComponentService.sol +110 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
- package/contracts/shared/IKeyValueStore.sol +54 -0
- package/contracts/shared/ILifecycle.sol +31 -0
- package/contracts/shared/INftOwnable.sol +25 -0
- package/contracts/shared/IPolicyHolder.sol +35 -0
- package/contracts/shared/IRegisterable.sol +37 -0
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +23 -0
- package/contracts/shared/InitializableERC165.sol +35 -0
- package/contracts/shared/InstanceLinkedComponent.sol +197 -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 +128 -0
- package/contracts/shared/PolicyHolder.sol +62 -0
- package/contracts/shared/Registerable.sol +106 -0
- package/contracts/shared/RegistryLinked.sol +38 -0
- package/contracts/shared/Service.sol +65 -0
- package/contracts/shared/TokenHandler.sol +342 -0
- package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
- package/contracts/staking/IStaking.sol +169 -0
- package/contracts/staking/IStakingService.sol +168 -0
- package/contracts/staking/StakeManagerLib.sol +224 -0
- package/contracts/staking/Staking.sol +526 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +52 -0
- package/contracts/staking/StakingReader.sol +190 -0
- package/contracts/staking/StakingService.sol +433 -0
- package/contracts/staking/StakingServiceManager.sol +45 -0
- package/contracts/staking/StakingStore.sol +605 -0
- package/contracts/staking/TargetManagerLib.sol +211 -0
- package/contracts/type/AddressSet.sol +58 -0
- package/contracts/type/Amount.sol +150 -0
- package/contracts/type/Blocknumber.sol +142 -0
- package/contracts/type/ClaimId.sol +80 -0
- package/contracts/type/DistributorType.sol +55 -0
- package/contracts/type/Fee.sol +66 -0
- package/contracts/type/Key32.sol +50 -0
- package/contracts/type/Key32Set.sol +62 -0
- package/contracts/type/NftId.sol +85 -0
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/type/ObjectType.sol +294 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/type/Referral.sol +90 -0
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/type/RiskId.sol +75 -0
- package/contracts/type/RoleId.sol +182 -0
- package/contracts/type/Seconds.sol +101 -0
- package/contracts/type/Selector.sol +107 -0
- package/contracts/type/StateId.sol +149 -0
- package/contracts/type/String.sol +53 -0
- package/contracts/type/Timestamp.sol +141 -0
- package/contracts/type/UFixed.sol +245 -0
- package/contracts/type/Version.sol +159 -0
- package/contracts/upgradeability/IVersionable.sol +53 -0
- package/contracts/upgradeability/ProxyManager.sol +232 -0
- package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +14 -0
- package/contracts/upgradeability/Versionable.sol +59 -0
- package/package.json +26 -7
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/Component.json +0 -179
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -195
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -213
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -327
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -105
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -162
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -125
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -10
- package/contracts/components/Component.sol +0 -62
- package/contracts/components/IPool.sol +0 -9
- package/contracts/components/IProduct.sol +0 -11
- package/contracts/components/Pool.sol +0 -29
- package/contracts/components/Product.sol +0 -65
- package/contracts/experiment/inheritance/A.sol +0 -56
- package/contracts/experiment/inheritance/B.sol +0 -23
- package/contracts/experiment/inheritance/C.sol +0 -28
- package/contracts/experiment/inheritance/IA.sol +0 -18
- package/contracts/experiment/inheritance/IB.sol +0 -9
- package/contracts/experiment/inheritance/IC.sol +0 -11
- package/contracts/experiment/types/TypeA.sol +0 -42
- package/contracts/experiment/types/TypeB.sol +0 -24
- package/contracts/instance/access/Access.sol +0 -218
- package/contracts/instance/access/IAccess.sol +0 -83
- package/contracts/instance/component/ComponentModule.sol +0 -259
- package/contracts/instance/component/IComponent.sol +0 -94
- package/contracts/instance/policy/IPolicy.sol +0 -66
- package/contracts/instance/policy/PolicyModule.sol +0 -106
- package/contracts/instance/pool/IPoolModule.sol +0 -40
- package/contracts/instance/pool/PoolModule.sol +0 -83
- package/contracts/instance/product/IProductService.sol +0 -45
- package/contracts/instance/product/ProductService.sol +0 -105
- package/contracts/registry/IChainNft.sol +0 -18
- package/contracts/types/ChainId.sol +0 -24
- package/contracts/types/NftId.sol +0 -25
@@ -0,0 +1,1532 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "ComponentService",
|
4
|
+
"sourceName": "contracts/shared/ComponentService.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
|
+
{
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "component",
|
60
|
+
"type": "address"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "ErrorComponentServiceAlreadyRegistered",
|
64
|
+
"type": "error"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [
|
68
|
+
{
|
69
|
+
"internalType": "address",
|
70
|
+
"name": "instanceAddress",
|
71
|
+
"type": "address"
|
72
|
+
},
|
73
|
+
{
|
74
|
+
"internalType": "VersionPart",
|
75
|
+
"name": "instanceVersion",
|
76
|
+
"type": "uint8"
|
77
|
+
}
|
78
|
+
],
|
79
|
+
"name": "ErrorComponentServiceInstanceVersionMismatch",
|
80
|
+
"type": "error"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"inputs": [
|
84
|
+
{
|
85
|
+
"internalType": "address",
|
86
|
+
"name": "component",
|
87
|
+
"type": "address"
|
88
|
+
},
|
89
|
+
{
|
90
|
+
"internalType": "ObjectType",
|
91
|
+
"name": "requiredType",
|
92
|
+
"type": "uint8"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"internalType": "ObjectType",
|
96
|
+
"name": "componentType",
|
97
|
+
"type": "uint8"
|
98
|
+
}
|
99
|
+
],
|
100
|
+
"name": "ErrorComponentServiceInvalidType",
|
101
|
+
"type": "error"
|
102
|
+
},
|
103
|
+
{
|
104
|
+
"inputs": [],
|
105
|
+
"name": "ErrorComponentServiceNewWalletAddressZero",
|
106
|
+
"type": "error"
|
107
|
+
},
|
108
|
+
{
|
109
|
+
"inputs": [
|
110
|
+
{
|
111
|
+
"internalType": "address",
|
112
|
+
"name": "component",
|
113
|
+
"type": "address"
|
114
|
+
}
|
115
|
+
],
|
116
|
+
"name": "ErrorComponentServiceNotComponent",
|
117
|
+
"type": "error"
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"inputs": [
|
121
|
+
{
|
122
|
+
"internalType": "address",
|
123
|
+
"name": "instanceAddress",
|
124
|
+
"type": "address"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"internalType": "ObjectType",
|
128
|
+
"name": "objectType",
|
129
|
+
"type": "uint8"
|
130
|
+
}
|
131
|
+
],
|
132
|
+
"name": "ErrorComponentServiceNotInstance",
|
133
|
+
"type": "error"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"inputs": [
|
137
|
+
{
|
138
|
+
"internalType": "address",
|
139
|
+
"name": "component",
|
140
|
+
"type": "address"
|
141
|
+
}
|
142
|
+
],
|
143
|
+
"name": "ErrorComponentServiceNotInstanceLinkedComponent",
|
144
|
+
"type": "error"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"inputs": [
|
148
|
+
{
|
149
|
+
"internalType": "address",
|
150
|
+
"name": "instanceAddress",
|
151
|
+
"type": "address"
|
152
|
+
}
|
153
|
+
],
|
154
|
+
"name": "ErrorComponentServiceNotRegistered",
|
155
|
+
"type": "error"
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"inputs": [
|
159
|
+
{
|
160
|
+
"internalType": "NftId",
|
161
|
+
"name": "nftId",
|
162
|
+
"type": "uint96"
|
163
|
+
},
|
164
|
+
{
|
165
|
+
"internalType": "ObjectType",
|
166
|
+
"name": "objectType",
|
167
|
+
"type": "uint8"
|
168
|
+
}
|
169
|
+
],
|
170
|
+
"name": "ErrorComponentServiceParentNotInstance",
|
171
|
+
"type": "error"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"inputs": [
|
175
|
+
{
|
176
|
+
"internalType": "NftId",
|
177
|
+
"name": "nftId",
|
178
|
+
"type": "uint96"
|
179
|
+
},
|
180
|
+
{
|
181
|
+
"internalType": "ObjectType",
|
182
|
+
"name": "objectType",
|
183
|
+
"type": "uint8"
|
184
|
+
}
|
185
|
+
],
|
186
|
+
"name": "ErrorComponentServiceParentNotProduct",
|
187
|
+
"type": "error"
|
188
|
+
},
|
189
|
+
{
|
190
|
+
"inputs": [
|
191
|
+
{
|
192
|
+
"internalType": "address",
|
193
|
+
"name": "component",
|
194
|
+
"type": "address"
|
195
|
+
},
|
196
|
+
{
|
197
|
+
"internalType": "VersionPart",
|
198
|
+
"name": "componentRelease",
|
199
|
+
"type": "uint8"
|
200
|
+
},
|
201
|
+
{
|
202
|
+
"internalType": "VersionPart",
|
203
|
+
"name": "parentRelease",
|
204
|
+
"type": "uint8"
|
205
|
+
}
|
206
|
+
],
|
207
|
+
"name": "ErrorComponentServiceReleaseMismatch",
|
208
|
+
"type": "error"
|
209
|
+
},
|
210
|
+
{
|
211
|
+
"inputs": [
|
212
|
+
{
|
213
|
+
"internalType": "NftId",
|
214
|
+
"name": "senderNftId",
|
215
|
+
"type": "uint96"
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"internalType": "NftId",
|
219
|
+
"name": "compnentParentNftId",
|
220
|
+
"type": "uint96"
|
221
|
+
}
|
222
|
+
],
|
223
|
+
"name": "ErrorComponentServiceSenderNotComponentParent",
|
224
|
+
"type": "error"
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"inputs": [
|
228
|
+
{
|
229
|
+
"internalType": "address",
|
230
|
+
"name": "sender",
|
231
|
+
"type": "address"
|
232
|
+
}
|
233
|
+
],
|
234
|
+
"name": "ErrorComponentServiceSenderNotRegistered",
|
235
|
+
"type": "error"
|
236
|
+
},
|
237
|
+
{
|
238
|
+
"inputs": [
|
239
|
+
{
|
240
|
+
"internalType": "address",
|
241
|
+
"name": "component",
|
242
|
+
"type": "address"
|
243
|
+
},
|
244
|
+
{
|
245
|
+
"internalType": "ObjectType",
|
246
|
+
"name": "invalidType",
|
247
|
+
"type": "uint8"
|
248
|
+
}
|
249
|
+
],
|
250
|
+
"name": "ErrorComponentServiceTypeNotSupported",
|
251
|
+
"type": "error"
|
252
|
+
},
|
253
|
+
{
|
254
|
+
"inputs": [],
|
255
|
+
"name": "ErrorComponentServiceWalletAddressIsSameAsCurrent",
|
256
|
+
"type": "error"
|
257
|
+
},
|
258
|
+
{
|
259
|
+
"inputs": [],
|
260
|
+
"name": "ErrorComponentServiceWalletAddressZero",
|
261
|
+
"type": "error"
|
262
|
+
},
|
263
|
+
{
|
264
|
+
"inputs": [
|
265
|
+
{
|
266
|
+
"internalType": "address",
|
267
|
+
"name": "wallet",
|
268
|
+
"type": "address"
|
269
|
+
},
|
270
|
+
{
|
271
|
+
"internalType": "address",
|
272
|
+
"name": "spender",
|
273
|
+
"type": "address"
|
274
|
+
},
|
275
|
+
{
|
276
|
+
"internalType": "uint256",
|
277
|
+
"name": "allowance",
|
278
|
+
"type": "uint256"
|
279
|
+
},
|
280
|
+
{
|
281
|
+
"internalType": "uint256",
|
282
|
+
"name": "amount",
|
283
|
+
"type": "uint256"
|
284
|
+
}
|
285
|
+
],
|
286
|
+
"name": "ErrorComponentServiceWalletAllowanceTooSmall",
|
287
|
+
"type": "error"
|
288
|
+
},
|
289
|
+
{
|
290
|
+
"inputs": [
|
291
|
+
{
|
292
|
+
"internalType": "Amount",
|
293
|
+
"name": "withdrawnAmount",
|
294
|
+
"type": "uint96"
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"internalType": "Amount",
|
298
|
+
"name": "withdrawLimit",
|
299
|
+
"type": "uint96"
|
300
|
+
}
|
301
|
+
],
|
302
|
+
"name": "ErrorComponentServiceWithdrawAmountExceedsLimit",
|
303
|
+
"type": "error"
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"inputs": [],
|
307
|
+
"name": "ErrorComponentServiceWithdrawAmountIsZero",
|
308
|
+
"type": "error"
|
309
|
+
},
|
310
|
+
{
|
311
|
+
"inputs": [
|
312
|
+
{
|
313
|
+
"internalType": "NftId",
|
314
|
+
"name": "nftId",
|
315
|
+
"type": "uint96"
|
316
|
+
}
|
317
|
+
],
|
318
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
319
|
+
"type": "error"
|
320
|
+
},
|
321
|
+
{
|
322
|
+
"inputs": [
|
323
|
+
{
|
324
|
+
"internalType": "address",
|
325
|
+
"name": "contractAddress",
|
326
|
+
"type": "address"
|
327
|
+
}
|
328
|
+
],
|
329
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
330
|
+
"type": "error"
|
331
|
+
},
|
332
|
+
{
|
333
|
+
"inputs": [],
|
334
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
335
|
+
"type": "error"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"inputs": [
|
339
|
+
{
|
340
|
+
"internalType": "NftId",
|
341
|
+
"name": "nftId",
|
342
|
+
"type": "uint96"
|
343
|
+
},
|
344
|
+
{
|
345
|
+
"internalType": "ObjectType",
|
346
|
+
"name": "expectedObjectType",
|
347
|
+
"type": "uint8"
|
348
|
+
}
|
349
|
+
],
|
350
|
+
"name": "ErrorNftOwnableInvalidType",
|
351
|
+
"type": "error"
|
352
|
+
},
|
353
|
+
{
|
354
|
+
"inputs": [
|
355
|
+
{
|
356
|
+
"internalType": "address",
|
357
|
+
"name": "account",
|
358
|
+
"type": "address"
|
359
|
+
}
|
360
|
+
],
|
361
|
+
"name": "ErrorNftOwnableNotOwner",
|
362
|
+
"type": "error"
|
363
|
+
},
|
364
|
+
{
|
365
|
+
"inputs": [
|
366
|
+
{
|
367
|
+
"internalType": "address",
|
368
|
+
"name": "registryAddress",
|
369
|
+
"type": "address"
|
370
|
+
}
|
371
|
+
],
|
372
|
+
"name": "ErrorNotRegistry",
|
373
|
+
"type": "error"
|
374
|
+
},
|
375
|
+
{
|
376
|
+
"inputs": [
|
377
|
+
{
|
378
|
+
"internalType": "NftId",
|
379
|
+
"name": "productNftId",
|
380
|
+
"type": "uint96"
|
381
|
+
},
|
382
|
+
{
|
383
|
+
"internalType": "NftId",
|
384
|
+
"name": "distributionNftId",
|
385
|
+
"type": "uint96"
|
386
|
+
}
|
387
|
+
],
|
388
|
+
"name": "ErrorProductServiceDistributionAlreadyRegistered",
|
389
|
+
"type": "error"
|
390
|
+
},
|
391
|
+
{
|
392
|
+
"inputs": [
|
393
|
+
{
|
394
|
+
"internalType": "NftId",
|
395
|
+
"name": "productNftId",
|
396
|
+
"type": "uint96"
|
397
|
+
}
|
398
|
+
],
|
399
|
+
"name": "ErrorProductServiceNoDistributionExpected",
|
400
|
+
"type": "error"
|
401
|
+
},
|
402
|
+
{
|
403
|
+
"inputs": [
|
404
|
+
{
|
405
|
+
"internalType": "NftId",
|
406
|
+
"name": "productNftId",
|
407
|
+
"type": "uint96"
|
408
|
+
}
|
409
|
+
],
|
410
|
+
"name": "ErrorProductServiceNoOraclesExpected",
|
411
|
+
"type": "error"
|
412
|
+
},
|
413
|
+
{
|
414
|
+
"inputs": [
|
415
|
+
{
|
416
|
+
"internalType": "NftId",
|
417
|
+
"name": "productNftId",
|
418
|
+
"type": "uint96"
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"internalType": "uint8",
|
422
|
+
"name": "expectedOracles",
|
423
|
+
"type": "uint8"
|
424
|
+
}
|
425
|
+
],
|
426
|
+
"name": "ErrorProductServiceOraclesAlreadyRegistered",
|
427
|
+
"type": "error"
|
428
|
+
},
|
429
|
+
{
|
430
|
+
"inputs": [
|
431
|
+
{
|
432
|
+
"internalType": "NftId",
|
433
|
+
"name": "productNftId",
|
434
|
+
"type": "uint96"
|
435
|
+
},
|
436
|
+
{
|
437
|
+
"internalType": "NftId",
|
438
|
+
"name": "poolNftId",
|
439
|
+
"type": "uint96"
|
440
|
+
}
|
441
|
+
],
|
442
|
+
"name": "ErrorProductServicePoolAlreadyRegistered",
|
443
|
+
"type": "error"
|
444
|
+
},
|
445
|
+
{
|
446
|
+
"inputs": [],
|
447
|
+
"name": "ErrorRegisterableNotActive",
|
448
|
+
"type": "error"
|
449
|
+
},
|
450
|
+
{
|
451
|
+
"inputs": [],
|
452
|
+
"name": "InvalidInitialization",
|
453
|
+
"type": "error"
|
454
|
+
},
|
455
|
+
{
|
456
|
+
"inputs": [],
|
457
|
+
"name": "NotInitializing",
|
458
|
+
"type": "error"
|
459
|
+
},
|
460
|
+
{
|
461
|
+
"inputs": [],
|
462
|
+
"name": "ReentrancyGuardReentrantCall",
|
463
|
+
"type": "error"
|
464
|
+
},
|
465
|
+
{
|
466
|
+
"anonymous": false,
|
467
|
+
"inputs": [
|
468
|
+
{
|
469
|
+
"indexed": false,
|
470
|
+
"internalType": "address",
|
471
|
+
"name": "authority",
|
472
|
+
"type": "address"
|
473
|
+
}
|
474
|
+
],
|
475
|
+
"name": "AuthorityUpdated",
|
476
|
+
"type": "event"
|
477
|
+
},
|
478
|
+
{
|
479
|
+
"anonymous": false,
|
480
|
+
"inputs": [
|
481
|
+
{
|
482
|
+
"indexed": false,
|
483
|
+
"internalType": "uint64",
|
484
|
+
"name": "version",
|
485
|
+
"type": "uint64"
|
486
|
+
}
|
487
|
+
],
|
488
|
+
"name": "Initialized",
|
489
|
+
"type": "event"
|
490
|
+
},
|
491
|
+
{
|
492
|
+
"anonymous": false,
|
493
|
+
"inputs": [
|
494
|
+
{
|
495
|
+
"indexed": false,
|
496
|
+
"internalType": "NftId",
|
497
|
+
"name": "componentNftId",
|
498
|
+
"type": "uint96"
|
499
|
+
},
|
500
|
+
{
|
501
|
+
"indexed": false,
|
502
|
+
"internalType": "address",
|
503
|
+
"name": "recipient",
|
504
|
+
"type": "address"
|
505
|
+
},
|
506
|
+
{
|
507
|
+
"indexed": false,
|
508
|
+
"internalType": "address",
|
509
|
+
"name": "token",
|
510
|
+
"type": "address"
|
511
|
+
},
|
512
|
+
{
|
513
|
+
"indexed": false,
|
514
|
+
"internalType": "Amount",
|
515
|
+
"name": "withdrawnAmount",
|
516
|
+
"type": "uint96"
|
517
|
+
}
|
518
|
+
],
|
519
|
+
"name": "LogComponentServiceComponentFeesWithdrawn",
|
520
|
+
"type": "event"
|
521
|
+
},
|
522
|
+
{
|
523
|
+
"anonymous": false,
|
524
|
+
"inputs": [
|
525
|
+
{
|
526
|
+
"indexed": false,
|
527
|
+
"internalType": "NftId",
|
528
|
+
"name": "distributionNftId",
|
529
|
+
"type": "uint96"
|
530
|
+
}
|
531
|
+
],
|
532
|
+
"name": "LogComponentServiceDistributionFeesUpdated",
|
533
|
+
"type": "event"
|
534
|
+
},
|
535
|
+
{
|
536
|
+
"anonymous": false,
|
537
|
+
"inputs": [
|
538
|
+
{
|
539
|
+
"indexed": false,
|
540
|
+
"internalType": "NftId",
|
541
|
+
"name": "poolNftId",
|
542
|
+
"type": "uint96"
|
543
|
+
}
|
544
|
+
],
|
545
|
+
"name": "LogComponentServicePoolFeesUpdated",
|
546
|
+
"type": "event"
|
547
|
+
},
|
548
|
+
{
|
549
|
+
"anonymous": false,
|
550
|
+
"inputs": [
|
551
|
+
{
|
552
|
+
"indexed": false,
|
553
|
+
"internalType": "NftId",
|
554
|
+
"name": "productNftId",
|
555
|
+
"type": "uint96"
|
556
|
+
}
|
557
|
+
],
|
558
|
+
"name": "LogComponentServiceProductFeesUpdated",
|
559
|
+
"type": "event"
|
560
|
+
},
|
561
|
+
{
|
562
|
+
"anonymous": false,
|
563
|
+
"inputs": [
|
564
|
+
{
|
565
|
+
"indexed": false,
|
566
|
+
"internalType": "NftId",
|
567
|
+
"name": "instanceNftId",
|
568
|
+
"type": "uint96"
|
569
|
+
},
|
570
|
+
{
|
571
|
+
"indexed": false,
|
572
|
+
"internalType": "NftId",
|
573
|
+
"name": "componentNftId",
|
574
|
+
"type": "uint96"
|
575
|
+
},
|
576
|
+
{
|
577
|
+
"indexed": false,
|
578
|
+
"internalType": "ObjectType",
|
579
|
+
"name": "componentType",
|
580
|
+
"type": "uint8"
|
581
|
+
},
|
582
|
+
{
|
583
|
+
"indexed": false,
|
584
|
+
"internalType": "address",
|
585
|
+
"name": "component",
|
586
|
+
"type": "address"
|
587
|
+
},
|
588
|
+
{
|
589
|
+
"indexed": false,
|
590
|
+
"internalType": "address",
|
591
|
+
"name": "token",
|
592
|
+
"type": "address"
|
593
|
+
},
|
594
|
+
{
|
595
|
+
"indexed": false,
|
596
|
+
"internalType": "address",
|
597
|
+
"name": "initialOwner",
|
598
|
+
"type": "address"
|
599
|
+
}
|
600
|
+
],
|
601
|
+
"name": "LogComponentServiceRegistered",
|
602
|
+
"type": "event"
|
603
|
+
},
|
604
|
+
{
|
605
|
+
"anonymous": false,
|
606
|
+
"inputs": [
|
607
|
+
{
|
608
|
+
"indexed": false,
|
609
|
+
"internalType": "NftId",
|
610
|
+
"name": "nftId",
|
611
|
+
"type": "uint96"
|
612
|
+
},
|
613
|
+
{
|
614
|
+
"indexed": false,
|
615
|
+
"internalType": "string",
|
616
|
+
"name": "feeName",
|
617
|
+
"type": "string"
|
618
|
+
},
|
619
|
+
{
|
620
|
+
"indexed": false,
|
621
|
+
"internalType": "UFixed",
|
622
|
+
"name": "previousFractionalFee",
|
623
|
+
"type": "uint256"
|
624
|
+
},
|
625
|
+
{
|
626
|
+
"indexed": false,
|
627
|
+
"internalType": "uint256",
|
628
|
+
"name": "previousFixedFee",
|
629
|
+
"type": "uint256"
|
630
|
+
},
|
631
|
+
{
|
632
|
+
"indexed": false,
|
633
|
+
"internalType": "UFixed",
|
634
|
+
"name": "newFractionalFee",
|
635
|
+
"type": "uint256"
|
636
|
+
},
|
637
|
+
{
|
638
|
+
"indexed": false,
|
639
|
+
"internalType": "uint256",
|
640
|
+
"name": "newFixedFee",
|
641
|
+
"type": "uint256"
|
642
|
+
}
|
643
|
+
],
|
644
|
+
"name": "LogComponentServiceUpdateFee",
|
645
|
+
"type": "event"
|
646
|
+
},
|
647
|
+
{
|
648
|
+
"anonymous": false,
|
649
|
+
"inputs": [
|
650
|
+
{
|
651
|
+
"indexed": false,
|
652
|
+
"internalType": "NftId",
|
653
|
+
"name": "componentNftId",
|
654
|
+
"type": "uint96"
|
655
|
+
},
|
656
|
+
{
|
657
|
+
"indexed": false,
|
658
|
+
"internalType": "address",
|
659
|
+
"name": "currentWallet",
|
660
|
+
"type": "address"
|
661
|
+
},
|
662
|
+
{
|
663
|
+
"indexed": false,
|
664
|
+
"internalType": "address",
|
665
|
+
"name": "newWallet",
|
666
|
+
"type": "address"
|
667
|
+
}
|
668
|
+
],
|
669
|
+
"name": "LogComponentServiceWalletAddressChanged",
|
670
|
+
"type": "event"
|
671
|
+
},
|
672
|
+
{
|
673
|
+
"anonymous": false,
|
674
|
+
"inputs": [
|
675
|
+
{
|
676
|
+
"indexed": false,
|
677
|
+
"internalType": "NftId",
|
678
|
+
"name": "componentNftId",
|
679
|
+
"type": "uint96"
|
680
|
+
},
|
681
|
+
{
|
682
|
+
"indexed": false,
|
683
|
+
"internalType": "address",
|
684
|
+
"name": "currentWallet",
|
685
|
+
"type": "address"
|
686
|
+
},
|
687
|
+
{
|
688
|
+
"indexed": false,
|
689
|
+
"internalType": "address",
|
690
|
+
"name": "newWallet",
|
691
|
+
"type": "address"
|
692
|
+
},
|
693
|
+
{
|
694
|
+
"indexed": false,
|
695
|
+
"internalType": "uint256",
|
696
|
+
"name": "currentBalance",
|
697
|
+
"type": "uint256"
|
698
|
+
}
|
699
|
+
],
|
700
|
+
"name": "LogComponentServiceWalletTokensTransferred",
|
701
|
+
"type": "event"
|
702
|
+
},
|
703
|
+
{
|
704
|
+
"inputs": [],
|
705
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
706
|
+
"outputs": [
|
707
|
+
{
|
708
|
+
"internalType": "bytes32",
|
709
|
+
"name": "",
|
710
|
+
"type": "bytes32"
|
711
|
+
}
|
712
|
+
],
|
713
|
+
"stateMutability": "view",
|
714
|
+
"type": "function"
|
715
|
+
},
|
716
|
+
{
|
717
|
+
"inputs": [],
|
718
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
719
|
+
"outputs": [
|
720
|
+
{
|
721
|
+
"internalType": "bytes32",
|
722
|
+
"name": "",
|
723
|
+
"type": "bytes32"
|
724
|
+
}
|
725
|
+
],
|
726
|
+
"stateMutability": "view",
|
727
|
+
"type": "function"
|
728
|
+
},
|
729
|
+
{
|
730
|
+
"inputs": [
|
731
|
+
{
|
732
|
+
"internalType": "contract IERC20Metadata",
|
733
|
+
"name": "token",
|
734
|
+
"type": "address"
|
735
|
+
},
|
736
|
+
{
|
737
|
+
"internalType": "Amount",
|
738
|
+
"name": "amount",
|
739
|
+
"type": "uint96"
|
740
|
+
}
|
741
|
+
],
|
742
|
+
"name": "approveTokenHandler",
|
743
|
+
"outputs": [],
|
744
|
+
"stateMutability": "nonpayable",
|
745
|
+
"type": "function"
|
746
|
+
},
|
747
|
+
{
|
748
|
+
"inputs": [],
|
749
|
+
"name": "authority",
|
750
|
+
"outputs": [
|
751
|
+
{
|
752
|
+
"internalType": "address",
|
753
|
+
"name": "",
|
754
|
+
"type": "address"
|
755
|
+
}
|
756
|
+
],
|
757
|
+
"stateMutability": "view",
|
758
|
+
"type": "function"
|
759
|
+
},
|
760
|
+
{
|
761
|
+
"inputs": [],
|
762
|
+
"name": "getDomain",
|
763
|
+
"outputs": [
|
764
|
+
{
|
765
|
+
"internalType": "ObjectType",
|
766
|
+
"name": "serviceDomain",
|
767
|
+
"type": "uint8"
|
768
|
+
}
|
769
|
+
],
|
770
|
+
"stateMutability": "pure",
|
771
|
+
"type": "function"
|
772
|
+
},
|
773
|
+
{
|
774
|
+
"inputs": [],
|
775
|
+
"name": "getInitialInfo",
|
776
|
+
"outputs": [
|
777
|
+
{
|
778
|
+
"components": [
|
779
|
+
{
|
780
|
+
"internalType": "NftId",
|
781
|
+
"name": "nftId",
|
782
|
+
"type": "uint96"
|
783
|
+
},
|
784
|
+
{
|
785
|
+
"internalType": "NftId",
|
786
|
+
"name": "parentNftId",
|
787
|
+
"type": "uint96"
|
788
|
+
},
|
789
|
+
{
|
790
|
+
"internalType": "ObjectType",
|
791
|
+
"name": "objectType",
|
792
|
+
"type": "uint8"
|
793
|
+
},
|
794
|
+
{
|
795
|
+
"internalType": "bool",
|
796
|
+
"name": "isInterceptor",
|
797
|
+
"type": "bool"
|
798
|
+
},
|
799
|
+
{
|
800
|
+
"internalType": "address",
|
801
|
+
"name": "objectAddress",
|
802
|
+
"type": "address"
|
803
|
+
},
|
804
|
+
{
|
805
|
+
"internalType": "address",
|
806
|
+
"name": "initialOwner",
|
807
|
+
"type": "address"
|
808
|
+
},
|
809
|
+
{
|
810
|
+
"internalType": "bytes",
|
811
|
+
"name": "data",
|
812
|
+
"type": "bytes"
|
813
|
+
}
|
814
|
+
],
|
815
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
816
|
+
"name": "info",
|
817
|
+
"type": "tuple"
|
818
|
+
}
|
819
|
+
],
|
820
|
+
"stateMutability": "view",
|
821
|
+
"type": "function"
|
822
|
+
},
|
823
|
+
{
|
824
|
+
"inputs": [],
|
825
|
+
"name": "getNftId",
|
826
|
+
"outputs": [
|
827
|
+
{
|
828
|
+
"internalType": "NftId",
|
829
|
+
"name": "",
|
830
|
+
"type": "uint96"
|
831
|
+
}
|
832
|
+
],
|
833
|
+
"stateMutability": "view",
|
834
|
+
"type": "function"
|
835
|
+
},
|
836
|
+
{
|
837
|
+
"inputs": [],
|
838
|
+
"name": "getOwner",
|
839
|
+
"outputs": [
|
840
|
+
{
|
841
|
+
"internalType": "address",
|
842
|
+
"name": "",
|
843
|
+
"type": "address"
|
844
|
+
}
|
845
|
+
],
|
846
|
+
"stateMutability": "view",
|
847
|
+
"type": "function"
|
848
|
+
},
|
849
|
+
{
|
850
|
+
"inputs": [],
|
851
|
+
"name": "getRegistry",
|
852
|
+
"outputs": [
|
853
|
+
{
|
854
|
+
"internalType": "contract IRegistry",
|
855
|
+
"name": "",
|
856
|
+
"type": "address"
|
857
|
+
}
|
858
|
+
],
|
859
|
+
"stateMutability": "view",
|
860
|
+
"type": "function"
|
861
|
+
},
|
862
|
+
{
|
863
|
+
"inputs": [],
|
864
|
+
"name": "getRelease",
|
865
|
+
"outputs": [
|
866
|
+
{
|
867
|
+
"internalType": "VersionPart",
|
868
|
+
"name": "release",
|
869
|
+
"type": "uint8"
|
870
|
+
}
|
871
|
+
],
|
872
|
+
"stateMutability": "view",
|
873
|
+
"type": "function"
|
874
|
+
},
|
875
|
+
{
|
876
|
+
"inputs": [],
|
877
|
+
"name": "getRoleId",
|
878
|
+
"outputs": [
|
879
|
+
{
|
880
|
+
"internalType": "RoleId",
|
881
|
+
"name": "serviceRoleId",
|
882
|
+
"type": "uint64"
|
883
|
+
}
|
884
|
+
],
|
885
|
+
"stateMutability": "view",
|
886
|
+
"type": "function"
|
887
|
+
},
|
888
|
+
{
|
889
|
+
"inputs": [],
|
890
|
+
"name": "getVersion",
|
891
|
+
"outputs": [
|
892
|
+
{
|
893
|
+
"internalType": "Version",
|
894
|
+
"name": "",
|
895
|
+
"type": "uint24"
|
896
|
+
}
|
897
|
+
],
|
898
|
+
"stateMutability": "pure",
|
899
|
+
"type": "function"
|
900
|
+
},
|
901
|
+
{
|
902
|
+
"inputs": [
|
903
|
+
{
|
904
|
+
"internalType": "address",
|
905
|
+
"name": "activatedBy",
|
906
|
+
"type": "address"
|
907
|
+
},
|
908
|
+
{
|
909
|
+
"internalType": "bytes",
|
910
|
+
"name": "data",
|
911
|
+
"type": "bytes"
|
912
|
+
}
|
913
|
+
],
|
914
|
+
"name": "initializeVersionable",
|
915
|
+
"outputs": [],
|
916
|
+
"stateMutability": "nonpayable",
|
917
|
+
"type": "function"
|
918
|
+
},
|
919
|
+
{
|
920
|
+
"inputs": [],
|
921
|
+
"name": "isActive",
|
922
|
+
"outputs": [
|
923
|
+
{
|
924
|
+
"internalType": "bool",
|
925
|
+
"name": "active",
|
926
|
+
"type": "bool"
|
927
|
+
}
|
928
|
+
],
|
929
|
+
"stateMutability": "view",
|
930
|
+
"type": "function"
|
931
|
+
},
|
932
|
+
{
|
933
|
+
"inputs": [],
|
934
|
+
"name": "isConsumingScheduledOp",
|
935
|
+
"outputs": [
|
936
|
+
{
|
937
|
+
"internalType": "bytes4",
|
938
|
+
"name": "",
|
939
|
+
"type": "bytes4"
|
940
|
+
}
|
941
|
+
],
|
942
|
+
"stateMutability": "view",
|
943
|
+
"type": "function"
|
944
|
+
},
|
945
|
+
{
|
946
|
+
"inputs": [],
|
947
|
+
"name": "linkToRegisteredNftId",
|
948
|
+
"outputs": [
|
949
|
+
{
|
950
|
+
"internalType": "NftId",
|
951
|
+
"name": "nftId",
|
952
|
+
"type": "uint96"
|
953
|
+
}
|
954
|
+
],
|
955
|
+
"stateMutability": "nonpayable",
|
956
|
+
"type": "function"
|
957
|
+
},
|
958
|
+
{
|
959
|
+
"inputs": [
|
960
|
+
{
|
961
|
+
"internalType": "address",
|
962
|
+
"name": "component",
|
963
|
+
"type": "address"
|
964
|
+
}
|
965
|
+
],
|
966
|
+
"name": "registerComponent",
|
967
|
+
"outputs": [
|
968
|
+
{
|
969
|
+
"internalType": "NftId",
|
970
|
+
"name": "componentNftId",
|
971
|
+
"type": "uint96"
|
972
|
+
}
|
973
|
+
],
|
974
|
+
"stateMutability": "nonpayable",
|
975
|
+
"type": "function"
|
976
|
+
},
|
977
|
+
{
|
978
|
+
"inputs": [
|
979
|
+
{
|
980
|
+
"internalType": "address",
|
981
|
+
"name": "productAddress",
|
982
|
+
"type": "address"
|
983
|
+
}
|
984
|
+
],
|
985
|
+
"name": "registerProduct",
|
986
|
+
"outputs": [
|
987
|
+
{
|
988
|
+
"internalType": "NftId",
|
989
|
+
"name": "productNftId",
|
990
|
+
"type": "uint96"
|
991
|
+
}
|
992
|
+
],
|
993
|
+
"stateMutability": "nonpayable",
|
994
|
+
"type": "function"
|
995
|
+
},
|
996
|
+
{
|
997
|
+
"inputs": [
|
998
|
+
{
|
999
|
+
"internalType": "address",
|
1000
|
+
"name": "newAuthority",
|
1001
|
+
"type": "address"
|
1002
|
+
}
|
1003
|
+
],
|
1004
|
+
"name": "setAuthority",
|
1005
|
+
"outputs": [],
|
1006
|
+
"stateMutability": "nonpayable",
|
1007
|
+
"type": "function"
|
1008
|
+
},
|
1009
|
+
{
|
1010
|
+
"inputs": [
|
1011
|
+
{
|
1012
|
+
"components": [
|
1013
|
+
{
|
1014
|
+
"internalType": "UFixed",
|
1015
|
+
"name": "fractionalFee",
|
1016
|
+
"type": "uint256"
|
1017
|
+
},
|
1018
|
+
{
|
1019
|
+
"internalType": "uint256",
|
1020
|
+
"name": "fixedFee",
|
1021
|
+
"type": "uint256"
|
1022
|
+
}
|
1023
|
+
],
|
1024
|
+
"internalType": "struct Fee",
|
1025
|
+
"name": "distributionFee",
|
1026
|
+
"type": "tuple"
|
1027
|
+
},
|
1028
|
+
{
|
1029
|
+
"components": [
|
1030
|
+
{
|
1031
|
+
"internalType": "UFixed",
|
1032
|
+
"name": "fractionalFee",
|
1033
|
+
"type": "uint256"
|
1034
|
+
},
|
1035
|
+
{
|
1036
|
+
"internalType": "uint256",
|
1037
|
+
"name": "fixedFee",
|
1038
|
+
"type": "uint256"
|
1039
|
+
}
|
1040
|
+
],
|
1041
|
+
"internalType": "struct Fee",
|
1042
|
+
"name": "minDistributionOwnerFee",
|
1043
|
+
"type": "tuple"
|
1044
|
+
}
|
1045
|
+
],
|
1046
|
+
"name": "setDistributionFees",
|
1047
|
+
"outputs": [],
|
1048
|
+
"stateMutability": "nonpayable",
|
1049
|
+
"type": "function"
|
1050
|
+
},
|
1051
|
+
{
|
1052
|
+
"inputs": [
|
1053
|
+
{
|
1054
|
+
"internalType": "bool",
|
1055
|
+
"name": "locked",
|
1056
|
+
"type": "bool"
|
1057
|
+
}
|
1058
|
+
],
|
1059
|
+
"name": "setLocked",
|
1060
|
+
"outputs": [],
|
1061
|
+
"stateMutability": "nonpayable",
|
1062
|
+
"type": "function"
|
1063
|
+
},
|
1064
|
+
{
|
1065
|
+
"inputs": [
|
1066
|
+
{
|
1067
|
+
"components": [
|
1068
|
+
{
|
1069
|
+
"internalType": "UFixed",
|
1070
|
+
"name": "fractionalFee",
|
1071
|
+
"type": "uint256"
|
1072
|
+
},
|
1073
|
+
{
|
1074
|
+
"internalType": "uint256",
|
1075
|
+
"name": "fixedFee",
|
1076
|
+
"type": "uint256"
|
1077
|
+
}
|
1078
|
+
],
|
1079
|
+
"internalType": "struct Fee",
|
1080
|
+
"name": "poolFee",
|
1081
|
+
"type": "tuple"
|
1082
|
+
},
|
1083
|
+
{
|
1084
|
+
"components": [
|
1085
|
+
{
|
1086
|
+
"internalType": "UFixed",
|
1087
|
+
"name": "fractionalFee",
|
1088
|
+
"type": "uint256"
|
1089
|
+
},
|
1090
|
+
{
|
1091
|
+
"internalType": "uint256",
|
1092
|
+
"name": "fixedFee",
|
1093
|
+
"type": "uint256"
|
1094
|
+
}
|
1095
|
+
],
|
1096
|
+
"internalType": "struct Fee",
|
1097
|
+
"name": "stakingFee",
|
1098
|
+
"type": "tuple"
|
1099
|
+
},
|
1100
|
+
{
|
1101
|
+
"components": [
|
1102
|
+
{
|
1103
|
+
"internalType": "UFixed",
|
1104
|
+
"name": "fractionalFee",
|
1105
|
+
"type": "uint256"
|
1106
|
+
},
|
1107
|
+
{
|
1108
|
+
"internalType": "uint256",
|
1109
|
+
"name": "fixedFee",
|
1110
|
+
"type": "uint256"
|
1111
|
+
}
|
1112
|
+
],
|
1113
|
+
"internalType": "struct Fee",
|
1114
|
+
"name": "performanceFee",
|
1115
|
+
"type": "tuple"
|
1116
|
+
}
|
1117
|
+
],
|
1118
|
+
"name": "setPoolFees",
|
1119
|
+
"outputs": [],
|
1120
|
+
"stateMutability": "nonpayable",
|
1121
|
+
"type": "function"
|
1122
|
+
},
|
1123
|
+
{
|
1124
|
+
"inputs": [
|
1125
|
+
{
|
1126
|
+
"components": [
|
1127
|
+
{
|
1128
|
+
"internalType": "UFixed",
|
1129
|
+
"name": "fractionalFee",
|
1130
|
+
"type": "uint256"
|
1131
|
+
},
|
1132
|
+
{
|
1133
|
+
"internalType": "uint256",
|
1134
|
+
"name": "fixedFee",
|
1135
|
+
"type": "uint256"
|
1136
|
+
}
|
1137
|
+
],
|
1138
|
+
"internalType": "struct Fee",
|
1139
|
+
"name": "productFee",
|
1140
|
+
"type": "tuple"
|
1141
|
+
},
|
1142
|
+
{
|
1143
|
+
"components": [
|
1144
|
+
{
|
1145
|
+
"internalType": "UFixed",
|
1146
|
+
"name": "fractionalFee",
|
1147
|
+
"type": "uint256"
|
1148
|
+
},
|
1149
|
+
{
|
1150
|
+
"internalType": "uint256",
|
1151
|
+
"name": "fixedFee",
|
1152
|
+
"type": "uint256"
|
1153
|
+
}
|
1154
|
+
],
|
1155
|
+
"internalType": "struct Fee",
|
1156
|
+
"name": "processingFee",
|
1157
|
+
"type": "tuple"
|
1158
|
+
}
|
1159
|
+
],
|
1160
|
+
"name": "setProductFees",
|
1161
|
+
"outputs": [],
|
1162
|
+
"stateMutability": "nonpayable",
|
1163
|
+
"type": "function"
|
1164
|
+
},
|
1165
|
+
{
|
1166
|
+
"inputs": [
|
1167
|
+
{
|
1168
|
+
"internalType": "address",
|
1169
|
+
"name": "newWallet",
|
1170
|
+
"type": "address"
|
1171
|
+
}
|
1172
|
+
],
|
1173
|
+
"name": "setWallet",
|
1174
|
+
"outputs": [],
|
1175
|
+
"stateMutability": "nonpayable",
|
1176
|
+
"type": "function"
|
1177
|
+
},
|
1178
|
+
{
|
1179
|
+
"inputs": [
|
1180
|
+
{
|
1181
|
+
"internalType": "bytes4",
|
1182
|
+
"name": "interfaceId",
|
1183
|
+
"type": "bytes4"
|
1184
|
+
}
|
1185
|
+
],
|
1186
|
+
"name": "supportsInterface",
|
1187
|
+
"outputs": [
|
1188
|
+
{
|
1189
|
+
"internalType": "bool",
|
1190
|
+
"name": "",
|
1191
|
+
"type": "bool"
|
1192
|
+
}
|
1193
|
+
],
|
1194
|
+
"stateMutability": "view",
|
1195
|
+
"type": "function"
|
1196
|
+
},
|
1197
|
+
{
|
1198
|
+
"inputs": [
|
1199
|
+
{
|
1200
|
+
"internalType": "bytes",
|
1201
|
+
"name": "data",
|
1202
|
+
"type": "bytes"
|
1203
|
+
}
|
1204
|
+
],
|
1205
|
+
"name": "upgradeVersionable",
|
1206
|
+
"outputs": [],
|
1207
|
+
"stateMutability": "nonpayable",
|
1208
|
+
"type": "function"
|
1209
|
+
},
|
1210
|
+
{
|
1211
|
+
"inputs": [
|
1212
|
+
{
|
1213
|
+
"internalType": "Amount",
|
1214
|
+
"name": "amount",
|
1215
|
+
"type": "uint96"
|
1216
|
+
}
|
1217
|
+
],
|
1218
|
+
"name": "withdrawFees",
|
1219
|
+
"outputs": [
|
1220
|
+
{
|
1221
|
+
"internalType": "Amount",
|
1222
|
+
"name": "withdrawnAmount",
|
1223
|
+
"type": "uint96"
|
1224
|
+
}
|
1225
|
+
],
|
1226
|
+
"stateMutability": "nonpayable",
|
1227
|
+
"type": "function"
|
1228
|
+
}
|
1229
|
+
],
|
1230
|
+
"bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615772806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80635ab1bd53116100f3578063893d20e811610093578063b68d18091161006e578063b68d1809146103ed578063bf7e214f146103f4578063c142a303146103fc578063deaa59df1461040f575f80fd5b8063893d20e8146103b05780638fb36037146103b8578063ada9652e146103d9575f80fd5b806367ba1c10116100ce57806367ba1c10146103505780636c741e781461036357806376b707b7146103835780637a9e5e4b1461039d575f80fd5b80635ab1bd53146102fb5780636078a3b214610320578063644c45e014610333575f80fd5b8063211e28b61161015e578063329d6e7411610139578063329d6e74146102af57806337a897ee146102c2578063419197fe146102d557806349bb9e4b146102e8575f80fd5b8063211e28b61461027f57806322f3e2d4146102945780632d46f5df1461029c575f80fd5b806301ffc9a7146101a55780630d8e6e2c146101e65780630fec111c14610202578063138461e0146102175780631c6b2190146102375780631eff4b221461024a575b5f80fd5b6101d16101b3366004614762565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101ee610422565b60405162ffffff90911681526020016101dd565b61020a6104a9565b6040516101dd91906147b7565b61021f610667565b6040516001600160601b0390911681526020016101dd565b61021f61024536600461485f565b610671565b6102717f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b61029261028d366004614887565b610bd5565b005b6101d1610cb6565b61021f6102aa3660046148b6565b610d2d565b6102926102bd366004614a1c565b61104d565b6102926102d0366004614a7c565b611197565b6102926102e3366004614aa6565b6114b8565b6102926102f6366004614add565b61161a565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61021f61032e3660046148b6565b611708565b5f805160206156bd833981519152546001600160601b031661021f565b61029261035e366004614a7c565b6117fc565b61036b611b84565b6040516001600160401b0390911681526020016101dd565b61038b611c10565b60405160ff90911681526020016101dd565b6102926103ab3660046148b6565b611c78565b610308611cfa565b6103c0611e2b565b6040516001600160e01b031990911681526020016101dd565b6102715f805160206156bd83398151915281565b600b61038b565b610308611e60565b61029261040a366004614b29565b611e7b565b61029261041d3660046148b6565b612218565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610480573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614b6c565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610559573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061057d9190614b99565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016105c5611cfa565b6001600160a01b031681526020018260010180546105e290614bb4565b80601f016020809104026020016040519081016040528092919081815260200182805461060e90614bb4565b80156106595780601f1061063057610100808354040283529160200191610659565b820191905f5260205f20905b81548152906001019060200180831161063c57829003601f168201915b505050505081525091505090565b5f6104a430612360565b5f61067e335b5f36612559565b5f8061068a600b612657565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106ef9190614be6565b604051630232ca4960e01b81526001600160601b03851660048201529091505f906001600160a01b03831690630232ca4990602401602060405180830381865afa15801561073f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107639190614b99565b90508594506107dc8673__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156107b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d79190614b99565b61266d565b156107e5578094505b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af415801561083b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085f9190614c0c565b1561087d5760405163b079ec2b60e01b815260040160405180910390fd5b61088785826126f9565b156108bd5760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561091c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109409190614be6565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038088166024830152881660448201526064015f604051808303815f87803b158015610995575f80fd5b505af11580156109a7573d5f803e3d5ffd5b505050505f6109be6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a2f9190614be6565b60405163a310e2a360e01b81526001600160601b03871660048201529091505f906001600160a01b0385169063a310e2a390602401602060405180830381865afa158015610a7f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa39190614be6565b90507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde98683836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b289190614be6565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908916606082015260800160405180910390a1604051633fd3433360e01b81526001600160a01b0383811660048301526001600160601b0389166024830152821690633fd34333906044015b5f604051808303815f87803b158015610bb4575f80fd5b505af1158015610bc6573d5f803e3d5ffd5b50505050505050505050919050565b610bde33610677565b5f610bea600b5f612743565b9150505f339050816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c2d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c519190614be6565b604051630d99633160e01b81526001600160a01b03838116600483015285151560248301529190911690630d996331906044015f604051808303815f87803b158015610c9b575f80fd5b505af1158015610cad573d5f803e3d5ffd5b50505050505050565b5f610cbf611e60565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610d03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d279190614c0c565b15905090565b5f610d3733610677565b610d3f6128fd565b81610d4981612934565b5f80610d5685600c6129e6565b604080516330422f5360e21b815290519199509396509194508893505f926001600160a01b0385169263c108bd4c9250600480830192869291908290030181865afa158015610da7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610dce9190810190614cd3565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610e17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e3b9190614b99565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af4158015610e97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ebb9190614b99565b6001600160601b031660c0820152606081015160ff166001600160401b03811115610ee857610ee86148d1565b604051908082528060200260200182016040528015610f11578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0384169063fe2ee79290610f459089908590600401614e9a565b5f604051808303815f87803b158015610f5c575f80fd5b505af1158015610f6e573d5f803e3d5ffd5b50505050826001600160a01b031663bedaa84687846001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa158015610fbf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fe39190614eea565b6040518363ffffffff1660e01b8152600401611000929190614f87565b5f604051808303815f87803b158015611017575f80fd5b505af1158015611029573d5f803e3d5ffd5b50505050505050505061104860015f805160206156fd83398151915255565b919050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61106f610422565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156110ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110d19190615058565b5f8051602061571d8339815191528054600160401b900460ff1680611103575080546001600160401b03808416911610155b156111215760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561114b83612f9a565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b6111a033610677565b5f806111ac600e612657565b915091505f8061121b836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112159190614be6565b85612fa2565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151896040518363ffffffff1660e01b815260040161125d929190615073565b602060405180830381865af4158015611278573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061129c9190614c0c565b6112e2576112d7836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a6130a4565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161131e91908a90600401615073565b602060405180830381865af4158015611339573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061135d9190614c0c565b6113b1576113a6836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460600151896130a4565b506060810185905260015b8015610cad57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114179190614be6565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b8152600401611444929190614f87565b5f604051808303815f87803b15801561145b575f80fd5b505af115801561146d573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a150505050505050565b6114c133610677565b5f806114cd600b612657565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561150e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115329190614be6565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa15801561157e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526115a591908101906150ed565b604090810151905163ea0b3c7360e01b81526001600160a01b0387811660048301526001600160601b03871660248301529192509082169063ea0b3c73906044015f604051808303815f87803b1580156115fd575f80fd5b505af115801561160f573d5f803e3d5ffd5b505050505050505050565b5f8051602061571d8339815191528054600160401b810460ff1615906001600160401b03165f8115801561164b5750825b90505f826001600160401b031660011480156116665750303b155b905081158015611674575080155b156116925760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156116bc57845460ff60401b1916600160401b1785555b6116c687876130f7565b8315610cad57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016114a7565b5f61171233610677565b8161171c81612934565b5f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015611758573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261177f9190810190615260565b60400151905060ff8116600f036117a1576117998461328f565b9250506117f6565b60ff8116600e036117b5576117998461352e565b60ff8116600d036117c957611799846136ec565b604051630de61afd60e41b81526001600160a01b038516600482015260ff821660248201526044016108b4565b50919050565b61180533610677565b61180d6128fd565b5f80611819600c612657565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561185a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061187e9190614be6565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa1580156118cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118f09190614eea565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161192e91908a90600401615073565b602060405180830381865af4158015611949573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061196d9190614c0c565b6119a9576119a2846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f0151896130a4565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916119e591908990600401615073565b602060405180830381865af4158015611a00573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a249190614c0c565b611a6857611a5d846040518060400160405280600d81526020016c50726f63657373696e6746656560981b8152508460200151886130a4565b506020810184905260015b8015611b6657826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611aaa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ace9190614be6565b6001600160a01b031663462d5a8485846040518363ffffffff1660e01b8152600401611afb929190614f87565b5f604051808303815f87803b158015611b12575f80fd5b505af1158015611b24573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b50505050611b8060015f805160206156fd83398151915255565b5050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b611ba9611c10565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611bec573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190615058565b5f611c19611e60565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c54573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190615291565b33611c81611e60565b6001600160a01b0316816001600160a01b031614611cbc5760405162d1953b60e31b81526001600160a01b03821660048201526024016108b4565b816001600160a01b03163b5f03611cf1576040516361798f2f60e11b81526001600160a01b03831660048201526024016108b4565b611b80826138b2565b5f805f805160206156bd83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611d66573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d8a9190614c0c565b15611e15576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611deb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0f9190614be6565b91505090565b54600160601b90046001600160a01b0316919050565b5f805160206156dd83398151915280545f9190600160a01b900460ff16611e52575f611e0f565b638fb3603760e01b91505090565b5f805160206156dd833981519152546001600160a01b031690565b611e8433610677565b5f80611e90600f612657565b915091505f80611ed5836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111f1573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc083608001518a6040518363ffffffff1660e01b8152600401611f17929190615073565b602060405180830381865af4158015611f32573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f569190614c0c565b611f9457611f898360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b6130a4565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611fd091908b90600401615073565b602060405180830381865af4158015611feb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061200f9190614c0c565b61205057612045836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a6130a4565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161208c91908a90600401615073565b602060405180830381865af41580156120a7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120cb9190614c0c565b61211057612105836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c00151896130a4565b5060c0810185905260015b801561220e57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612152573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121769190614be6565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b81526004016121a3929190614f87565b5f604051808303815f87803b1580156121ba575f80fd5b505af11580156121cc573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b61222133610677565b5f8061222d600b612657565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561226e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122929190614be6565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa1580156122de573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261230591908101906150ed565b604090810151905163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015f604051808303815f87803b15801561234e575f80fd5b505af115801561220e573d5f803e3d5ffd5b5f805f805160206156bd83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156123cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123f09190614c0c565b1561241c5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016108b4565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561246e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124929190614c0c565b6124ba5760405163b9304b0d60e01b81526001600160a01b03841660048201526024016108b4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa15801561250c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125309190614b99565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f805160206156dd8339815191525f80612591612574611e60565b873061258360045f8a8c6152ac565b61258c916152d3565b613912565b915091508161264f5763ffffffff81161561262c57825460ff60a01b1916600160a01b1783556125bf611e60565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016125ee9392919061530b565b5f604051808303815f87803b158015612605575f80fd5b505af1158015612617573d5f803e3d5ffd5b5050845460ff60a01b191685555061264f9050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016108b4565b505050505050565b5f80612664836001612743565b91509150915091565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af41580156126ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126f29190614c0c565b9392505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c906044016126b3565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015281905f61278f86600b5b60ff9081169116141590565b156128495773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed36127c06001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af4158015612818573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261283f919081019061534a565b90925090506128f1565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a9886128756001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af41580156128c4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526128eb919081019061534a565b90925090505b90519590945092505050565b5f805160206156fd83398151915280546001190161292e57604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b60405163d905700760e01b81526001600160a01b038216600482015263a9c1bc6f60e01b602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790604401602060405180830381865af4158015612997573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129bb9190614c0c565b6129e35760405163b03d8c4360e01b81526001600160a01b03821660048201526024016108b4565b50565b5f805f805f805f805f612a0b612a046001546001600160a01b031690565b8c8c613a1a565b809550819650829a508397508498505050505050826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a7f9190614be6565b9850826001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015612abd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ae19190614be6565b9750826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b1f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b439190614be6565b965060ff8a16600c03612bcf57600354604051635d96628960e01b81526001600160a01b038481166004830152838116602483015290911690635d966289906044015f604051808303815f875af1158015612ba0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612bc79190810190615260565b519450612c53565b600354604051631fa14e4960e11b81526001600160a01b03848116600483015260ff8d166024830152838116604483015290911690633f429c92906064015f604051808303815f875af1158015612c28573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612c4f9190810190615260565b5194505b5f80836001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612c90573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612cb791908101906150ed565b90508060200151915073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d612cec6001546001600160a01b031690565b8f858e6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d4e9190614be6565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af4158015612da8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dcc9190614be6565b6001600160a01b03908116604080840191909152516328f72e8760e01b8152908a16906328f72e8790612e05908a90859060040161538d565b5f604051808303815f87803b158015612e1c575f80fd5b505af1158015612e2e573d5f803e3d5ffd5b5050505050826001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015612e70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e949190614b99565b506040516366704a7d60e01b81526001600160a01b038d8116600483015260ff8d1660248301528a16906366704a7d906044015f604051808303815f87803b158015612ede575f80fd5b505af1158015612ef0573d5f803e3d5ffd5b505050507f269a46dac9ba8227194b6513fdb68da07796b42aa1d111f1eaec8f2126aed6c685878d8f8587604051612f70969594939291906001600160601b03968716815294909516602085015260ff9290921660408401526001600160a01b03908116606084015290811660808301529190911660a082015260c00190565b60405180910390a150505050509295509295909350565b60015f805160206156fd83398151915255565b6101a1614192565b5f612fab61467e565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015613004573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130289190614b99565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa158015613077573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061309b9190614eea565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db946130e9948a948a9492939092906153f9565b60405180910390a150505050565b5f8051602061571d8339815191528054600160401b810460ff1615906001600160401b03165f811580156131285750825b90505f826001600160401b031660011480156131435750303b155b905081158015613151575080155b1561316f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561319957845460ff60401b1916600160401b1785555b5f80878060200190518101906131af919061543f565b915091506131be82828b6141ca565b6131c8602861426c565b600280546001600160a01b0319166001600160a01b03929092169190911781556131f19061426c565b600380546001600160a01b0319166001600160a01b039290921691909117905561321b600a61426c565b600480546001600160a01b0319166001600160a01b039290921691909117905561324b637e20b99760e01b614303565b50508315610cad57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016114a7565b5f8080808061329f86600f6129e6565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa1580156132f8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261331f9190810190614cd3565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561337e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133a29190614c0c565b156133d95760a08101516040516397f129bf60e01b81526001600160601b03808516600483015290911660248201526044016108b4565b5f879050836001600160a01b031663fe7fc94188836001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa158015613429573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061344d919061546c565b604080516001600160e01b031960e086901b1681526001600160601b03938416600482015282519093166024840152602082015115156044840152810151151560648301526060810151151560848301526080810151151560a483015260a081015160c483015260c0015160e4820152610104015f604051808303815f87803b1580156134d8575f80fd5b505af11580156134ea573d5f803e3d5ffd5b505050506001600160601b03871660a083015260405163659743e960e11b81526001600160a01b0385169063cb2e87d290610b9d908690869060ff906004016154fa565b5f6135376128fd565b5f80808061354686600e6129e6565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa15801561359f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526135c69190810190614cd3565b905080604001516135f55760405163931d421760e01b81526001600160601b03831660048201526024016108b4565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613651573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136759190614c0c565b156136ac5760c08101516040516323a0cc7160e11b81526001600160601b03808516600483015290911660248201526044016108b4565b6001600160601b03861660c082015260405163659743e960e11b81526001600160a01b0384169063cb2e87d290611000908590859060ff906004016154fa565b5f808080806136fc86600d6129e6565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa158015613755573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261377c9190810190614cd3565b9050806060015160ff165f036137b057604051634435e56b60e01b81526001600160601b03831660048201526024016108b4565b806060015160ff16816080015160ff16036137f85760608101516040516379060d1360e11b81526001600160601b038416600482015260ff90911660248201526044016108b4565b858160e00151826080015160ff16815181106138165761381661552e565b6001600160601b03909216602092830291909101909101526080810180519061383e82615542565b60ff169052506001600160a01b03831663cb2e87d2838361385d60ff90565b6040518463ffffffff1660e01b815260040161387b939291906154fa565b5f604051808303815f87803b158015613892575f80fd5b505af11580156138a4573d5f803e3d5ffd5b505050505050505050919050565b5f805160206156dd83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613980919061556c565b5f60405180830381855afa9150503d805f81146139b8576040519150601f19603f3d011682016040523d82523d5f602084013e6139bd565b606091505b50915091508115613a0f5760408151106139ef57808060200190518101906139e59190615582565b9094509250613a0f565b6020815110613a0f5780806020019051810190613a0c9190614c0c565b93505b505094509492505050565b6040516308b09a5f60e41b81523360048201525f90819081908190819081906001600160a01b038a1690638b09a5f0906024015f60405180830381865afa158015613a67573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613a8e9190810190615260565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015613aea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b0e9190614c0c565b15613b2e5760405163f75940a160e01b81523360048201526024016108b4565b805f015193508792505f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613b73573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613b9a9190810190615260565b9050613bb181604001518960ff9081169116141590565b15613bf1576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b16602483015290911660448201526064016108b4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b038b811660048301529190911690635e546bee90602401602060405180830381865afa158015613c43573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c679190614b99565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613cbe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ce29190614c0c565b15613d0b576040516322e6526160e11b81526001600160a01b038a1660048201526024016108b4565b60405163bf8e179760e01b81526001600160601b03861660048201525f906001600160a01b038c169063bf8e179790602401602060405180830381865afa158015613d58573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d7c9190614be6565b9050613de9856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613dbd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613de19190615291565b612783611c10565b15613e8c5789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e2b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e4f9190615291565b613e57611c10565b6040516381ce428760e01b81526001600160a01b03909316600484015260ff91821660248401521660448201526064016108b4565b613f4f856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ecb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613eef9190615291565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f2b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127839190615291565b156140155789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f91573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fb59190615291565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ff1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e579190615291565b6140268260200151845f0151614333565b1561405e5782516020830151604051633e22765160e11b81526001600160601b039283166004820152911660248201526044016108b4565b60ff8916600c036140bb576140798360400151612783600a90565b156140b2578251604080850151905163179bdfb960e01b81526001600160601b03909216600483015260ff1660248201526044016108b4565b8251975061410b565b6140cb8360400151612783600c90565b15614103578251604080850151905162d4546160e11b81526001600160601b03909216600483015260ff1660248201526044016108b4565b826020015197505b60a082015160405163bf8e179760e01b81526001600160601b038a1660048201529094506001600160a01b038c169063bf8e179790602401602060405180830381865afa15801561415e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141829190614be6565b9650505050939792965093509350565b5f8051602061571d83398151915254600160401b900460ff166141c857604051631afcd79f60e31b815260040160405180910390fd5b565b6141d2614192565b6141da61437d565b6142578383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561421b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061423f9190614b99565b60085f8660405180602001604052805f81525061438d565b61426763daf9067160e01b614303565b505050565b5f61427f6001546001600160a01b031690565b6001600160a01b031663d39e604383614296611c10565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156142d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142fd9190614be6565b92915050565b61430b614192565b6129e3816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044016126b3565b614385614192565b6141c86144ca565b614395614192565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156143eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061440f9190614c0c565b6144375760405163cf6935e560e01b81526001600160a01b03881660048201526024016108b4565b614440876144d2565b61444a86836144e3565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016144b98382615602565b5061220e634a531f3360e01b614303565b612f87614192565b6144da614192565b6129e381614559565b6144eb614192565b6144f361456a565b6144fc826145b2565b6001600160a01b0381166145235760405163f17ef42d60e01b815260040160405180910390fd5b5f805160206156bd83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b614561614192565b6129e3816138b2565b614572614192565b6141c86301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6145ba614192565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614610573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146349190614c0c565b61465c5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016108b4565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040805161012081019091525f60e08201818152610100830191909152819081526020016146bd60405180604001604052805f81526020015f81525090565b81526020016146dd60405180604001604052805f81526020015f81525090565b81526020016146fd60405180604001604052805f81526020015f81525090565b815260200161471d60405180604001604052805f81526020015f81525090565b815260200161473d60405180604001604052805f81526020015f81525090565b815260200161475d60405180604001604052805f81526020015f81525090565b905290565b5f60208284031215614772575f80fd5b81356001600160e01b0319811681146126f2575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516147ff608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614843610100840182614789565b949350505050565b6001600160601b03811681146129e3575f80fd5b5f6020828403121561486f575f80fd5b81356126f28161484b565b80151581146129e3575f80fd5b5f60208284031215614897575f80fd5b81356126f28161487a565b6001600160a01b03811681146129e3575f80fd5b5f602082840312156148c6575f80fd5b81356126f2816148a2565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715614907576149076148d1565b60405290565b60405161010081016001600160401b0381118282101715614907576149076148d1565b60405160e081016001600160401b0381118282101715614907576149076148d1565b604051608081016001600160401b0381118282101715614907576149076148d1565b604051601f8201601f191681016001600160401b038111828210171561499c5761499c6148d1565b604052919050565b5f6001600160401b038211156149bc576149bc6148d1565b50601f01601f191660200190565b5f82601f8301126149d9575f80fd5b81356149ec6149e7826149a4565b614974565b818152846020838601011115614a00575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614a2c575f80fd5b81356001600160401b03811115614a41575f80fd5b614843848285016149ca565b5f60408284031215614a5d575f80fd5b614a656148e5565b823581526020928301359281019290925250919050565b5f8060808385031215614a8d575f80fd5b614a978484614a4d565b915061309b8460408501614a4d565b5f8060408385031215614ab7575f80fd5b8235614ac2816148a2565b91506020830135614ad28161484b565b809150509250929050565b5f8060408385031215614aee575f80fd5b8235614af9816148a2565b915060208301356001600160401b03811115614b13575f80fd5b614b1f858286016149ca565b9150509250929050565b5f805f60c08486031215614b3b575f80fd5b614b458585614a4d565b9250614b548560408601614a4d565b9150614b638560808601614a4d565b90509250925092565b5f60208284031215614b7c575f80fd5b815162ffffff811681146126f2575f80fd5b80516110488161484b565b5f60208284031215614ba9575f80fd5b81516126f28161484b565b600181811c90821680614bc857607f821691505b6020821081036117f657634e487b7160e01b5f52602260045260245ffd5b5f60208284031215614bf6575f80fd5b81516126f2816148a2565b80516110488161487a565b5f60208284031215614c1c575f80fd5b81516126f28161487a565b8051611048816148a2565b60ff811681146129e3575f80fd5b805161104881614c32565b5f82601f830112614c5a575f80fd5b81516001600160401b03811115614c7357614c736148d1565b8060051b614c8360208201614974565b91825260208185018101929081019086841115614c9e575f80fd5b6020860192505b83831015614cc9578251614cb88161484b565b825260209283019290910190614ca5565b9695505050505050565b5f60208284031215614ce3575f80fd5b81516001600160401b03811115614cf8575f80fd5b82016101008185031215614d0a575f80fd5b614d1261490d565b614d1b82614c01565b8152614d2960208301614c01565b6020820152614d3a60408301614c01565b6040820152614d4b60608301614c40565b6060820152614d5c60808301614c40565b6080820152614d6d60a08301614b8e565b60a0820152614d7e60c08301614b8e565b60c082015260e08201516001600160401b03811115614d9b575f80fd5b614da786828501614c4b565b60e083015250949350505050565b5f8151808452602084019350602083015f5b82811015614dee5781516001600160601b0316865260209586019590910190600101614dc7565b5093949350505050565b8051151582526020810151151560208301525f6040820151614e1e604085018215159052565b506060820151614e33606085018260ff169052565b506080820151614e48608085018260ff169052565b5060a0820151614e6360a08501826001600160601b03169052565b5060c0820151614e7e60c08501826001600160601b03169052565b5060e082015161010060e0850152614843610100850182614db5565b6001600160601b0383168152604060208201525f6148436040830184614df8565b5f60408284031215614ecb575f80fd5b614ed36148e5565b825181526020928301519281019290925250919050565b5f6101c0828403128015614efc575f80fd5b50614f05614930565b614f0f8484614ebb565b8152614f1e8460408501614ebb565b6020820152614f308460808501614ebb565b6040820152614f428460c08501614ebb565b6060820152614f55846101008501614ebb565b6080820152614f68846101408501614ebb565b60a0820152614f7b846101808501614ebb565b60c08201529392505050565b6001600160601b038316815281518051602080840191909152015160408201526101e0810160208381015180516060850152908101516080840152506040830151805160a0840152602081015160c0840152506060830151805160e08401526020810151610100840152506080830151805161012084015260208101516101408401525060a0830151805161016084015260208101516101808401525060c083015180516101a084015260208101516101c0840152509392505050565b6001600160401b03811681146129e3575f80fd5b5f60208284031215615068575f80fd5b81516126f281615044565b8251815260208084015181830152825160408301528201516060820152608081016126f2565b5f6150a66149e7846149a4565b90508281528383830111156150b9575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f8301126150de575f80fd5b6126f283835160208501615099565b5f602082840312156150fd575f80fd5b81516001600160401b03811115615112575f80fd5b820160808185031215615123575f80fd5b61512b614952565b81516001600160401b03811115615140575f80fd5b8201601f81018613615150575f80fd5b61515f86825160208401615099565b82525061516e60208301614c27565b602082015261517f60408301614c27565b604082015260608201516001600160401b0381111561519c575f80fd5b6151a8868285016150cf565b606083015250949350505050565b5f60e082840312156151c6575f80fd5b6151ce614930565b90506151d982614b8e565b81526151e760208301614b8e565b60208201526151f860408301614c40565b604082015261520960608301614c01565b606082015261521a60808301614c27565b608082015261522b60a08301614c27565b60a082015260c08201516001600160401b03811115615248575f80fd5b615254848285016150cf565b60c08301525092915050565b5f60208284031215615270575f80fd5b81516001600160401b03811115615285575f80fd5b614843848285016151b6565b5f602082840312156152a1575f80fd5b81516126f281614c32565b5f80858511156152ba575f80fd5b838611156152c6575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615304576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f806040838503121561535b575f80fd5b82516001600160401b03811115615370575f80fd5b61537c858286016151b6565b9250506020830151614ad2816148a2565b6001600160601b0383168152604060208201525f8251608060408401526153b760c0840182614789565b60208501516001600160a01b0390811660608681019190915260408701519091166080860152850151848203603f190160a0860152909150614cc98282614789565b6001600160601b038716815260c060208201525f61541a60c0830188614789565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f8060408385031215615450575f80fd5b825161545b816148a2565b6020840151909250614ad2816148a2565b5f60e082840312801561547d575f80fd5b50615486614930565b82516154918161484b565b815260208301516154a18161487a565b602082015260408301516154b48161487a565b604082015260608301516154c78161487a565b60608201526154d860808401614c01565b608082015260a0838101519082015260c0928301519281019290925250919050565b6001600160601b0384168152606060208201525f61551b6060830185614df8565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff810361556357634e487b7160e01b5f52601160045260245ffd5b60010192915050565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615593575f80fd5b825161559e8161487a565b602084015190925063ffffffff81168114614ad2575f80fd5b601f82111561426757805f5260205f20601f840160051c810160208510156155dc5750805b601f840160051c820191505b818110156155fb575f81556001016155e8565b5050505050565b81516001600160401b0381111561561b5761561b6148d1565b61562f816156298454614bb4565b846155b7565b6020601f821160018114615661575f831561564a5750848201515b5f19600385901b1c1916600184901b1784556155fb565b5f84815260208120601f198516915b828110156156905787850151825560209485019460019092019101615670565b50848210156156ad57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220b258fc388e5ce3c7c97062fd8a643c5d194cc67141f2f19ab83c9c7a335f328f64736f6c634300081a0033",
|
1231
|
+
"deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80635ab1bd53116100f3578063893d20e811610093578063b68d18091161006e578063b68d1809146103ed578063bf7e214f146103f4578063c142a303146103fc578063deaa59df1461040f575f80fd5b8063893d20e8146103b05780638fb36037146103b8578063ada9652e146103d9575f80fd5b806367ba1c10116100ce57806367ba1c10146103505780636c741e781461036357806376b707b7146103835780637a9e5e4b1461039d575f80fd5b80635ab1bd53146102fb5780636078a3b214610320578063644c45e014610333575f80fd5b8063211e28b61161015e578063329d6e7411610139578063329d6e74146102af57806337a897ee146102c2578063419197fe146102d557806349bb9e4b146102e8575f80fd5b8063211e28b61461027f57806322f3e2d4146102945780632d46f5df1461029c575f80fd5b806301ffc9a7146101a55780630d8e6e2c146101e65780630fec111c14610202578063138461e0146102175780631c6b2190146102375780631eff4b221461024a575b5f80fd5b6101d16101b3366004614762565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101ee610422565b60405162ffffff90911681526020016101dd565b61020a6104a9565b6040516101dd91906147b7565b61021f610667565b6040516001600160601b0390911681526020016101dd565b61021f61024536600461485f565b610671565b6102717f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b61029261028d366004614887565b610bd5565b005b6101d1610cb6565b61021f6102aa3660046148b6565b610d2d565b6102926102bd366004614a1c565b61104d565b6102926102d0366004614a7c565b611197565b6102926102e3366004614aa6565b6114b8565b6102926102f6366004614add565b61161a565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61021f61032e3660046148b6565b611708565b5f805160206156bd833981519152546001600160601b031661021f565b61029261035e366004614a7c565b6117fc565b61036b611b84565b6040516001600160401b0390911681526020016101dd565b61038b611c10565b60405160ff90911681526020016101dd565b6102926103ab3660046148b6565b611c78565b610308611cfa565b6103c0611e2b565b6040516001600160e01b031990911681526020016101dd565b6102715f805160206156bd83398151915281565b600b61038b565b610308611e60565b61029261040a366004614b29565b611e7b565b61029261041d3660046148b6565b612218565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610480573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190614b6c565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610559573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061057d9190614b99565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016105c5611cfa565b6001600160a01b031681526020018260010180546105e290614bb4565b80601f016020809104026020016040519081016040528092919081815260200182805461060e90614bb4565b80156106595780601f1061063057610100808354040283529160200191610659565b820191905f5260205f20905b81548152906001019060200180831161063c57829003601f168201915b505050505081525091505090565b5f6104a430612360565b5f61067e335b5f36612559565b5f8061068a600b612657565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106ef9190614be6565b604051630232ca4960e01b81526001600160601b03851660048201529091505f906001600160a01b03831690630232ca4990602401602060405180830381865afa15801561073f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107639190614b99565b90508594506107dc8673__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156107b3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d79190614b99565b61266d565b156107e5578094505b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af415801561083b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085f9190614c0c565b1561087d5760405163b079ec2b60e01b815260040160405180910390fd5b61088785826126f9565b156108bd5760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561091c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109409190614be6565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038088166024830152881660448201526064015f604051808303815f87803b158015610995575f80fd5b505af11580156109a7573d5f803e3d5ffd5b505050505f6109be6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a2f9190614be6565b60405163a310e2a360e01b81526001600160601b03871660048201529091505f906001600160a01b0385169063a310e2a390602401602060405180830381865afa158015610a7f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa39190614be6565b90507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde98683836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b04573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b289190614be6565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908916606082015260800160405180910390a1604051633fd3433360e01b81526001600160a01b0383811660048301526001600160601b0389166024830152821690633fd34333906044015b5f604051808303815f87803b158015610bb4575f80fd5b505af1158015610bc6573d5f803e3d5ffd5b50505050505050505050919050565b610bde33610677565b5f610bea600b5f612743565b9150505f339050816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c2d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c519190614be6565b604051630d99633160e01b81526001600160a01b03838116600483015285151560248301529190911690630d996331906044015f604051808303815f87803b158015610c9b575f80fd5b505af1158015610cad573d5f803e3d5ffd5b50505050505050565b5f610cbf611e60565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610d03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d279190614c0c565b15905090565b5f610d3733610677565b610d3f6128fd565b81610d4981612934565b5f80610d5685600c6129e6565b604080516330422f5360e21b815290519199509396509194508893505f926001600160a01b0385169263c108bd4c9250600480830192869291908290030181865afa158015610da7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610dce9190810190614cd3565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610e17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e3b9190614b99565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af4158015610e97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ebb9190614b99565b6001600160601b031660c0820152606081015160ff166001600160401b03811115610ee857610ee86148d1565b604051908082528060200260200182016040528015610f11578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0384169063fe2ee79290610f459089908590600401614e9a565b5f604051808303815f87803b158015610f5c575f80fd5b505af1158015610f6e573d5f803e3d5ffd5b50505050826001600160a01b031663bedaa84687846001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa158015610fbf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fe39190614eea565b6040518363ffffffff1660e01b8152600401611000929190614f87565b5f604051808303815f87803b158015611017575f80fd5b505af1158015611029573d5f803e3d5ffd5b50505050505050505061104860015f805160206156fd83398151915255565b919050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61106f610422565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af41580156110ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110d19190615058565b5f8051602061571d8339815191528054600160401b900460ff1680611103575080546001600160401b03808416911610155b156111215760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561114b83612f9a565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b6111a033610677565b5f806111ac600e612657565b915091505f8061121b836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111f1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112159190614be6565b85612fa2565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151896040518363ffffffff1660e01b815260040161125d929190615073565b602060405180830381865af4158015611278573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061129c9190614c0c565b6112e2576112d7836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a6130a4565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161131e91908a90600401615073565b602060405180830381865af4158015611339573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061135d9190614c0c565b6113b1576113a6836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460600151896130a4565b506060810185905260015b8015610cad57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114179190614be6565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b8152600401611444929190614f87565b5f604051808303815f87803b15801561145b575f80fd5b505af115801561146d573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a150505050505050565b6114c133610677565b5f806114cd600b612657565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561150e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115329190614be6565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa15801561157e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526115a591908101906150ed565b604090810151905163ea0b3c7360e01b81526001600160a01b0387811660048301526001600160601b03871660248301529192509082169063ea0b3c73906044015f604051808303815f87803b1580156115fd575f80fd5b505af115801561160f573d5f803e3d5ffd5b505050505050505050565b5f8051602061571d8339815191528054600160401b810460ff1615906001600160401b03165f8115801561164b5750825b90505f826001600160401b031660011480156116665750303b155b905081158015611674575080155b156116925760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156116bc57845460ff60401b1916600160401b1785555b6116c687876130f7565b8315610cad57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016114a7565b5f61171233610677565b8161171c81612934565b5f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015611758573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261177f9190810190615260565b60400151905060ff8116600f036117a1576117998461328f565b9250506117f6565b60ff8116600e036117b5576117998461352e565b60ff8116600d036117c957611799846136ec565b604051630de61afd60e41b81526001600160a01b038516600482015260ff821660248201526044016108b4565b50919050565b61180533610677565b61180d6128fd565b5f80611819600c612657565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561185a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061187e9190614be6565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa1580156118cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118f09190614eea565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161192e91908a90600401615073565b602060405180830381865af4158015611949573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061196d9190614c0c565b6119a9576119a2846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f0151896130a4565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916119e591908990600401615073565b602060405180830381865af4158015611a00573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a249190614c0c565b611a6857611a5d846040518060400160405280600d81526020016c50726f63657373696e6746656560981b8152508460200151886130a4565b506020810184905260015b8015611b6657826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611aaa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ace9190614be6565b6001600160a01b031663462d5a8485846040518363ffffffff1660e01b8152600401611afb929190614f87565b5f604051808303815f87803b158015611b12575f80fd5b505af1158015611b24573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b50505050611b8060015f805160206156fd83398151915255565b5050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b611ba9611c10565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611bec573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190615058565b5f611c19611e60565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c54573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190615291565b33611c81611e60565b6001600160a01b0316816001600160a01b031614611cbc5760405162d1953b60e31b81526001600160a01b03821660048201526024016108b4565b816001600160a01b03163b5f03611cf1576040516361798f2f60e11b81526001600160a01b03831660048201526024016108b4565b611b80826138b2565b5f805f805160206156bd83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611d66573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d8a9190614c0c565b15611e15576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611deb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0f9190614be6565b91505090565b54600160601b90046001600160a01b0316919050565b5f805160206156dd83398151915280545f9190600160a01b900460ff16611e52575f611e0f565b638fb3603760e01b91505090565b5f805160206156dd833981519152546001600160a01b031690565b611e8433610677565b5f80611e90600f612657565b915091505f80611ed5836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111f1573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc083608001518a6040518363ffffffff1660e01b8152600401611f17929190615073565b602060405180830381865af4158015611f32573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f569190614c0c565b611f9457611f898360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b6130a4565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611fd091908b90600401615073565b602060405180830381865af4158015611feb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061200f9190614c0c565b61205057612045836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a6130a4565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161208c91908a90600401615073565b602060405180830381865af41580156120a7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120cb9190614c0c565b61211057612105836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c00151896130a4565b5060c0810185905260015b801561220e57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612152573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121769190614be6565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b81526004016121a3929190614f87565b5f604051808303815f87803b1580156121ba575f80fd5b505af11580156121cc573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b61222133610677565b5f8061222d600b612657565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561226e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122929190614be6565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa1580156122de573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261230591908101906150ed565b604090810151905163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015f604051808303815f87803b15801561234e575f80fd5b505af115801561220e573d5f803e3d5ffd5b5f805f805160206156bd83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156123cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123f09190614c0c565b1561241c5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016108b4565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561246e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124929190614c0c565b6124ba5760405163b9304b0d60e01b81526001600160a01b03841660048201526024016108b4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa15801561250c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125309190614b99565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f805160206156dd8339815191525f80612591612574611e60565b873061258360045f8a8c6152ac565b61258c916152d3565b613912565b915091508161264f5763ffffffff81161561262c57825460ff60a01b1916600160a01b1783556125bf611e60565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016125ee9392919061530b565b5f604051808303815f87803b158015612605575f80fd5b505af1158015612617573d5f803e3d5ffd5b5050845460ff60a01b191685555061264f9050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016108b4565b505050505050565b5f80612664836001612743565b91509150915091565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af41580156126ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126f29190614c0c565b9392505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c906044016126b3565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015281905f61278f86600b5b60ff9081169116141590565b156128495773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed36127c06001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af4158015612818573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261283f919081019061534a565b90925090506128f1565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a9886128756001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af41580156128c4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526128eb919081019061534a565b90925090505b90519590945092505050565b5f805160206156fd83398151915280546001190161292e57604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b60405163d905700760e01b81526001600160a01b038216600482015263a9c1bc6f60e01b602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790604401602060405180830381865af4158015612997573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129bb9190614c0c565b6129e35760405163b03d8c4360e01b81526001600160a01b03821660048201526024016108b4565b50565b5f805f805f805f805f612a0b612a046001546001600160a01b031690565b8c8c613a1a565b809550819650829a508397508498505050505050826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a7f9190614be6565b9850826001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015612abd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ae19190614be6565b9750826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b1f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b439190614be6565b965060ff8a16600c03612bcf57600354604051635d96628960e01b81526001600160a01b038481166004830152838116602483015290911690635d966289906044015f604051808303815f875af1158015612ba0573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612bc79190810190615260565b519450612c53565b600354604051631fa14e4960e11b81526001600160a01b03848116600483015260ff8d166024830152838116604483015290911690633f429c92906064015f604051808303815f875af1158015612c28573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612c4f9190810190615260565b5194505b5f80836001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612c90573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612cb791908101906150ed565b90508060200151915073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d612cec6001546001600160a01b031690565b8f858e6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d4e9190614be6565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af4158015612da8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dcc9190614be6565b6001600160a01b03908116604080840191909152516328f72e8760e01b8152908a16906328f72e8790612e05908a90859060040161538d565b5f604051808303815f87803b158015612e1c575f80fd5b505af1158015612e2e573d5f803e3d5ffd5b5050505050826001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015612e70573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e949190614b99565b506040516366704a7d60e01b81526001600160a01b038d8116600483015260ff8d1660248301528a16906366704a7d906044015f604051808303815f87803b158015612ede575f80fd5b505af1158015612ef0573d5f803e3d5ffd5b505050507f269a46dac9ba8227194b6513fdb68da07796b42aa1d111f1eaec8f2126aed6c685878d8f8587604051612f70969594939291906001600160601b03968716815294909516602085015260ff9290921660408401526001600160a01b03908116606084015290811660808301529190911660a082015260c00190565b60405180910390a150505050509295509295909350565b60015f805160206156fd83398151915255565b6101a1614192565b5f612fab61467e565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015613004573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130289190614b99565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa158015613077573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061309b9190614eea565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db946130e9948a948a9492939092906153f9565b60405180910390a150505050565b5f8051602061571d8339815191528054600160401b810460ff1615906001600160401b03165f811580156131285750825b90505f826001600160401b031660011480156131435750303b155b905081158015613151575080155b1561316f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561319957845460ff60401b1916600160401b1785555b5f80878060200190518101906131af919061543f565b915091506131be82828b6141ca565b6131c8602861426c565b600280546001600160a01b0319166001600160a01b03929092169190911781556131f19061426c565b600380546001600160a01b0319166001600160a01b039290921691909117905561321b600a61426c565b600480546001600160a01b0319166001600160a01b039290921691909117905561324b637e20b99760e01b614303565b50508315610cad57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020016114a7565b5f8080808061329f86600f6129e6565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa1580156132f8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261331f9190810190614cd3565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561337e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133a29190614c0c565b156133d95760a08101516040516397f129bf60e01b81526001600160601b03808516600483015290911660248201526044016108b4565b5f879050836001600160a01b031663fe7fc94188836001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa158015613429573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061344d919061546c565b604080516001600160e01b031960e086901b1681526001600160601b03938416600482015282519093166024840152602082015115156044840152810151151560648301526060810151151560848301526080810151151560a483015260a081015160c483015260c0015160e4820152610104015f604051808303815f87803b1580156134d8575f80fd5b505af11580156134ea573d5f803e3d5ffd5b505050506001600160601b03871660a083015260405163659743e960e11b81526001600160a01b0385169063cb2e87d290610b9d908690869060ff906004016154fa565b5f6135376128fd565b5f80808061354686600e6129e6565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa15801561359f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526135c69190810190614cd3565b905080604001516135f55760405163931d421760e01b81526001600160601b03831660048201526024016108b4565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613651573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136759190614c0c565b156136ac5760c08101516040516323a0cc7160e11b81526001600160601b03808516600483015290911660248201526044016108b4565b6001600160601b03861660c082015260405163659743e960e11b81526001600160a01b0384169063cb2e87d290611000908590859060ff906004016154fa565b5f808080806136fc86600d6129e6565b6040516302d764c760e21b81526001600160601b0383166004820152909950939750919550935091505f906001600160a01b03861690630b5d931c906024015f60405180830381865afa158015613755573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261377c9190810190614cd3565b9050806060015160ff165f036137b057604051634435e56b60e01b81526001600160601b03831660048201526024016108b4565b806060015160ff16816080015160ff16036137f85760608101516040516379060d1360e11b81526001600160601b038416600482015260ff90911660248201526044016108b4565b858160e00151826080015160ff16815181106138165761381661552e565b6001600160601b03909216602092830291909101909101526080810180519061383e82615542565b60ff169052506001600160a01b03831663cb2e87d2838361385d60ff90565b6040518463ffffffff1660e01b815260040161387b939291906154fa565b5f604051808303815f87803b158015613892575f80fd5b505af11580156138a4573d5f803e3d5ffd5b505050505050505050919050565b5f805160206156dd83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613980919061556c565b5f60405180830381855afa9150503d805f81146139b8576040519150601f19603f3d011682016040523d82523d5f602084013e6139bd565b606091505b50915091508115613a0f5760408151106139ef57808060200190518101906139e59190615582565b9094509250613a0f565b6020815110613a0f5780806020019051810190613a0c9190614c0c565b93505b505094509492505050565b6040516308b09a5f60e41b81523360048201525f90819081908190819081906001600160a01b038a1690638b09a5f0906024015f60405180830381865afa158015613a67573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613a8e9190810190615260565b8051604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015613aea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b0e9190614c0c565b15613b2e5760405163f75940a160e01b81523360048201526024016108b4565b805f015193508792505f836001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613b73573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613b9a9190810190615260565b9050613bb181604001518960ff9081169116141590565b15613bf1576040808201519051634a2e948760e11b81526001600160a01b038b16600482015260ff808b16602483015290911660448201526064016108b4565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b038b811660048301529190911690635e546bee90602401602060405180830381865afa158015613c43573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c679190614b99565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613cbe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ce29190614c0c565b15613d0b576040516322e6526160e11b81526001600160a01b038a1660048201526024016108b4565b60405163bf8e179760e01b81526001600160601b03861660048201525f906001600160a01b038c169063bf8e179790602401602060405180830381865afa158015613d58573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d7c9190614be6565b9050613de9856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613dbd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613de19190615291565b612783611c10565b15613e8c5789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e2b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e4f9190615291565b613e57611c10565b6040516381ce428760e01b81526001600160a01b03909316600484015260ff91821660248401521660448201526064016108b4565b613f4f856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ecb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613eef9190615291565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f2b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127839190615291565b156140155789856001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f91573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fb59190615291565b826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ff1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e579190615291565b6140268260200151845f0151614333565b1561405e5782516020830151604051633e22765160e11b81526001600160601b039283166004820152911660248201526044016108b4565b60ff8916600c036140bb576140798360400151612783600a90565b156140b2578251604080850151905163179bdfb960e01b81526001600160601b03909216600483015260ff1660248201526044016108b4565b8251975061410b565b6140cb8360400151612783600c90565b15614103578251604080850151905162d4546160e11b81526001600160601b03909216600483015260ff1660248201526044016108b4565b826020015197505b60a082015160405163bf8e179760e01b81526001600160601b038a1660048201529094506001600160a01b038c169063bf8e179790602401602060405180830381865afa15801561415e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141829190614be6565b9650505050939792965093509350565b5f8051602061571d83398151915254600160401b900460ff166141c857604051631afcd79f60e31b815260040160405180910390fd5b565b6141d2614192565b6141da61437d565b6142578383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561421b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061423f9190614b99565b60085f8660405180602001604052805f81525061438d565b61426763daf9067160e01b614303565b505050565b5f61427f6001546001600160a01b031690565b6001600160a01b031663d39e604383614296611c10565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156142d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142fd9190614be6565b92915050565b61430b614192565b6129e3816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044016126b3565b614385614192565b6141c86144ca565b614395614192565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156143eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061440f9190614c0c565b6144375760405163cf6935e560e01b81526001600160a01b03881660048201526024016108b4565b614440876144d2565b61444a86836144e3565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016144b98382615602565b5061220e634a531f3360e01b614303565b612f87614192565b6144da614192565b6129e381614559565b6144eb614192565b6144f361456a565b6144fc826145b2565b6001600160a01b0381166145235760405163f17ef42d60e01b815260040160405180910390fd5b5f805160206156bd83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b614561614192565b6129e3816138b2565b614572614192565b6141c86301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6145ba614192565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614610573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146349190614c0c565b61465c5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016108b4565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040805161012081019091525f60e08201818152610100830191909152819081526020016146bd60405180604001604052805f81526020015f81525090565b81526020016146dd60405180604001604052805f81526020015f81525090565b81526020016146fd60405180604001604052805f81526020015f81525090565b815260200161471d60405180604001604052805f81526020015f81525090565b815260200161473d60405180604001604052805f81526020015f81525090565b815260200161475d60405180604001604052805f81526020015f81525090565b905290565b5f60208284031215614772575f80fd5b81356001600160e01b0319811681146126f2575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516147ff608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614843610100840182614789565b949350505050565b6001600160601b03811681146129e3575f80fd5b5f6020828403121561486f575f80fd5b81356126f28161484b565b80151581146129e3575f80fd5b5f60208284031215614897575f80fd5b81356126f28161487a565b6001600160a01b03811681146129e3575f80fd5b5f602082840312156148c6575f80fd5b81356126f2816148a2565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b0381118282101715614907576149076148d1565b60405290565b60405161010081016001600160401b0381118282101715614907576149076148d1565b60405160e081016001600160401b0381118282101715614907576149076148d1565b604051608081016001600160401b0381118282101715614907576149076148d1565b604051601f8201601f191681016001600160401b038111828210171561499c5761499c6148d1565b604052919050565b5f6001600160401b038211156149bc576149bc6148d1565b50601f01601f191660200190565b5f82601f8301126149d9575f80fd5b81356149ec6149e7826149a4565b614974565b818152846020838601011115614a00575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614a2c575f80fd5b81356001600160401b03811115614a41575f80fd5b614843848285016149ca565b5f60408284031215614a5d575f80fd5b614a656148e5565b823581526020928301359281019290925250919050565b5f8060808385031215614a8d575f80fd5b614a978484614a4d565b915061309b8460408501614a4d565b5f8060408385031215614ab7575f80fd5b8235614ac2816148a2565b91506020830135614ad28161484b565b809150509250929050565b5f8060408385031215614aee575f80fd5b8235614af9816148a2565b915060208301356001600160401b03811115614b13575f80fd5b614b1f858286016149ca565b9150509250929050565b5f805f60c08486031215614b3b575f80fd5b614b458585614a4d565b9250614b548560408601614a4d565b9150614b638560808601614a4d565b90509250925092565b5f60208284031215614b7c575f80fd5b815162ffffff811681146126f2575f80fd5b80516110488161484b565b5f60208284031215614ba9575f80fd5b81516126f28161484b565b600181811c90821680614bc857607f821691505b6020821081036117f657634e487b7160e01b5f52602260045260245ffd5b5f60208284031215614bf6575f80fd5b81516126f2816148a2565b80516110488161487a565b5f60208284031215614c1c575f80fd5b81516126f28161487a565b8051611048816148a2565b60ff811681146129e3575f80fd5b805161104881614c32565b5f82601f830112614c5a575f80fd5b81516001600160401b03811115614c7357614c736148d1565b8060051b614c8360208201614974565b91825260208185018101929081019086841115614c9e575f80fd5b6020860192505b83831015614cc9578251614cb88161484b565b825260209283019290910190614ca5565b9695505050505050565b5f60208284031215614ce3575f80fd5b81516001600160401b03811115614cf8575f80fd5b82016101008185031215614d0a575f80fd5b614d1261490d565b614d1b82614c01565b8152614d2960208301614c01565b6020820152614d3a60408301614c01565b6040820152614d4b60608301614c40565b6060820152614d5c60808301614c40565b6080820152614d6d60a08301614b8e565b60a0820152614d7e60c08301614b8e565b60c082015260e08201516001600160401b03811115614d9b575f80fd5b614da786828501614c4b565b60e083015250949350505050565b5f8151808452602084019350602083015f5b82811015614dee5781516001600160601b0316865260209586019590910190600101614dc7565b5093949350505050565b8051151582526020810151151560208301525f6040820151614e1e604085018215159052565b506060820151614e33606085018260ff169052565b506080820151614e48608085018260ff169052565b5060a0820151614e6360a08501826001600160601b03169052565b5060c0820151614e7e60c08501826001600160601b03169052565b5060e082015161010060e0850152614843610100850182614db5565b6001600160601b0383168152604060208201525f6148436040830184614df8565b5f60408284031215614ecb575f80fd5b614ed36148e5565b825181526020928301519281019290925250919050565b5f6101c0828403128015614efc575f80fd5b50614f05614930565b614f0f8484614ebb565b8152614f1e8460408501614ebb565b6020820152614f308460808501614ebb565b6040820152614f428460c08501614ebb565b6060820152614f55846101008501614ebb565b6080820152614f68846101408501614ebb565b60a0820152614f7b846101808501614ebb565b60c08201529392505050565b6001600160601b038316815281518051602080840191909152015160408201526101e0810160208381015180516060850152908101516080840152506040830151805160a0840152602081015160c0840152506060830151805160e08401526020810151610100840152506080830151805161012084015260208101516101408401525060a0830151805161016084015260208101516101808401525060c083015180516101a084015260208101516101c0840152509392505050565b6001600160401b03811681146129e3575f80fd5b5f60208284031215615068575f80fd5b81516126f281615044565b8251815260208084015181830152825160408301528201516060820152608081016126f2565b5f6150a66149e7846149a4565b90508281528383830111156150b9575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f8301126150de575f80fd5b6126f283835160208501615099565b5f602082840312156150fd575f80fd5b81516001600160401b03811115615112575f80fd5b820160808185031215615123575f80fd5b61512b614952565b81516001600160401b03811115615140575f80fd5b8201601f81018613615150575f80fd5b61515f86825160208401615099565b82525061516e60208301614c27565b602082015261517f60408301614c27565b604082015260608201516001600160401b0381111561519c575f80fd5b6151a8868285016150cf565b606083015250949350505050565b5f60e082840312156151c6575f80fd5b6151ce614930565b90506151d982614b8e565b81526151e760208301614b8e565b60208201526151f860408301614c40565b604082015261520960608301614c01565b606082015261521a60808301614c27565b608082015261522b60a08301614c27565b60a082015260c08201516001600160401b03811115615248575f80fd5b615254848285016150cf565b60c08301525092915050565b5f60208284031215615270575f80fd5b81516001600160401b03811115615285575f80fd5b614843848285016151b6565b5f602082840312156152a1575f80fd5b81516126f281614c32565b5f80858511156152ba575f80fd5b838611156152c6575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615304576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f806040838503121561535b575f80fd5b82516001600160401b03811115615370575f80fd5b61537c858286016151b6565b9250506020830151614ad2816148a2565b6001600160601b0383168152604060208201525f8251608060408401526153b760c0840182614789565b60208501516001600160a01b0390811660608681019190915260408701519091166080860152850151848203603f190160a0860152909150614cc98282614789565b6001600160601b038716815260c060208201525f61541a60c0830188614789565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f8060408385031215615450575f80fd5b825161545b816148a2565b6020840151909250614ad2816148a2565b5f60e082840312801561547d575f80fd5b50615486614930565b82516154918161484b565b815260208301516154a18161487a565b602082015260408301516154b48161487a565b604082015260608301516154c78161487a565b60608201526154d860808401614c01565b608082015260a0838101519082015260c0928301519281019290925250919050565b6001600160601b0384168152606060208201525f61551b6060830185614df8565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff810361556357634e487b7160e01b5f52601160045260245ffd5b60010192915050565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615593575f80fd5b825161559e8161487a565b602084015190925063ffffffff81168114614ad2575f80fd5b601f82111561426757805f5260205f20601f840160051c810160208510156155dc5750805b601f840160051c820191505b818110156155fb575f81556001016155e8565b5050505050565b81516001600160401b0381111561561b5761561b6148d1565b61562f816156298454614bb4565b846155b7565b6020601f821160018114615661575f831561564a5750848201515b5f19600385901b1c1916600184901b1784556155fb565b5f84815260208120601f198516915b828110156156905787850151825560209485019460019092019101615670565b50848210156156ad57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220b258fc388e5ce3c7c97062fd8a643c5d194cc67141f2f19ab83c9c7a335f328f64736f6c634300081a0033",
|
1232
|
+
"linkReferences": {
|
1233
|
+
"contracts/shared/ContractLib.sol": {
|
1234
|
+
"ContractLib": [
|
1235
|
+
{
|
1236
|
+
"length": 20,
|
1237
|
+
"start": 10348
|
1238
|
+
},
|
1239
|
+
{
|
1240
|
+
"length": 20,
|
1241
|
+
"start": 10529
|
1242
|
+
},
|
1243
|
+
{
|
1244
|
+
"length": 20,
|
1245
|
+
"start": 10805
|
1246
|
+
},
|
1247
|
+
{
|
1248
|
+
"length": 20,
|
1249
|
+
"start": 17545
|
1250
|
+
},
|
1251
|
+
{
|
1252
|
+
"length": 20,
|
1253
|
+
"start": 18094
|
1254
|
+
}
|
1255
|
+
]
|
1256
|
+
},
|
1257
|
+
"contracts/shared/TokenHandlerDeployerLib.sol": {
|
1258
|
+
"TokenHandlerDeployerLib": [
|
1259
|
+
{
|
1260
|
+
"length": 20,
|
1261
|
+
"start": 11672
|
1262
|
+
}
|
1263
|
+
]
|
1264
|
+
},
|
1265
|
+
"contracts/type/Amount.sol": {
|
1266
|
+
"AmountLib": [
|
1267
|
+
{
|
1268
|
+
"length": 20,
|
1269
|
+
"start": 2116
|
1270
|
+
},
|
1271
|
+
{
|
1272
|
+
"length": 20,
|
1273
|
+
"start": 2265
|
1274
|
+
},
|
1275
|
+
{
|
1276
|
+
"length": 20,
|
1277
|
+
"start": 10091
|
1278
|
+
},
|
1279
|
+
{
|
1280
|
+
"length": 20,
|
1281
|
+
"start": 10231
|
1282
|
+
}
|
1283
|
+
]
|
1284
|
+
},
|
1285
|
+
"contracts/type/Fee.sol": {
|
1286
|
+
"FeeLib": [
|
1287
|
+
{
|
1288
|
+
"length": 20,
|
1289
|
+
"start": 4856
|
1290
|
+
},
|
1291
|
+
{
|
1292
|
+
"length": 20,
|
1293
|
+
"start": 5067
|
1294
|
+
},
|
1295
|
+
{
|
1296
|
+
"length": 20,
|
1297
|
+
"start": 6619
|
1298
|
+
},
|
1299
|
+
{
|
1300
|
+
"length": 20,
|
1301
|
+
"start": 6802
|
1302
|
+
},
|
1303
|
+
{
|
1304
|
+
"length": 20,
|
1305
|
+
"start": 8114
|
1306
|
+
},
|
1307
|
+
{
|
1308
|
+
"length": 20,
|
1309
|
+
"start": 8317
|
1310
|
+
},
|
1311
|
+
{
|
1312
|
+
"length": 20,
|
1313
|
+
"start": 8505
|
1314
|
+
}
|
1315
|
+
]
|
1316
|
+
},
|
1317
|
+
"contracts/type/NftId.sol": {
|
1318
|
+
"NftIdLib": [
|
1319
|
+
{
|
1320
|
+
"length": 20,
|
1321
|
+
"start": 1514
|
1322
|
+
},
|
1323
|
+
{
|
1324
|
+
"length": 20,
|
1325
|
+
"start": 3752
|
1326
|
+
},
|
1327
|
+
{
|
1328
|
+
"length": 20,
|
1329
|
+
"start": 3889
|
1330
|
+
},
|
1331
|
+
{
|
1332
|
+
"length": 20,
|
1333
|
+
"start": 7684
|
1334
|
+
},
|
1335
|
+
{
|
1336
|
+
"length": 20,
|
1337
|
+
"start": 9322
|
1338
|
+
},
|
1339
|
+
{
|
1340
|
+
"length": 20,
|
1341
|
+
"start": 13340
|
1342
|
+
},
|
1343
|
+
{
|
1344
|
+
"length": 20,
|
1345
|
+
"start": 14063
|
1346
|
+
},
|
1347
|
+
{
|
1348
|
+
"length": 20,
|
1349
|
+
"start": 15240
|
1350
|
+
},
|
1351
|
+
{
|
1352
|
+
"length": 20,
|
1353
|
+
"start": 15708
|
1354
|
+
},
|
1355
|
+
{
|
1356
|
+
"length": 20,
|
1357
|
+
"start": 17457
|
1358
|
+
}
|
1359
|
+
]
|
1360
|
+
},
|
1361
|
+
"contracts/type/RoleId.sol": {
|
1362
|
+
"RoleIdLib": [
|
1363
|
+
{
|
1364
|
+
"length": 20,
|
1365
|
+
"start": 7261
|
1366
|
+
}
|
1367
|
+
]
|
1368
|
+
},
|
1369
|
+
"contracts/type/Version.sol": {
|
1370
|
+
"VersionLib": [
|
1371
|
+
{
|
1372
|
+
"length": 20,
|
1373
|
+
"start": 1310
|
1374
|
+
},
|
1375
|
+
{
|
1376
|
+
"length": 20,
|
1377
|
+
"start": 4389
|
1378
|
+
}
|
1379
|
+
]
|
1380
|
+
}
|
1381
|
+
},
|
1382
|
+
"deployedLinkReferences": {
|
1383
|
+
"contracts/shared/ContractLib.sol": {
|
1384
|
+
"ContractLib": [
|
1385
|
+
{
|
1386
|
+
"length": 20,
|
1387
|
+
"start": 10134
|
1388
|
+
},
|
1389
|
+
{
|
1390
|
+
"length": 20,
|
1391
|
+
"start": 10315
|
1392
|
+
},
|
1393
|
+
{
|
1394
|
+
"length": 20,
|
1395
|
+
"start": 10591
|
1396
|
+
},
|
1397
|
+
{
|
1398
|
+
"length": 20,
|
1399
|
+
"start": 17331
|
1400
|
+
},
|
1401
|
+
{
|
1402
|
+
"length": 20,
|
1403
|
+
"start": 17880
|
1404
|
+
}
|
1405
|
+
]
|
1406
|
+
},
|
1407
|
+
"contracts/shared/TokenHandlerDeployerLib.sol": {
|
1408
|
+
"TokenHandlerDeployerLib": [
|
1409
|
+
{
|
1410
|
+
"length": 20,
|
1411
|
+
"start": 11458
|
1412
|
+
}
|
1413
|
+
]
|
1414
|
+
},
|
1415
|
+
"contracts/type/Amount.sol": {
|
1416
|
+
"AmountLib": [
|
1417
|
+
{
|
1418
|
+
"length": 20,
|
1419
|
+
"start": 1902
|
1420
|
+
},
|
1421
|
+
{
|
1422
|
+
"length": 20,
|
1423
|
+
"start": 2051
|
1424
|
+
},
|
1425
|
+
{
|
1426
|
+
"length": 20,
|
1427
|
+
"start": 9877
|
1428
|
+
},
|
1429
|
+
{
|
1430
|
+
"length": 20,
|
1431
|
+
"start": 10017
|
1432
|
+
}
|
1433
|
+
]
|
1434
|
+
},
|
1435
|
+
"contracts/type/Fee.sol": {
|
1436
|
+
"FeeLib": [
|
1437
|
+
{
|
1438
|
+
"length": 20,
|
1439
|
+
"start": 4642
|
1440
|
+
},
|
1441
|
+
{
|
1442
|
+
"length": 20,
|
1443
|
+
"start": 4853
|
1444
|
+
},
|
1445
|
+
{
|
1446
|
+
"length": 20,
|
1447
|
+
"start": 6405
|
1448
|
+
},
|
1449
|
+
{
|
1450
|
+
"length": 20,
|
1451
|
+
"start": 6588
|
1452
|
+
},
|
1453
|
+
{
|
1454
|
+
"length": 20,
|
1455
|
+
"start": 7900
|
1456
|
+
},
|
1457
|
+
{
|
1458
|
+
"length": 20,
|
1459
|
+
"start": 8103
|
1460
|
+
},
|
1461
|
+
{
|
1462
|
+
"length": 20,
|
1463
|
+
"start": 8291
|
1464
|
+
}
|
1465
|
+
]
|
1466
|
+
},
|
1467
|
+
"contracts/type/NftId.sol": {
|
1468
|
+
"NftIdLib": [
|
1469
|
+
{
|
1470
|
+
"length": 20,
|
1471
|
+
"start": 1300
|
1472
|
+
},
|
1473
|
+
{
|
1474
|
+
"length": 20,
|
1475
|
+
"start": 3538
|
1476
|
+
},
|
1477
|
+
{
|
1478
|
+
"length": 20,
|
1479
|
+
"start": 3675
|
1480
|
+
},
|
1481
|
+
{
|
1482
|
+
"length": 20,
|
1483
|
+
"start": 7470
|
1484
|
+
},
|
1485
|
+
{
|
1486
|
+
"length": 20,
|
1487
|
+
"start": 9108
|
1488
|
+
},
|
1489
|
+
{
|
1490
|
+
"length": 20,
|
1491
|
+
"start": 13126
|
1492
|
+
},
|
1493
|
+
{
|
1494
|
+
"length": 20,
|
1495
|
+
"start": 13849
|
1496
|
+
},
|
1497
|
+
{
|
1498
|
+
"length": 20,
|
1499
|
+
"start": 15026
|
1500
|
+
},
|
1501
|
+
{
|
1502
|
+
"length": 20,
|
1503
|
+
"start": 15494
|
1504
|
+
},
|
1505
|
+
{
|
1506
|
+
"length": 20,
|
1507
|
+
"start": 17243
|
1508
|
+
}
|
1509
|
+
]
|
1510
|
+
},
|
1511
|
+
"contracts/type/RoleId.sol": {
|
1512
|
+
"RoleIdLib": [
|
1513
|
+
{
|
1514
|
+
"length": 20,
|
1515
|
+
"start": 7047
|
1516
|
+
}
|
1517
|
+
]
|
1518
|
+
},
|
1519
|
+
"contracts/type/Version.sol": {
|
1520
|
+
"VersionLib": [
|
1521
|
+
{
|
1522
|
+
"length": 20,
|
1523
|
+
"start": 1096
|
1524
|
+
},
|
1525
|
+
{
|
1526
|
+
"length": 20,
|
1527
|
+
"start": 4175
|
1528
|
+
}
|
1529
|
+
]
|
1530
|
+
}
|
1531
|
+
}
|
1532
|
+
}
|