@etherisc/gif-next 0.0.2-b9b3e89 → 0.0.2-bc11089-288
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +364 -8
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +469 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +772 -0
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/access/Access.sol/AccessModule.json → components/IBaseComponent.sol/IBaseComponent.json} +207 -223
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +152 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +275 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/{instance/pool/PoolModule.sol/PoolModule.json → components/IProductComponent.sol/IProductComponent.json} +81 -86
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +812 -40
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +719 -49
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +4 -0
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +105 -0
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +4 -0
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +105 -0
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +4 -0
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +128 -0
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +4 -0
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +42 -0
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +4 -0
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +76 -0
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +4 -0
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +89 -0
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +4 -0
- package/artifacts/contracts/{instance/product/IProductService.sol/IProductService.json → experiment/inheritance/IA.sol/IA.json} +64 -50
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +4 -0
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +37 -0
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +4 -0
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +50 -0
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +4 -0
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +63 -0
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +4 -0
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +10 -0
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +4 -0
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +10 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +788 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +185 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1314 -469
- package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.json +448 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +541 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2531 -505
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1057 -0
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +763 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1422 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +991 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +508 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +285 -0
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +521 -0
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +113 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.json +115 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +502 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +243 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/ISetup.sol/ISetup.json} +2 -2
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.json +10 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +923 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +440 -0
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +827 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +684 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +428 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +669 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +466 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +446 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +664 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +499 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +536 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +984 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +464 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +718 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +428 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +768 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +420 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +4 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +771 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +453 -79
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +947 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +626 -79
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1293 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +517 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +410 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +201 -0
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/shared/IService.sol/IService.json +421 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +205 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +274 -0
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +442 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/shared/Service.sol/Service.json +468 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -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 +228 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +305 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
- package/artifacts/contracts/test/TestService.sol/TestService.json +600 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +286 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +10 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +257 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +153 -0
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +249 -0
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
- package/contracts/components/BaseComponent.sol +148 -0
- package/contracts/components/Distribution.sol +163 -0
- package/contracts/components/IBaseComponent.sol +32 -0
- package/contracts/components/IDistributionComponent.sol +44 -0
- package/contracts/components/IPoolComponent.sol +66 -0
- package/contracts/components/IProductComponent.sol +35 -0
- package/contracts/components/Pool.sol +260 -18
- package/contracts/components/Product.sol +263 -36
- package/contracts/experiment/cloning/Cloner.sol +47 -0
- package/contracts/experiment/errors/Require.sol +38 -0
- package/contracts/experiment/errors/Revert.sol +44 -0
- package/contracts/experiment/inheritance/A.sol +53 -0
- package/contracts/experiment/inheritance/B.sol +28 -0
- package/contracts/experiment/inheritance/C.sol +34 -0
- package/contracts/experiment/inheritance/IA.sol +13 -0
- package/contracts/experiment/inheritance/IB.sol +10 -0
- package/contracts/experiment/inheritance/IC.sol +12 -0
- package/contracts/experiment/statemachine/Dummy.sol +27 -0
- package/contracts/experiment/statemachine/ISM.sol +25 -0
- package/contracts/experiment/statemachine/SM.sol +57 -0
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
- package/contracts/experiment/types/TypeA.sol +47 -0
- package/contracts/experiment/types/TypeB.sol +29 -0
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +23 -0
- package/contracts/instance/BundleManager.sol +129 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +57 -15
- package/contracts/instance/IInstanceBase.sol +26 -0
- package/contracts/instance/IInstanceService.sol +38 -0
- package/contracts/instance/Instance.sol +257 -44
- package/contracts/instance/InstanceAccessManager.sol +304 -0
- package/contracts/instance/InstanceBase.sol +41 -0
- package/contracts/instance/InstanceReader.sol +315 -0
- package/contracts/instance/InstanceService.sol +300 -0
- package/contracts/instance/InstanceServiceManager.sol +57 -0
- package/contracts/instance/ObjectManager.sol +101 -0
- package/contracts/instance/base/ComponentServiceBase.sol +72 -0
- package/contracts/instance/base/IInstanceBase.sol +23 -0
- package/contracts/instance/base/IKeyValueStore.sol +49 -0
- package/contracts/instance/base/ILifecycle.sol +30 -0
- package/contracts/instance/base/KeyValueStore.sol +172 -0
- package/contracts/instance/base/Lifecycle.sol +100 -0
- package/contracts/instance/module/IAccess.sol +48 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IDistribution.sol +39 -0
- package/contracts/instance/module/IPolicy.sol +45 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +46 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/BundleService.sol +260 -0
- package/contracts/instance/service/BundleServiceManager.sol +54 -0
- package/contracts/instance/service/ComponentOwnerService.sol +317 -0
- package/contracts/instance/service/DistributionService.sol +118 -0
- package/contracts/instance/service/DistributionServiceManager.sol +54 -0
- package/contracts/instance/service/IBundleService.sol +45 -0
- package/contracts/instance/service/IComponentOwnerService.sol +20 -0
- package/contracts/instance/service/IDistributionService.sol +12 -0
- package/contracts/instance/service/IPolicyService.sol +87 -0
- package/contracts/instance/service/IPoolService.sol +20 -0
- package/contracts/instance/service/IProductService.sol +40 -0
- package/contracts/instance/service/PolicyService.sol +508 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +124 -0
- package/contracts/instance/service/PoolServiceManager.sol +54 -0
- package/contracts/instance/service/ProductService.sol +173 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +202 -0
- package/contracts/registry/IRegistry.sol +70 -55
- package/contracts/registry/IRegistryService.sol +50 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +380 -129
- package/contracts/registry/RegistryService.sol +358 -0
- package/contracts/registry/RegistryServiceManager.sol +80 -0
- package/contracts/registry/TokenRegistry.sol +111 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +25 -0
- package/contracts/shared/INftOwnable.sol +22 -0
- package/contracts/shared/IRegisterable.sol +17 -0
- package/contracts/shared/IService.sol +15 -0
- package/contracts/shared/IVersionable.sol +96 -0
- package/contracts/shared/NftOwnable.sol +134 -0
- package/contracts/shared/ProxyManager.sol +94 -0
- package/contracts/shared/Registerable.sol +90 -0
- package/contracts/shared/RegisterableUpgradable.sol +16 -0
- package/contracts/shared/Service.sol +55 -0
- package/contracts/shared/TokenHandler.sol +27 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +147 -0
- package/contracts/test/TestFee.sol +25 -0
- package/contracts/test/TestRegisterable.sol +18 -0
- package/contracts/test/TestRoleId.sol +14 -0
- package/contracts/test/TestService.sol +24 -0
- package/contracts/test/TestToken.sol +26 -0
- package/contracts/test/TestVersion.sol +44 -0
- package/contracts/test/TestVersionable.sol +17 -0
- package/contracts/test/Usdc.sol +26 -0
- package/contracts/types/AddressSet.sol +58 -0
- package/contracts/types/Blocknumber.sol +118 -0
- package/contracts/types/ChainId.sol +38 -0
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +56 -0
- package/contracts/types/Key32.sol +50 -0
- package/contracts/types/NftId.sol +72 -0
- package/contracts/types/NftIdSet.sol +62 -0
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +152 -0
- package/contracts/types/Referral.sol +85 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +91 -0
- package/contracts/types/StateId.sol +105 -0
- package/contracts/types/Timestamp.sol +127 -0
- package/contracts/types/UFixed.sol +325 -0
- package/contracts/types/Version.sol +107 -0
- package/package.json +21 -6
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/Component.json +0 -179
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- 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/IAccessCheckRole.json +0 -35
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +0 -327
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -105
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/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/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -125
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/contracts/components/Component.sol +0 -62
- package/contracts/components/IPool.sol +0 -9
- package/contracts/components/IProduct.sol +0 -11
- package/contracts/instance/access/Access.sol +0 -218
- package/contracts/instance/access/IAccess.sol +0 -83
- package/contracts/instance/component/ComponentModule.sol +0 -259
- package/contracts/instance/component/IComponent.sol +0 -94
- package/contracts/instance/policy/IPolicy.sol +0 -66
- package/contracts/instance/policy/PolicyModule.sol +0 -106
- package/contracts/instance/pool/IPoolModule.sol +0 -40
- package/contracts/instance/pool/PoolModule.sol +0 -83
- package/contracts/instance/product/IProductService.sol +0 -45
- package/contracts/instance/product/ProductService.sol +0 -105
@@ -0,0 +1,508 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "InstanceServiceManager",
|
4
|
+
"sourceName": "contracts/instance/InstanceServiceManager.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "registryAddress",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"stateMutability": "nonpayable",
|
15
|
+
"type": "constructor"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [],
|
19
|
+
"name": "ErrorAlreadyDeployed",
|
20
|
+
"type": "error"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"inputs": [],
|
24
|
+
"name": "ErrorAlreadyDeployedWithSalt",
|
25
|
+
"type": "error"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"inputs": [
|
29
|
+
{
|
30
|
+
"internalType": "address",
|
31
|
+
"name": "registry",
|
32
|
+
"type": "address"
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"internalType": "NftId",
|
36
|
+
"name": "nftId",
|
37
|
+
"type": "uint96"
|
38
|
+
}
|
39
|
+
],
|
40
|
+
"name": "ErrorAlreadyLinked",
|
41
|
+
"type": "error"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"inputs": [
|
45
|
+
{
|
46
|
+
"internalType": "address",
|
47
|
+
"name": "contractAddress",
|
48
|
+
"type": "address"
|
49
|
+
}
|
50
|
+
],
|
51
|
+
"name": "ErrorContractNotRegistered",
|
52
|
+
"type": "error"
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"inputs": [
|
56
|
+
{
|
57
|
+
"internalType": "address",
|
58
|
+
"name": "account",
|
59
|
+
"type": "address"
|
60
|
+
}
|
61
|
+
],
|
62
|
+
"name": "ErrorNotOwner",
|
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": "ErrorNotYetDeployed",
|
79
|
+
"type": "error"
|
80
|
+
},
|
81
|
+
{
|
82
|
+
"inputs": [],
|
83
|
+
"name": "ErrorRegistryAddressZero",
|
84
|
+
"type": "error"
|
85
|
+
},
|
86
|
+
{
|
87
|
+
"inputs": [
|
88
|
+
{
|
89
|
+
"internalType": "address",
|
90
|
+
"name": "registry",
|
91
|
+
"type": "address"
|
92
|
+
}
|
93
|
+
],
|
94
|
+
"name": "ErrorRegistryAlreadyInitialized",
|
95
|
+
"type": "error"
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"inputs": [],
|
99
|
+
"name": "ErrorRegistryNotInitialized",
|
100
|
+
"type": "error"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"anonymous": false,
|
104
|
+
"inputs": [
|
105
|
+
{
|
106
|
+
"indexed": true,
|
107
|
+
"internalType": "address",
|
108
|
+
"name": "proxy",
|
109
|
+
"type": "address"
|
110
|
+
},
|
111
|
+
{
|
112
|
+
"indexed": false,
|
113
|
+
"internalType": "address",
|
114
|
+
"name": "initialImplementation",
|
115
|
+
"type": "address"
|
116
|
+
}
|
117
|
+
],
|
118
|
+
"name": "LogProxyDeployed",
|
119
|
+
"type": "event"
|
120
|
+
},
|
121
|
+
{
|
122
|
+
"anonymous": false,
|
123
|
+
"inputs": [
|
124
|
+
{
|
125
|
+
"indexed": true,
|
126
|
+
"internalType": "address",
|
127
|
+
"name": "proxy",
|
128
|
+
"type": "address"
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"indexed": false,
|
132
|
+
"internalType": "address",
|
133
|
+
"name": "initialImplementation",
|
134
|
+
"type": "address"
|
135
|
+
}
|
136
|
+
],
|
137
|
+
"name": "LogProxyDeployedWithSalt",
|
138
|
+
"type": "event"
|
139
|
+
},
|
140
|
+
{
|
141
|
+
"anonymous": false,
|
142
|
+
"inputs": [
|
143
|
+
{
|
144
|
+
"indexed": true,
|
145
|
+
"internalType": "address",
|
146
|
+
"name": "proxy",
|
147
|
+
"type": "address"
|
148
|
+
},
|
149
|
+
{
|
150
|
+
"indexed": false,
|
151
|
+
"internalType": "address",
|
152
|
+
"name": "upgradedImplementation",
|
153
|
+
"type": "address"
|
154
|
+
}
|
155
|
+
],
|
156
|
+
"name": "LogProxyUpgraded",
|
157
|
+
"type": "event"
|
158
|
+
},
|
159
|
+
{
|
160
|
+
"inputs": [
|
161
|
+
{
|
162
|
+
"internalType": "address",
|
163
|
+
"name": "initialImplementation",
|
164
|
+
"type": "address"
|
165
|
+
},
|
166
|
+
{
|
167
|
+
"internalType": "bytes",
|
168
|
+
"name": "initializationData",
|
169
|
+
"type": "bytes"
|
170
|
+
}
|
171
|
+
],
|
172
|
+
"name": "deploy",
|
173
|
+
"outputs": [
|
174
|
+
{
|
175
|
+
"internalType": "contract IVersionable",
|
176
|
+
"name": "versionable",
|
177
|
+
"type": "address"
|
178
|
+
}
|
179
|
+
],
|
180
|
+
"stateMutability": "nonpayable",
|
181
|
+
"type": "function"
|
182
|
+
},
|
183
|
+
{
|
184
|
+
"inputs": [
|
185
|
+
{
|
186
|
+
"internalType": "address",
|
187
|
+
"name": "implementation",
|
188
|
+
"type": "address"
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"internalType": "address",
|
192
|
+
"name": "proxyOwner",
|
193
|
+
"type": "address"
|
194
|
+
},
|
195
|
+
{
|
196
|
+
"internalType": "bytes",
|
197
|
+
"name": "deployData",
|
198
|
+
"type": "bytes"
|
199
|
+
}
|
200
|
+
],
|
201
|
+
"name": "getDeployData",
|
202
|
+
"outputs": [
|
203
|
+
{
|
204
|
+
"internalType": "bytes",
|
205
|
+
"name": "data",
|
206
|
+
"type": "bytes"
|
207
|
+
}
|
208
|
+
],
|
209
|
+
"stateMutability": "pure",
|
210
|
+
"type": "function"
|
211
|
+
},
|
212
|
+
{
|
213
|
+
"inputs": [],
|
214
|
+
"name": "getInstanceService",
|
215
|
+
"outputs": [
|
216
|
+
{
|
217
|
+
"internalType": "contract InstanceService",
|
218
|
+
"name": "instanceService",
|
219
|
+
"type": "address"
|
220
|
+
}
|
221
|
+
],
|
222
|
+
"stateMutability": "view",
|
223
|
+
"type": "function"
|
224
|
+
},
|
225
|
+
{
|
226
|
+
"inputs": [],
|
227
|
+
"name": "getNftId",
|
228
|
+
"outputs": [
|
229
|
+
{
|
230
|
+
"internalType": "NftId",
|
231
|
+
"name": "",
|
232
|
+
"type": "uint96"
|
233
|
+
}
|
234
|
+
],
|
235
|
+
"stateMutability": "view",
|
236
|
+
"type": "function"
|
237
|
+
},
|
238
|
+
{
|
239
|
+
"inputs": [],
|
240
|
+
"name": "getOwner",
|
241
|
+
"outputs": [
|
242
|
+
{
|
243
|
+
"internalType": "address",
|
244
|
+
"name": "",
|
245
|
+
"type": "address"
|
246
|
+
}
|
247
|
+
],
|
248
|
+
"stateMutability": "view",
|
249
|
+
"type": "function"
|
250
|
+
},
|
251
|
+
{
|
252
|
+
"inputs": [],
|
253
|
+
"name": "getProxy",
|
254
|
+
"outputs": [
|
255
|
+
{
|
256
|
+
"internalType": "contract UpgradableProxyWithAdmin",
|
257
|
+
"name": "",
|
258
|
+
"type": "address"
|
259
|
+
}
|
260
|
+
],
|
261
|
+
"stateMutability": "nonpayable",
|
262
|
+
"type": "function"
|
263
|
+
},
|
264
|
+
{
|
265
|
+
"inputs": [],
|
266
|
+
"name": "getRegistry",
|
267
|
+
"outputs": [
|
268
|
+
{
|
269
|
+
"internalType": "contract IRegistry",
|
270
|
+
"name": "",
|
271
|
+
"type": "address"
|
272
|
+
}
|
273
|
+
],
|
274
|
+
"stateMutability": "view",
|
275
|
+
"type": "function"
|
276
|
+
},
|
277
|
+
{
|
278
|
+
"inputs": [
|
279
|
+
{
|
280
|
+
"internalType": "address",
|
281
|
+
"name": "implementation",
|
282
|
+
"type": "address"
|
283
|
+
},
|
284
|
+
{
|
285
|
+
"internalType": "address",
|
286
|
+
"name": "proxyOwner",
|
287
|
+
"type": "address"
|
288
|
+
},
|
289
|
+
{
|
290
|
+
"internalType": "bytes",
|
291
|
+
"name": "upgradeData",
|
292
|
+
"type": "bytes"
|
293
|
+
}
|
294
|
+
],
|
295
|
+
"name": "getUpgradeData",
|
296
|
+
"outputs": [
|
297
|
+
{
|
298
|
+
"internalType": "bytes",
|
299
|
+
"name": "data",
|
300
|
+
"type": "bytes"
|
301
|
+
}
|
302
|
+
],
|
303
|
+
"stateMutability": "pure",
|
304
|
+
"type": "function"
|
305
|
+
},
|
306
|
+
{
|
307
|
+
"inputs": [],
|
308
|
+
"name": "linkToRegisteredNftId",
|
309
|
+
"outputs": [],
|
310
|
+
"stateMutability": "nonpayable",
|
311
|
+
"type": "function"
|
312
|
+
},
|
313
|
+
{
|
314
|
+
"inputs": [
|
315
|
+
{
|
316
|
+
"internalType": "address",
|
317
|
+
"name": "newImplementation",
|
318
|
+
"type": "address"
|
319
|
+
},
|
320
|
+
{
|
321
|
+
"internalType": "bytes",
|
322
|
+
"name": "upgradeData",
|
323
|
+
"type": "bytes"
|
324
|
+
}
|
325
|
+
],
|
326
|
+
"name": "upgrade",
|
327
|
+
"outputs": [
|
328
|
+
{
|
329
|
+
"internalType": "contract IVersionable",
|
330
|
+
"name": "versionable",
|
331
|
+
"type": "address"
|
332
|
+
}
|
333
|
+
],
|
334
|
+
"stateMutability": "nonpayable",
|
335
|
+
"type": "function"
|
336
|
+
}
|
337
|
+
],
|
338
|
+
"bytecode": "0x60806040523480156200001157600080fd5b5060405162007c2738038062007c27833981016040819052620000349162000560565b600180546001600160a01b03191633179055604051600090620000579062000544565b604051809103906000f08015801562000074573d6000803e3d6000fd5b50604080516001600160a01b0385166020820152308183015281518082038301815260609091019091529091506000620000af838362000290565b600380546001600160a01b0319166001600160a01b03838116919091178255604051632efe011360e01b81526004810192909252600060248301819052604483018190529293508692919083169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562000140573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000166919062000592565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015620001bc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e29190620005b9565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa15801562000249573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026f919062000560565b50506002805460ff60a01b1916600160a01b179055506200066e9350505050565b60006200029c620003c5565b6001600160a01b0316336001600160a01b031614620002d45760405163700dd81160e01b815233600482015260240160405180910390fd5b600254600160a01b900460ff161562000300576040516375842f8760e01b815260040160405180910390fd5b60006200030c620003c5565b90503060006200031e868487620004e8565b9050858282604051620003319062000552565b6200033f93929190620005de565b604051809103906000f0801580156200035c573d6000803e3d6000fd5b50600280546001600160a81b0319166001600160a01b0392831617600160a01b179081905560405188831681529116945084907fc5c7b8d20d7cac78e56fc596f8d26c700e5077f096017736e3526ab8af4850359060200160405180910390a250505092915050565b600080546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562000429573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044f91906200064a565b15620004d857600054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015620004ad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004d3919062000560565b905090565b506001546001600160a01b031690565b606063cf7a1d7760e01b8484846040516024016200050993929190620005de565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290509392505050565b614c0080620020f883390190565b610f2f8062006cf883390190565b6000602082840312156200057357600080fd5b81516001600160a01b03811681146200058b57600080fd5b9392505050565b600060208284031215620005a557600080fd5b815162ffffff811681146200058b57600080fd5b600060208284031215620005cc57600080fd5b815160ff811681146200058b57600080fd5b600060018060a01b038086168352602081861681850152606060408501528451915081606085015260005b82811015620006275785810182015185820160800152810162000609565b50506000608082850101526080601f19601f830116840101915050949350505050565b6000602082840312156200065d57600080fd5b815180151581146200058b57600080fd5b611a7a806200067e6000396000f3fe60806040523480156200001157600080fd5b5060043610620000ab5760003560e01c8063aef485a0116200006e578063aef485a0146200012e578063c987336c1462000154578063cc9fc59a146200016b578063e97fac05146200017d578063f6876768146200019457600080fd5b8063138461e014620000b05780635ab1bd5314620000bc578063644c45e014620000e6578063893d20e81462000112578063933a9ce8146200011c575b600080fd5b620000ba620001ab565b005b6000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b600054600160a01b90046001600160601b03166040516001600160601b039091168152602001620000dd565b620000c9620003da565b6002546001600160a01b0316620000c9565b620001456200013f3660046200094b565b620004fd565b604051620000dd9190620009fd565b620000c96200016536600462000a19565b62000559565b6003546001600160a01b0316620000c9565b620000c96200018e36600462000a19565b62000726565b62000145620001a53660046200094b565b62000858565b6000546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156200020e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000234919062000a6f565b156200027c576000546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6000546001600160a01b0316620002a65760405163cf29926160e01b815260040160405180910390fd5b60005460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015620002f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000316919062000a6f565b62000340576040516372657a5160e01b81526001600160a01b038216600482015260240162000273565b600054604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156200038b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b1919062000a93565b600060146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156200043e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000464919062000a6f565b15620004ed57600054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015620004c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004e8919062000abe565b905090565b506001546001600160a01b031690565b606063a745e3df60e01b8484846040516024016200051e9392919062000ade565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290509392505050565b600062000565620003da565b6001600160a01b0316336001600160a01b0316146200059a5760405163700dd81160e01b815233600482015260240162000273565b600254600160a01b900460ff16620005c557604051631e35411160e31b815260040160405180910390fd5b6000620005d1620003da565b90506000620005e86002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000628573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200064e919062000abe565b6002549091506001600160a01b031660006200066c878588620004fd565b604051639623609d60e01b81529091506001600160a01b03841690639623609d90620006a19085908b90869060040162000ade565b600060405180830381600087803b158015620006bc57600080fd5b505af1158015620006d1573d6000803e3d6000fd5b50506002546040516001600160a01b038b8116825290911697508792507f5f1d3094af018381967fbedd54b80ffb09c5a9799db985f5e17e322672686306915060200160405180910390a25050505092915050565b600062000732620003da565b6001600160a01b0316336001600160a01b031614620007675760405163700dd81160e01b815233600482015260240162000273565b600254600160a01b900460ff161562000793576040516375842f8760e01b815260040160405180910390fd5b60006200079f620003da565b9050306000620007b186848762000858565b9050858282604051620007c49062000879565b620007d29392919062000ade565b604051809103906000f080158015620007ef573d6000803e3d6000fd5b50600280546001600160a81b0319166001600160a01b0392831617600160a01b179081905560405188831681529116945084907fc5c7b8d20d7cac78e56fc596f8d26c700e5077f096017736e3526ab8af4850359060200160405180910390a250505092915050565b606063cf7a1d7760e01b8484846040516024016200051e9392919062000ade565b610f2f8062000b1683390190565b6001600160a01b03811681146200089d57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620008c857600080fd5b813567ffffffffffffffff80821115620008e657620008e6620008a0565b604051601f8301601f19908116603f01168101908282118183101715620009115762000911620008a0565b816040528381528660208588010111156200092b57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156200096157600080fd5b83356200096e8162000887565b92506020840135620009808162000887565b9150604084013567ffffffffffffffff8111156200099d57600080fd5b620009ab86828701620008b6565b9150509250925092565b6000815180845260005b81811015620009dd57602081850181015186830182015201620009bf565b506000602082860101526020601f19601f83011685010191505092915050565b60208152600062000a126020830184620009b5565b9392505050565b6000806040838503121562000a2d57600080fd5b823562000a3a8162000887565b9150602083013567ffffffffffffffff81111562000a5757600080fd5b62000a6585828601620008b6565b9150509250929050565b60006020828403121562000a8257600080fd5b8151801515811462000a1257600080fd5b60006020828403121562000aa657600080fd5b81516001600160601b038116811462000a1257600080fd5b60006020828403121562000ad157600080fd5b815162000a128162000887565b6001600160a01b0384811682528316602082015260606040820181905260009062000b0c90830184620009b5565b9594505050505056fe60a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea264697066735822122061d21ea0f293a274302e47ad0e30c5fb666a07dc4f8e1cfa79d3064668655aa064736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103a2646970667358221220c96eaf7efc20fb9518647839e883b108066c84e42d25df61d6bebb4fed8d8b4864736f6c6343000814003360806040523480156200001157600080fd5b50620000546301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600280546001600160a01b031916331790556200007062000076565b6200012a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000c75760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620001275780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b614ac6806200013a6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063893d20e8116100f9578063cde749f411610097578063eb59c6b111610071578063eb59c6b11461055f578063edabac0314610570578063eeff428e14610581578063feec1190146105cc57600080fd5b8063cde749f414610521578063cf7a1d771461053b578063e338e27b1461054e57600080fd5b8063a745e3df116100d3578063a745e3df146104c8578063b3c65015146104db578063b88da759146104fb578063c22f980d1461050e57600080fd5b8063893d20e81461046b578063946dfcfe14610473578063a3f4df7e1461049a57600080fd5b80632b440bc9116101665780634f421333116101405780634f421333146104145780635ab1bd5314610427578063644c45e014610438578063872309c71461046357600080fd5b80632b440bc9146102c35780633bd516ef146102e85780634d459c90146102fb57600080fd5b8063103bd5da116101a2578063103bd5da1461023d578063138461e01461025057806317d7de7c1461025a5780631eff4b221461028e57600080fd5b806301ffc9a7146101c95780630d8e6e2c1461020b5780630fec111c14610227575b600080fd5b6101f66101d7366004614080565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102136105df565b60405162ffffff9091168152602001610202565b61022f610669565b604051610202929190614101565b6101f661024b3660046141d2565b6107eb565b6102586108d1565b005b60408051808201909152600f81526e496e7374616e63655365727669636560881b60208201525b604051610202919061421d565b6102b57f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610202565b6003546001600160a01b03165b6040516001600160a01b039091168152602001610202565b6102586102f6366004614230565b610af3565b6103b761030936600461429d565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152600080516020614a7183398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a001610202565b6101f661042236600461429d565b611108565b6001546001600160a01b03166102d0565b600154600160a01b90046001600160601b03166040516001600160601b039091168152602001610202565b6102b5600081565b6102d06111bb565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed901546102b5565b6102816040518060400160405280600f81526020016e496e7374616e63655365727669636560881b81525081565b6102586104d636600461434f565b6112d4565b6104e361142e565b6040516001600160401b039091168152602001610202565b6102136105093660046143f3565b61144f565b61025861051c366004614421565b6114a0565b6105296116aa565b60405160ff9091168152602001610202565b61025861054936600461434f565b61172d565b6004546001600160a01b03166102d0565b6006546001600160a01b03166102d0565b6005546001600160a01b03166102d0565b610589611836565b604080516001600160a01b03968716815294861660208601526001600160601b03909316928401929092528316606083015291909116608082015260a001610202565b6102586105da36600461443e565b611efd565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015610640573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610664919061445b565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e001604052806106ec6001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a0016107346111bb565b6001600160a01b0316815260200182600101805461075190614478565b80601f016020809104026020016040519081016040528092919081815260200182805461077d90614478565b80156107ca5780601f1061079f576101008083540402835291602001916107ca565b820191906000526020600020905b8154815290600101906020018083116107ad57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6000808290506000816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015610831573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085591906144b2565b6040516368fc2b7760e11b81529091506001600160a01b0382169063d1f856ee906108869088908a906004016144cf565b602060405180830381865afa1580156108a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108c79190614501565b9695505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610933573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109579190614501565b1561099e576001546040516316322c0f60e31b8152610995916001600160a01b03811691600160a01b9091046001600160601b03169060040161451c565b60405180910390fd5b6001546001600160a01b03166109c75760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610a10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a349190614501565b610a5c576040516372657a5160e01b81526001600160a01b0382166004820152602401610995565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610aa6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aca9190614549565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b610afb6111bb565b6001600160a01b0316336001600160a01b031614610b2e5760405163700dd81160e01b8152336004820152602401610995565b6003546001600160a01b031615610b9f5760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a4352442d3030313a4143434553535f4d414e414745525f4d415360448201526e15115497d053149150511657d4d155608a1b6064820152608401610995565b6004546001600160a01b031615610c0a5760405162461bcd60e51b815260206004820152602960248201527f4552524f523a4352442d3030323a494e5354414e43455f4d41535445525f414c604482015268149150511657d4d15560ba1b6064820152608401610995565b6006546001600160a01b031615610c7b5760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a4352442d3030343a42554e444c455f4d414e414745525f4d415360448201526e15115497d053149150511657d4d155608a1b6064820152608401610995565b6001600160a01b038416610cdb5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a4352442d3030353a4143434553535f4d414e414745525f5a45526044820152604f60f81b6064820152608401610995565b6001600160a01b038316610d315760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a4352442d3030363a494e5354414e43455f5a45524f00000000006044820152606401610995565b6001600160a01b038216610d925760405162461bcd60e51b815260206004820152602260248201527f4552524f523a4352442d3030373a494e5354414e43455f5245414445525f5a45604482015261524f60f01b6064820152608401610995565b6001600160a01b038116610df25760405162461bcd60e51b815260206004820152602160248201527f4552524f523a4352442d3030383a42554e444c455f4d414e414745525f5a45526044820152604f60f81b6064820152608401610995565b600083905060008390506000839050866001600160a01b0316836001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6d91906144b2565b6001600160a01b031614610ed55760405162461bcd60e51b815260206004820152602960248201527f4552524f523a4352442d3030393a494e5354414e43455f415554484f524954596044820152680be9a92a69a82a886960bb1b6064820152608401610995565b610fad826001600160a01b0316637e7986696040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3a9190614549565b846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9c9190614549565b6001600160601b0390811691161490565b6110115760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a4352442d3031303a494e5354414e43455f5245414445525f494e60448201526e0a6a8829c868abe9a92a69a82a8869608b1b6064820152608401610995565b611052816001600160a01b0316637e7986696040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f16573d6000803e3d6000fd5b6110b55760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a4352442d3031313a42554e444c455f4d414e414745525f494e5360448201526d0a8829c868abe9a92a69a82a886960931b6064820152608401610995565b5050600380546001600160a01b039687166001600160a01b031991821617909155600480549587169582169590951790945550600580549285169284169290921790915560068054919093169116179055565b600080600080516020614a7183398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015611190573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b49190614571565b1192915050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611220573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112449190614501565b156112c457600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa1580156112a0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066491906144b2565b506002546001600160a01b031690565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c6112f66105df565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611336573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135a919061458a565b600080516020614a518339815191528054600160401b900460ff168061138d575080546001600160401b03808416911610155b156113ab5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556113d685856121b5565b6113df83612454565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b6000610664600080516020614a51833981519152546001600160401b031690565b6000600080516020614a718339815191526001018281548110611474576114746145a7565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60006114b46001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201529091506000906001600160a01b0383169063a48f42e090602401600060405180830381865afa158015611507573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261152f91908101906146d1565b90506000816080015190506000816001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561157a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159e91906144b2565b9050336001600160a01b038216146115cb576040516302613e9f60e51b8152336004820152602401610995565b6005546000906115e3906001600160a01b031661245c565b604051633ca904dd60e21b81529091506001600160a01b0382169063f2a41374906116149088908a9060040161451c565b600060405180830381600087803b15801561162e57600080fd5b505af1158015611642573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b0384811660048301528616925063f7bc431c91506024015b600060405180830381600087803b15801561168a57600080fd5b505af115801561169e573d6000803e3d6000fd5b50505050505050505050565b60006116b46105df565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015611709573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106649190614705565b600080516020614a518339815191528054600160401b810460ff1615906001600160401b03166000811580156117605750825b90506000826001600160401b0316600114801561177c5750303b155b90508115801561178a575080155b156117a85760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156117d257845460ff60401b1916600160401b1785555b6117dc88886121b5565b6117e687876124ce565b831561182c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b60008080808033816118506001546001600160a01b031690565b604051636939560f60e11b81526001600160a01b03821660048201819052919250829160009163d272ac1e90602401602060405180830381865afa15801561189c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118c09190614549565b604051632efe011360e01b815260036004820152600060248201819052604482018190529192506001600160a01b0385169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015611934573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611958919061445b565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156119ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d19190614705565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e52656769737472795365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015611a37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a5b91906144b2565b6003549091508190611a75906001600160a01b031661245c565b604051637bee8e7d60e11b8152306004820152909b506001600160a01b038c169063f7dd1cfa90602401600060405180830381600087803b158015611ab957600080fd5b505af1158015611acd573d6000803e3d6000fd5b5050600454611ae792506001600160a01b0316905061245c565b60405163976b0a7760e01b81526001600160a01b038d8116600483015286811660248301526001600160601b0386166044830152336064830152919b50908b169063976b0a7790608401600060405180830381600087803b158015611b4b57600080fd5b505af1158015611b5f573d6000803e3d6000fd5b505060405163834af15360e01b81526001600160a01b038d81166004830152600093508416915063834af153906024016000604051808303816000875af1158015611bae573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bd69190810190614722565b508051600554909b50909150611bf4906001600160a01b031661245c565b604051633ca904dd60e21b81529099506001600160a01b038a169063f2a4137490611c259088908e9060040161451c565b600060405180830381600087803b158015611c3f57600080fd5b505af1158015611c53573d6000803e3d6000fd5b5050604051633def10c760e21b81526001600160a01b038c811660048301528e16925063f7bc431c9150602401600060405180830381600087803b158015611c9a57600080fd5b505af1158015611cae573d6000803e3d6000fd5b5050600654611cc892506001600160a01b0316905061245c565b604051630c861c2560e41b81526001600160a01b038e8116600483015287811660248301526001600160601b038d1660448301529199509089169063c861c25090606401600060405180830381600087803b158015611d2657600080fd5b505af1158015611d3a573d6000803e3d6000fd5b505060405162422c9d60e81b81526001600160a01b038b811660048301528e16925063422c9d009150602401600060405180830381600087803b158015611d8057600080fd5b505af1158015611d94573d6000803e3d6000fd5b50505050611da38c8c8a612609565b8b6001600160a01b031663b428b0b0611dba612656565b896040518363ffffffff1660e01b8152600401611dd89291906144cf565b6020604051808303816000875af1158015611df7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e1b9190614501565b508b6001600160a01b031663b7d2b162611e33612656565b306040518363ffffffff1660e01b8152600401611e519291906144cf565b6020604051808303816000875af1158015611e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e949190614501565b50604080516001600160a01b038e811682528d811660208301528b16818301526001600160601b038c16606082015290517f89f53d1fc9d655ac6863fb19d55f6cc8a7649a51ec36a0d13ec77d2bd2e970f39181900360800190a1505050505050509091929394565b611f056111bb565b6001600160a01b0316336001600160a01b031614611f385760405163700dd81160e01b8152336004820152602401610995565b6005546001600160a01b0316611fa55760405162461bcd60e51b815260206004820152602c60248201527f4552524f523a4352442d3030333a494e5354414e43455f5245414445525f4d4160448201526b14d5115497d393d517d4d15560a21b6064820152608401610995565b6001600160a01b0381166120065760405162461bcd60e51b815260206004820152602260248201527f4552524f523a4352442d3031323a494e5354414e43455f5245414445525f5a45604482015261524f60f01b6064820152608401610995565b6005546001600160a01b039081169082160361207d5760405162461bcd60e51b815260206004820152603060248201527f4552524f523a4352442d3031343a494e5354414e43455f5245414445525f4d4160448201526f535445525f53414d455f41535f4e455760801b6064820152608401610995565b600081905061212e816001600160a01b0316637e7986696040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120e79190614549565b6004805460408051630322622f60e51b815290516001600160a01b039092169263644c45e09282820192602092908290030181865afa158015610f78573d6000803e3d6000fd5b6121925760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a4352442d3031353a494e5354414e43455f5245414445525f494e60448201526e0a6a8829c868abe9a92a69a82a8869608b1b6064820152608401610995565b50600580546001600160a01b0319166001600160a01b0392909216919091179055565b6121bd6126ce565b600080516020614a7183398151915260006121ed600080516020614a51833981519152546001600160401b031690565b905060006121f96105df565b9050816001600160401b03166001036122265760028301805462ffffff191662ffffff8316179055612274565b600283015462ffffff908116908216116122745760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b6044820152606401610995565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b038089168484015287168382015280516356db0c1960e11b81529051606084019273__$d53880c81dc91c20799140d711e5ab8718$__9263adb6183292600480830193928290030181865af4158015612328573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061234c9190614785565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf689061141f9083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6101c46126ce565b6000763d602d80600a3d3981f3363d3d373d3d3d363d730000008260601b60e81c176000526e5af43d82803e903d91602b57fd5bf38260781b17602052603760096000f090506001600160a01b0381166124c9576040516330be1a3d60e21b815260040160405180910390fd5b919050565b600080516020614a518339815191528054600160401b810460ff1615906001600160401b03166000811580156125015750825b90506000826001600160401b0316600114801561251d5750303b155b90508115801561252b575080155b156125495760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561257357845460ff60401b1916600160401b1785555b6000808780602001905181019061258a91906147ac565b92509050612598818a612707565b6125a8631b4612f160e31b612794565b6125b8633fb125d560e21b612794565b5050831561260057845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6126148383836127b9565b61261e8383612871565b6126288383612b9d565b6126328383612ea0565b61263c8383613200565b6126478383836134f1565b6126518383613975565b505050565b6040516368aebf7b60e01b81526000600482018190529073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024015b602060405180830381865af41580156126aa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610664919061458a565b600080516020614a5183398151915254600160401b900460ff1661270557604051631afcd79f60e31b815260040160405180910390fd5b565b600061273560408051808201909152600f81526e496e7374616e63655365727669636560881b602082015290565b61273d6116aa565b60405160200161274e9291906147e6565b6040516020818303038152906040529050600061276a84613bf9565b9050600061277d8583603c848888613c6a565b61278d631b4612f160e31b612794565b5050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b60405163044ec4c360e41b81526001600160a01b038416906344ec4c30906127e590859060040161480b565b600060405180830381600087803b1580156127ff57600080fd5b505af1158015612813573d6000803e3d6000fd5b505060405163044ec4c360e41b81526001600160a01b03861692506344ec4c309150612843908490600401614842565b600060405180830381600087803b15801561285d57600080fd5b505af1158015612600573d6000803e3d6000fd5b60006128856001546001600160a01b031690565b600154604051632efe011360e01b815260036004820152600060248201819052604482018190529293506001600160a01b039091169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156128fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612921919061445b565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015612976573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061299a9190614705565b604080516001600160e01b031960e085901b16815260048101919091526013604482015272446973747269627574696f6e5365727669636560681b606482015260ff9091166024820152608401602060405180830381865afa158015612a04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a2891906144b2565b9050836001600160a01b031663b428b0b0612a41613d36565b836040518363ffffffff1660e01b8152600401612a5f9291906144cf565b6020604051808303816000875af1158015612a7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aa29190614501565b50604080516002808252606082018352600092602083019080368337019050509050630b24cf5f60e01b81600081518110612adf57612adf6145a7565b6001600160e01b031990921660209283029190910190910152805163bd5947e360e01b9082906001908110612b1657612b166145a7565b6001600160e01b0319909216602092830291909101909101526001600160a01b0385166329db8c3d82612b47613d36565b6040518363ffffffff1660e01b8152600401612b649291906148c3565b600060405180830381600087803b158015612b7e57600080fd5b505af1158015612b92573d6000803e3d6000fd5b505050505050505050565b600154604051632efe011360e01b81526003600482015260006024820181905260448201819052916001600160a01b03169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015612c11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c35919061445b565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015612c8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cae9190614705565b604080516001600160e01b031960e085901b1681526004810191909152600b60448201526a506f6f6c5365727669636560a81b606482015260ff9091166024820152608401602060405180830381865afa158015612d10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d3491906144b2565b9050826001600160a01b031663b428b0b0612d4d613d72565b836040518363ffffffff1660e01b8152600401612d6b9291906144cf565b6020604051808303816000875af1158015612d8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dae9190614501565b5060408051600480825260a082019092526000916020820160808036833701905050905063e7cd37d460e01b81600081518110612ded57612ded6145a7565b6001600160e01b0319909216602092830291909101909101528051633055195560e11b9082906001908110612e2457612e246145a7565b6001600160e01b0319909216602092830291909101909101526001600160a01b0384166329db8c3d82612e55613d72565b6040518363ffffffff1660e01b8152600401612e729291906148c3565b600060405180830381600087803b158015612e8c57600080fd5b505af115801561182c573d6000803e3d6000fd5b600154604051632efe011360e01b81526003600482015260006024820181905260448201819052916001600160a01b03169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015612f14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f38919061445b565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015612f8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fb19190614705565b604080516001600160e01b031960e085901b1681526004810191909152600e60448201526d50726f647563745365727669636560901b606482015260ff9091166024820152608401602060405180830381865afa158015613016573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061303a91906144b2565b9050826001600160a01b031663b428b0b0613053613dae565b836040518363ffffffff1660e01b81526004016130719291906144cf565b6020604051808303816000875af1158015613090573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130b49190614501565b5060408051600580825260c082019092526000916020820160a0803683370190505090506391ff6eaa60e01b816000815181106130f3576130f36145a7565b6001600160e01b03199092166020928302919091019091015280516354e750a160e11b908290600190811061312a5761312a6145a7565b6001600160e01b03199092166020928302919091019091015280516317b0844560e11b9082906002908110613161576131616145a7565b6001600160e01b03199092166020928302919091019091015280516314eddc0360e31b9082906003908110613198576131986145a7565b6001600160e01b0319909216602092830291909101909101528051633e77a42160e11b90829060049081106131cf576131cf6145a7565b6001600160e01b0319909216602092830291909101909101526001600160a01b0384166329db8c3d82612e55613dae565b600154604051632efe011360e01b81526003600482015260006024820181905260448201819052916001600160a01b03169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015613274573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613298919061445b565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156132ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133119190614705565b604080516001600160e01b031960e085901b1681526004810191909152600d60448201526c506f6c6963795365727669636560981b606482015260ff9091166024820152608401602060405180830381865afa158015613375573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061339991906144b2565b9050826001600160a01b031663b428b0b06133b2613dea565b836040518363ffffffff1660e01b81526004016133d09291906144cf565b6020604051808303816000875af11580156133ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134139190614501565b50604080516003808252608082019092526000916020820160608036833701905050905063bc8d400060e01b81600081518110613452576134526145a7565b6001600160e01b0319909216602092830291909101909101528051634d4b06a960e11b9082906001908110613489576134896145a7565b6001600160e01b0319909216602092830291909101909101528051631750d17360e21b90829060029081106134c0576134c06145a7565b6001600160e01b0319909216602092830291909101909101526001600160a01b0384166329db8c3d82612e55613dea565b600154604051632efe011360e01b81526003600482015260006024820181905260448201819052916001600160a01b03169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015613565573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613589919061445b565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156135de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136029190614705565b604080516001600160e01b031960e085901b1681526004810191909152600d60448201526c42756e646c655365727669636560981b606482015260ff9091166024820152608401602060405180830381865afa158015613666573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061368a91906144b2565b9050836001600160a01b031663b428b0b06136a3613e26565b836040518363ffffffff1660e01b81526004016136c19291906144cf565b6020604051808303816000875af11580156136e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137049190614501565b50604080516002808252606082018352600092602083019080368337019050509050636071a68e60e01b81600081518110613741576137416145a7565b6001600160e01b03199092166020928302919091019091015280516307f8b57360e31b9082906001908110613778576137786145a7565b6001600160e01b0319909216602092830291909101909101526001600160a01b0385166329db8c3d826137a9613e26565b6040518363ffffffff1660e01b81526004016137c69291906148c3565b600060405180830381600087803b1580156137e057600080fd5b505af11580156137f4573d6000803e3d6000fd5b5060009250600591506138049050565b60405190808252806020026020018201604052801561382d578160200160208202803683370190505b509050630cc7e61460e01b8160008151811061384b5761384b6145a7565b6001600160e01b0319909216602092830291909101909101528051631351fccf60e31b9082906001908110613882576138826145a7565b6001600160e01b03199092166020928302919091019091015280516346f0e8a760e11b90829060029081106138b9576138b96145a7565b6001600160e01b031990921660209283029190910190910152805163b5346af560e01b90829060039081106138f0576138f06145a7565b6001600160e01b03199092166020928302919091019091015280516306fa456560e01b9082906004908110613927576139276145a7565b6001600160e01b0319909216602092830291909101909101526001600160a01b0386166329db8c3d82613958613e26565b6040518363ffffffff1660e01b8152600401611670929190614916565b600154604051632efe011360e01b81526003600482015260006024820181905260448201819052916001600160a01b03169063a3bcd81d9073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156139e9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a0d919061445b565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015613a62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a869190614705565b604080516001600160e01b031960e085901b1681526004810191909152600f60448201526e496e7374616e63655365727669636560881b606482015260ff9091166024820152608401602060405180830381865afa158015613aec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b1091906144b2565b9050826001600160a01b031663b428b0b0613b29613e62565b836040518363ffffffff1660e01b8152600401613b479291906144cf565b6020604051808303816000875af1158015613b66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b8a9190614501565b506040805160018082528183019092526000916020808301908036833701905050905063f7bc431c60e01b81600081518110613bc857613bc86145a7565b6001600160e01b0319909216602092830291909101909101526001600160a01b0384166329db8c3d82612e55613e62565b604051636939560f60e11b81526001600160a01b0382166004820181905260009163d272ac1e90602401602060405180830381865afa158015613c40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c649190614549565b92915050565b613cab6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b613cb58287613e9e565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101613d258382614991565b506126006303fb044760e21b612794565b6040516368aebf7b60e01b8152610834600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b9060240161268d565b6040516368aebf7b60e01b8152610898600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b9060240161268d565b6040516368aebf7b60e01b81526108fc600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b9060240161268d565b6040516368aebf7b60e01b8152610960600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b9060240161268d565b6040516368aebf7b60e01b81526109c4600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b9060240161268d565b6040516368aebf7b60e01b81526107d0600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b9060240161268d565b6001600160a01b038216613ef45760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401610995565b600280546001600160a01b0319166001600160a01b038416179055613f1881613f1c565b5050565b6001546001600160a01b031615613f555760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610995565b6001600160a01b038116613f7c5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003613fb25760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610995565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632eaf856d60e11b60048201526301ffc9a790602401602060405180830381865afa92505050801561402c575060408051601f3d908101601f1916820190925261402991810190614501565b60015b6140545760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610995565b80613f185760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610995565b50565b60006020828403121561409257600080fd5b81356001600160e01b0319811681146140aa57600080fd5b9392505050565b60005b838110156140cc5781810151838201526020016140b4565b50506000910152565b600081518084526140ed8160208601602086016140b1565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff6040850151166080830152606084015161414560a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261418b6101208401826140d5565b9050828103602084015261419f81856140d5565b95945050505050565b6001600160a01b038116811461407d57600080fd5b6001600160401b038116811461407d57600080fd5b6000806000606084860312156141e757600080fd5b83356141f2816141a8565b92506020840135614202816141bd565b91506040840135614212816141a8565b809150509250925092565b6020815260006140aa60208301846140d5565b6000806000806080858703121561424657600080fd5b8435614251816141a8565b93506020850135614261816141a8565b92506040850135614271816141a8565b91506060850135614281816141a8565b939692955090935050565b62ffffff8116811461407d57600080fd5b6000602082840312156142af57600080fd5b81356140aa8161428c565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156142f2576142f26142ba565b60405290565b604051601f8201601f191681016001600160401b0381118282101715614320576143206142ba565b604052919050565b60006001600160401b03821115614341576143416142ba565b50601f01601f191660200190565b60008060006060848603121561436457600080fd5b833561436f816141a8565b9250602084013561437f816141a8565b915060408401356001600160401b0381111561439a57600080fd5b8401601f810186136143ab57600080fd5b80356143be6143b982614328565b6142f8565b8181528760208385010111156143d357600080fd5b816020840160208301376000602083830101528093505050509250925092565b60006020828403121561440557600080fd5b5035919050565b6001600160601b038116811461407d57600080fd5b60006020828403121561443357600080fd5b81356140aa8161440c565b60006020828403121561445057600080fd5b81356140aa816141a8565b60006020828403121561446d57600080fd5b81516140aa8161428c565b600181811c9082168061448c57607f821691505b6020821081036144ac57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156144c457600080fd5b81516140aa816141a8565b6001600160401b039290921682526001600160a01b0316602082015260400190565b805180151581146124c957600080fd5b60006020828403121561451357600080fd5b6140aa826144f1565b6001600160a01b039290921682526001600160601b0316602082015260400190565b80516124c98161440c565b60006020828403121561455b57600080fd5b81516140aa8161440c565b80516124c9816141a8565b60006020828403121561458357600080fd5b5051919050565b60006020828403121561459c57600080fd5b81516140aa816141bd565b634e487b7160e01b600052603260045260246000fd5b60ff8116811461407d57600080fd5b80516124c9816145bd565b600082601f8301126145e857600080fd5b81516145f66143b982614328565b81815284602083860101111561460b57600080fd5b61461c8260208301602087016140b1565b949350505050565b600060e0828403121561463657600080fd5b61463e6142d0565b90506146498261453e565b81526146576020830161453e565b6020820152614668604083016145cc565b6040820152614679606083016144f1565b606082015261468a60808301614566565b608082015261469b60a08301614566565b60a082015260c08201516001600160401b038111156146b957600080fd5b6146c5848285016145d7565b60c08301525092915050565b6000602082840312156146e357600080fd5b81516001600160401b038111156146f957600080fd5b61461c84828501614624565b60006020828403121561471757600080fd5b81516140aa816145bd565b6000806040838503121561473557600080fd5b82516001600160401b038082111561474c57600080fd5b61475886838701614624565b9350602085015191508082111561476e57600080fd5b5061477b858286016145d7565b9150509250929050565b60006020828403121561479757600080fd5b815164ffffffffff811681146140aa57600080fd5b600080604083850312156147bf57600080fd5b82516147ca816141a8565b60208401519092506147db816141a8565b809150509250929050565b6040815260006147f960408301856140d5565b905060ff831660208301529392505050565b6001600160a01b038216815260406020820181905260089082015267496e7374616e636560c01b60608201526000608082016140aa565b6001600160a01b0382168152604060208201819052600d908201526c213ab7323632a6b0b730b3b2b960991b60608201526000608082016140aa565b600081518084526020808501945080840160005b838110156148b85781516001600160e01b03191687529582019590820190600101614892565b509495945050505050565b6060815260006148eb606083016008815267496e7374616e636560c01b602082015260400190565b82810360208401526148fd818661487e565b9150506001600160401b03831660408301529392505050565b6060815260006148eb60608301600d81526c213ab7323632a6b0b730b3b2b960991b602082015260400190565b601f82111561265157600081815260208120601f850160051c8101602086101561496a5750805b601f850160051c820191505b8181101561498957828155600101614976565b505050505050565b81516001600160401b038111156149aa576149aa6142ba565b6149be816149b88454614478565b84614943565b602080601f8311600181146149f357600084156149db5750858301515b600019600386901b1c1916600185901b178555614989565b600085815260208120601f198616915b82811015614a2257888601518255948401946001909101908401614a03565b5085821015614a405787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fef0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220b43e936e000ba023d7e024518a1812045ee97f9307f3ccbc9c0e8fd5a8eb7f4164736f6c6343000814003360a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea264697066735822122061d21ea0f293a274302e47ad0e30c5fb666a07dc4f8e1cfa79d3064668655aa064736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103",
|
339
|
+
"deployedBytecode": "0x60806040523480156200001157600080fd5b5060043610620000ab5760003560e01c8063aef485a0116200006e578063aef485a0146200012e578063c987336c1462000154578063cc9fc59a146200016b578063e97fac05146200017d578063f6876768146200019457600080fd5b8063138461e014620000b05780635ab1bd5314620000bc578063644c45e014620000e6578063893d20e81462000112578063933a9ce8146200011c575b600080fd5b620000ba620001ab565b005b6000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b600054600160a01b90046001600160601b03166040516001600160601b039091168152602001620000dd565b620000c9620003da565b6002546001600160a01b0316620000c9565b620001456200013f3660046200094b565b620004fd565b604051620000dd9190620009fd565b620000c96200016536600462000a19565b62000559565b6003546001600160a01b0316620000c9565b620000c96200018e36600462000a19565b62000726565b62000145620001a53660046200094b565b62000858565b6000546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156200020e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000234919062000a6f565b156200027c576000546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6000546001600160a01b0316620002a65760405163cf29926160e01b815260040160405180910390fd5b60005460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015620002f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000316919062000a6f565b62000340576040516372657a5160e01b81526001600160a01b038216600482015260240162000273565b600054604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156200038b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b1919062000a93565b600060146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156200043e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000464919062000a6f565b15620004ed57600054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015620004c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004e8919062000abe565b905090565b506001546001600160a01b031690565b606063a745e3df60e01b8484846040516024016200051e9392919062000ade565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290509392505050565b600062000565620003da565b6001600160a01b0316336001600160a01b0316146200059a5760405163700dd81160e01b815233600482015260240162000273565b600254600160a01b900460ff16620005c557604051631e35411160e31b815260040160405180910390fd5b6000620005d1620003da565b90506000620005e86002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000628573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200064e919062000abe565b6002549091506001600160a01b031660006200066c878588620004fd565b604051639623609d60e01b81529091506001600160a01b03841690639623609d90620006a19085908b90869060040162000ade565b600060405180830381600087803b158015620006bc57600080fd5b505af1158015620006d1573d6000803e3d6000fd5b50506002546040516001600160a01b038b8116825290911697508792507f5f1d3094af018381967fbedd54b80ffb09c5a9799db985f5e17e322672686306915060200160405180910390a25050505092915050565b600062000732620003da565b6001600160a01b0316336001600160a01b031614620007675760405163700dd81160e01b815233600482015260240162000273565b600254600160a01b900460ff161562000793576040516375842f8760e01b815260040160405180910390fd5b60006200079f620003da565b9050306000620007b186848762000858565b9050858282604051620007c49062000879565b620007d29392919062000ade565b604051809103906000f080158015620007ef573d6000803e3d6000fd5b50600280546001600160a81b0319166001600160a01b0392831617600160a01b179081905560405188831681529116945084907fc5c7b8d20d7cac78e56fc596f8d26c700e5077f096017736e3526ab8af4850359060200160405180910390a250505092915050565b606063cf7a1d7760e01b8484846040516024016200051e9392919062000ade565b610f2f8062000b1683390190565b6001600160a01b03811681146200089d57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620008c857600080fd5b813567ffffffffffffffff80821115620008e657620008e6620008a0565b604051601f8301601f19908116603f01168101908282118183101715620009115762000911620008a0565b816040528381528660208588010111156200092b57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156200096157600080fd5b83356200096e8162000887565b92506020840135620009808162000887565b9150604084013567ffffffffffffffff8111156200099d57600080fd5b620009ab86828701620008b6565b9150509250925092565b6000815180845260005b81811015620009dd57602081850181015186830182015201620009bf565b506000602082860101526020601f19601f83011685010191505092915050565b60208152600062000a126020830184620009b5565b9392505050565b6000806040838503121562000a2d57600080fd5b823562000a3a8162000887565b9150602083013567ffffffffffffffff81111562000a5757600080fd5b62000a6585828601620008b6565b9150509250929050565b60006020828403121562000a8257600080fd5b8151801515811462000a1257600080fd5b60006020828403121562000aa657600080fd5b81516001600160601b038116811462000a1257600080fd5b60006020828403121562000ad157600080fd5b815162000a128162000887565b6001600160a01b0384811682528316602082015260606040820181905260009062000b0c90830184620009b5565b9594505050505056fe60a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea264697066735822122061d21ea0f293a274302e47ad0e30c5fb666a07dc4f8e1cfa79d3064668655aa064736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103a2646970667358221220c96eaf7efc20fb9518647839e883b108066c84e42d25df61d6bebb4fed8d8b4864736f6c63430008140033",
|
340
|
+
"linkReferences": {
|
341
|
+
"contracts/types/Blocknumber.sol": {
|
342
|
+
"BlocknumberLib": [
|
343
|
+
{
|
344
|
+
"length": 20,
|
345
|
+
"start": 13192
|
346
|
+
}
|
347
|
+
]
|
348
|
+
},
|
349
|
+
"contracts/types/NftId.sol": {
|
350
|
+
"NftIdLib": [
|
351
|
+
{
|
352
|
+
"length": 20,
|
353
|
+
"start": 1006
|
354
|
+
},
|
355
|
+
{
|
356
|
+
"length": 20,
|
357
|
+
"start": 2129
|
358
|
+
},
|
359
|
+
{
|
360
|
+
"length": 20,
|
361
|
+
"start": 2689
|
362
|
+
},
|
363
|
+
{
|
364
|
+
"length": 20,
|
365
|
+
"start": 11051
|
366
|
+
},
|
367
|
+
{
|
368
|
+
"length": 20,
|
369
|
+
"start": 13336
|
370
|
+
}
|
371
|
+
]
|
372
|
+
},
|
373
|
+
"contracts/types/RoleId.sol": {
|
374
|
+
"RoleIdLib": [
|
375
|
+
{
|
376
|
+
"length": 20,
|
377
|
+
"start": 18593
|
378
|
+
},
|
379
|
+
{
|
380
|
+
"length": 20,
|
381
|
+
"start": 24450
|
382
|
+
},
|
383
|
+
{
|
384
|
+
"length": 20,
|
385
|
+
"start": 24510
|
386
|
+
},
|
387
|
+
{
|
388
|
+
"length": 20,
|
389
|
+
"start": 24570
|
390
|
+
},
|
391
|
+
{
|
392
|
+
"length": 20,
|
393
|
+
"start": 24630
|
394
|
+
},
|
395
|
+
{
|
396
|
+
"length": 20,
|
397
|
+
"start": 24690
|
398
|
+
},
|
399
|
+
{
|
400
|
+
"length": 20,
|
401
|
+
"start": 24750
|
402
|
+
}
|
403
|
+
]
|
404
|
+
},
|
405
|
+
"contracts/types/Timestamp.sol": {
|
406
|
+
"TimestampLib": [
|
407
|
+
{
|
408
|
+
"length": 20,
|
409
|
+
"start": 17696
|
410
|
+
}
|
411
|
+
]
|
412
|
+
},
|
413
|
+
"contracts/types/Version.sol": {
|
414
|
+
"VersionLib": [
|
415
|
+
{
|
416
|
+
"length": 20,
|
417
|
+
"start": 261
|
418
|
+
},
|
419
|
+
{
|
420
|
+
"length": 20,
|
421
|
+
"start": 385
|
422
|
+
},
|
423
|
+
{
|
424
|
+
"length": 20,
|
425
|
+
"start": 10296
|
426
|
+
},
|
427
|
+
{
|
428
|
+
"length": 20,
|
429
|
+
"start": 13576
|
430
|
+
},
|
431
|
+
{
|
432
|
+
"length": 20,
|
433
|
+
"start": 14593
|
434
|
+
},
|
435
|
+
{
|
436
|
+
"length": 20,
|
437
|
+
"start": 15148
|
438
|
+
},
|
439
|
+
{
|
440
|
+
"length": 20,
|
441
|
+
"start": 15269
|
442
|
+
},
|
443
|
+
{
|
444
|
+
"length": 20,
|
445
|
+
"start": 19189
|
446
|
+
},
|
447
|
+
{
|
448
|
+
"length": 20,
|
449
|
+
"start": 19310
|
450
|
+
},
|
451
|
+
{
|
452
|
+
"length": 20,
|
453
|
+
"start": 19977
|
454
|
+
},
|
455
|
+
{
|
456
|
+
"length": 20,
|
457
|
+
"start": 20098
|
458
|
+
},
|
459
|
+
{
|
460
|
+
"length": 20,
|
461
|
+
"start": 20748
|
462
|
+
},
|
463
|
+
{
|
464
|
+
"length": 20,
|
465
|
+
"start": 20869
|
466
|
+
},
|
467
|
+
{
|
468
|
+
"length": 20,
|
469
|
+
"start": 21612
|
470
|
+
},
|
471
|
+
{
|
472
|
+
"length": 20,
|
473
|
+
"start": 21733
|
474
|
+
},
|
475
|
+
{
|
476
|
+
"length": 20,
|
477
|
+
"start": 22365
|
478
|
+
},
|
479
|
+
{
|
480
|
+
"length": 20,
|
481
|
+
"start": 22486
|
482
|
+
},
|
483
|
+
{
|
484
|
+
"length": 20,
|
485
|
+
"start": 23521
|
486
|
+
},
|
487
|
+
{
|
488
|
+
"length": 20,
|
489
|
+
"start": 23642
|
490
|
+
}
|
491
|
+
]
|
492
|
+
}
|
493
|
+
},
|
494
|
+
"deployedLinkReferences": {
|
495
|
+
"contracts/types/NftId.sol": {
|
496
|
+
"NftIdLib": [
|
497
|
+
{
|
498
|
+
"length": 20,
|
499
|
+
"start": 467
|
500
|
+
},
|
501
|
+
{
|
502
|
+
"length": 20,
|
503
|
+
"start": 1027
|
504
|
+
}
|
505
|
+
]
|
506
|
+
}
|
507
|
+
}
|
508
|
+
}
|