@etherisc/gif-next 0.0.2-f74fcad-685 → 0.0.2-f761c0d-394
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 +355 -19
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
- package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -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 +1032 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
- package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1505 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
- package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1191 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1394 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +826 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +900 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +843 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +703 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +293 -1120
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +757 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +445 -1266
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1626 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1735 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1160 -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 +3591 -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 +182 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +181 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/{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/module/IComponents.sol/IComponents.json +10 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/{treasury/ITreasury.sol/ITreasury.json → module/IRisk.sol/IRisk.json} +2 -2
- package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
- package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1155 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
- package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +772 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +675 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
- package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1063 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1477 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
- package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1134 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +754 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +703 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +959 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1078 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
- package/artifacts/contracts/pool/Pool.sol/Pool.json +1269 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1453 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +742 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +863 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +730 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1299 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
- package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1315 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +512 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +772 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +720 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +549 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +966 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/product/IProductService.sol/IProductService.json +400 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1183 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +766 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/product/PricingService.sol/PricingService.json +1012 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
- package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
- package/artifacts/contracts/product/Product.sol/Product.json +1257 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/product/ProductService.sol/ProductService.json +708 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +702 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +252 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +700 -26
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1123 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +982 -52
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1746 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1452 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +721 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1159 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
- package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -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 +896 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1487 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +784 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
- package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +539 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
- package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +880 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +718 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +474 -0
- package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/{experiment/statemachine/ISM.sol/ISM.json → shared/ILifecycle.sol/ILifecycle.json} +37 -51
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +42 -77
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +181 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +11 -11
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/shared/IService.sol/IService.json +346 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
- package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
- package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +996 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
- package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/{instance/lifecycle/ILifecycle.sol/ILifecycleModule.json → shared/Lifecycle.sol/Lifecycle.json} +19 -68
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
- package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +617 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +353 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/shared/Service.sol/Service.json +507 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
- package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +460 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
- package/artifacts/contracts/staking/Staking.sol/Staking.json +2005 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
- package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2237 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
- package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +571 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/type/Amount.sol/AmountLib.json +345 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
- package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -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/{types → type}/StateId.sol/StateIdLib.json +3 -3
- 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 +293 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/MathLib.json +10 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +498 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
- package/contracts/authorization/AccessAdmin.sol +591 -0
- package/contracts/authorization/AccessManagerCloneable.sol +16 -0
- package/contracts/authorization/Authorization.sol +218 -0
- package/contracts/authorization/IAccess.sol +48 -0
- package/contracts/authorization/IAccessAdmin.sol +136 -0
- package/contracts/authorization/IAuthorization.sol +54 -0
- package/contracts/authorization/IModuleAuthorization.sol +21 -0
- package/contracts/authorization/IServiceAuthorization.sol +38 -0
- package/contracts/authorization/ModuleAuthorization.sol +78 -0
- package/contracts/authorization/ServiceAuthorization.sol +90 -0
- package/contracts/distribution/BasicDistribution.sol +149 -0
- package/contracts/distribution/BasicDistributionAuthorization.sol +43 -0
- package/contracts/distribution/Distribution.sol +283 -0
- package/contracts/distribution/DistributionService.sol +302 -0
- package/contracts/distribution/DistributionServiceManager.sol +42 -0
- package/contracts/distribution/IDistributionComponent.sol +48 -0
- package/contracts/distribution/IDistributionService.sol +85 -0
- package/contracts/instance/BundleManager.sol +126 -0
- package/contracts/instance/IInstance.sol +83 -22
- package/contracts/instance/IInstanceService.sol +92 -0
- package/contracts/instance/Instance.sol +235 -53
- package/contracts/instance/InstanceAdmin.sol +266 -0
- package/contracts/instance/InstanceAuthorizationV3.sol +202 -0
- package/contracts/instance/InstanceReader.sol +405 -0
- package/contracts/instance/InstanceService.sol +443 -0
- package/contracts/instance/InstanceServiceManager.sol +44 -0
- package/contracts/instance/InstanceStore.sol +276 -0
- package/contracts/instance/base/BalanceStore.sol +123 -0
- package/contracts/instance/base/Cloneable.sol +28 -0
- package/contracts/instance/base/ObjectCounter.sol +21 -0
- package/contracts/instance/base/ObjectLifecycle.sol +106 -0
- package/contracts/instance/base/ObjectManager.sol +79 -0
- package/contracts/instance/module/IAccess.sol +46 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IComponents.sol +52 -0
- package/contracts/instance/module/IDistribution.sol +42 -0
- package/contracts/instance/module/IPolicy.sol +84 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/mock/Dip.sol +1 -1
- package/contracts/oracle/BasicOracle.sol +48 -0
- package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
- package/contracts/oracle/IOracle.sol +36 -0
- package/contracts/oracle/IOracleComponent.sol +32 -0
- package/contracts/oracle/IOracleService.sol +65 -0
- package/contracts/oracle/Oracle.sol +157 -0
- package/contracts/oracle/OracleService.sol +278 -0
- package/contracts/oracle/OracleServiceManager.sol +42 -0
- package/contracts/pool/BasicPool.sol +164 -0
- package/contracts/pool/BasicPoolAuthorization.sol +49 -0
- package/contracts/pool/BundleService.sol +296 -0
- package/contracts/pool/BundleServiceManager.sol +42 -0
- package/contracts/pool/IBundleService.sol +106 -0
- package/contracts/pool/IPoolComponent.sol +52 -0
- package/contracts/pool/IPoolService.sol +150 -0
- package/contracts/pool/Pool.sol +311 -0
- package/contracts/pool/PoolService.sol +452 -0
- package/contracts/pool/PoolServiceManager.sol +42 -0
- package/contracts/product/ApplicationService.sol +254 -0
- package/contracts/product/ApplicationServiceManager.sol +38 -0
- package/contracts/product/BasicProduct.sol +82 -0
- package/contracts/product/BasicProductAuthorization.sol +40 -0
- package/contracts/product/ClaimService.sol +442 -0
- package/contracts/product/ClaimServiceManager.sol +38 -0
- package/contracts/product/IApplicationService.sol +62 -0
- package/contracts/product/IClaimService.sol +99 -0
- package/contracts/product/IPolicyService.sol +78 -0
- package/contracts/product/IPricingService.sol +39 -0
- package/contracts/product/IProductComponent.sol +39 -0
- package/contracts/product/IProductService.sol +33 -0
- package/contracts/product/PolicyService.sol +475 -0
- package/contracts/product/PolicyServiceManager.sol +42 -0
- package/contracts/product/PricingService.sol +300 -0
- package/contracts/product/PricingServiceManager.sol +42 -0
- package/contracts/product/Product.sol +392 -0
- package/contracts/product/ProductService.sol +124 -0
- package/contracts/product/ProductServiceManager.sol +42 -0
- package/contracts/registry/ChainNft.sol +144 -62
- package/contracts/registry/IRegistry.sol +96 -42
- package/contracts/registry/IRegistryService.sol +69 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +523 -127
- package/contracts/registry/RegistryAdmin.sol +365 -0
- package/contracts/registry/RegistryService.sol +266 -0
- package/contracts/registry/RegistryServiceManager.sol +53 -0
- package/contracts/registry/ReleaseLifecycle.sol +27 -0
- package/contracts/registry/ReleaseManager.sol +487 -0
- package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
- package/contracts/registry/TokenRegistry.sol +315 -0
- package/contracts/shared/Component.sol +281 -0
- package/contracts/shared/ComponentService.sol +581 -0
- package/contracts/shared/ComponentServiceManager.sol +35 -0
- package/contracts/shared/ComponentVerifyingService.sol +117 -0
- package/contracts/shared/ERC165.sol +27 -0
- package/contracts/shared/IComponent.sol +70 -0
- package/contracts/shared/IComponentService.sol +102 -0
- package/contracts/shared/IInstanceLinkedComponent.sol +50 -0
- package/contracts/shared/IKeyValueStore.sol +54 -0
- package/contracts/shared/ILifecycle.sol +29 -0
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +45 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +25 -0
- package/contracts/shared/IVersionable.sol +53 -0
- package/contracts/shared/InitializableCustom.sol +177 -0
- package/contracts/shared/InstanceLinkedComponent.sol +151 -0
- package/contracts/shared/KeyValueStore.sol +131 -0
- package/contracts/shared/Lifecycle.sol +77 -0
- package/contracts/shared/NftIdSetManager.sol +65 -0
- package/contracts/shared/NftOwnable.sol +107 -0
- package/contracts/shared/PolicyHolder.sol +102 -0
- package/contracts/shared/ProxyManager.sol +199 -0
- package/contracts/shared/Registerable.sol +75 -0
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +83 -0
- package/contracts/shared/TokenHandler.sol +58 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +59 -0
- package/contracts/staking/IStaking.sol +168 -0
- package/contracts/staking/IStakingService.sol +153 -0
- package/contracts/staking/StakeManagerLib.sol +231 -0
- package/contracts/staking/Staking.sol +513 -0
- package/contracts/staking/StakingLifecycle.sol +23 -0
- package/contracts/staking/StakingManager.sol +54 -0
- package/contracts/staking/StakingReader.sol +187 -0
- package/contracts/staking/StakingService.sol +411 -0
- package/contracts/staking/StakingServiceManager.sol +44 -0
- package/contracts/staking/StakingStore.sol +615 -0
- package/contracts/staking/TargetManagerLib.sol +207 -0
- package/contracts/type/AddressSet.sol +58 -0
- package/contracts/type/Amount.sol +128 -0
- package/contracts/{types → type}/Blocknumber.sol +21 -3
- package/contracts/type/ClaimId.sol +75 -0
- package/contracts/type/DistributorType.sol +55 -0
- package/contracts/type/Fee.sol +66 -0
- package/contracts/type/Key32.sol +50 -0
- package/contracts/type/NftId.sol +78 -0
- package/contracts/type/NftIdSet.sol +62 -0
- package/contracts/type/ObjectType.sol +275 -0
- package/contracts/type/PayoutId.sol +82 -0
- package/contracts/type/Referral.sol +89 -0
- package/contracts/type/RequestId.sol +75 -0
- package/contracts/type/RiskId.sol +43 -0
- package/contracts/type/RoleId.sol +174 -0
- package/contracts/type/Seconds.sol +81 -0
- package/contracts/type/Selector.sol +102 -0
- package/contracts/{types → type}/StateId.sol +50 -6
- package/contracts/type/String.sol +53 -0
- package/contracts/{types → type}/Timestamp.sol +41 -7
- package/contracts/type/UFixed.sol +332 -0
- package/contracts/type/Version.sol +108 -0
- package/package.json +16 -7
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/Component.json +0 -205
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -255
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
- package/artifacts/contracts/components/Pool.sol/Pool.json +0 -328
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
- package/artifacts/contracts/components/Product.sol/Product.json +0 -346
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -299
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -254
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -127
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
- package/artifacts/contracts/mock/Dip.sol/DIP.dbg.json +0 -4
- package/artifacts/contracts/mock/Dip.sol/DIP.json +0 -338
- package/artifacts/contracts/mock/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/mock/TestPool.sol/TestPool.json +0 -294
- package/artifacts/contracts/mock/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/mock/TestProduct.sol/TestProduct.json +0 -384
- package/artifacts/contracts/mock/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/mock/Usdc.sol/USDC.json +0 -338
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/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 -92
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -174
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
- package/contracts/components/Component.sol +0 -77
- package/contracts/components/IPool.sol +0 -15
- package/contracts/components/IProduct.sol +0 -16
- package/contracts/components/Pool.sol +0 -52
- package/contracts/components/Product.sol +0 -89
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/access/Access.sol +0 -165
- package/contracts/instance/access/IAccess.sol +0 -63
- package/contracts/instance/component/ComponentModule.sol +0 -274
- package/contracts/instance/component/IComponent.sol +0 -74
- package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
- package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
- package/contracts/instance/policy/IPolicy.sol +0 -50
- package/contracts/instance/policy/PolicyModule.sol +0 -114
- package/contracts/instance/pool/IPoolModule.sol +0 -23
- package/contracts/instance/pool/PoolModule.sol +0 -81
- package/contracts/instance/product/IProductService.sol +0 -36
- package/contracts/instance/product/ProductService.sol +0 -136
- package/contracts/instance/treasury/ITreasury.sol +0 -91
- package/contracts/instance/treasury/TokenHandler.sol +0 -24
- package/contracts/instance/treasury/TreasuryModule.sol +0 -168
- package/contracts/mock/TestPool.sol +0 -16
- package/contracts/mock/TestProduct.sol +0 -39
- package/contracts/mock/Usdc.sol +0 -26
- package/contracts/registry/IChainNft.sol +0 -21
- package/contracts/types/ChainId.sol +0 -38
- package/contracts/types/Fee.sol +0 -32
- package/contracts/types/NftId.sol +0 -51
- package/contracts/types/ObjectType.sol +0 -107
- package/contracts/types/UFixed.sol +0 -210
| @@ -0,0 +1,718 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_format": "hh-sol-artifact-1",
         | 
| 3 | 
            +
              "contractName": "StakingServiceManager",
         | 
| 4 | 
            +
              "sourceName": "contracts/staking/StakingServiceManager.sol",
         | 
| 5 | 
            +
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [
         | 
| 8 | 
            +
                    {
         | 
| 9 | 
            +
                      "internalType": "address",
         | 
| 10 | 
            +
                      "name": "authority",
         | 
| 11 | 
            +
                      "type": "address"
         | 
| 12 | 
            +
                    },
         | 
| 13 | 
            +
                    {
         | 
| 14 | 
            +
                      "internalType": "address",
         | 
| 15 | 
            +
                      "name": "registryAddress",
         | 
| 16 | 
            +
                      "type": "address"
         | 
| 17 | 
            +
                    },
         | 
| 18 | 
            +
                    {
         | 
| 19 | 
            +
                      "internalType": "bytes32",
         | 
| 20 | 
            +
                      "name": "salt",
         | 
| 21 | 
            +
                      "type": "bytes32"
         | 
| 22 | 
            +
                    }
         | 
| 23 | 
            +
                  ],
         | 
| 24 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 25 | 
            +
                  "type": "constructor"
         | 
| 26 | 
            +
                },
         | 
| 27 | 
            +
                {
         | 
| 28 | 
            +
                  "inputs": [
         | 
| 29 | 
            +
                    {
         | 
| 30 | 
            +
                      "internalType": "NftId",
         | 
| 31 | 
            +
                      "name": "nftId",
         | 
| 32 | 
            +
                      "type": "uint96"
         | 
| 33 | 
            +
                    }
         | 
| 34 | 
            +
                  ],
         | 
| 35 | 
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         | 
| 36 | 
            +
                  "type": "error"
         | 
| 37 | 
            +
                },
         | 
| 38 | 
            +
                {
         | 
| 39 | 
            +
                  "inputs": [
         | 
| 40 | 
            +
                    {
         | 
| 41 | 
            +
                      "internalType": "address",
         | 
| 42 | 
            +
                      "name": "contractAddress",
         | 
| 43 | 
            +
                      "type": "address"
         | 
| 44 | 
            +
                    }
         | 
| 45 | 
            +
                  ],
         | 
| 46 | 
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         | 
| 47 | 
            +
                  "type": "error"
         | 
| 48 | 
            +
                },
         | 
| 49 | 
            +
                {
         | 
| 50 | 
            +
                  "inputs": [],
         | 
| 51 | 
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         | 
| 52 | 
            +
                  "type": "error"
         | 
| 53 | 
            +
                },
         | 
| 54 | 
            +
                {
         | 
| 55 | 
            +
                  "inputs": [
         | 
| 56 | 
            +
                    {
         | 
| 57 | 
            +
                      "internalType": "address",
         | 
| 58 | 
            +
                      "name": "account",
         | 
| 59 | 
            +
                      "type": "address"
         | 
| 60 | 
            +
                    }
         | 
| 61 | 
            +
                  ],
         | 
| 62 | 
            +
                  "name": "ErrorNftOwnableNotOwner",
         | 
| 63 | 
            +
                  "type": "error"
         | 
| 64 | 
            +
                },
         | 
| 65 | 
            +
                {
         | 
| 66 | 
            +
                  "inputs": [
         | 
| 67 | 
            +
                    {
         | 
| 68 | 
            +
                      "internalType": "address",
         | 
| 69 | 
            +
                      "name": "registryAddress",
         | 
| 70 | 
            +
                      "type": "address"
         | 
| 71 | 
            +
                    }
         | 
| 72 | 
            +
                  ],
         | 
| 73 | 
            +
                  "name": "ErrorNotRegistry",
         | 
| 74 | 
            +
                  "type": "error"
         | 
| 75 | 
            +
                },
         | 
| 76 | 
            +
                {
         | 
| 77 | 
            +
                  "inputs": [],
         | 
| 78 | 
            +
                  "name": "ErrorProxyManagerAlreadyDeployed",
         | 
| 79 | 
            +
                  "type": "error"
         | 
| 80 | 
            +
                },
         | 
| 81 | 
            +
                {
         | 
| 82 | 
            +
                  "inputs": [
         | 
| 83 | 
            +
                    {
         | 
| 84 | 
            +
                      "internalType": "Version",
         | 
| 85 | 
            +
                      "name": "nextVersion",
         | 
| 86 | 
            +
                      "type": "uint24"
         | 
| 87 | 
            +
                    }
         | 
| 88 | 
            +
                  ],
         | 
| 89 | 
            +
                  "name": "ErrorProxyManagerNextVersionNotIncreasing",
         | 
| 90 | 
            +
                  "type": "error"
         | 
| 91 | 
            +
                },
         | 
| 92 | 
            +
                {
         | 
| 93 | 
            +
                  "inputs": [],
         | 
| 94 | 
            +
                  "name": "ErrorProxyManagerNotYetDeployed",
         | 
| 95 | 
            +
                  "type": "error"
         | 
| 96 | 
            +
                },
         | 
| 97 | 
            +
                {
         | 
| 98 | 
            +
                  "inputs": [],
         | 
| 99 | 
            +
                  "name": "ErrorProxyManagerZeroVersion",
         | 
| 100 | 
            +
                  "type": "error"
         | 
| 101 | 
            +
                },
         | 
| 102 | 
            +
                {
         | 
| 103 | 
            +
                  "inputs": [],
         | 
| 104 | 
            +
                  "name": "InvalidInitialization",
         | 
| 105 | 
            +
                  "type": "error"
         | 
| 106 | 
            +
                },
         | 
| 107 | 
            +
                {
         | 
| 108 | 
            +
                  "inputs": [],
         | 
| 109 | 
            +
                  "name": "NotInitializing",
         | 
| 110 | 
            +
                  "type": "error"
         | 
| 111 | 
            +
                },
         | 
| 112 | 
            +
                {
         | 
| 113 | 
            +
                  "anonymous": false,
         | 
| 114 | 
            +
                  "inputs": [
         | 
| 115 | 
            +
                    {
         | 
| 116 | 
            +
                      "indexed": false,
         | 
| 117 | 
            +
                      "internalType": "uint64",
         | 
| 118 | 
            +
                      "name": "version",
         | 
| 119 | 
            +
                      "type": "uint64"
         | 
| 120 | 
            +
                    }
         | 
| 121 | 
            +
                  ],
         | 
| 122 | 
            +
                  "name": "Initialized",
         | 
| 123 | 
            +
                  "type": "event"
         | 
| 124 | 
            +
                },
         | 
| 125 | 
            +
                {
         | 
| 126 | 
            +
                  "anonymous": false,
         | 
| 127 | 
            +
                  "inputs": [
         | 
| 128 | 
            +
                    {
         | 
| 129 | 
            +
                      "indexed": true,
         | 
| 130 | 
            +
                      "internalType": "address",
         | 
| 131 | 
            +
                      "name": "proxy",
         | 
| 132 | 
            +
                      "type": "address"
         | 
| 133 | 
            +
                    },
         | 
| 134 | 
            +
                    {
         | 
| 135 | 
            +
                      "indexed": false,
         | 
| 136 | 
            +
                      "internalType": "address",
         | 
| 137 | 
            +
                      "name": "initialImplementation",
         | 
| 138 | 
            +
                      "type": "address"
         | 
| 139 | 
            +
                    }
         | 
| 140 | 
            +
                  ],
         | 
| 141 | 
            +
                  "name": "LogProxyManagerVersionableDeployed",
         | 
| 142 | 
            +
                  "type": "event"
         | 
| 143 | 
            +
                },
         | 
| 144 | 
            +
                {
         | 
| 145 | 
            +
                  "anonymous": false,
         | 
| 146 | 
            +
                  "inputs": [
         | 
| 147 | 
            +
                    {
         | 
| 148 | 
            +
                      "indexed": true,
         | 
| 149 | 
            +
                      "internalType": "address",
         | 
| 150 | 
            +
                      "name": "proxy",
         | 
| 151 | 
            +
                      "type": "address"
         | 
| 152 | 
            +
                    },
         | 
| 153 | 
            +
                    {
         | 
| 154 | 
            +
                      "indexed": false,
         | 
| 155 | 
            +
                      "internalType": "address",
         | 
| 156 | 
            +
                      "name": "upgradedImplementation",
         | 
| 157 | 
            +
                      "type": "address"
         | 
| 158 | 
            +
                    }
         | 
| 159 | 
            +
                  ],
         | 
| 160 | 
            +
                  "name": "LogProxyManagerVersionableUpgraded",
         | 
| 161 | 
            +
                  "type": "event"
         | 
| 162 | 
            +
                },
         | 
| 163 | 
            +
                {
         | 
| 164 | 
            +
                  "inputs": [],
         | 
| 165 | 
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         | 
| 166 | 
            +
                  "outputs": [
         | 
| 167 | 
            +
                    {
         | 
| 168 | 
            +
                      "internalType": "bytes32",
         | 
| 169 | 
            +
                      "name": "",
         | 
| 170 | 
            +
                      "type": "bytes32"
         | 
| 171 | 
            +
                    }
         | 
| 172 | 
            +
                  ],
         | 
| 173 | 
            +
                  "stateMutability": "view",
         | 
| 174 | 
            +
                  "type": "function"
         | 
| 175 | 
            +
                },
         | 
| 176 | 
            +
                {
         | 
| 177 | 
            +
                  "inputs": [
         | 
| 178 | 
            +
                    {
         | 
| 179 | 
            +
                      "internalType": "address",
         | 
| 180 | 
            +
                      "name": "initialImplementation",
         | 
| 181 | 
            +
                      "type": "address"
         | 
| 182 | 
            +
                    },
         | 
| 183 | 
            +
                    {
         | 
| 184 | 
            +
                      "internalType": "bytes",
         | 
| 185 | 
            +
                      "name": "initializationData",
         | 
| 186 | 
            +
                      "type": "bytes"
         | 
| 187 | 
            +
                    }
         | 
| 188 | 
            +
                  ],
         | 
| 189 | 
            +
                  "name": "deploy",
         | 
| 190 | 
            +
                  "outputs": [
         | 
| 191 | 
            +
                    {
         | 
| 192 | 
            +
                      "internalType": "contract IVersionable",
         | 
| 193 | 
            +
                      "name": "versionable",
         | 
| 194 | 
            +
                      "type": "address"
         | 
| 195 | 
            +
                    }
         | 
| 196 | 
            +
                  ],
         | 
| 197 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 198 | 
            +
                  "type": "function"
         | 
| 199 | 
            +
                },
         | 
| 200 | 
            +
                {
         | 
| 201 | 
            +
                  "inputs": [
         | 
| 202 | 
            +
                    {
         | 
| 203 | 
            +
                      "internalType": "address",
         | 
| 204 | 
            +
                      "name": "initialImplementation",
         | 
| 205 | 
            +
                      "type": "address"
         | 
| 206 | 
            +
                    },
         | 
| 207 | 
            +
                    {
         | 
| 208 | 
            +
                      "internalType": "bytes",
         | 
| 209 | 
            +
                      "name": "initializationData",
         | 
| 210 | 
            +
                      "type": "bytes"
         | 
| 211 | 
            +
                    },
         | 
| 212 | 
            +
                    {
         | 
| 213 | 
            +
                      "internalType": "bytes32",
         | 
| 214 | 
            +
                      "name": "salt",
         | 
| 215 | 
            +
                      "type": "bytes32"
         | 
| 216 | 
            +
                    }
         | 
| 217 | 
            +
                  ],
         | 
| 218 | 
            +
                  "name": "deployDetermenistic",
         | 
| 219 | 
            +
                  "outputs": [
         | 
| 220 | 
            +
                    {
         | 
| 221 | 
            +
                      "internalType": "contract IVersionable",
         | 
| 222 | 
            +
                      "name": "versionable",
         | 
| 223 | 
            +
                      "type": "address"
         | 
| 224 | 
            +
                    }
         | 
| 225 | 
            +
                  ],
         | 
| 226 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 227 | 
            +
                  "type": "function"
         | 
| 228 | 
            +
                },
         | 
| 229 | 
            +
                {
         | 
| 230 | 
            +
                  "inputs": [
         | 
| 231 | 
            +
                    {
         | 
| 232 | 
            +
                      "internalType": "address",
         | 
| 233 | 
            +
                      "name": "proxyOwner",
         | 
| 234 | 
            +
                      "type": "address"
         | 
| 235 | 
            +
                    },
         | 
| 236 | 
            +
                    {
         | 
| 237 | 
            +
                      "internalType": "bytes",
         | 
| 238 | 
            +
                      "name": "deployData",
         | 
| 239 | 
            +
                      "type": "bytes"
         | 
| 240 | 
            +
                    }
         | 
| 241 | 
            +
                  ],
         | 
| 242 | 
            +
                  "name": "getDeployData",
         | 
| 243 | 
            +
                  "outputs": [
         | 
| 244 | 
            +
                    {
         | 
| 245 | 
            +
                      "internalType": "bytes",
         | 
| 246 | 
            +
                      "name": "data",
         | 
| 247 | 
            +
                      "type": "bytes"
         | 
| 248 | 
            +
                    }
         | 
| 249 | 
            +
                  ],
         | 
| 250 | 
            +
                  "stateMutability": "pure",
         | 
| 251 | 
            +
                  "type": "function"
         | 
| 252 | 
            +
                },
         | 
| 253 | 
            +
                {
         | 
| 254 | 
            +
                  "inputs": [],
         | 
| 255 | 
            +
                  "name": "getNftId",
         | 
| 256 | 
            +
                  "outputs": [
         | 
| 257 | 
            +
                    {
         | 
| 258 | 
            +
                      "internalType": "NftId",
         | 
| 259 | 
            +
                      "name": "",
         | 
| 260 | 
            +
                      "type": "uint96"
         | 
| 261 | 
            +
                    }
         | 
| 262 | 
            +
                  ],
         | 
| 263 | 
            +
                  "stateMutability": "view",
         | 
| 264 | 
            +
                  "type": "function"
         | 
| 265 | 
            +
                },
         | 
| 266 | 
            +
                {
         | 
| 267 | 
            +
                  "inputs": [],
         | 
| 268 | 
            +
                  "name": "getOwner",
         | 
| 269 | 
            +
                  "outputs": [
         | 
| 270 | 
            +
                    {
         | 
| 271 | 
            +
                      "internalType": "address",
         | 
| 272 | 
            +
                      "name": "",
         | 
| 273 | 
            +
                      "type": "address"
         | 
| 274 | 
            +
                    }
         | 
| 275 | 
            +
                  ],
         | 
| 276 | 
            +
                  "stateMutability": "view",
         | 
| 277 | 
            +
                  "type": "function"
         | 
| 278 | 
            +
                },
         | 
| 279 | 
            +
                {
         | 
| 280 | 
            +
                  "inputs": [],
         | 
| 281 | 
            +
                  "name": "getProxy",
         | 
| 282 | 
            +
                  "outputs": [
         | 
| 283 | 
            +
                    {
         | 
| 284 | 
            +
                      "internalType": "contract UpgradableProxyWithAdmin",
         | 
| 285 | 
            +
                      "name": "",
         | 
| 286 | 
            +
                      "type": "address"
         | 
| 287 | 
            +
                    }
         | 
| 288 | 
            +
                  ],
         | 
| 289 | 
            +
                  "stateMutability": "view",
         | 
| 290 | 
            +
                  "type": "function"
         | 
| 291 | 
            +
                },
         | 
| 292 | 
            +
                {
         | 
| 293 | 
            +
                  "inputs": [],
         | 
| 294 | 
            +
                  "name": "getRegistry",
         | 
| 295 | 
            +
                  "outputs": [
         | 
| 296 | 
            +
                    {
         | 
| 297 | 
            +
                      "internalType": "contract IRegistry",
         | 
| 298 | 
            +
                      "name": "",
         | 
| 299 | 
            +
                      "type": "address"
         | 
| 300 | 
            +
                    }
         | 
| 301 | 
            +
                  ],
         | 
| 302 | 
            +
                  "stateMutability": "view",
         | 
| 303 | 
            +
                  "type": "function"
         | 
| 304 | 
            +
                },
         | 
| 305 | 
            +
                {
         | 
| 306 | 
            +
                  "inputs": [],
         | 
| 307 | 
            +
                  "name": "getStakingService",
         | 
| 308 | 
            +
                  "outputs": [
         | 
| 309 | 
            +
                    {
         | 
| 310 | 
            +
                      "internalType": "contract StakingService",
         | 
| 311 | 
            +
                      "name": "",
         | 
| 312 | 
            +
                      "type": "address"
         | 
| 313 | 
            +
                    }
         | 
| 314 | 
            +
                  ],
         | 
| 315 | 
            +
                  "stateMutability": "view",
         | 
| 316 | 
            +
                  "type": "function"
         | 
| 317 | 
            +
                },
         | 
| 318 | 
            +
                {
         | 
| 319 | 
            +
                  "inputs": [
         | 
| 320 | 
            +
                    {
         | 
| 321 | 
            +
                      "internalType": "bytes",
         | 
| 322 | 
            +
                      "name": "upgradeData",
         | 
| 323 | 
            +
                      "type": "bytes"
         | 
| 324 | 
            +
                    }
         | 
| 325 | 
            +
                  ],
         | 
| 326 | 
            +
                  "name": "getUpgradeData",
         | 
| 327 | 
            +
                  "outputs": [
         | 
| 328 | 
            +
                    {
         | 
| 329 | 
            +
                      "internalType": "bytes",
         | 
| 330 | 
            +
                      "name": "data",
         | 
| 331 | 
            +
                      "type": "bytes"
         | 
| 332 | 
            +
                    }
         | 
| 333 | 
            +
                  ],
         | 
| 334 | 
            +
                  "stateMutability": "pure",
         | 
| 335 | 
            +
                  "type": "function"
         | 
| 336 | 
            +
                },
         | 
| 337 | 
            +
                {
         | 
| 338 | 
            +
                  "inputs": [],
         | 
| 339 | 
            +
                  "name": "getVersion",
         | 
| 340 | 
            +
                  "outputs": [
         | 
| 341 | 
            +
                    {
         | 
| 342 | 
            +
                      "internalType": "Version",
         | 
| 343 | 
            +
                      "name": "",
         | 
| 344 | 
            +
                      "type": "uint24"
         | 
| 345 | 
            +
                    }
         | 
| 346 | 
            +
                  ],
         | 
| 347 | 
            +
                  "stateMutability": "view",
         | 
| 348 | 
            +
                  "type": "function"
         | 
| 349 | 
            +
                },
         | 
| 350 | 
            +
                {
         | 
| 351 | 
            +
                  "inputs": [
         | 
| 352 | 
            +
                    {
         | 
| 353 | 
            +
                      "internalType": "uint256",
         | 
| 354 | 
            +
                      "name": "idx",
         | 
| 355 | 
            +
                      "type": "uint256"
         | 
| 356 | 
            +
                    }
         | 
| 357 | 
            +
                  ],
         | 
| 358 | 
            +
                  "name": "getVersion",
         | 
| 359 | 
            +
                  "outputs": [
         | 
| 360 | 
            +
                    {
         | 
| 361 | 
            +
                      "internalType": "Version",
         | 
| 362 | 
            +
                      "name": "",
         | 
| 363 | 
            +
                      "type": "uint24"
         | 
| 364 | 
            +
                    }
         | 
| 365 | 
            +
                  ],
         | 
| 366 | 
            +
                  "stateMutability": "view",
         | 
| 367 | 
            +
                  "type": "function"
         | 
| 368 | 
            +
                },
         | 
| 369 | 
            +
                {
         | 
| 370 | 
            +
                  "inputs": [],
         | 
| 371 | 
            +
                  "name": "getVersionCount",
         | 
| 372 | 
            +
                  "outputs": [
         | 
| 373 | 
            +
                    {
         | 
| 374 | 
            +
                      "internalType": "uint256",
         | 
| 375 | 
            +
                      "name": "",
         | 
| 376 | 
            +
                      "type": "uint256"
         | 
| 377 | 
            +
                    }
         | 
| 378 | 
            +
                  ],
         | 
| 379 | 
            +
                  "stateMutability": "view",
         | 
| 380 | 
            +
                  "type": "function"
         | 
| 381 | 
            +
                },
         | 
| 382 | 
            +
                {
         | 
| 383 | 
            +
                  "inputs": [
         | 
| 384 | 
            +
                    {
         | 
| 385 | 
            +
                      "internalType": "Version",
         | 
| 386 | 
            +
                      "name": "_version",
         | 
| 387 | 
            +
                      "type": "uint24"
         | 
| 388 | 
            +
                    }
         | 
| 389 | 
            +
                  ],
         | 
| 390 | 
            +
                  "name": "getVersionInfo",
         | 
| 391 | 
            +
                  "outputs": [
         | 
| 392 | 
            +
                    {
         | 
| 393 | 
            +
                      "components": [
         | 
| 394 | 
            +
                        {
         | 
| 395 | 
            +
                          "internalType": "Version",
         | 
| 396 | 
            +
                          "name": "version",
         | 
| 397 | 
            +
                          "type": "uint24"
         | 
| 398 | 
            +
                        },
         | 
| 399 | 
            +
                        {
         | 
| 400 | 
            +
                          "internalType": "address",
         | 
| 401 | 
            +
                          "name": "implementation",
         | 
| 402 | 
            +
                          "type": "address"
         | 
| 403 | 
            +
                        },
         | 
| 404 | 
            +
                        {
         | 
| 405 | 
            +
                          "internalType": "address",
         | 
| 406 | 
            +
                          "name": "activatedBy",
         | 
| 407 | 
            +
                          "type": "address"
         | 
| 408 | 
            +
                        },
         | 
| 409 | 
            +
                        {
         | 
| 410 | 
            +
                          "internalType": "Timestamp",
         | 
| 411 | 
            +
                          "name": "activatedAt",
         | 
| 412 | 
            +
                          "type": "uint40"
         | 
| 413 | 
            +
                        },
         | 
| 414 | 
            +
                        {
         | 
| 415 | 
            +
                          "internalType": "Blocknumber",
         | 
| 416 | 
            +
                          "name": "activatedIn",
         | 
| 417 | 
            +
                          "type": "uint32"
         | 
| 418 | 
            +
                        }
         | 
| 419 | 
            +
                      ],
         | 
| 420 | 
            +
                      "internalType": "struct ProxyManager.VersionInfo",
         | 
| 421 | 
            +
                      "name": "",
         | 
| 422 | 
            +
                      "type": "tuple"
         | 
| 423 | 
            +
                    }
         | 
| 424 | 
            +
                  ],
         | 
| 425 | 
            +
                  "stateMutability": "view",
         | 
| 426 | 
            +
                  "type": "function"
         | 
| 427 | 
            +
                },
         | 
| 428 | 
            +
                {
         | 
| 429 | 
            +
                  "inputs": [],
         | 
| 430 | 
            +
                  "name": "initializeERC165",
         | 
| 431 | 
            +
                  "outputs": [],
         | 
| 432 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 433 | 
            +
                  "type": "function"
         | 
| 434 | 
            +
                },
         | 
| 435 | 
            +
                {
         | 
| 436 | 
            +
                  "inputs": [
         | 
| 437 | 
            +
                    {
         | 
| 438 | 
            +
                      "internalType": "address",
         | 
| 439 | 
            +
                      "name": "initialOwner",
         | 
| 440 | 
            +
                      "type": "address"
         | 
| 441 | 
            +
                    },
         | 
| 442 | 
            +
                    {
         | 
| 443 | 
            +
                      "internalType": "address",
         | 
| 444 | 
            +
                      "name": "registryAddress",
         | 
| 445 | 
            +
                      "type": "address"
         | 
| 446 | 
            +
                    }
         | 
| 447 | 
            +
                  ],
         | 
| 448 | 
            +
                  "name": "initializeNftOwnable",
         | 
| 449 | 
            +
                  "outputs": [],
         | 
| 450 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 451 | 
            +
                  "type": "function"
         | 
| 452 | 
            +
                },
         | 
| 453 | 
            +
                {
         | 
| 454 | 
            +
                  "inputs": [
         | 
| 455 | 
            +
                    {
         | 
| 456 | 
            +
                      "internalType": "address",
         | 
| 457 | 
            +
                      "name": "registry",
         | 
| 458 | 
            +
                      "type": "address"
         | 
| 459 | 
            +
                    }
         | 
| 460 | 
            +
                  ],
         | 
| 461 | 
            +
                  "name": "initializeProxyManager",
         | 
| 462 | 
            +
                  "outputs": [],
         | 
| 463 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 464 | 
            +
                  "type": "function"
         | 
| 465 | 
            +
                },
         | 
| 466 | 
            +
                {
         | 
| 467 | 
            +
                  "inputs": [
         | 
| 468 | 
            +
                    {
         | 
| 469 | 
            +
                      "internalType": "address",
         | 
| 470 | 
            +
                      "name": "registryAddress",
         | 
| 471 | 
            +
                      "type": "address"
         | 
| 472 | 
            +
                    }
         | 
| 473 | 
            +
                  ],
         | 
| 474 | 
            +
                  "name": "initializeRegistryLinked",
         | 
| 475 | 
            +
                  "outputs": [],
         | 
| 476 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 477 | 
            +
                  "type": "function"
         | 
| 478 | 
            +
                },
         | 
| 479 | 
            +
                {
         | 
| 480 | 
            +
                  "inputs": [],
         | 
| 481 | 
            +
                  "name": "linkToProxy",
         | 
| 482 | 
            +
                  "outputs": [
         | 
| 483 | 
            +
                    {
         | 
| 484 | 
            +
                      "internalType": "NftId",
         | 
| 485 | 
            +
                      "name": "",
         | 
| 486 | 
            +
                      "type": "uint96"
         | 
| 487 | 
            +
                    }
         | 
| 488 | 
            +
                  ],
         | 
| 489 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 490 | 
            +
                  "type": "function"
         | 
| 491 | 
            +
                },
         | 
| 492 | 
            +
                {
         | 
| 493 | 
            +
                  "inputs": [],
         | 
| 494 | 
            +
                  "name": "linkToRegisteredNftId",
         | 
| 495 | 
            +
                  "outputs": [
         | 
| 496 | 
            +
                    {
         | 
| 497 | 
            +
                      "internalType": "NftId",
         | 
| 498 | 
            +
                      "name": "nftId",
         | 
| 499 | 
            +
                      "type": "uint96"
         | 
| 500 | 
            +
                    }
         | 
| 501 | 
            +
                  ],
         | 
| 502 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 503 | 
            +
                  "type": "function"
         | 
| 504 | 
            +
                },
         | 
| 505 | 
            +
                {
         | 
| 506 | 
            +
                  "inputs": [
         | 
| 507 | 
            +
                    {
         | 
| 508 | 
            +
                      "internalType": "bytes4",
         | 
| 509 | 
            +
                      "name": "interfaceId",
         | 
| 510 | 
            +
                      "type": "bytes4"
         | 
| 511 | 
            +
                    }
         | 
| 512 | 
            +
                  ],
         | 
| 513 | 
            +
                  "name": "registerInterface",
         | 
| 514 | 
            +
                  "outputs": [],
         | 
| 515 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 516 | 
            +
                  "type": "function"
         | 
| 517 | 
            +
                },
         | 
| 518 | 
            +
                {
         | 
| 519 | 
            +
                  "inputs": [
         | 
| 520 | 
            +
                    {
         | 
| 521 | 
            +
                      "internalType": "bytes4",
         | 
| 522 | 
            +
                      "name": "interfaceId",
         | 
| 523 | 
            +
                      "type": "bytes4"
         | 
| 524 | 
            +
                    }
         | 
| 525 | 
            +
                  ],
         | 
| 526 | 
            +
                  "name": "supportsInterface",
         | 
| 527 | 
            +
                  "outputs": [
         | 
| 528 | 
            +
                    {
         | 
| 529 | 
            +
                      "internalType": "bool",
         | 
| 530 | 
            +
                      "name": "",
         | 
| 531 | 
            +
                      "type": "bool"
         | 
| 532 | 
            +
                    }
         | 
| 533 | 
            +
                  ],
         | 
| 534 | 
            +
                  "stateMutability": "view",
         | 
| 535 | 
            +
                  "type": "function"
         | 
| 536 | 
            +
                },
         | 
| 537 | 
            +
                {
         | 
| 538 | 
            +
                  "inputs": [
         | 
| 539 | 
            +
                    {
         | 
| 540 | 
            +
                      "internalType": "address",
         | 
| 541 | 
            +
                      "name": "newImplementation",
         | 
| 542 | 
            +
                      "type": "address"
         | 
| 543 | 
            +
                    },
         | 
| 544 | 
            +
                    {
         | 
| 545 | 
            +
                      "internalType": "bytes",
         | 
| 546 | 
            +
                      "name": "upgradeData",
         | 
| 547 | 
            +
                      "type": "bytes"
         | 
| 548 | 
            +
                    }
         | 
| 549 | 
            +
                  ],
         | 
| 550 | 
            +
                  "name": "upgrade",
         | 
| 551 | 
            +
                  "outputs": [
         | 
| 552 | 
            +
                    {
         | 
| 553 | 
            +
                      "internalType": "contract IVersionable",
         | 
| 554 | 
            +
                      "name": "versionable",
         | 
| 555 | 
            +
                      "type": "address"
         | 
| 556 | 
            +
                    }
         | 
| 557 | 
            +
                  ],
         | 
| 558 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 559 | 
            +
                  "type": "function"
         | 
| 560 | 
            +
                }
         | 
| 561 | 
            +
              ],
         | 
| 562 | 
            +
              "bytecode": "0x608060405234801561000f575f80fd5b50604051617b2c380380617b2c83398101604081905261002e91610b77565b8161003881610135565b505f60405161004690610b42565b604051809103905ff08015801561005f573d5f803e3d5ffd5b5090505f8484856001600160a01b0316630e9ed68b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156100a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906100c59190610bb0565b604080516001600160a01b03948516602082015292841690830152909116606082015260800160408051601f1981840301815291905290505f61010983838661024b565b600580546001600160a01b0319166001600160a01b039290921691909117905550610d0c945050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff1615906001600160401b03165f8115801561017e5750825b90505f826001600160401b031660011480156101995750303b155b9050811580156101a7575080155b156101c55760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b031916600117855583156101f357845460ff60401b1916680100000000000000001785555b6101fd33876103d4565b831561024357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b5f610254610466565b6001600160a01b0316336001600160a01b03161461028c5760405163086391f760e31b81523360048201526024015b60405180910390fd5b600454156102ad5760405163402b135f60e11b815260040160405180910390fd5b5f6102b6610466565b9050308386826102c685896105b3565b6040516102d290610b4f565b6102de93929190610bfe565b8190604051809103905ff59050801580156102fb573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610387918591630d8e6e2c9160048083019260209291908290030181865afa15801561035c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103809190610c32565b878461060b565b6002546040516001600160a01b038881168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b6103dc6109a1565b6103e5816109f1565b6103ed610afd565b6001600160a01b0382166104145760405163f17ef42d60e01b815260040160405180910390fd5b507f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546001600160601b03166c010000000000000000000000006001600160a01b0390931692909202919091179055565b5f807f07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f0080546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156104e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105099190610c54565b15610594576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561056a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061058e9190610bb0565b91505090565b546c0100000000000000000000000090046001600160a01b0316919050565b60606349bb9e4b60e01b83836040516024016105d0929190610c73565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b6106878373__$8eede297b65ed5a56eb3f84d8232ae93f5$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af4158015610656573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061067a9190610c32565b62ffffff90811691161490565b156106a5576040516348c618db60e01b815260040160405180910390fd5b600454156107fd57600480546106bd90600190610c9e565b815481106106cd576106cd610cbd565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af415801561073e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107629190610cd1565b604051635560100760e01b815262ffffff8516600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af41580156107b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d89190610cd1565b116107fd57604051633e614b6d60e11b815262ffffff84166004820152602401610283565b600480546001810182555f829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af41580156108cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f19190610ce8565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff9687165f90815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff166109ef57604051631afcd79f60e31b815260040160405180910390fd5b565b6109f96109a1565b806001600160a01b03163b5f03610a2e5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610283565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526311da029b60e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610aa8575060408051601f3d908101601f19168201909252610aa591810190610c54565b60015b610ad05760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610283565b80610af95760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610283565b5050565b610b056109a1565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6138568061348a83390190565b610e4c80616ce083390190565b80516001600160a01b0381168114610b72575f80fd5b919050565b5f805f60608486031215610b89575f80fd5b610b9284610b5c565b9250610ba060208501610b5c565b9150604084015190509250925092565b5f60208284031215610bc0575f80fd5b610bc982610b5c565b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b6001600160a01b038481168252831660208201526060604082018190525f90610c2990830184610bd0565b95945050505050565b5f60208284031215610c42575f80fd5b815162ffffff81168114610bc9575f80fd5b5f60208284031215610c64575f80fd5b81518015158114610bc9575f80fd5b6001600160a01b03831681526040602082018190525f90610c9690830184610bd0565b949350505050565b8181038181111561060557634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215610ce1575f80fd5b5051919050565b5f60208284031215610cf8575f80fd5b815164ffffffffff81168114610bc9575f80fd5b61277180610d195f395ff3fe608060405234801561000f575f80fd5b5060043610610148575f3560e01c8063644c45e0116100bf578063ada9652e11610079578063ada9652e146103e1578063b88da759146103f5578063c987336c14610408578063e97fac051461041b578063f7c34ee01461042e578063fd0c63d914610441575f80fd5b8063644c45e014610373578063675393bf14610390578063893d20e8146103a35780638e9afce6146103ab578063933a9ce8146103be578063946dfcfe146103cf575f80fd5b80631775564d116101105780631775564d14610209578063214cdb80146102295780632e65651d1461023c57806336fc697e1461024d5780634d459c90146102555780635ab1bd5314610362575f80fd5b806301ffc9a71461014c578063058f7a971461018d57806307484e80146101a25780630d8e6e2c146101cd578063138461e0146101e9575b5f80fd5b61017861015a3660046114fe565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a061019b366004611540565b610449565b005b6101b56101b03660046115fa565b610558565b6040516001600160a01b039091168152602001610184565b6101d56106e1565b60405162ffffff9091168152602001610184565b6101f1610751565b6040516001600160601b039091168152602001610184565b61021c61021736600461164f565b61075b565b60405161018491906116ca565b6101a06102373660046114fe565b6107b3565b6005546001600160a01b03166101b5565b6101a06107df565b6103056102633660046116ec565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091525062ffffff9081165f90815260036020908152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610184565b6001546001600160a01b03166101b5565b5f8051602061271c833981519152546001600160601b03166101f1565b6101a061039e366004611540565b610824565b6101b5610931565b61021c6103b9366004611707565b610a62565b6002546001600160a01b03166101b5565b6004545b604051908152602001610184565b6103d35f8051602061271c83398151915281565b6101d5610403366004611741565b610ab5565b6101b561041636600461164f565b610af3565b6101b561042936600461164f565b610d0c565b6101a061043c366004611758565b610e8a565b6101f1610f00565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff165f8115801561048e5750825b90505f8267ffffffffffffffff1660011480156104aa5750303b155b9050811580156104b8575080155b156104d65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561050057845460ff60401b1916600160401b1785555b61050a3387610e8a565b831561055057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b5f610561610931565b6001600160a01b0316336001600160a01b0316146105995760405163086391f760e31b81523360048201526024015b60405180910390fd5b600454156105ba5760405163402b135f60e11b815260040160405180910390fd5b5f6105c3610931565b9050308386826105d3858961075b565b6040516105df906114f1565b6105eb9392919061178f565b8190604051809103905ff5905080158015610608573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610694918591630d8e6e2c9160048083019260209291908290030181865afa158015610669573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061068d91906117c3565b8784610f17565b6002546040516001600160a01b038881168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b600254604080516303639b8b60e21b815290515f926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa158015610728573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074c91906117c3565b905090565b5f61074c306112ad565b60606349bb9e4b60e01b83836040516024016107789291906117de565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b6107bb6114a6565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6107e76114a6565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61082c6114a6565b806001600160a01b03163b5f036108615760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526311da029b60e01b60048201526301ffc9a790602401602060405180830381865afa9250505080156108db575060408051601f3d908101601f191682019092526108d891810190611801565b60015b6109035760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b8061092c5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610590565b505b50565b5f805f8051602061271c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561099d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c19190611801565b15610a4c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a469190611820565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b82604051602401610a7d91906116ca565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b5f60048281548110610ac957610ac961183b565b905f5260205f2090600a91828204019190066003029054906101000a900462ffffff169050919050565b5f610afc610931565b6001600160a01b0316336001600160a01b031614610b2f5760405163086391f760e31b8152336004820152602401610590565b6004545f03610b515760405163366dfd2160e21b815260040160405180910390fd5b5f610b5a610931565b90505f610b6f6002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015610bab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bcf9190611820565b6002549091506001600160a01b03908116908216639623609d8288610bf389610a62565b6040518463ffffffff1660e01b8152600401610c119392919061178f565b5f604051808303815f87803b158015610c28575f80fd5b505af1158015610c3a573d5f803e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03169350610cbf846001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c94573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cb891906117c3565b8785610f17565b6002546040516001600160a01b038881168252909116907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b5f610d15610931565b6001600160a01b0316336001600160a01b031614610d485760405163086391f760e31b8152336004820152602401610590565b60045415610d695760405163402b135f60e11b815260040160405180910390fd5b5f610d72610931565b9050308481610d81848761075b565b604051610d8d906114f1565b610d999392919061178f565b604051809103905ff080158015610db2573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610e3e918591630d8e6e2c9160048083019260209291908290030181865afa158015610e13573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e3791906117c3565b8684610f17565b6002546040516001600160a01b038781168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a2505092915050565b610e926114a6565b610e9b81610824565b610ea36107df565b6001600160a01b038216610eca5760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061271c83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6002545f9061074c906001600160a01b03166112ad565b610f938373__$8eede297b65ed5a56eb3f84d8232ae93f5$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f8691906117c3565b62ffffff90811691161490565b15610fb1576040516348c618db60e01b815260040160405180910390fd5b600454156111095760048054610fc99060019061184f565b81548110610fd957610fd961183b565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af415801561104a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061106e919061186e565b604051635560100760e01b815262ffffff8516600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af41580156110c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e4919061186e565b1161110957604051633e614b6d60e11b815262ffffff84166004820152602401610590565b600480546001810182555f829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af41580156111d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111fd9190611885565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff9687165f90815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b5f805f8051602061271c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611319573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061133d9190611801565b156113695780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610590565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156113bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113df9190611801565b6114075760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610590565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611459573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061147d91906118a9565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166114ef57604051631afcd79f60e31b815260040160405180910390fd5b565b610e4c806118d083390190565b5f6020828403121561150e575f80fd5b81356001600160e01b031981168114611525575f80fd5b9392505050565b6001600160a01b038116811461092e575f80fd5b5f60208284031215611550575f80fd5b81356115258161152c565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011261157e575f80fd5b813567ffffffffffffffff8111156115985761159861155b565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156115c7576115c761155b565b6040528181528382016020018510156115de575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f6060848603121561160c575f80fd5b83356116178161152c565b9250602084013567ffffffffffffffff811115611632575f80fd5b61163e8682870161156f565b925050604084013590509250925092565b5f8060408385031215611660575f80fd5b823561166b8161152c565b9150602083013567ffffffffffffffff811115611686575f80fd5b6116928582860161156f565b9150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f611525602083018461169c565b62ffffff8116811461092e575f80fd5b5f602082840312156116fc575f80fd5b8135611525816116dc565b5f60208284031215611717575f80fd5b813567ffffffffffffffff81111561172d575f80fd5b6117398482850161156f565b949350505050565b5f60208284031215611751575f80fd5b5035919050565b5f8060408385031215611769575f80fd5b82356117748161152c565b915060208301356117848161152c565b809150509250929050565b6001600160a01b038481168252831660208201526060604082018190525f906117ba9083018461169c565b95945050505050565b5f602082840312156117d3575f80fd5b8151611525816116dc565b6001600160a01b03831681526040602082018190525f906117399083018461169c565b5f60208284031215611811575f80fd5b81518015158114611525575f80fd5b5f60208284031215611830575f80fd5b81516115258161152c565b634e487b7160e01b5f52603260045260245ffd5b818103818111156107ad57634e487b7160e01b5f52601160045260245ffd5b5f6020828403121561187e575f80fd5b5051919050565b5f60208284031215611895575f80fd5b815164ffffffffff81168114611525575f80fd5b5f602082840312156118b9575f80fd5b81516001600160601b0381168114611525575f80fdfe60a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212201032e5c276369f787ae3aa867466c332aa36322d2b088d73b91ce78ef067e22164736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a26469706673582212201543e72dde8671473fc355f1920815144cee96c52ba88f76a5a6d54226d8aba664736f6c634300081a00336080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b613780806100d65f395ff3fe608060405234801561000f575f80fd5b5060043610610234575f3560e01c8063756b30de11610135578063a8b9328a116100b4578063dea4ccf211610079578063dea4ccf214610576578063dec3bdde14610589578063f11bcbe71461059c578063f67fef6d146105cc578063f7c34ee0146105df575f80fd5b8063a8b9328a14610525578063ada9652e14610538578063b68d18091461054c578063bf7e214f1461055b578063db1e36e714610563575f80fd5b8063893d20e8116100fa578063893d20e8146104c25780638cf81e46146104ca5780638e32e979146104de5780638fb36037146104f1578063943bd19714610512575f80fd5b8063756b30de146104465780637a9e5e4b146104595780637b1391a61461046c57806381d9b45f1461049c57806386b0e019146104af575f80fd5b8063329d6e74116101c1578063644c45e011610186578063644c45e0146103d0578063675393bf146103ed5780636c1e9dff146104005780636c741e7814610413578063719f761a14610433575f80fd5b8063329d6e741461034d57806336fc697e1461036057806343d752d31461036857806349bb9e4b146103ac5780635ab1bd53146103bf575f80fd5b8063138461e011610207578063138461e0146102bf5780631eff4b22146102df578063214cdb801461031457806321ece6571461032757806327bb7a331461033a575f80fd5b806301ffc9a7146102385780630d8e6e2c146102795780630fec111c1461029557806310a0638a146102aa575b5f80fd5b610264610246366004612cf6565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102816105f2565b60405162ffffff9091168152602001610270565b61029d610679565b6040516102709190612d4b565b6102bd6102b8366004612deb565b610837565b005b6102c76108f8565b6040516001600160601b039091168152602001610270565b6103067f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610270565b6102bd610322366004612cf6565b610902565b6102c7610335366004612e06565b61092e565b6102bd610348366004612f50565b610af3565b6102bd61035b366004612fe3565b610b98565b6102bd610ce2565b7f6548005c3f4340f82f348c576c0ff69f7f529cadd5ad41f96aae61abceeaa303546001600160a01b03165b6040516001600160a01b039091168152602001610270565b6102bd6103ba366004613014565b610d27565b6001546001600160a01b0316610394565b5f805160206136cb833981519152546001600160601b03166102c7565b6102bd6103fb366004613060565b610e23565b6102bd61040e366004612e06565b610f35565b61041b611251565b6040516001600160401b039091168152602001610270565b6102bd610441366004612deb565b611347565b6102c7610454366004612e06565b611545565b6102bd610467366004613060565b6117dd565b7f6548005c3f4340f82f348c576c0ff69f7f529cadd5ad41f96aae61abceeaa301546001600160a01b0316610394565b6102bd6104aa366004613094565b61185f565b6102c76104bd366004612e06565b61194c565b61039461196a565b6103065f8051602061370b83398151915281565b6102bd6104ec3660046130d0565b611a9b565b6104f9611bd8565b6040516001600160e01b03199091168152602001610270565b6102bd610520366004613118565b611c0d565b6102bd610533366004613155565b611c16565b6103065f805160206136cb83398151915281565b60405160038152602001610270565b610394611cab565b6102bd61057136600461317f565b611cc6565b6102bd610584366004612deb565b611d34565b6102c7610597366004613118565b611f3e565b7f6548005c3f4340f82f348c576c0ff69f7f529cadd5ad41f96aae61abceeaa302546001600160a01b0316610394565b6102c76105da366004612e06565b611f53565b6102bd6105ed3660046131b2565b612013565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610650573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061067491906131de565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610729573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074d919061320b565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161079561196a565b6001600160a01b031681526020018260010180546107b290613226565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90613226565b80156108295780601f1061080057610100808354040283529160200191610829565b820191905f5260205f20905b81548152906001019060200180831161080c57829003601f168201915b505050505081525091505090565b610843335b5f36612089565b5f5f8051602061370b833981519152600181015460405163085031c560e11b81526001600160601b03851660048201529192506001600160a01b0316906310a0638a906024015f604051808303815f87803b1580156108a0575f80fd5b505af11580156108b2573d5f803e3d5ffd5b50506040516001600160601b03851681527ff154111adc6084a644ef1d75dc89b5549b77bd22f0ceb8607501175f6cf3da35925060200190505b60405180910390a15050565b5f6106743061217f565b61090a612378565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f6109383361083c565b5f5f8051602061370b833981519152600181015460405163e8ce883d60e01b81526001600160601b038088166004830152861660248201529192506001600160a01b03169063e8ce883d906044016020604051808303815f875af11580156109a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c6919061320b565b91505f6109db6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a28573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a4c9190613269565b60018301546040516331449be960e11b81529192506001600160a01b03169063628937d290610a819084908890600401613284565b5f604051808303815f87803b158015610a98575f80fd5b505af1158015610aaa573d5f803e3d5ffd5b505050507f1cbf8b37af4df8c27db081983bda17400796238db4d1edf44edacf559b3a25d785828686604051610ae394939291906132a6565b60405180910390a1505092915050565b610afb612378565b610b058287612013565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610b8e8382613325565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610bba6105f2565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610bf8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c1c91906133f3565b5f8051602061372b8339815191528054600160401b900460ff1680610c4e575080546001600160401b03808416911610155b15610c6c5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610c96836123b0565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b610cea612378565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b5f8051602061372b8339815191528054600160401b810460ff1615906001600160401b03165f81158015610d585750825b90505f826001600160401b03166001148015610d735750303b155b905081158015610d81575080155b15610d9f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610dc957845460ff60401b1916600160401b1785555b610dd387876123b8565b8315610e1a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610e2b612378565b806001600160a01b03163b5f03610e655760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526311da029b60e01b60048201526301ffc9a790602401602060405180830381865afa925050508015610edf575060408051601f3d908101601f19168201909252610edc91810190613419565b60015b610f075760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610e5c565b80610f305760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610e5c565b505b50565b610f3e3361083c565b81610f516001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610f9e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fc29190613269565b6001600160a01b0316336001600160a01b0316146110965780610fed6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03841660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561103a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061105e9190613269565b604051620d652560ea1b81526001600160601b0390921660048301526001600160a01b03166024820152336044820152606401610e5c565b5f5f8051602061370b8339815191526001810154604051636c1e9dff60e01b81526001600160601b0380881660048301528616602482015291925033915f916001600160a01b031690636c1e9dff906044016020604051808303815f875af1158015611104573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611128919061320b565b6040516330b8415f60e01b81526001600160601b038716600482015290915073__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015611181573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111a59190613419565b1561120c57600183015460405163e3a817cd60e01b81526001600160a01b039091169063e3a817cd906111de9085908990600401613284565b5f604051808303815f87803b1580156111f5575f80fd5b505af1158015611207573d5f803e3d5ffd5b505050505b7f51bb449f96e2d4d2c1cbcba003bf8c0e4859c17581ce0bc7542fd6d6279e9b9d8683878460405161124194939291906132a6565b60405180910390a1505050505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d36003604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af41580156112bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112e0919061343f565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611323573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061067491906133f3565b6113503361083c565b806113636001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156113b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113d49190613269565b6001600160a01b0316336001600160a01b0316146113ff5780610fed6001546001600160a01b031690565b5f5f8051602061370b83398151915260018101546040516338cfbb0d60e11b81526001600160601b038616600482015291925033915f916001600160a01b03169063719f761a906024016020604051808303815f875af1158015611465573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611489919061320b565b60018401546040516331449be960e11b81529192506001600160a01b03169063628937d2906114be9085908590600401613284565b5f604051808303815f87803b1580156114d5575f80fd5b505af11580156114e7573d5f803e3d5ffd5b5050604080516001600160601b0389811682526001600160a01b038716602083015285168183015290517f560ee8c0a69c814defd43602fe8eb63663bc8df678239a581d560f7ed67afda89350908190036060019150a15050505050565b5f61154f3361083c565b5f8051602061370b83398151915280546040805160e0810180835263bc1b392d60e01b9052905133926001600160a01b031691638105cc7f91819073__$94a2c899be079b00d952d0d84fffaa5c34$__9063bc1b392d9060e4808501916020918187030181865af41580156115c6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115ea919061320b565b6001600160601b03168152602001886001600160601b0316815260200161160f602090565b60ff1681526020015f151581526020015f6001600160a01b03168152602001846001600160a01b0316815260200160405180602001604052805f8152508152506040518263ffffffff1660e01b815260040161166b9190612d4b565b6020604051808303815f875af1158015611687573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116ab919061320b565b6001830154604051630c7b317360e21b81526001600160601b0380841660048301528089166024830152871660448201529194506001600160a01b0316906331ecc5cc906064015f604051808303815f87803b158015611709575f80fd5b505af115801561171b573d5f803e3d5ffd5b505050600183015460405163e3a817cd60e01b81526001600160a01b03909116915063e3a817cd906117539084908890600401613284565b5f604051808303815f87803b15801561176a575f80fd5b505af115801561177c573d5f803e3d5ffd5b5050604080516001600160601b038088168252808a1660208301526001600160a01b0386169282019290925290871660608201527fbba1f5229b1626c1685c27c3604dd3296a6a69391e1ed009f8c176aa63b8e1d792506080019050610ae3565b336117e6611cab565b6001600160a01b0316816001600160a01b0316146118215760405162d1953b60e31b81526001600160a01b0382166004820152602401610e5c565b816001600160a01b03163b5f03611856576040516361798f2f60e11b81526001600160a01b0383166004820152602401610e5c565b610f3082612638565b6118683361083c565b465f8051602061370b833981519152600101546001600160a01b031663562119ee85600a6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044810184905264ffffffffff861660648201526084810185905260a4015f604051808303815f87803b1580156118ed575f80fd5b505af11580156118ff573d5f803e3d5ffd5b5050604080516001600160601b0388168152602081018590527f471a2845289928aa76c379fe01dc0310ebf5000e7a977935811e173bdda224bd935001905060405180910390a150505050565b5f6119563361083c565b33611962848285612691565b949350505050565b5f805f805160206136cb83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156119d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119fa9190613419565b15611a85576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611a5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a7f9190613269565b91505090565b54600160601b90046001600160a01b0316919050565b611aa3612378565b611b1f83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ae3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b07919061320b565b60095f8560405180602001604052805f815250610af3565b6001600160a01b03821615611b3c57611b37826127c7565b611bb3565b5f611b4760026127d8565b9050611bb1816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611bac9190613269565b6127c7565b505b611bc3634a531f3360e01b610902565b611bd363daf9067160e01b610902565b505050565b5f805160206136eb83398151915280545f9190600160a01b900460ff16611bff575f611a7f565b638fb3603760e01b91505090565b611bd33361083c565b611c1f3361083c565b7f6548005c3f4340f82f348c576c0ff69f7f529cadd5ad41f96aae61abceeaa30154604051632a80f67360e01b81526001600160601b0384166004820152602481018390526001600160a01b0390911690632a80f673906044015b5f604051808303815f87803b158015611c91575f80fd5b505af1158015611ca3573d5f803e3d5ffd5b505050505050565b5f805160206136eb833981519152546001600160a01b031690565b611ccf3361083c565b7f6548005c3f4340f82f348c576c0ff69f7f529cadd5ad41f96aae61abceeaa30154604051635ecf260f60e01b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b0390911690635ecf260f90604401611c7a565b611d3d3361083c565b80611d506001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611d9d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dc19190613269565b6001600160a01b0316336001600160a01b031614611dec5780610fed6001546001600160a01b031690565b5f5f8051602061370b8339815191526001810154604051636f52667960e11b81526001600160601b038616600482015291925033915f9182916001600160a01b039091169063dea4ccf29060240160408051808303815f875af1158015611e55573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e79919061345a565b915091505f611e8883836128df565b60018601546040516331449be960e11b81529192506001600160a01b03169063628937d290611ebd9087908590600401613284565b5f604051808303815f87803b158015611ed4575f80fd5b505af1158015611ee6573d5f803e3d5ffd5b5050604080516001600160601b03808c1682526001600160a01b03891660208301528516918101919091527fce678d95d8c12c4b7d7089c8f7db920fe5cc49352696a601b9e41f65ea3fd23992506060019050610e11565b5f611f483361083c565b611962848484612691565b5f611f5d3361083c565b82611f706001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03831660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611fbd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fe19190613269565b6001600160a01b0316336001600160a01b03161461200c5780610fed6001546001600160a01b031690565b5092915050565b61201b612378565b61202481610e23565b61202c610ce2565b6001600160a01b0382166120535760405163f17ef42d60e01b815260040160405180910390fd5b505f805160206136cb83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b5f805160206136eb8339815191525f806120c16120a4611cab565b87306120b360045f8a8c613487565b6120bc916134ae565b61296a565b9150915081611ca35763ffffffff81161561215c57825460ff60a01b1916600160a01b1783556120ef611cab565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161211e939291906134e4565b5f604051808303815f87803b158015612135575f80fd5b505af1158015612147573d5f803e3d5ffd5b5050845460ff60a01b1916855550611ca39050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610e5c565b5f805f805160206136cb83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156121eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061220f9190613419565b1561223b5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610e5c565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561228d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122b19190613419565b6122d95760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610e5c565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa15801561232b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061234f919061320b565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f8051602061372b83398151915254600160401b900460ff166123ae57604051631afcd79f60e31b815260040160405180910390fd5b565b610234612378565b5f8051602061372b8339815191528054600160401b810460ff1615906001600160401b03165f811580156123e95750825b90505f826001600160401b031660011480156124045750303b155b905081158015612412575080155b156124305760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561245a57845460ff60401b1916600160401b1785555b5f805f888060200190518101906124719190613523565b92509250925061248282848c611a9b565b5f8051602061370b83398151915261249a60026127d8565b81546001600160a01b0319166001600160a01b03919091161781556124be82612a72565b6001820180546001600160a01b0319166001600160a01b03929092169182179055604080516321df0da760e01b815290516321df0da7916004808201926020929091908290030181865afa158015612518573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061253c9190613269565b6002820180546001600160a01b0319166001600160a01b039283161790556001820154604080516343d752d360e01b8152905191909216916343d752d39160048083019260209291908290030181865afa15801561259c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125c09190613269565b6003820180546001600160a01b0319166001600160a01b03929092169190911790556125f2638694498960e01b610902565b505050508315610e1a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610e11565b5f805160206136eb83398151915280546001600160a01b0319166001600160a01b03831690811782556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad906020016108ec565b5f805f8051602061370b833981519152600181015460405163de0eb85f60e01b81526001600160601b038089166004830152861660248201529192506001600160a01b03169063de0eb85f906044016020604051808303815f875af11580156126fc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612720919061320b565b600182015460405163e3a817cd60e01b81529193506001600160a01b03169063e3a817cd906127559087908790600401613284565b5f604051808303815f87803b15801561276c575f80fd5b505af115801561277e573d5f803e3d5ffd5b505050507fcf86366087b008a90b57f4e7b955b94599f589d7267649942abfd34305fe5b2f858585856040516127b794939291906132a6565b60405180910390a1509392505050565b6127cf612378565b610f3281612ce5565b5f6127eb6001546001600160a01b031690565b604051632392b61b60e21b8152600360048201526001600160a01b03919091169063d39e604390849073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af415801561284e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612872919061343f565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156128b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128d99190613269565b92915050565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af415801561293f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612963919061320b565b9392505050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516129d89190613562565b5f60405180830381855afa9150503d805f8114612a10576040519150601f19603f3d011682016040523d82523d5f602084013e612a15565b606091505b50915091508115612a67576040815110612a475780806020019051810190612a3d9190613578565b9094509250612a67565b6020815110612a675780806020019051810190612a649190613419565b93505b505094509492505050565b5f80612a866001546001600160a01b031690565b6040516308b09a5f60e41b81526001600160a01b0385811660048301529190911690638b09a5f0906024015f60405180830381865afa158015612acb573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612af291908101906135fa565b80516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612b4e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b729190613419565b15612bc357612b938160400151612b87600390565b60ff9081169116141590565b15612bbc57604051637dbf3cff60e11b81526001600160a01b0384166004820152602401610e5c565b5090919050565b6040516301ffc9a760e01b815263fef8804160e01b60048201526001600160a01b038416906301ffc9a790602401602060405180830381865afa158015612c0c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c309190613419565b612c5857604051632bf4d8e560e21b81526001600160a01b0384166004820152602401610e5c565b335f8051602061370b8339815191525460405163c4c79d8b60e01b81526001600160a01b03868116600483015283811660248301529091169063c4c79d8b906044015f604051808303815f875af1158015612cb5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612cdc91908101906135fa565b50929392505050565b612ced612378565b610f3281612638565b5f60208284031215612d06575f80fd5b81356001600160e01b031981168114612963575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151612d93608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152611962610100840182612d1d565b6001600160601b0381168114610f32575f80fd5b5f60208284031215612dfb575f80fd5b813561296381612dd7565b5f8060408385031215612e17575f80fd5b8235612e2281612dd7565b91506020830135612e3281612dd7565b809150509250929050565b6001600160a01b0381168114610f32575f80fd5b60ff81168114610f32575f80fd5b8015158114610f32575f80fd5b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b0381118282101715612ea257612ea2612e6c565b60405290565b604051601f8201601f191681016001600160401b0381118282101715612ed057612ed0612e6c565b604052919050565b5f6001600160401b03821115612ef057612ef0612e6c565b50601f01601f191660200190565b5f82601f830112612f0d575f80fd5b8135612f20612f1b82612ed8565b612ea8565b818152846020838601011115612f34575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f805f8060c08789031215612f65575f80fd5b8635612f7081612e3d565b95506020870135612f8081612dd7565b94506040870135612f9081612e51565b93506060870135612fa081612e5f565b92506080870135612fb081612e3d565b915060a08701356001600160401b03811115612fca575f80fd5b612fd689828a01612efe565b9150509295509295509295565b5f60208284031215612ff3575f80fd5b81356001600160401b03811115613008575f80fd5b61196284828501612efe565b5f8060408385031215613025575f80fd5b823561303081612e3d565b915060208301356001600160401b0381111561304a575f80fd5b61305685828601612efe565b9150509250929050565b5f60208284031215613070575f80fd5b813561296381612e3d565b803564ffffffffff8116811461308f575f80fd5b919050565b5f805f606084860312156130a6575f80fd5b83356130b181612dd7565b92506130bf6020850161307b565b929592945050506040919091013590565b5f805f606084860312156130e2575f80fd5b83356130ed81612e3d565b925060208401356130fd81612e3d565b9150604084013561310d81612e3d565b809150509250925092565b5f805f6060848603121561312a575f80fd5b833561313581612dd7565b9250602084013561314581612e3d565b9150604084013561310d81612dd7565b5f8060408385031215613166575f80fd5b823561317181612dd7565b946020939093013593505050565b5f8060408385031215613190575f80fd5b823561319b81612dd7565b91506131a96020840161307b565b90509250929050565b5f80604083850312156131c3575f80fd5b82356131ce81612e3d565b91506020830135612e3281612e3d565b5f602082840312156131ee575f80fd5b815162ffffff81168114612963575f80fd5b805161308f81612dd7565b5f6020828403121561321b575f80fd5b815161296381612dd7565b600181811c9082168061323a57607f821691505b60208210810361325857634e487b7160e01b5f52602260045260245ffd5b50919050565b805161308f81612e3d565b5f60208284031215613279575f80fd5b815161296381612e3d565b6001600160a01b039290921682526001600160601b0316602082015260400190565b6001600160601b0394851681526001600160a01b039390931660208401529083166040830152909116606082015260800190565b601f821115611bd357805f5260205f20601f840160051c810160208510156132ff5750805b601f840160051c820191505b8181101561331e575f815560010161330b565b5050505050565b81516001600160401b0381111561333e5761333e612e6c565b6133528161334c8454613226565b846132da565b6020601f821160018114613384575f831561336d5750848201515b5f19600385901b1c1916600184901b17845561331e565b5f84815260208120601f198516915b828110156133b35787850151825560209485019460019092019101613393565b50848210156133d057868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160401b0381168114610f32575f80fd5b5f60208284031215613403575f80fd5b8151612963816133df565b805161308f81612e5f565b5f60208284031215613429575f80fd5b815161296381612e5f565b805161308f81612e51565b5f6020828403121561344f575f80fd5b815161296381612e51565b5f806040838503121561346b575f80fd5b825161347681612dd7565b6020840151909250612e3281612dd7565b5f8085851115613495575f80fd5b838611156134a1575f80fd5b5050820193919092039150565b80356001600160e01b0319811690600484101561200c576001600160e01b031960049490940360031b84901b1690921692915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f805f60608486031215613535575f80fd5b835161354081612e3d565b602085015190935061355181612e3d565b604085015190925061310d81612e3d565b5f82518060208501845e5f920191825250919050565b5f8060408385031215613589575f80fd5b825161359481612e5f565b602084015190925063ffffffff81168114612e32575f80fd5b5f82601f8301126135bc575f80fd5b81516135ca612f1b82612ed8565b8181528460208386010111156135de575f80fd5b8160208501602083015e5f918101602001919091529392505050565b5f6020828403121561360a575f80fd5b81516001600160401b0381111561361f575f80fd5b820160e08185031215613630575f80fd5b613638612e80565b61364182613200565b815261364f60208301613200565b602082015261366060408301613434565b60408201526136716060830161340e565b60608201526136826080830161325e565b608082015261369360a0830161325e565b60a082015260c08201516001600160401b038111156136b0575f80fd5b6136bc868285016135ad565b60c08301525094935050505056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a006548005c3f4340f82f348c576c0ff69f7f529cadd5ad41f96aae61abceeaa300f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122061e987840dc5636bef7f3a236927c9545d8d52ba387c367acdad7c79861f8a3164736f6c634300081a003360a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212201032e5c276369f787ae3aa867466c332aa36322d2b088d73b91ce78ef067e22164736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103",
         | 
| 563 | 
            +
              "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610148575f3560e01c8063644c45e0116100bf578063ada9652e11610079578063ada9652e146103e1578063b88da759146103f5578063c987336c14610408578063e97fac051461041b578063f7c34ee01461042e578063fd0c63d914610441575f80fd5b8063644c45e014610373578063675393bf14610390578063893d20e8146103a35780638e9afce6146103ab578063933a9ce8146103be578063946dfcfe146103cf575f80fd5b80631775564d116101105780631775564d14610209578063214cdb80146102295780632e65651d1461023c57806336fc697e1461024d5780634d459c90146102555780635ab1bd5314610362575f80fd5b806301ffc9a71461014c578063058f7a971461018d57806307484e80146101a25780630d8e6e2c146101cd578063138461e0146101e9575b5f80fd5b61017861015a3660046114fe565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101a061019b366004611540565b610449565b005b6101b56101b03660046115fa565b610558565b6040516001600160a01b039091168152602001610184565b6101d56106e1565b60405162ffffff9091168152602001610184565b6101f1610751565b6040516001600160601b039091168152602001610184565b61021c61021736600461164f565b61075b565b60405161018491906116ca565b6101a06102373660046114fe565b6107b3565b6005546001600160a01b03166101b5565b6101a06107df565b6103056102633660046116ec565b6040805160a0810182525f808252602082018190529181018290526060810182905260808101919091525062ffffff9081165f90815260036020908152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610184565b6001546001600160a01b03166101b5565b5f8051602061271c833981519152546001600160601b03166101f1565b6101a061039e366004611540565b610824565b6101b5610931565b61021c6103b9366004611707565b610a62565b6002546001600160a01b03166101b5565b6004545b604051908152602001610184565b6103d35f8051602061271c83398151915281565b6101d5610403366004611741565b610ab5565b6101b561041636600461164f565b610af3565b6101b561042936600461164f565b610d0c565b6101a061043c366004611758565b610e8a565b6101f1610f00565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff165f8115801561048e5750825b90505f8267ffffffffffffffff1660011480156104aa5750303b155b9050811580156104b8575080155b156104d65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561050057845460ff60401b1916600160401b1785555b61050a3387610e8a565b831561055057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050565b5f610561610931565b6001600160a01b0316336001600160a01b0316146105995760405163086391f760e31b81523360048201526024015b60405180910390fd5b600454156105ba5760405163402b135f60e11b815260040160405180910390fd5b5f6105c3610931565b9050308386826105d3858961075b565b6040516105df906114f1565b6105eb9392919061178f565b8190604051809103905ff5905080158015610608573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610694918591630d8e6e2c9160048083019260209291908290030181865afa158015610669573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061068d91906117c3565b8784610f17565b6002546040516001600160a01b038881168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a250509392505050565b600254604080516303639b8b60e21b815290515f926001600160a01b031691630d8e6e2c9160048083019260209291908290030181865afa158015610728573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061074c91906117c3565b905090565b5f61074c306112ad565b60606349bb9e4b60e01b83836040516024016107789291906117de565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290505b92915050565b6107bb6114a6565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b6107e76114a6565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61082c6114a6565b806001600160a01b03163b5f036108615760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526311da029b60e01b60048201526301ffc9a790602401602060405180830381865afa9250505080156108db575060408051601f3d908101601f191682019092526108d891810190611801565b60015b6109035760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610590565b8061092c5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610590565b505b50565b5f805f8051602061271c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561099d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c19190611801565b15610a4c576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a469190611820565b91505090565b54600160601b90046001600160a01b0316919050565b606063329d6e7460e01b82604051602401610a7d91906116ca565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b5f60048281548110610ac957610ac961183b565b905f5260205f2090600a91828204019190066003029054906101000a900462ffffff169050919050565b5f610afc610931565b6001600160a01b0316336001600160a01b031614610b2f5760405163086391f760e31b8152336004820152602401610590565b6004545f03610b515760405163366dfd2160e21b815260040160405180910390fd5b5f610b5a610931565b90505f610b6f6002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015610bab573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bcf9190611820565b6002549091506001600160a01b03908116908216639623609d8288610bf389610a62565b6040518463ffffffff1660e01b8152600401610c119392919061178f565b5f604051808303815f87803b158015610c28575f80fd5b505af1158015610c3a573d5f803e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03169350610cbf846001600160a01b0316630d8e6e2c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c94573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cb891906117c3565b8785610f17565b6002546040516001600160a01b038881168252909116907f1356a2c922be684528fa1759d1808395e5c5010181dd333cdb6f03e2d8545b659060200160405180910390a250505092915050565b5f610d15610931565b6001600160a01b0316336001600160a01b031614610d485760405163086391f760e31b8152336004820152602401610590565b60045415610d695760405163402b135f60e11b815260040160405180910390fd5b5f610d72610931565b9050308481610d81848761075b565b604051610d8d906114f1565b610d999392919061178f565b604051809103905ff080158015610db2573d5f803e3d5ffd5b50600280546001600160a01b0319166001600160a01b03929092169182179055604080516303639b8b60e21b81529051919450610e3e918591630d8e6e2c9160048083019260209291908290030181865afa158015610e13573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e3791906117c3565b8684610f17565b6002546040516001600160a01b038781168252909116907f78922e3fa1abc96399973cb25528ba892214b57da9d1a573937c460d9f5eb4759060200160405180910390a2505092915050565b610e926114a6565b610e9b81610824565b610ea36107df565b6001600160a01b038216610eca5760405163f17ef42d60e01b815260040160405180910390fd5b505f8051602061271c83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6002545f9061074c906001600160a01b03166112ad565b610f938373__$8eede297b65ed5a56eb3f84d8232ae93f5$__6304b8f6c56040518163ffffffff1660e01b8152600401602060405180830381865af4158015610f62573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f8691906117c3565b62ffffff90811691161490565b15610fb1576040516348c618db60e01b815260040160405180910390fd5b600454156111095760048054610fc99060019061184f565b81548110610fd957610fd961183b565b5f9182526020909120600a80830490910154604051635560100760e01b8152919092066003026101000a90910462ffffff16600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af415801561104a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061106e919061186e565b604051635560100760e01b815262ffffff8516600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__90635560100790602401602060405180830381865af41580156110c0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e4919061186e565b1161110957604051633e614b6d60e11b815262ffffff84166004820152602401610590565b600480546001810182555f829052600a8082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805462ffffff808916600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b038086166020848101919091529085168383015281516356db0c1960e11b815291519293606085019373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9363adb6183293818401939092918290030181865af41580156111d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111fd9190611885565b64ffffffffff90811682524363ffffffff90811660209384015262ffffff9687165f90815260038452604090819020855181549587015199166001600160b81b03199095169490941763010000006001600160a01b03998a1602178455840151600190930180546060860151608090960151949098166001600160c81b031990981697909717600160a01b94909216939093021763ffffffff60c81b1916600160c81b9190921602179092555050565b5f805f8051602061271c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611319573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061133d9190611801565b156113695780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610590565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156113bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113df9190611801565b6114075760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610590565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611459573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061147d91906118a9565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166114ef57604051631afcd79f60e31b815260040160405180910390fd5b565b610e4c806118d083390190565b5f6020828403121561150e575f80fd5b81356001600160e01b031981168114611525575f80fd5b9392505050565b6001600160a01b038116811461092e575f80fd5b5f60208284031215611550575f80fd5b81356115258161152c565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011261157e575f80fd5b813567ffffffffffffffff8111156115985761159861155b565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156115c7576115c761155b565b6040528181528382016020018510156115de575f80fd5b816020850160208301375f918101602001919091529392505050565b5f805f6060848603121561160c575f80fd5b83356116178161152c565b9250602084013567ffffffffffffffff811115611632575f80fd5b61163e8682870161156f565b925050604084013590509250925092565b5f8060408385031215611660575f80fd5b823561166b8161152c565b9150602083013567ffffffffffffffff811115611686575f80fd5b6116928582860161156f565b9150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f611525602083018461169c565b62ffffff8116811461092e575f80fd5b5f602082840312156116fc575f80fd5b8135611525816116dc565b5f60208284031215611717575f80fd5b813567ffffffffffffffff81111561172d575f80fd5b6117398482850161156f565b949350505050565b5f60208284031215611751575f80fd5b5035919050565b5f8060408385031215611769575f80fd5b82356117748161152c565b915060208301356117848161152c565b809150509250929050565b6001600160a01b038481168252831660208201526060604082018190525f906117ba9083018461169c565b95945050505050565b5f602082840312156117d3575f80fd5b8151611525816116dc565b6001600160a01b03831681526040602082018190525f906117399083018461169c565b5f60208284031215611811575f80fd5b81518015158114611525575f80fd5b5f60208284031215611830575f80fd5b81516115258161152c565b634e487b7160e01b5f52603260045260245ffd5b818103818111156107ad57634e487b7160e01b5f52601160045260245ffd5b5f6020828403121561187e575f80fd5b5051919050565b5f60208284031215611895575f80fd5b815164ffffffffff81168114611525575f80fd5b5f602082840312156118b9575f80fd5b81516001600160601b0381168114611525575f80fdfe60a060405234801561000f575f80fd5b50604051610e4c380380610e4c83398101604081905261002e9161037c565b828282828161003d828261009e565b50508160405161004c90610340565b6001600160a01b039091168152602001604051809103905ff080158015610075573d5f803e3d5ffd5b506001600160a01b031660805261009361008e60805190565b6100fc565b505050505050610463565b6100a782610169565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100f0576100eb82826101e7565b505050565b6100f861025a565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61013b5f80516020610e2c833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16101668161027b565b50565b806001600160a01b03163b5f036101a357604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b60605f80846001600160a01b031684604051610203919061044d565b5f60405180830381855af49150503d805f811461023b576040519150601f19603f3d011682016040523d82523d5f602084013e610240565b606091505b5090925090506102518583836102b8565b95945050505050565b34156102795760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b0381166102a457604051633173bdd160e11b81525f600482015260240161019a565b805f80516020610e2c8339815191526101c6565b6060826102cd576102c882610317565b610310565b81511580156102e457506001600160a01b0384163b155b1561030d57604051639996b31560e01b81526001600160a01b038516600482015260240161019a565b50805b9392505050565b8051156103275780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6104ef8061093d83390190565b80516001600160a01b0381168114610363575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f805f6060848603121561038e575f80fd5b6103978461034d565b92506103a56020850161034d565b60408501519092506001600160401b038111156103c0575f80fd5b8401601f810186136103d0575f80fd5b80516001600160401b038111156103e9576103e9610368565b604051601f8201601f19908116603f011681016001600160401b038111828210171561041757610417610368565b60405281815282820160200188101561042e575f80fd5b8160208401602083015e5f602083830101528093505050509250925092565b5f82518060208501845e5f920191825250919050565b6080516104bd6104805f395f818160350152607201526104bd5ff3fe60806040526004361061001d575f3560e01c80638b3240a014610027575b610025610070565b005b348015610032575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100dc575f356001600160e01b03191663278f794360e11b146100d2576040516334ad5dbb60e21b815260040160405180910390fd5b6100da6100e9565b565b6100da610117565b905090565b5f806100f83660048184610365565b81019061010591906103a0565b915091506101138282610127565b5050565b6100da610122610181565b6101b3565b610130826101d1565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561017957610174828261024c565b505050565b6101136102be565b5f6100e47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b365f80375f80365f845af43d5f803e8080156101cd573d5ff35b3d5ffd5b806001600160a01b03163b5f0361020b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516102689190610471565b5f60405180830381855af49150503d805f81146102a0576040519150601f19603f3d011682016040523d82523d5f602084013e6102a5565b606091505b50915091506102b58583836102dd565b95945050505050565b34156100da5760405163b398979f60e01b815260040160405180910390fd5b6060826102f2576102ed8261033c565b610335565b815115801561030957506001600160a01b0384163b155b1561033257604051639996b31560e01b81526001600160a01b0385166004820152602401610202565b50805b9392505050565b80511561034c5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b5f8085851115610373575f80fd5b8386111561037f575f80fd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156103b1575f80fd5b82356001600160a01b03811681146103c7575f80fd5b9150602083013567ffffffffffffffff8111156103e2575f80fd5b8301601f810185136103f2575f80fd5b803567ffffffffffffffff81111561040c5761040c61038c565b604051601f8201601f19908116603f0116810167ffffffffffffffff8111828210171561043b5761043b61038c565b604052818152828201602001871015610452575f80fd5b816020840160208301375f602083830101528093505050509250929050565b5f82518060208501845e5f92019182525091905056fea26469706673582212201032e5c276369f787ae3aa867466c332aa36322d2b088d73b91ce78ef067e22164736f6c634300081a0033608060405234801561000f575f80fd5b506040516104ef3803806104ef83398101604081905261002e916100bb565b806001600160a01b03811661005c57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6100658161006c565b50506100e8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cb575f80fd5b81516001600160a01b03811681146100e1575f80fd5b9392505050565b6103fa806100f55f395ff3fe608060405260043610610049575f3560e01c8063715018a61461004d5780638da5cb5b146100635780639623609d1461008e578063ad3cb1cc146100a1578063f2fde38b146100de575b5f80fd5b348015610058575f80fd5b506100616100fd565b005b34801561006e575f80fd5b505f546040516001600160a01b0390911681526020015b60405180910390f35b61006161009c366004610260565b610110565b3480156100ac575f80fd5b506100d1604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516100859190610365565b3480156100e9575f80fd5b506100616100f836600461037e565b61017b565b6101056101bd565b61010e5f6101e9565b565b6101186101bd565b60405163278f794360e11b81526001600160a01b03841690634f1ef2869034906101489086908690600401610399565b5f604051808303818588803b15801561015f575f80fd5b505af1158015610171573d5f803e3d5ffd5b5050505050505050565b6101836101bd565b6001600160a01b0381166101b157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6101ba816101e9565b50565b5f546001600160a01b0316331461010e5760405163118cdaa760e01b81523360048201526024016101a8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101ba575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610272575f80fd5b833561027d81610238565b9250602084013561028d81610238565b9150604084013567ffffffffffffffff8111156102a8575f80fd5b8401601f810186136102b8575f80fd5b803567ffffffffffffffff8111156102d2576102d261024c565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156103015761030161024c565b604052818152828201602001881015610318575f80fd5b816020840160208301375f602083830101528093505050509250925092565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6103776020830184610337565b9392505050565b5f6020828403121561038e575f80fd5b813561037781610238565b6001600160a01b03831681526040602082018190525f906103bc90830184610337565b94935050505056fea264697066735822122063012ab3c3421087c307802be7295f03bec95db9eea702a4c2db9595befa162464736f6c634300081a0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00a26469706673582212201543e72dde8671473fc355f1920815144cee96c52ba88f76a5a6d54226d8aba664736f6c634300081a0033",
         | 
| 564 | 
            +
              "linkReferences": {
         | 
| 565 | 
            +
                "contracts/type/Amount.sol": {
         | 
| 566 | 
            +
                  "AmountLib": [
         | 
| 567 | 
            +
                    {
         | 
| 568 | 
            +
                      "length": 20,
         | 
| 569 | 
            +
                      "start": 18089
         | 
| 570 | 
            +
                    },
         | 
| 571 | 
            +
                    {
         | 
| 572 | 
            +
                      "length": 20,
         | 
| 573 | 
            +
                      "start": 24167
         | 
| 574 | 
            +
                    }
         | 
| 575 | 
            +
                  ]
         | 
| 576 | 
            +
                },
         | 
| 577 | 
            +
                "contracts/type/NftId.sol": {
         | 
| 578 | 
            +
                  "NftIdLib": [
         | 
| 579 | 
            +
                    {
         | 
| 580 | 
            +
                      "length": 20,
         | 
| 581 | 
            +
                      "start": 1197
         | 
| 582 | 
            +
                    },
         | 
| 583 | 
            +
                    {
         | 
| 584 | 
            +
                      "length": 20,
         | 
| 585 | 
            +
                      "start": 5758
         | 
| 586 | 
            +
                    },
         | 
| 587 | 
            +
                    {
         | 
| 588 | 
            +
                      "length": 20,
         | 
| 589 | 
            +
                      "start": 8186
         | 
| 590 | 
            +
                    },
         | 
| 591 | 
            +
                    {
         | 
| 592 | 
            +
                      "length": 20,
         | 
| 593 | 
            +
                      "start": 15428
         | 
| 594 | 
            +
                    },
         | 
| 595 | 
            +
                    {
         | 
| 596 | 
            +
                      "length": 20,
         | 
| 597 | 
            +
                      "start": 19180
         | 
| 598 | 
            +
                    },
         | 
| 599 | 
            +
                    {
         | 
| 600 | 
            +
                      "length": 20,
         | 
| 601 | 
            +
                      "start": 20222
         | 
| 602 | 
            +
                    },
         | 
| 603 | 
            +
                    {
         | 
| 604 | 
            +
                      "length": 20,
         | 
| 605 | 
            +
                      "start": 22291
         | 
| 606 | 
            +
                    },
         | 
| 607 | 
            +
                    {
         | 
| 608 | 
            +
                      "length": 20,
         | 
| 609 | 
            +
                      "start": 24694
         | 
| 610 | 
            +
                    }
         | 
| 611 | 
            +
                  ]
         | 
| 612 | 
            +
                },
         | 
| 613 | 
            +
                "contracts/type/RoleId.sol": {
         | 
| 614 | 
            +
                  "RoleIdLib": [
         | 
| 615 | 
            +
                    {
         | 
| 616 | 
            +
                      "length": 20,
         | 
| 617 | 
            +
                      "start": 18356
         | 
| 618 | 
            +
                    }
         | 
| 619 | 
            +
                  ]
         | 
| 620 | 
            +
                },
         | 
| 621 | 
            +
                "contracts/type/Timestamp.sol": {
         | 
| 622 | 
            +
                  "TimestampLib": [
         | 
| 623 | 
            +
                    {
         | 
| 624 | 
            +
                      "length": 20,
         | 
| 625 | 
            +
                      "start": 2197
         | 
| 626 | 
            +
                    },
         | 
| 627 | 
            +
                    {
         | 
| 628 | 
            +
                      "length": 20,
         | 
| 629 | 
            +
                      "start": 7866
         | 
| 630 | 
            +
                    }
         | 
| 631 | 
            +
                  ]
         | 
| 632 | 
            +
                },
         | 
| 633 | 
            +
                "contracts/type/Version.sol": {
         | 
| 634 | 
            +
                  "VersionLib": [
         | 
| 635 | 
            +
                    {
         | 
| 636 | 
            +
                      "length": 20,
         | 
| 637 | 
            +
                      "start": 1553
         | 
| 638 | 
            +
                    },
         | 
| 639 | 
            +
                    {
         | 
| 640 | 
            +
                      "length": 20,
         | 
| 641 | 
            +
                      "start": 1798
         | 
| 642 | 
            +
                    },
         | 
| 643 | 
            +
                    {
         | 
| 644 | 
            +
                      "length": 20,
         | 
| 645 | 
            +
                      "start": 1916
         | 
| 646 | 
            +
                    },
         | 
| 647 | 
            +
                    {
         | 
| 648 | 
            +
                      "length": 20,
         | 
| 649 | 
            +
                      "start": 7222
         | 
| 650 | 
            +
                    },
         | 
| 651 | 
            +
                    {
         | 
| 652 | 
            +
                      "length": 20,
         | 
| 653 | 
            +
                      "start": 7467
         | 
| 654 | 
            +
                    },
         | 
| 655 | 
            +
                    {
         | 
| 656 | 
            +
                      "length": 20,
         | 
| 657 | 
            +
                      "start": 7585
         | 
| 658 | 
            +
                    },
         | 
| 659 | 
            +
                    {
         | 
| 660 | 
            +
                      "length": 20,
         | 
| 661 | 
            +
                      "start": 15224
         | 
| 662 | 
            +
                    },
         | 
| 663 | 
            +
                    {
         | 
| 664 | 
            +
                      "length": 20,
         | 
| 665 | 
            +
                      "start": 16634
         | 
| 666 | 
            +
                    }
         | 
| 667 | 
            +
                  ],
         | 
| 668 | 
            +
                  "VersionPartLib": [
         | 
| 669 | 
            +
                    {
         | 
| 670 | 
            +
                      "length": 20,
         | 
| 671 | 
            +
                      "start": 18404
         | 
| 672 | 
            +
                    },
         | 
| 673 | 
            +
                    {
         | 
| 674 | 
            +
                      "length": 20,
         | 
| 675 | 
            +
                      "start": 23926
         | 
| 676 | 
            +
                    }
         | 
| 677 | 
            +
                  ]
         | 
| 678 | 
            +
                }
         | 
| 679 | 
            +
              },
         | 
| 680 | 
            +
              "deployedLinkReferences": {
         | 
| 681 | 
            +
                "contracts/type/NftId.sol": {
         | 
| 682 | 
            +
                  "NftIdLib": [
         | 
| 683 | 
            +
                    {
         | 
| 684 | 
            +
                      "length": 20,
         | 
| 685 | 
            +
                      "start": 2405
         | 
| 686 | 
            +
                    },
         | 
| 687 | 
            +
                    {
         | 
| 688 | 
            +
                      "length": 20,
         | 
| 689 | 
            +
                      "start": 4833
         | 
| 690 | 
            +
                    }
         | 
| 691 | 
            +
                  ]
         | 
| 692 | 
            +
                },
         | 
| 693 | 
            +
                "contracts/type/Timestamp.sol": {
         | 
| 694 | 
            +
                  "TimestampLib": [
         | 
| 695 | 
            +
                    {
         | 
| 696 | 
            +
                      "length": 20,
         | 
| 697 | 
            +
                      "start": 4513
         | 
| 698 | 
            +
                    }
         | 
| 699 | 
            +
                  ]
         | 
| 700 | 
            +
                },
         | 
| 701 | 
            +
                "contracts/type/Version.sol": {
         | 
| 702 | 
            +
                  "VersionLib": [
         | 
| 703 | 
            +
                    {
         | 
| 704 | 
            +
                      "length": 20,
         | 
| 705 | 
            +
                      "start": 3869
         | 
| 706 | 
            +
                    },
         | 
| 707 | 
            +
                    {
         | 
| 708 | 
            +
                      "length": 20,
         | 
| 709 | 
            +
                      "start": 4114
         | 
| 710 | 
            +
                    },
         | 
| 711 | 
            +
                    {
         | 
| 712 | 
            +
                      "length": 20,
         | 
| 713 | 
            +
                      "start": 4232
         | 
| 714 | 
            +
                    }
         | 
| 715 | 
            +
                  ]
         | 
| 716 | 
            +
                }
         | 
| 717 | 
            +
              }
         | 
| 718 | 
            +
            }
         |