@etherisc/gif-next 0.0.2-cc253b3 → 0.0.2-cd89a0b-062
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +193 -6
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
- package/artifacts/contracts/components/{IProduct.sol/IProductComponent.json → BaseComponent.sol/BaseComponent.json} +88 -67
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +445 -0
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
- package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → IBaseComponent.sol/IBaseComponent.json} +69 -71
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +343 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +474 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +373 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +445 -56
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +324 -53
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +2 -2
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +2 -2
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
- 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 +1 -1
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1575 -295
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol → IInstanceLinked.sol}/IInstanceLinked.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +1894 -374
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +393 -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 +560 -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/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/instance/{component/ComponentModule.sol/ComponentModule.json → base/IService.sol/IService.json} +171 -154
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +456 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +710 -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/base/ModuleBase.sol/ModuleBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.json +10 -0
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +380 -0
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{access → module/access}/Access.sol/AccessModule.json +85 -152
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccess.json +1 -1
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccessModule.json +96 -99
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +297 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.json +10 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +297 -0
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +117 -0
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponent.json +1 -1
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{product/IProductService.sol/IProductService.json → module/component/IComponent.sol/IComponentModule.json} +56 -53
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +10 -0
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.json +10 -0
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.json +10 -0
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicyModule.json +159 -106
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module/policy}/PolicyModule.sol/PolicyModule.json +159 -106
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPool.json +1 -1
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPoolModule.json +74 -59
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool → module/pool}/PoolModule.sol/PoolModule.json +64 -62
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.json +10 -0
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +113 -0
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +131 -0
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +10 -0
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +638 -0
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +76 -0
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +638 -0
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +690 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +526 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +389 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +369 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +484 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +674 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +649 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +964 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +194 -2
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +5 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +351 -72
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +668 -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 +567 -79
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +885 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +460 -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/IOwnable.sol/IOwnable.dbg.json +4 -0
- package/artifacts/contracts/{registry/IRegistry.sol → shared/IOwnable.sol}/IOwnable.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +124 -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 +132 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +344 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/{registry/Registry.sol → shared/Registerable.sol}/Registerable.json +71 -77
- 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/TestDistribution.sol/TestDistribution.dbg.json +4 -0
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +445 -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/TestPool.sol/TestPool.dbg.json +4 -0
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +602 -0
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +4 -0
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +632 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +191 -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 +472 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +338 -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 +270 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.json +338 -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 +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
- 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 +111 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +91 -6
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -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/ReferralId.sol/ReferralIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.json +99 -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 +30 -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 +236 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.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 +30 -0
- package/contracts/components/BaseComponent.sol +79 -0
- package/contracts/components/Distribution.sol +155 -0
- package/contracts/components/IBaseComponent.sol +19 -0
- package/contracts/components/IDistributionComponent.sol +47 -0
- package/contracts/components/IPoolComponent.sol +65 -0
- package/contracts/components/IProductComponent.sol +39 -0
- package/contracts/components/Pool.sol +235 -18
- package/contracts/components/Product.sol +268 -35
- package/contracts/experiment/errors/Require.sol +10 -5
- package/contracts/experiment/errors/Revert.sol +13 -8
- package/contracts/experiment/inheritance/A.sol +8 -11
- package/contracts/experiment/inheritance/B.sol +10 -5
- package/contracts/experiment/inheritance/C.sol +11 -5
- package/contracts/experiment/inheritance/IA.sol +2 -7
- package/contracts/experiment/inheritance/IB.sol +3 -2
- package/contracts/experiment/inheritance/IC.sol +4 -3
- 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 +14 -9
- package/contracts/experiment/types/TypeB.sol +14 -9
- package/contracts/instance/IInstance.sol +42 -8
- package/contracts/instance/IInstanceLinked.sol +8 -0
- package/contracts/instance/Instance.sol +62 -41
- package/contracts/instance/base/ComponentServiceBase.sol +49 -0
- package/contracts/instance/base/IInstanceBase.sol +23 -0
- package/contracts/instance/base/IKeyValueStore.sol +50 -0
- package/contracts/instance/base/ILifecycle.sol +30 -0
- package/contracts/instance/base/IService.sol +15 -0
- package/contracts/instance/base/InstanceBase.sol +89 -0
- package/contracts/instance/base/KeyValueStore.sol +161 -0
- package/contracts/instance/base/Lifecycle.sol +100 -0
- package/contracts/instance/base/ModuleBase.sol +57 -0
- package/contracts/instance/base/ServiceBase.sol +43 -0
- package/contracts/instance/module/access/Access.sol +149 -0
- package/contracts/instance/module/access/IAccess.sol +53 -0
- package/contracts/instance/module/bundle/BundleModule.sol +134 -0
- package/contracts/instance/module/bundle/IBundle.sol +53 -0
- package/contracts/instance/module/component/ComponentModule.sol +71 -0
- package/contracts/instance/module/component/IComponent.sol +28 -0
- package/contracts/instance/module/distribution/DistributionModule.sol +17 -0
- package/contracts/instance/module/distribution/IDistribution.sol +10 -0
- package/contracts/instance/module/policy/IPolicy.sol +63 -0
- package/contracts/instance/module/policy/PolicyModule.sol +91 -0
- package/contracts/instance/module/pool/IPoolModule.sol +41 -0
- package/contracts/instance/module/pool/PoolModule.sol +95 -0
- package/contracts/instance/module/risk/IRisk.sol +26 -0
- package/contracts/instance/module/risk/RiskModule.sol +62 -0
- package/contracts/instance/module/treasury/ITreasury.sol +84 -0
- package/contracts/instance/module/treasury/TokenHandler.sol +48 -0
- package/contracts/instance/module/treasury/TreasuryModule.sol +131 -0
- package/contracts/instance/service/ComponentOwnerService.sol +272 -0
- package/contracts/instance/service/DistributionService.sol +54 -0
- package/contracts/instance/service/IComponentOwnerService.sol +20 -0
- package/contracts/instance/service/IDistributionService.sol +12 -0
- package/contracts/instance/service/IPoolService.sol +37 -0
- package/contracts/instance/service/IProductService.sol +107 -0
- package/contracts/instance/service/PoolService.sol +149 -0
- package/contracts/instance/service/ProductService.sol +509 -0
- package/contracts/registry/ChainNft.sol +111 -97
- package/contracts/registry/IChainNft.sol +13 -9
- package/contracts/registry/IRegistry.sol +59 -56
- package/contracts/registry/IRegistryService.sol +29 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +429 -121
- package/contracts/registry/RegistryService.sol +375 -0
- package/contracts/registry/RegistryServiceManager.sol +52 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +21 -0
- package/contracts/shared/IOwnable.sol +6 -0
- package/contracts/shared/IRegisterable.sol +22 -0
- package/contracts/shared/IVersionable.sol +96 -0
- package/contracts/shared/NftOwnable.sol +87 -0
- package/contracts/shared/ProxyManager.sol +103 -0
- package/contracts/shared/Registerable.sol +117 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +147 -0
- package/contracts/test/TestDistribution.sol +22 -0
- package/contracts/test/TestFee.sol +25 -0
- package/contracts/test/TestPool.sol +27 -0
- package/contracts/test/TestProduct.sol +74 -0
- package/contracts/test/TestRegisterable.sol +18 -0
- package/contracts/test/TestRoleId.sol +14 -0
- package/contracts/test/TestService.sol +26 -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 +24 -10
- package/contracts/types/Fee.sol +56 -0
- package/contracts/types/Key32.sol +45 -0
- package/contracts/types/NftId.sol +55 -9
- package/contracts/types/NftIdSet.sol +60 -0
- package/contracts/types/ObjectType.sol +131 -0
- package/contracts/types/ReferralId.sol +48 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +38 -0
- package/contracts/types/StateId.sol +101 -0
- package/contracts/types/Timestamp.sol +123 -0
- package/contracts/types/UFixed.sol +209 -0
- package/contracts/types/Version.sol +104 -0
- package/package.json +19 -5
- 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/IProduct.sol/IProductComponent.dbg.json +0 -4
- 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/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -147
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- 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/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 -167
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/contracts/components/Component.sol +0 -62
- package/contracts/components/IPool.sol +0 -9
- package/contracts/components/IProduct.sol +0 -12
- package/contracts/instance/access/Access.sol +0 -218
- package/contracts/instance/access/IAccess.sol +0 -83
- package/contracts/instance/component/ComponentModule.sol +0 -248
- package/contracts/instance/component/IComponent.sol +0 -95
- package/contracts/instance/policy/IPolicy.sol +0 -66
- package/contracts/instance/policy/PolicyModule.sol +0 -107
- package/contracts/instance/pool/IPoolModule.sol +0 -41
- package/contracts/instance/pool/PoolModule.sol +0 -86
- package/contracts/instance/product/IProductService.sol +0 -46
- package/contracts/instance/product/ProductService.sol +0 -108
@@ -11,42 +11,59 @@
|
|
11
11
|
"type": "address"
|
12
12
|
},
|
13
13
|
{
|
14
|
-
"internalType": "
|
15
|
-
"name": "
|
16
|
-
"type": "
|
14
|
+
"internalType": "NftId",
|
15
|
+
"name": "registryNftId",
|
16
|
+
"type": "uint96"
|
17
17
|
},
|
18
18
|
{
|
19
19
|
"internalType": "address",
|
20
|
-
"name": "
|
20
|
+
"name": "initialOwner",
|
21
21
|
"type": "address"
|
22
22
|
}
|
23
23
|
],
|
24
24
|
"stateMutability": "nonpayable",
|
25
25
|
"type": "constructor"
|
26
26
|
},
|
27
|
+
{
|
28
|
+
"inputs": [],
|
29
|
+
"name": "InvalidInitialization",
|
30
|
+
"type": "error"
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"inputs": [],
|
34
|
+
"name": "NotInitializing",
|
35
|
+
"type": "error"
|
36
|
+
},
|
27
37
|
{
|
28
38
|
"anonymous": false,
|
29
39
|
"inputs": [
|
30
40
|
{
|
31
41
|
"indexed": false,
|
32
|
-
"internalType": "
|
33
|
-
"name": "
|
34
|
-
"type": "
|
35
|
-
}
|
42
|
+
"internalType": "uint64",
|
43
|
+
"name": "version",
|
44
|
+
"type": "uint64"
|
45
|
+
}
|
46
|
+
],
|
47
|
+
"name": "Initialized",
|
48
|
+
"type": "event"
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"anonymous": false,
|
52
|
+
"inputs": [
|
36
53
|
{
|
37
54
|
"indexed": false,
|
38
|
-
"internalType": "
|
39
|
-
"name": "
|
40
|
-
"type": "
|
55
|
+
"internalType": "RoleId",
|
56
|
+
"name": "role",
|
57
|
+
"type": "bytes8"
|
41
58
|
},
|
42
59
|
{
|
43
60
|
"indexed": false,
|
44
|
-
"internalType": "
|
45
|
-
"name": "
|
46
|
-
"type": "
|
61
|
+
"internalType": "string",
|
62
|
+
"name": "roleName",
|
63
|
+
"type": "string"
|
47
64
|
}
|
48
65
|
],
|
49
|
-
"name": "
|
66
|
+
"name": "LogAccessRoleCreated",
|
50
67
|
"type": "event"
|
51
68
|
},
|
52
69
|
{
|
@@ -54,59 +71,77 @@
|
|
54
71
|
"inputs": [
|
55
72
|
{
|
56
73
|
"indexed": false,
|
57
|
-
"internalType": "
|
58
|
-
"name": "
|
59
|
-
"type": "
|
74
|
+
"internalType": "RoleId",
|
75
|
+
"name": "role",
|
76
|
+
"type": "bytes8"
|
60
77
|
},
|
61
78
|
{
|
62
79
|
"indexed": false,
|
63
80
|
"internalType": "address",
|
64
|
-
"name": "
|
81
|
+
"name": "member",
|
65
82
|
"type": "address"
|
66
83
|
},
|
67
84
|
{
|
68
85
|
"indexed": false,
|
69
|
-
"internalType": "
|
70
|
-
"name": "
|
71
|
-
"type": "
|
86
|
+
"internalType": "bool",
|
87
|
+
"name": "isMember",
|
88
|
+
"type": "bool"
|
72
89
|
}
|
73
90
|
],
|
74
|
-
"name": "
|
91
|
+
"name": "LogAccessRoleGranted",
|
75
92
|
"type": "event"
|
76
93
|
},
|
77
94
|
{
|
78
|
-
"
|
79
|
-
"
|
80
|
-
"outputs": [
|
95
|
+
"anonymous": false,
|
96
|
+
"inputs": [
|
81
97
|
{
|
82
|
-
"
|
83
|
-
"
|
84
|
-
"
|
98
|
+
"indexed": false,
|
99
|
+
"internalType": "RoleId",
|
100
|
+
"name": "role",
|
101
|
+
"type": "bytes8"
|
102
|
+
},
|
103
|
+
{
|
104
|
+
"indexed": false,
|
105
|
+
"internalType": "bool",
|
106
|
+
"name": "active",
|
107
|
+
"type": "bool"
|
85
108
|
}
|
86
109
|
],
|
87
|
-
"
|
88
|
-
"type": "
|
110
|
+
"name": "LogAccessRoleStateSet",
|
111
|
+
"type": "event"
|
89
112
|
},
|
90
113
|
{
|
91
|
-
"
|
92
|
-
"
|
93
|
-
"outputs": [
|
114
|
+
"anonymous": false,
|
115
|
+
"inputs": [
|
94
116
|
{
|
95
|
-
"
|
96
|
-
"
|
97
|
-
"
|
117
|
+
"indexed": false,
|
118
|
+
"internalType": "Version",
|
119
|
+
"name": "version",
|
120
|
+
"type": "uint24"
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"indexed": false,
|
124
|
+
"internalType": "address",
|
125
|
+
"name": "implementation",
|
126
|
+
"type": "address"
|
127
|
+
},
|
128
|
+
{
|
129
|
+
"indexed": false,
|
130
|
+
"internalType": "address",
|
131
|
+
"name": "activatedBy",
|
132
|
+
"type": "address"
|
98
133
|
}
|
99
134
|
],
|
100
|
-
"
|
101
|
-
"type": "
|
135
|
+
"name": "LogVersionableInitialized",
|
136
|
+
"type": "event"
|
102
137
|
},
|
103
138
|
{
|
104
139
|
"inputs": [],
|
105
|
-
"name": "
|
140
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
106
141
|
"outputs": [
|
107
142
|
{
|
108
143
|
"internalType": "bytes32",
|
109
|
-
"name": "
|
144
|
+
"name": "",
|
110
145
|
"type": "bytes32"
|
111
146
|
}
|
112
147
|
],
|
@@ -114,121 +149,163 @@
|
|
114
149
|
"type": "function"
|
115
150
|
},
|
116
151
|
{
|
117
|
-
"inputs": [
|
118
|
-
"name": "POOL_OWNER",
|
119
|
-
"outputs": [
|
152
|
+
"inputs": [
|
120
153
|
{
|
121
|
-
"internalType": "
|
154
|
+
"internalType": "NftId",
|
155
|
+
"name": "bundleNftId",
|
156
|
+
"type": "uint96"
|
157
|
+
},
|
158
|
+
{
|
159
|
+
"internalType": "NftId",
|
160
|
+
"name": "poolNftId",
|
161
|
+
"type": "uint96"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"internalType": "uint256",
|
122
165
|
"name": "",
|
123
|
-
"type": "
|
166
|
+
"type": "uint256"
|
124
167
|
}
|
125
168
|
],
|
126
|
-
"
|
169
|
+
"name": "addBundleToPool",
|
170
|
+
"outputs": [],
|
171
|
+
"stateMutability": "nonpayable",
|
127
172
|
"type": "function"
|
128
173
|
},
|
129
174
|
{
|
130
|
-
"inputs": [
|
131
|
-
"name": "POOL_OWNER_ROLE",
|
132
|
-
"outputs": [
|
175
|
+
"inputs": [
|
133
176
|
{
|
134
|
-
"internalType": "
|
135
|
-
"name": "
|
136
|
-
"type": "
|
137
|
-
}
|
138
|
-
],
|
139
|
-
"stateMutability": "view",
|
140
|
-
"type": "function"
|
141
|
-
},
|
142
|
-
{
|
143
|
-
"inputs": [],
|
144
|
-
"name": "PRODUCT_OWNER",
|
145
|
-
"outputs": [
|
177
|
+
"internalType": "uint256",
|
178
|
+
"name": "amount",
|
179
|
+
"type": "uint256"
|
180
|
+
},
|
146
181
|
{
|
147
|
-
"
|
148
|
-
|
149
|
-
|
182
|
+
"components": [
|
183
|
+
{
|
184
|
+
"internalType": "UFixed",
|
185
|
+
"name": "fractionalFee",
|
186
|
+
"type": "uint256"
|
187
|
+
},
|
188
|
+
{
|
189
|
+
"internalType": "uint256",
|
190
|
+
"name": "fixedFee",
|
191
|
+
"type": "uint256"
|
192
|
+
}
|
193
|
+
],
|
194
|
+
"internalType": "struct Fee",
|
195
|
+
"name": "fee",
|
196
|
+
"type": "tuple"
|
150
197
|
}
|
151
198
|
],
|
152
|
-
"
|
153
|
-
"type": "function"
|
154
|
-
},
|
155
|
-
{
|
156
|
-
"inputs": [],
|
157
|
-
"name": "PRODUCT_OWNER_ROLE",
|
199
|
+
"name": "calculateFeeAmount",
|
158
200
|
"outputs": [
|
159
201
|
{
|
160
|
-
"internalType": "
|
161
|
-
"name": "
|
162
|
-
"type": "
|
202
|
+
"internalType": "uint256",
|
203
|
+
"name": "feeAmount",
|
204
|
+
"type": "uint256"
|
205
|
+
},
|
206
|
+
{
|
207
|
+
"internalType": "uint256",
|
208
|
+
"name": "netAmount",
|
209
|
+
"type": "uint256"
|
163
210
|
}
|
164
211
|
],
|
165
|
-
"stateMutability": "
|
212
|
+
"stateMutability": "pure",
|
166
213
|
"type": "function"
|
167
214
|
},
|
168
215
|
{
|
169
216
|
"inputs": [
|
170
217
|
{
|
171
218
|
"internalType": "NftId",
|
172
|
-
"name": "
|
219
|
+
"name": "bundleNftId",
|
173
220
|
"type": "uint96"
|
174
|
-
}
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
},
|
181
|
-
{
|
182
|
-
"inputs": [],
|
183
|
-
"name": "components",
|
184
|
-
"outputs": [
|
221
|
+
},
|
222
|
+
{
|
223
|
+
"internalType": "NftId",
|
224
|
+
"name": "policyNftId",
|
225
|
+
"type": "uint96"
|
226
|
+
},
|
185
227
|
{
|
186
228
|
"internalType": "uint256",
|
187
|
-
"name": "
|
229
|
+
"name": "collateralAmount",
|
188
230
|
"type": "uint256"
|
189
231
|
}
|
190
232
|
],
|
191
|
-
"
|
233
|
+
"name": "collateralizePolicy",
|
234
|
+
"outputs": [],
|
235
|
+
"stateMutability": "nonpayable",
|
192
236
|
"type": "function"
|
193
237
|
},
|
194
238
|
{
|
195
239
|
"inputs": [
|
240
|
+
{
|
241
|
+
"internalType": "NftId",
|
242
|
+
"name": "bundleNftId",
|
243
|
+
"type": "uint96"
|
244
|
+
},
|
245
|
+
{
|
246
|
+
"internalType": "NftId",
|
247
|
+
"name": "poolNftId",
|
248
|
+
"type": "uint96"
|
249
|
+
},
|
196
250
|
{
|
197
251
|
"components": [
|
198
252
|
{
|
199
|
-
"internalType": "
|
200
|
-
"name": "
|
201
|
-
"type": "
|
202
|
-
},
|
203
|
-
{
|
204
|
-
"internalType": "NftId",
|
205
|
-
"name": "parentNftId",
|
206
|
-
"type": "uint96"
|
253
|
+
"internalType": "UFixed",
|
254
|
+
"name": "fractionalFee",
|
255
|
+
"type": "uint256"
|
207
256
|
},
|
208
257
|
{
|
209
258
|
"internalType": "uint256",
|
210
|
-
"name": "
|
259
|
+
"name": "fixedFee",
|
211
260
|
"type": "uint256"
|
212
|
-
},
|
213
|
-
{
|
214
|
-
"internalType": "address",
|
215
|
-
"name": "objectAddress",
|
216
|
-
"type": "address"
|
217
|
-
},
|
218
|
-
{
|
219
|
-
"internalType": "address",
|
220
|
-
"name": "initialOwner",
|
221
|
-
"type": "address"
|
222
261
|
}
|
223
262
|
],
|
224
|
-
"internalType": "struct
|
225
|
-
"name": "
|
263
|
+
"internalType": "struct Fee",
|
264
|
+
"name": "fee",
|
226
265
|
"type": "tuple"
|
227
266
|
},
|
228
267
|
{
|
229
|
-
"internalType": "
|
230
|
-
"name": "
|
231
|
-
"type": "
|
268
|
+
"internalType": "uint256",
|
269
|
+
"name": "amount",
|
270
|
+
"type": "uint256"
|
271
|
+
},
|
272
|
+
{
|
273
|
+
"internalType": "uint256",
|
274
|
+
"name": "lifetime",
|
275
|
+
"type": "uint256"
|
276
|
+
},
|
277
|
+
{
|
278
|
+
"internalType": "bytes",
|
279
|
+
"name": "filter",
|
280
|
+
"type": "bytes"
|
281
|
+
}
|
282
|
+
],
|
283
|
+
"name": "createBundleInfo",
|
284
|
+
"outputs": [],
|
285
|
+
"stateMutability": "nonpayable",
|
286
|
+
"type": "function"
|
287
|
+
},
|
288
|
+
{
|
289
|
+
"inputs": [
|
290
|
+
{
|
291
|
+
"internalType": "NftId",
|
292
|
+
"name": "policyNftId",
|
293
|
+
"type": "uint96"
|
294
|
+
},
|
295
|
+
{
|
296
|
+
"internalType": "NftId",
|
297
|
+
"name": "productNftId",
|
298
|
+
"type": "uint96"
|
299
|
+
},
|
300
|
+
{
|
301
|
+
"internalType": "ReferralId",
|
302
|
+
"name": "referralId",
|
303
|
+
"type": "bytes8"
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"internalType": "RiskId",
|
307
|
+
"name": "riskId",
|
308
|
+
"type": "bytes8"
|
232
309
|
},
|
233
310
|
{
|
234
311
|
"internalType": "uint256",
|
@@ -251,37 +328,31 @@
|
|
251
328
|
"type": "uint96"
|
252
329
|
}
|
253
330
|
],
|
254
|
-
"name": "
|
255
|
-
"outputs": [
|
331
|
+
"name": "createPolicyInfo",
|
332
|
+
"outputs": [],
|
333
|
+
"stateMutability": "nonpayable",
|
334
|
+
"type": "function"
|
335
|
+
},
|
336
|
+
{
|
337
|
+
"inputs": [
|
338
|
+
{
|
339
|
+
"internalType": "RiskId",
|
340
|
+
"name": "riskId",
|
341
|
+
"type": "bytes8"
|
342
|
+
},
|
256
343
|
{
|
257
344
|
"internalType": "NftId",
|
258
|
-
"name": "
|
345
|
+
"name": "productNftId",
|
259
346
|
"type": "uint96"
|
347
|
+
},
|
348
|
+
{
|
349
|
+
"internalType": "bytes",
|
350
|
+
"name": "data",
|
351
|
+
"type": "bytes"
|
260
352
|
}
|
261
353
|
],
|
262
|
-
"
|
263
|
-
"
|
264
|
-
},
|
265
|
-
{
|
266
|
-
"inputs": [
|
267
|
-
{
|
268
|
-
"internalType": "NftId",
|
269
|
-
"name": "nftId",
|
270
|
-
"type": "uint96"
|
271
|
-
},
|
272
|
-
{
|
273
|
-
"internalType": "address",
|
274
|
-
"name": "wallet",
|
275
|
-
"type": "address"
|
276
|
-
},
|
277
|
-
{
|
278
|
-
"internalType": "address",
|
279
|
-
"name": "token",
|
280
|
-
"type": "address"
|
281
|
-
}
|
282
|
-
],
|
283
|
-
"name": "createPoolInfo",
|
284
|
-
"outputs": [],
|
354
|
+
"name": "createRisk",
|
355
|
+
"outputs": [],
|
285
356
|
"stateMutability": "nonpayable",
|
286
357
|
"type": "function"
|
287
358
|
},
|
@@ -296,9 +367,9 @@
|
|
296
367
|
"name": "createRole",
|
297
368
|
"outputs": [
|
298
369
|
{
|
299
|
-
"internalType": "
|
370
|
+
"internalType": "RoleId",
|
300
371
|
"name": "role",
|
301
|
-
"type": "
|
372
|
+
"type": "bytes8"
|
302
373
|
}
|
303
374
|
],
|
304
375
|
"stateMutability": "nonpayable",
|
@@ -307,43 +378,90 @@
|
|
307
378
|
{
|
308
379
|
"inputs": [
|
309
380
|
{
|
310
|
-
"internalType": "
|
311
|
-
"name": "
|
312
|
-
"type": "
|
381
|
+
"internalType": "NftId",
|
382
|
+
"name": "poolNftId",
|
383
|
+
"type": "uint96"
|
313
384
|
}
|
314
385
|
],
|
315
|
-
"name": "
|
316
|
-
"outputs": [
|
317
|
-
"stateMutability": "nonpayable",
|
318
|
-
"type": "function"
|
319
|
-
},
|
320
|
-
{
|
321
|
-
"inputs": [
|
386
|
+
"name": "getBundleCount",
|
387
|
+
"outputs": [
|
322
388
|
{
|
323
|
-
"internalType": "
|
324
|
-
"name": "
|
325
|
-
"type": "
|
389
|
+
"internalType": "uint256",
|
390
|
+
"name": "bundleCount",
|
391
|
+
"type": "uint256"
|
326
392
|
}
|
327
393
|
],
|
328
|
-
"
|
329
|
-
"outputs": [],
|
330
|
-
"stateMutability": "nonpayable",
|
394
|
+
"stateMutability": "view",
|
331
395
|
"type": "function"
|
332
396
|
},
|
333
397
|
{
|
334
398
|
"inputs": [
|
335
399
|
{
|
336
400
|
"internalType": "NftId",
|
337
|
-
"name": "
|
401
|
+
"name": "bundleNftId",
|
338
402
|
"type": "uint96"
|
339
403
|
}
|
340
404
|
],
|
341
|
-
"name": "
|
405
|
+
"name": "getBundleInfo",
|
342
406
|
"outputs": [
|
343
407
|
{
|
344
|
-
"
|
345
|
-
|
346
|
-
|
408
|
+
"components": [
|
409
|
+
{
|
410
|
+
"internalType": "NftId",
|
411
|
+
"name": "poolNftId",
|
412
|
+
"type": "uint96"
|
413
|
+
},
|
414
|
+
{
|
415
|
+
"components": [
|
416
|
+
{
|
417
|
+
"internalType": "UFixed",
|
418
|
+
"name": "fractionalFee",
|
419
|
+
"type": "uint256"
|
420
|
+
},
|
421
|
+
{
|
422
|
+
"internalType": "uint256",
|
423
|
+
"name": "fixedFee",
|
424
|
+
"type": "uint256"
|
425
|
+
}
|
426
|
+
],
|
427
|
+
"internalType": "struct Fee",
|
428
|
+
"name": "fee",
|
429
|
+
"type": "tuple"
|
430
|
+
},
|
431
|
+
{
|
432
|
+
"internalType": "bytes",
|
433
|
+
"name": "filter",
|
434
|
+
"type": "bytes"
|
435
|
+
},
|
436
|
+
{
|
437
|
+
"internalType": "uint256",
|
438
|
+
"name": "capitalAmount",
|
439
|
+
"type": "uint256"
|
440
|
+
},
|
441
|
+
{
|
442
|
+
"internalType": "uint256",
|
443
|
+
"name": "lockedAmount",
|
444
|
+
"type": "uint256"
|
445
|
+
},
|
446
|
+
{
|
447
|
+
"internalType": "uint256",
|
448
|
+
"name": "balanceAmount",
|
449
|
+
"type": "uint256"
|
450
|
+
},
|
451
|
+
{
|
452
|
+
"internalType": "Timestamp",
|
453
|
+
"name": "expiredAt",
|
454
|
+
"type": "uint40"
|
455
|
+
},
|
456
|
+
{
|
457
|
+
"internalType": "Timestamp",
|
458
|
+
"name": "closedAt",
|
459
|
+
"type": "uint40"
|
460
|
+
}
|
461
|
+
],
|
462
|
+
"internalType": "struct IBundle.BundleInfo",
|
463
|
+
"name": "bundleInfo",
|
464
|
+
"type": "tuple"
|
347
465
|
}
|
348
466
|
],
|
349
467
|
"stateMutability": "view",
|
@@ -352,22 +470,40 @@
|
|
352
470
|
{
|
353
471
|
"inputs": [
|
354
472
|
{
|
355
|
-
"internalType": "
|
356
|
-
"name": "
|
357
|
-
"type": "
|
473
|
+
"internalType": "NftId",
|
474
|
+
"name": "poolNftId",
|
475
|
+
"type": "uint96"
|
476
|
+
},
|
477
|
+
{
|
478
|
+
"internalType": "uint256",
|
479
|
+
"name": "index",
|
480
|
+
"type": "uint256"
|
358
481
|
}
|
359
482
|
],
|
360
|
-
"name": "
|
483
|
+
"name": "getBundleNftId",
|
361
484
|
"outputs": [
|
362
485
|
{
|
363
486
|
"internalType": "NftId",
|
364
|
-
"name": "
|
487
|
+
"name": "bundleNftId",
|
365
488
|
"type": "uint96"
|
366
489
|
}
|
367
490
|
],
|
368
491
|
"stateMutability": "view",
|
369
492
|
"type": "function"
|
370
493
|
},
|
494
|
+
{
|
495
|
+
"inputs": [],
|
496
|
+
"name": "getComponentCount",
|
497
|
+
"outputs": [
|
498
|
+
{
|
499
|
+
"internalType": "uint256",
|
500
|
+
"name": "numberOfCompnents",
|
501
|
+
"type": "uint256"
|
502
|
+
}
|
503
|
+
],
|
504
|
+
"stateMutability": "view",
|
505
|
+
"type": "function"
|
506
|
+
},
|
371
507
|
{
|
372
508
|
"inputs": [
|
373
509
|
{
|
@@ -387,6 +523,19 @@
|
|
387
523
|
"stateMutability": "view",
|
388
524
|
"type": "function"
|
389
525
|
},
|
526
|
+
{
|
527
|
+
"inputs": [],
|
528
|
+
"name": "getComponentOwnerService",
|
529
|
+
"outputs": [
|
530
|
+
{
|
531
|
+
"internalType": "contract IComponentOwnerService",
|
532
|
+
"name": "service",
|
533
|
+
"type": "address"
|
534
|
+
}
|
535
|
+
],
|
536
|
+
"stateMutability": "view",
|
537
|
+
"type": "function"
|
538
|
+
},
|
390
539
|
{
|
391
540
|
"inputs": [
|
392
541
|
{
|
@@ -395,24 +544,12 @@
|
|
395
544
|
"type": "uint96"
|
396
545
|
}
|
397
546
|
],
|
398
|
-
"name": "
|
547
|
+
"name": "getComponentToken",
|
399
548
|
"outputs": [
|
400
549
|
{
|
401
|
-
"
|
402
|
-
|
403
|
-
|
404
|
-
"name": "nftId",
|
405
|
-
"type": "uint96"
|
406
|
-
},
|
407
|
-
{
|
408
|
-
"internalType": "enum IComponent.CState",
|
409
|
-
"name": "state",
|
410
|
-
"type": "uint8"
|
411
|
-
}
|
412
|
-
],
|
413
|
-
"internalType": "struct IComponent.ComponentInfo",
|
414
|
-
"name": "",
|
415
|
-
"type": "tuple"
|
550
|
+
"internalType": "contract IERC20Metadata",
|
551
|
+
"name": "token",
|
552
|
+
"type": "address"
|
416
553
|
}
|
417
554
|
],
|
418
555
|
"stateMutability": "view",
|
@@ -426,11 +563,11 @@
|
|
426
563
|
"type": "uint96"
|
427
564
|
}
|
428
565
|
],
|
429
|
-
"name": "
|
566
|
+
"name": "getComponentWallet",
|
430
567
|
"outputs": [
|
431
568
|
{
|
432
569
|
"internalType": "address",
|
433
|
-
"name": "
|
570
|
+
"name": "wallet",
|
434
571
|
"type": "address"
|
435
572
|
}
|
436
573
|
],
|
@@ -439,21 +576,99 @@
|
|
439
576
|
},
|
440
577
|
{
|
441
578
|
"inputs": [],
|
442
|
-
"name": "
|
579
|
+
"name": "getDistributionService",
|
443
580
|
"outputs": [
|
444
581
|
{
|
445
|
-
"internalType": "contract
|
446
|
-
"name": "",
|
582
|
+
"internalType": "contract IDistributionService",
|
583
|
+
"name": "service",
|
447
584
|
"type": "address"
|
448
585
|
}
|
449
586
|
],
|
450
587
|
"stateMutability": "view",
|
451
588
|
"type": "function"
|
452
589
|
},
|
590
|
+
{
|
591
|
+
"inputs": [
|
592
|
+
{
|
593
|
+
"internalType": "UFixed",
|
594
|
+
"name": "fractionalFee",
|
595
|
+
"type": "uint256"
|
596
|
+
},
|
597
|
+
{
|
598
|
+
"internalType": "uint256",
|
599
|
+
"name": "fixedFee",
|
600
|
+
"type": "uint256"
|
601
|
+
}
|
602
|
+
],
|
603
|
+
"name": "getFee",
|
604
|
+
"outputs": [
|
605
|
+
{
|
606
|
+
"components": [
|
607
|
+
{
|
608
|
+
"internalType": "UFixed",
|
609
|
+
"name": "fractionalFee",
|
610
|
+
"type": "uint256"
|
611
|
+
},
|
612
|
+
{
|
613
|
+
"internalType": "uint256",
|
614
|
+
"name": "fixedFee",
|
615
|
+
"type": "uint256"
|
616
|
+
}
|
617
|
+
],
|
618
|
+
"internalType": "struct Fee",
|
619
|
+
"name": "fee",
|
620
|
+
"type": "tuple"
|
621
|
+
}
|
622
|
+
],
|
623
|
+
"stateMutability": "pure",
|
624
|
+
"type": "function"
|
625
|
+
},
|
453
626
|
{
|
454
627
|
"inputs": [],
|
455
|
-
"name": "
|
628
|
+
"name": "getInitialInfo",
|
456
629
|
"outputs": [
|
630
|
+
{
|
631
|
+
"components": [
|
632
|
+
{
|
633
|
+
"internalType": "NftId",
|
634
|
+
"name": "nftId",
|
635
|
+
"type": "uint96"
|
636
|
+
},
|
637
|
+
{
|
638
|
+
"internalType": "NftId",
|
639
|
+
"name": "parentNftId",
|
640
|
+
"type": "uint96"
|
641
|
+
},
|
642
|
+
{
|
643
|
+
"internalType": "ObjectType",
|
644
|
+
"name": "objectType",
|
645
|
+
"type": "uint8"
|
646
|
+
},
|
647
|
+
{
|
648
|
+
"internalType": "bool",
|
649
|
+
"name": "isInterceptor",
|
650
|
+
"type": "bool"
|
651
|
+
},
|
652
|
+
{
|
653
|
+
"internalType": "address",
|
654
|
+
"name": "objectAddress",
|
655
|
+
"type": "address"
|
656
|
+
},
|
657
|
+
{
|
658
|
+
"internalType": "address",
|
659
|
+
"name": "initialOwner",
|
660
|
+
"type": "address"
|
661
|
+
},
|
662
|
+
{
|
663
|
+
"internalType": "bytes",
|
664
|
+
"name": "data",
|
665
|
+
"type": "bytes"
|
666
|
+
}
|
667
|
+
],
|
668
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
669
|
+
"name": "",
|
670
|
+
"type": "tuple"
|
671
|
+
},
|
457
672
|
{
|
458
673
|
"internalType": "bytes",
|
459
674
|
"name": "data",
|
@@ -465,12 +680,12 @@
|
|
465
680
|
},
|
466
681
|
{
|
467
682
|
"inputs": [],
|
468
|
-
"name": "
|
683
|
+
"name": "getInitializedVersion",
|
469
684
|
"outputs": [
|
470
685
|
{
|
471
|
-
"internalType": "
|
472
|
-
"name": "
|
473
|
-
"type": "
|
686
|
+
"internalType": "uint64",
|
687
|
+
"name": "",
|
688
|
+
"type": "uint64"
|
474
689
|
}
|
475
690
|
],
|
476
691
|
"stateMutability": "view",
|
@@ -478,12 +693,12 @@
|
|
478
693
|
},
|
479
694
|
{
|
480
695
|
"inputs": [],
|
481
|
-
"name": "
|
696
|
+
"name": "getKeyValueStore",
|
482
697
|
"outputs": [
|
483
698
|
{
|
484
|
-
"internalType": "
|
485
|
-
"name": "
|
486
|
-
"type": "
|
699
|
+
"internalType": "contract IKeyValueStore",
|
700
|
+
"name": "keyValueStore",
|
701
|
+
"type": "address"
|
487
702
|
}
|
488
703
|
],
|
489
704
|
"stateMutability": "view",
|
@@ -491,12 +706,12 @@
|
|
491
706
|
},
|
492
707
|
{
|
493
708
|
"inputs": [],
|
494
|
-
"name": "
|
709
|
+
"name": "getNftId",
|
495
710
|
"outputs": [
|
496
711
|
{
|
497
|
-
"internalType": "
|
498
|
-
"name": "
|
499
|
-
"type": "
|
712
|
+
"internalType": "NftId",
|
713
|
+
"name": "nftId",
|
714
|
+
"type": "uint96"
|
500
715
|
}
|
501
716
|
],
|
502
717
|
"stateMutability": "view",
|
@@ -504,12 +719,12 @@
|
|
504
719
|
},
|
505
720
|
{
|
506
721
|
"inputs": [],
|
507
|
-
"name": "
|
722
|
+
"name": "getOwner",
|
508
723
|
"outputs": [
|
509
724
|
{
|
510
|
-
"internalType": "
|
511
|
-
"name": "",
|
512
|
-
"type": "
|
725
|
+
"internalType": "address",
|
726
|
+
"name": "owner",
|
727
|
+
"type": "address"
|
513
728
|
}
|
514
729
|
],
|
515
730
|
"stateMutability": "view",
|
@@ -529,13 +744,28 @@
|
|
529
744
|
"components": [
|
530
745
|
{
|
531
746
|
"internalType": "NftId",
|
532
|
-
"name": "
|
747
|
+
"name": "productNftId",
|
533
748
|
"type": "uint96"
|
534
749
|
},
|
535
750
|
{
|
536
|
-
"internalType": "
|
537
|
-
"name": "
|
538
|
-
"type": "
|
751
|
+
"internalType": "NftId",
|
752
|
+
"name": "bundleNftId",
|
753
|
+
"type": "uint96"
|
754
|
+
},
|
755
|
+
{
|
756
|
+
"internalType": "ReferralId",
|
757
|
+
"name": "referralId",
|
758
|
+
"type": "bytes8"
|
759
|
+
},
|
760
|
+
{
|
761
|
+
"internalType": "address",
|
762
|
+
"name": "beneficiary",
|
763
|
+
"type": "address"
|
764
|
+
},
|
765
|
+
{
|
766
|
+
"internalType": "RiskId",
|
767
|
+
"name": "riskId",
|
768
|
+
"type": "bytes8"
|
539
769
|
},
|
540
770
|
{
|
541
771
|
"internalType": "uint256",
|
@@ -549,28 +779,38 @@
|
|
549
779
|
},
|
550
780
|
{
|
551
781
|
"internalType": "uint256",
|
552
|
-
"name": "
|
782
|
+
"name": "premiumPaidAmount",
|
553
783
|
"type": "uint256"
|
554
784
|
},
|
555
785
|
{
|
556
786
|
"internalType": "uint256",
|
557
|
-
"name": "
|
787
|
+
"name": "lifetime",
|
558
788
|
"type": "uint256"
|
559
789
|
},
|
560
790
|
{
|
561
|
-
"internalType": "
|
791
|
+
"internalType": "bytes",
|
792
|
+
"name": "applicationData",
|
793
|
+
"type": "bytes"
|
794
|
+
},
|
795
|
+
{
|
796
|
+
"internalType": "bytes",
|
797
|
+
"name": "policyData",
|
798
|
+
"type": "bytes"
|
799
|
+
},
|
800
|
+
{
|
801
|
+
"internalType": "Timestamp",
|
562
802
|
"name": "activatedAt",
|
563
|
-
"type": "
|
803
|
+
"type": "uint40"
|
564
804
|
},
|
565
805
|
{
|
566
|
-
"internalType": "
|
806
|
+
"internalType": "Timestamp",
|
567
807
|
"name": "expiredAt",
|
568
|
-
"type": "
|
808
|
+
"type": "uint40"
|
569
809
|
},
|
570
810
|
{
|
571
|
-
"internalType": "
|
811
|
+
"internalType": "Timestamp",
|
572
812
|
"name": "closedAt",
|
573
|
-
"type": "
|
813
|
+
"type": "uint40"
|
574
814
|
}
|
575
815
|
],
|
576
816
|
"internalType": "struct IPolicy.PolicyInfo",
|
@@ -594,28 +834,13 @@
|
|
594
834
|
{
|
595
835
|
"components": [
|
596
836
|
{
|
597
|
-
"internalType": "
|
598
|
-
"name": "
|
599
|
-
"type": "
|
600
|
-
},
|
601
|
-
{
|
602
|
-
"internalType": "address",
|
603
|
-
"name": "wallet",
|
604
|
-
"type": "address"
|
605
|
-
},
|
606
|
-
{
|
607
|
-
"internalType": "address",
|
608
|
-
"name": "token",
|
609
|
-
"type": "address"
|
837
|
+
"internalType": "bool",
|
838
|
+
"name": "isVerifying",
|
839
|
+
"type": "bool"
|
610
840
|
},
|
611
841
|
{
|
612
|
-
"internalType": "
|
613
|
-
"name": "
|
614
|
-
"type": "uint256"
|
615
|
-
},
|
616
|
-
{
|
617
|
-
"internalType": "uint256",
|
618
|
-
"name": "lockedCapital",
|
842
|
+
"internalType": "UFixed",
|
843
|
+
"name": "collateralizationLevel",
|
619
844
|
"type": "uint256"
|
620
845
|
}
|
621
846
|
],
|
@@ -627,19 +852,32 @@
|
|
627
852
|
"stateMutability": "view",
|
628
853
|
"type": "function"
|
629
854
|
},
|
855
|
+
{
|
856
|
+
"inputs": [],
|
857
|
+
"name": "getPoolService",
|
858
|
+
"outputs": [
|
859
|
+
{
|
860
|
+
"internalType": "contract IPoolService",
|
861
|
+
"name": "service",
|
862
|
+
"type": "address"
|
863
|
+
}
|
864
|
+
],
|
865
|
+
"stateMutability": "view",
|
866
|
+
"type": "function"
|
867
|
+
},
|
630
868
|
{
|
631
869
|
"inputs": [
|
632
870
|
{
|
633
871
|
"internalType": "NftId",
|
634
|
-
"name": "
|
872
|
+
"name": "componentNftId",
|
635
873
|
"type": "uint96"
|
636
874
|
}
|
637
875
|
],
|
638
|
-
"name": "
|
876
|
+
"name": "getProductNftId",
|
639
877
|
"outputs": [
|
640
878
|
{
|
641
879
|
"internalType": "NftId",
|
642
|
-
"name": "
|
880
|
+
"name": "productNftId",
|
643
881
|
"type": "uint96"
|
644
882
|
}
|
645
883
|
],
|
@@ -652,7 +890,7 @@
|
|
652
890
|
"outputs": [
|
653
891
|
{
|
654
892
|
"internalType": "contract IProductService",
|
655
|
-
"name": "",
|
893
|
+
"name": "service",
|
656
894
|
"type": "address"
|
657
895
|
}
|
658
896
|
],
|
@@ -672,6 +910,37 @@
|
|
672
910
|
"stateMutability": "view",
|
673
911
|
"type": "function"
|
674
912
|
},
|
913
|
+
{
|
914
|
+
"inputs": [
|
915
|
+
{
|
916
|
+
"internalType": "RiskId",
|
917
|
+
"name": "riskId",
|
918
|
+
"type": "bytes8"
|
919
|
+
}
|
920
|
+
],
|
921
|
+
"name": "getRiskInfo",
|
922
|
+
"outputs": [
|
923
|
+
{
|
924
|
+
"components": [
|
925
|
+
{
|
926
|
+
"internalType": "NftId",
|
927
|
+
"name": "productNftId",
|
928
|
+
"type": "uint96"
|
929
|
+
},
|
930
|
+
{
|
931
|
+
"internalType": "bytes",
|
932
|
+
"name": "data",
|
933
|
+
"type": "bytes"
|
934
|
+
}
|
935
|
+
],
|
936
|
+
"internalType": "struct IRisk.RiskInfo",
|
937
|
+
"name": "info",
|
938
|
+
"type": "tuple"
|
939
|
+
}
|
940
|
+
],
|
941
|
+
"stateMutability": "view",
|
942
|
+
"type": "function"
|
943
|
+
},
|
675
944
|
{
|
676
945
|
"inputs": [
|
677
946
|
{
|
@@ -683,9 +952,9 @@
|
|
683
952
|
"name": "getRole",
|
684
953
|
"outputs": [
|
685
954
|
{
|
686
|
-
"internalType": "
|
955
|
+
"internalType": "RoleId",
|
687
956
|
"name": "role",
|
688
|
-
"type": "
|
957
|
+
"type": "bytes8"
|
689
958
|
}
|
690
959
|
],
|
691
960
|
"stateMutability": "view",
|
@@ -712,12 +981,12 @@
|
|
712
981
|
"type": "string"
|
713
982
|
}
|
714
983
|
],
|
715
|
-
"name": "
|
984
|
+
"name": "getRoleId",
|
716
985
|
"outputs": [
|
717
986
|
{
|
718
|
-
"internalType": "
|
987
|
+
"internalType": "RoleId",
|
719
988
|
"name": "role",
|
720
|
-
"type": "
|
989
|
+
"type": "bytes8"
|
721
990
|
}
|
722
991
|
],
|
723
992
|
"stateMutability": "pure",
|
@@ -726,28 +995,9 @@
|
|
726
995
|
{
|
727
996
|
"inputs": [
|
728
997
|
{
|
729
|
-
"internalType": "
|
730
|
-
"name": "cType",
|
731
|
-
"type": "uint256"
|
732
|
-
}
|
733
|
-
],
|
734
|
-
"name": "getRoleForType",
|
735
|
-
"outputs": [
|
736
|
-
{
|
737
|
-
"internalType": "bytes32",
|
738
|
-
"name": "role",
|
739
|
-
"type": "bytes32"
|
740
|
-
}
|
741
|
-
],
|
742
|
-
"stateMutability": "view",
|
743
|
-
"type": "function"
|
744
|
-
},
|
745
|
-
{
|
746
|
-
"inputs": [
|
747
|
-
{
|
748
|
-
"internalType": "bytes32",
|
998
|
+
"internalType": "RoleId",
|
749
999
|
"name": "role",
|
750
|
-
"type": "
|
1000
|
+
"type": "bytes8"
|
751
1001
|
}
|
752
1002
|
],
|
753
1003
|
"name": "getRoleInfo",
|
@@ -755,9 +1005,9 @@
|
|
755
1005
|
{
|
756
1006
|
"components": [
|
757
1007
|
{
|
758
|
-
"internalType": "
|
1008
|
+
"internalType": "RoleId",
|
759
1009
|
"name": "id",
|
760
|
-
"type": "
|
1010
|
+
"type": "bytes8"
|
761
1011
|
},
|
762
1012
|
{
|
763
1013
|
"internalType": "string",
|
@@ -781,9 +1031,9 @@
|
|
781
1031
|
{
|
782
1032
|
"inputs": [
|
783
1033
|
{
|
784
|
-
"internalType": "
|
1034
|
+
"internalType": "RoleId",
|
785
1035
|
"name": "role",
|
786
|
-
"type": "
|
1036
|
+
"type": "bytes8"
|
787
1037
|
},
|
788
1038
|
{
|
789
1039
|
"internalType": "uint256",
|
@@ -805,9 +1055,9 @@
|
|
805
1055
|
{
|
806
1056
|
"inputs": [
|
807
1057
|
{
|
808
|
-
"internalType": "
|
1058
|
+
"internalType": "RoleId",
|
809
1059
|
"name": "role",
|
810
|
-
"type": "
|
1060
|
+
"type": "bytes8"
|
811
1061
|
}
|
812
1062
|
],
|
813
1063
|
"name": "getRoleMemberCount",
|
@@ -822,13 +1072,19 @@
|
|
822
1072
|
"type": "function"
|
823
1073
|
},
|
824
1074
|
{
|
825
|
-
"inputs": [
|
826
|
-
|
1075
|
+
"inputs": [
|
1076
|
+
{
|
1077
|
+
"internalType": "Key32",
|
1078
|
+
"name": "key",
|
1079
|
+
"type": "bytes32"
|
1080
|
+
}
|
1081
|
+
],
|
1082
|
+
"name": "getState",
|
827
1083
|
"outputs": [
|
828
1084
|
{
|
829
|
-
"internalType": "
|
830
|
-
"name": "
|
831
|
-
"type": "
|
1085
|
+
"internalType": "StateId",
|
1086
|
+
"name": "state",
|
1087
|
+
"type": "uint8"
|
832
1088
|
}
|
833
1089
|
],
|
834
1090
|
"stateMutability": "view",
|
@@ -837,221 +1093,1485 @@
|
|
837
1093
|
{
|
838
1094
|
"inputs": [
|
839
1095
|
{
|
840
|
-
"internalType": "
|
841
|
-
"name": "
|
842
|
-
"type": "
|
843
|
-
}
|
1096
|
+
"internalType": "NftId",
|
1097
|
+
"name": "componentNftId",
|
1098
|
+
"type": "uint96"
|
1099
|
+
}
|
1100
|
+
],
|
1101
|
+
"name": "getTokenHandler",
|
1102
|
+
"outputs": [
|
844
1103
|
{
|
845
|
-
"internalType": "
|
846
|
-
"name": "
|
1104
|
+
"internalType": "contract TokenHandler",
|
1105
|
+
"name": "tokenHandler",
|
847
1106
|
"type": "address"
|
848
1107
|
}
|
849
1108
|
],
|
850
|
-
"
|
851
|
-
"outputs": [],
|
852
|
-
"stateMutability": "nonpayable",
|
1109
|
+
"stateMutability": "view",
|
853
1110
|
"type": "function"
|
854
1111
|
},
|
855
1112
|
{
|
856
1113
|
"inputs": [
|
857
1114
|
{
|
858
|
-
"internalType": "
|
859
|
-
"name": "
|
860
|
-
"type": "
|
861
|
-
},
|
862
|
-
{
|
863
|
-
"internalType": "address",
|
864
|
-
"name": "member",
|
865
|
-
"type": "address"
|
1115
|
+
"internalType": "NftId",
|
1116
|
+
"name": "productNftId",
|
1117
|
+
"type": "uint96"
|
866
1118
|
}
|
867
1119
|
],
|
868
|
-
"name": "
|
1120
|
+
"name": "getTreasuryInfo",
|
869
1121
|
"outputs": [
|
870
1122
|
{
|
871
|
-
"
|
872
|
-
|
873
|
-
|
1123
|
+
"components": [
|
1124
|
+
{
|
1125
|
+
"internalType": "NftId",
|
1126
|
+
"name": "poolNftId",
|
1127
|
+
"type": "uint96"
|
1128
|
+
},
|
1129
|
+
{
|
1130
|
+
"internalType": "NftId",
|
1131
|
+
"name": "distributionNftId",
|
1132
|
+
"type": "uint96"
|
1133
|
+
},
|
1134
|
+
{
|
1135
|
+
"internalType": "contract IERC20Metadata",
|
1136
|
+
"name": "token",
|
1137
|
+
"type": "address"
|
1138
|
+
},
|
1139
|
+
{
|
1140
|
+
"components": [
|
1141
|
+
{
|
1142
|
+
"internalType": "UFixed",
|
1143
|
+
"name": "fractionalFee",
|
1144
|
+
"type": "uint256"
|
1145
|
+
},
|
1146
|
+
{
|
1147
|
+
"internalType": "uint256",
|
1148
|
+
"name": "fixedFee",
|
1149
|
+
"type": "uint256"
|
1150
|
+
}
|
1151
|
+
],
|
1152
|
+
"internalType": "struct Fee",
|
1153
|
+
"name": "productFee",
|
1154
|
+
"type": "tuple"
|
1155
|
+
},
|
1156
|
+
{
|
1157
|
+
"components": [
|
1158
|
+
{
|
1159
|
+
"internalType": "UFixed",
|
1160
|
+
"name": "fractionalFee",
|
1161
|
+
"type": "uint256"
|
1162
|
+
},
|
1163
|
+
{
|
1164
|
+
"internalType": "uint256",
|
1165
|
+
"name": "fixedFee",
|
1166
|
+
"type": "uint256"
|
1167
|
+
}
|
1168
|
+
],
|
1169
|
+
"internalType": "struct Fee",
|
1170
|
+
"name": "processingFee",
|
1171
|
+
"type": "tuple"
|
1172
|
+
},
|
1173
|
+
{
|
1174
|
+
"components": [
|
1175
|
+
{
|
1176
|
+
"internalType": "UFixed",
|
1177
|
+
"name": "fractionalFee",
|
1178
|
+
"type": "uint256"
|
1179
|
+
},
|
1180
|
+
{
|
1181
|
+
"internalType": "uint256",
|
1182
|
+
"name": "fixedFee",
|
1183
|
+
"type": "uint256"
|
1184
|
+
}
|
1185
|
+
],
|
1186
|
+
"internalType": "struct Fee",
|
1187
|
+
"name": "poolFee",
|
1188
|
+
"type": "tuple"
|
1189
|
+
},
|
1190
|
+
{
|
1191
|
+
"components": [
|
1192
|
+
{
|
1193
|
+
"internalType": "UFixed",
|
1194
|
+
"name": "fractionalFee",
|
1195
|
+
"type": "uint256"
|
1196
|
+
},
|
1197
|
+
{
|
1198
|
+
"internalType": "uint256",
|
1199
|
+
"name": "fixedFee",
|
1200
|
+
"type": "uint256"
|
1201
|
+
}
|
1202
|
+
],
|
1203
|
+
"internalType": "struct Fee",
|
1204
|
+
"name": "stakingFee",
|
1205
|
+
"type": "tuple"
|
1206
|
+
},
|
1207
|
+
{
|
1208
|
+
"components": [
|
1209
|
+
{
|
1210
|
+
"internalType": "UFixed",
|
1211
|
+
"name": "fractionalFee",
|
1212
|
+
"type": "uint256"
|
1213
|
+
},
|
1214
|
+
{
|
1215
|
+
"internalType": "uint256",
|
1216
|
+
"name": "fixedFee",
|
1217
|
+
"type": "uint256"
|
1218
|
+
}
|
1219
|
+
],
|
1220
|
+
"internalType": "struct Fee",
|
1221
|
+
"name": "performanceFee",
|
1222
|
+
"type": "tuple"
|
1223
|
+
},
|
1224
|
+
{
|
1225
|
+
"components": [
|
1226
|
+
{
|
1227
|
+
"internalType": "UFixed",
|
1228
|
+
"name": "fractionalFee",
|
1229
|
+
"type": "uint256"
|
1230
|
+
},
|
1231
|
+
{
|
1232
|
+
"internalType": "uint256",
|
1233
|
+
"name": "fixedFee",
|
1234
|
+
"type": "uint256"
|
1235
|
+
}
|
1236
|
+
],
|
1237
|
+
"internalType": "struct Fee",
|
1238
|
+
"name": "distributionFee",
|
1239
|
+
"type": "tuple"
|
1240
|
+
}
|
1241
|
+
],
|
1242
|
+
"internalType": "struct ITreasury.TreasuryInfo",
|
1243
|
+
"name": "info",
|
1244
|
+
"type": "tuple"
|
874
1245
|
}
|
875
1246
|
],
|
876
1247
|
"stateMutability": "view",
|
877
1248
|
"type": "function"
|
878
1249
|
},
|
879
1250
|
{
|
880
|
-
"inputs": [
|
881
|
-
|
1251
|
+
"inputs": [
|
1252
|
+
{
|
1253
|
+
"internalType": "uint256",
|
1254
|
+
"name": "a",
|
1255
|
+
"type": "uint256"
|
1256
|
+
},
|
1257
|
+
{
|
1258
|
+
"internalType": "int8",
|
1259
|
+
"name": "exp",
|
1260
|
+
"type": "int8"
|
1261
|
+
}
|
1262
|
+
],
|
1263
|
+
"name": "getUFixed",
|
882
1264
|
"outputs": [
|
883
1265
|
{
|
884
|
-
"internalType": "
|
1266
|
+
"internalType": "UFixed",
|
885
1267
|
"name": "",
|
886
|
-
"type": "
|
1268
|
+
"type": "uint256"
|
887
1269
|
}
|
888
1270
|
],
|
889
1271
|
"stateMutability": "pure",
|
890
1272
|
"type": "function"
|
891
1273
|
},
|
892
1274
|
{
|
893
|
-
"inputs": [
|
894
|
-
|
1275
|
+
"inputs": [
|
1276
|
+
{
|
1277
|
+
"internalType": "uint256",
|
1278
|
+
"name": "a",
|
1279
|
+
"type": "uint256"
|
1280
|
+
}
|
1281
|
+
],
|
1282
|
+
"name": "getUFixed",
|
895
1283
|
"outputs": [
|
896
1284
|
{
|
897
|
-
"internalType": "
|
1285
|
+
"internalType": "UFixed",
|
898
1286
|
"name": "",
|
899
|
-
"type": "
|
1287
|
+
"type": "uint256"
|
900
1288
|
}
|
901
1289
|
],
|
902
|
-
"stateMutability": "
|
1290
|
+
"stateMutability": "pure",
|
903
1291
|
"type": "function"
|
904
1292
|
},
|
905
1293
|
{
|
906
1294
|
"inputs": [],
|
907
|
-
"name": "
|
1295
|
+
"name": "getVersion",
|
908
1296
|
"outputs": [
|
909
1297
|
{
|
910
|
-
"internalType": "
|
911
|
-
"name": "
|
912
|
-
"type": "
|
1298
|
+
"internalType": "Version",
|
1299
|
+
"name": "",
|
1300
|
+
"type": "uint24"
|
913
1301
|
}
|
914
1302
|
],
|
915
|
-
"stateMutability": "
|
1303
|
+
"stateMutability": "pure",
|
916
1304
|
"type": "function"
|
917
1305
|
},
|
918
1306
|
{
|
919
1307
|
"inputs": [
|
920
1308
|
{
|
921
|
-
"internalType": "
|
922
|
-
"name": "
|
923
|
-
"type": "
|
1309
|
+
"internalType": "uint256",
|
1310
|
+
"name": "idx",
|
1311
|
+
"type": "uint256"
|
924
1312
|
}
|
925
1313
|
],
|
926
|
-
"name": "
|
1314
|
+
"name": "getVersion",
|
927
1315
|
"outputs": [
|
928
1316
|
{
|
929
|
-
"internalType": "
|
930
|
-
"name": "
|
931
|
-
"type": "
|
1317
|
+
"internalType": "Version",
|
1318
|
+
"name": "",
|
1319
|
+
"type": "uint24"
|
932
1320
|
}
|
933
1321
|
],
|
934
|
-
"stateMutability": "
|
1322
|
+
"stateMutability": "view",
|
935
1323
|
"type": "function"
|
936
1324
|
},
|
937
1325
|
{
|
938
|
-
"inputs": [
|
939
|
-
|
940
|
-
|
941
|
-
"name": "role",
|
942
|
-
"type": "bytes32"
|
943
|
-
},
|
1326
|
+
"inputs": [],
|
1327
|
+
"name": "getVersionCount",
|
1328
|
+
"outputs": [
|
944
1329
|
{
|
945
|
-
"internalType": "
|
946
|
-
"name": "
|
947
|
-
"type": "
|
1330
|
+
"internalType": "uint256",
|
1331
|
+
"name": "",
|
1332
|
+
"type": "uint256"
|
948
1333
|
}
|
949
1334
|
],
|
950
|
-
"
|
951
|
-
"outputs": [],
|
952
|
-
"stateMutability": "nonpayable",
|
1335
|
+
"stateMutability": "view",
|
953
1336
|
"type": "function"
|
954
1337
|
},
|
955
1338
|
{
|
956
1339
|
"inputs": [
|
1340
|
+
{
|
1341
|
+
"internalType": "Version",
|
1342
|
+
"name": "_version",
|
1343
|
+
"type": "uint24"
|
1344
|
+
}
|
1345
|
+
],
|
1346
|
+
"name": "getVersionInfo",
|
1347
|
+
"outputs": [
|
957
1348
|
{
|
958
1349
|
"components": [
|
959
1350
|
{
|
960
|
-
"internalType": "
|
961
|
-
"name": "
|
962
|
-
"type": "
|
1351
|
+
"internalType": "Version",
|
1352
|
+
"name": "version",
|
1353
|
+
"type": "uint24"
|
963
1354
|
},
|
964
1355
|
{
|
965
|
-
"internalType": "
|
966
|
-
"name": "
|
967
|
-
"type": "
|
1356
|
+
"internalType": "address",
|
1357
|
+
"name": "implementation",
|
1358
|
+
"type": "address"
|
1359
|
+
},
|
1360
|
+
{
|
1361
|
+
"internalType": "address",
|
1362
|
+
"name": "activatedBy",
|
1363
|
+
"type": "address"
|
1364
|
+
},
|
1365
|
+
{
|
1366
|
+
"internalType": "Timestamp",
|
1367
|
+
"name": "activatedAt",
|
1368
|
+
"type": "uint40"
|
1369
|
+
},
|
1370
|
+
{
|
1371
|
+
"internalType": "Blocknumber",
|
1372
|
+
"name": "activatedIn",
|
1373
|
+
"type": "uint32"
|
968
1374
|
}
|
969
1375
|
],
|
970
|
-
"internalType": "struct
|
971
|
-
"name": "
|
1376
|
+
"internalType": "struct IVersionable.VersionInfo",
|
1377
|
+
"name": "",
|
972
1378
|
"type": "tuple"
|
973
1379
|
}
|
974
1380
|
],
|
975
|
-
"
|
1381
|
+
"stateMutability": "view",
|
1382
|
+
"type": "function"
|
1383
|
+
},
|
1384
|
+
{
|
1385
|
+
"inputs": [],
|
1386
|
+
"name": "getZeroFee",
|
976
1387
|
"outputs": [
|
977
1388
|
{
|
978
|
-
"
|
979
|
-
|
980
|
-
|
1389
|
+
"components": [
|
1390
|
+
{
|
1391
|
+
"internalType": "UFixed",
|
1392
|
+
"name": "fractionalFee",
|
1393
|
+
"type": "uint256"
|
1394
|
+
},
|
1395
|
+
{
|
1396
|
+
"internalType": "uint256",
|
1397
|
+
"name": "fixedFee",
|
1398
|
+
"type": "uint256"
|
1399
|
+
}
|
1400
|
+
],
|
1401
|
+
"internalType": "struct Fee",
|
1402
|
+
"name": "fee",
|
1403
|
+
"type": "tuple"
|
981
1404
|
}
|
982
1405
|
],
|
983
|
-
"stateMutability": "
|
1406
|
+
"stateMutability": "view",
|
984
1407
|
"type": "function"
|
985
1408
|
},
|
986
1409
|
{
|
987
1410
|
"inputs": [
|
988
1411
|
{
|
989
|
-
"internalType": "
|
990
|
-
"name": "
|
991
|
-
"type": "
|
1412
|
+
"internalType": "RoleId",
|
1413
|
+
"name": "role",
|
1414
|
+
"type": "bytes8"
|
992
1415
|
},
|
993
1416
|
{
|
994
|
-
"internalType": "
|
995
|
-
"name": "
|
996
|
-
"type": "
|
1417
|
+
"internalType": "address",
|
1418
|
+
"name": "member",
|
1419
|
+
"type": "address"
|
997
1420
|
}
|
998
1421
|
],
|
999
|
-
"name": "
|
1422
|
+
"name": "grantRole",
|
1000
1423
|
"outputs": [],
|
1001
1424
|
"stateMutability": "nonpayable",
|
1002
1425
|
"type": "function"
|
1003
|
-
}
|
1004
|
-
|
1005
|
-
"bytecode": "0x60e06040523480156200001157600080fd5b50604051620066b4380380620066b4833981810160405281019062000037919062000450565b808182848680806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620001066040518060400160405280600c81526020017f50726f647563744f776e65720000000000000000000000000000000000000000815250620002b860201b60201c565b60808181525050620001536040518060400160405280600b81526020017f4f7261636c654f776e6572000000000000000000000000000000000000000000815250620002b860201b60201c565b60a08181525050620001a06040518060400160405280600981526020017f506f6f6c4f776e65720000000000000000000000000000000000000000000000815250620002b860201b60201c565b60c0818152505080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050620008c0565b60008060405180606001604052806000801b8152602001848152602001600115158152509050620002ef81620002f760201b60201c565b915050919050565b6000816000015190506000801b81036200035657620003208260200151620003b460201b60201c565b90508082600001818152505060038190806001815401808255809150506001900390600052602060002001600090919091909150555b81600260008381526020019081526020016000206000820151816000015560208201518160010190816200038b919062000726565b5060408201518160020160006101000a81548160ff021916908315150217905550905050919050565b600081604051602001620003c991906200089c565b604051602081830303815290604052805190602001209050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200041882620003eb565b9050919050565b6200042a816200040b565b81146200043657600080fd5b50565b6000815190506200044a816200041f565b92915050565b6000806000606084860312156200046c576200046b620003e6565b5b60006200047c8682870162000439565b93505060206200048f8682870162000439565b9250506040620004a28682870162000439565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052e57607f821691505b602082108103620005445762000543620004e6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005ae7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200056f565b620005ba86836200056f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200060762000601620005fb84620005d2565b620005dc565b620005d2565b9050919050565b6000819050919050565b6200062383620005e6565b6200063b62000632826200060e565b8484546200057c565b825550505050565b600090565b6200065262000643565b6200065f81848462000618565b505050565b5b8181101562000687576200067b60008262000648565b60018101905062000665565b5050565b601f821115620006d657620006a0816200054a565b620006ab846200055f565b81016020851015620006bb578190505b620006d3620006ca856200055f565b83018262000664565b50505b505050565b600082821c905092915050565b6000620006fb60001984600802620006db565b1980831691505092915050565b6000620007168383620006e8565b9150826002028217905092915050565b6200073182620004ac565b67ffffffffffffffff8111156200074d576200074c620004b7565b5b62000759825462000515565b620007668282856200068b565b600060209050601f8311600181146200079e576000841562000789578287015190505b62000795858262000708565b86555062000805565b601f198416620007ae866200054a565b60005b82811015620007d857848901518255600182019150602085019450602081019050620007b1565b86831015620007f85784890151620007f4601f891682620006e8565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b60005b838110156200083e57808201518184015260208101905062000821565b60008484015250505050565b6000601f19601f8301169050919050565b60006200086882620004ac565b6200087481856200080d565b9350620008868185602086016200081e565b62000891816200084a565b840191505092915050565b60006020820190508181036000830152620008b881846200085b565b905092915050565b60805160a05160c051615dc4620008f0600039600061101301526000610cb7015260006123070152615dc46000f3fe608060405234801561001057600080fd5b50600436106102955760003560e01c80637c4a13b111610167578063ba62fbe4116100ce578063d547741f11610087578063d547741f146108a2578063eb71e8c4146108be578063eb7f494d146108dc578063f0ea17c3146108f8578063f174ce1914610928578063fb2cb1011461094657610295565b8063ba62fbe4146107a8578063bce39523146107c6578063bd7d9d85146107e2578063be409a1114610812578063ca15c87314610842578063cfe9c12d1461087257610295565b80638a618e94116101205780638a618e941461069a5780639010d07c146106ca57806391d14854146106fa5780639cad00521461072a578063af17d38a1461075a578063b90915521461078a57610295565b80637c4a13b1146105da5780637fec8b31146105f65780637ff826131461062657806383d3331914610642578063893d20e8146106605780638953ea401461067e57610295565b80634288121d1161020b5780636078a3b2116101c45780636078a3b214610502578063644c45e0146105325780636b34608a146105505780636c137ea9146105805780636fa298531461059e57806379e829d0146105bc57610295565b80634288121d146104065780635312fdc214610424578063559dc3d01461045457806357f80bbf146104845780635ab1bd53146104b45780635ae7ecc3146104d257610295565b80632a5f6e851161025d5780632a5f6e85146103425780632b1c7f73146103605780632f2ff15d1461039057806331b62a3b146103ac57806332e3a6e9146103ca5780633bc5de30146103e857610295565b806301ed76041461029a57806302393c41146102ca57806315dae03e146102e85780631aa3a008146103065780632236684414610324575b600080fd5b6102b460048036038101906102af919061412e565b610964565b6040516102c19190614196565b60405180910390f35b6102d26109b5565b6040516102df91906141ca565b60405180910390f35b6102f06109be565b6040516102fd91906141ca565b60405180910390f35b61030e610a55565b60405161031b9190614196565b60405180910390f35b61032c610b86565b6040516103399190614200565b60405180910390f35b61034a610cb3565b6040516103579190614234565b60405180910390f35b61037a600480360381019061037591906142ad565b610cdb565b6040516103879190614196565b60405180910390f35b6103aa60048036038101906103a59190614306565b610d3c565b005b6103b4610ffe565b6040516103c19190614196565b60405180910390f35b6103d261100f565b6040516103df9190614234565b60405180910390f35b6103f0611037565b6040516103fd91906143d6565b60405180910390f35b61040e61105f565b60405161041b919061444d565b60405180910390f35b61043e60048036038101906104399190614494565b611089565b60405161044b9190614234565b60405180910390f35b61046e600480360381019061046991906145b6565b6110b1565b60405161047b9190614196565b60405180910390f35b61049e6004803603810190610499919061412e565b61130c565b6040516104ab9190614678565b60405180910390f35b6104bc611453565b6040516104c991906146b4565b60405180910390f35b6104ec60048036038101906104e7919061412e565b61147c565b6040516104f99190614196565b60405180910390f35b61051c6004803603810190610517919061470d565b6114cd565b6040516105299190614196565b60405180910390f35b61053a611e4e565b6040516105479190614196565b60405180910390f35b61056a60048036038101906105659190614494565b611ef0565b6040516105779190614234565b60405180910390f35b610588612303565b6040516105959190614234565b60405180910390f35b6105a661232b565b6040516105b3919061475b565b60405180910390f35b6105c4612355565b6040516105d19190614200565b60405180910390f35b6105f460048036038101906105ef9190614776565b61235e565b005b610610600480360381019061060b9190614494565b612578565b60405161061d9190614196565b60405180910390f35b610640600480360381019061063b919061412e565b6125c3565b005b61064a6126d8565b60405161065791906141ca565b60405180910390f35b6106686126e5565b60405161067591906147b2565b60405180910390f35b610698600480360381019061069391906147cd565b612884565b005b6106b460048036038101906106af91906148ac565b612b0c565b6040516106c19190614196565b60405180910390f35b6106e460048036038101906106df919061493c565b613095565b6040516106f191906147b2565b60405180910390f35b610714600480360381019061070f9190614306565b6130c4565b6040516107219190614200565b60405180910390f35b610744600480360381019061073f9190614a36565b61312c565b6040516107519190614234565b60405180910390f35b610774600480360381019061076f9190614a36565b61315c565b6040516107819190614234565b60405180910390f35b61079261324a565b60405161079f9190614ad4565b60405180910390f35b6107b0613283565b6040516107bd91906141ca565b60405180910390f35b6107e060048036038101906107db9190614af6565b613290565b005b6107fc60048036038101906107f7919061412e565b6134bc565b6040516108099190614c64565b60405180910390f35b61082c60048036038101906108279190614776565b6135c5565b6040516108399190614d38565b60405180910390f35b61085c60048036038101906108579190614776565b6136a9565b60405161086991906141ca565b60405180910390f35b61088c6004803603810190610887919061412e565b6136cd565b60405161089991906147b2565b60405180910390f35b6108bc60048036038101906108b79190614306565b6136d4565b005b6108c661389b565b6040516108d39190614ad4565b60405180910390f35b6108f660048036038101906108f19190614776565b6138d4565b005b610912600480360381019061090d919061412e565b613aee565b60405161091f9190614dd1565b60405180910390f35b610930613bb0565b60405161093d9190614ad4565b60405180910390f35b61094e613be9565b60405161095b91906147b2565b60405180910390f35b6000600d6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff169050919050565b6402540be40081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d15db8b46040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a509190614e01565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc90614e7a565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401610b3e91906147b2565b6020604051808303816000875af1158015610b5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b819190614eaf565b905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401610be291906147b2565b602060405180830381865afa158015610bff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c239190614eaf565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401610c6c9190614eeb565b602060405180830381865af4158015610c89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cad9190614f32565b91505090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff169050919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dab9190614f74565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90614fed565b60405180910390fd5b81600260008481526020019081526020016000206000015414610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790615059565b60405180910390fd5b6002600083815260200190815260200160002060020160009054906101000a900460ff16610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca906150c5565b60405180910390fd5b60016004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f618160056000858152602001908152602001600020613c1390919063ffffffff16565b507f9a2df6ca1a9ab5e734f2f076b73fd00974eca8e06b9895f8f4eaebb590cc09a582826004600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16604051610ff2939291906150e5565b60405180910390a15050565b600061100a6000613c43565b905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6060600060405160200161104b9190615164565b604051602081830303815290604052905090565b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006003828154811061109f5761109e61517f565b5b90600052602060002001549050919050565b60003373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a906151fa565b60405180910390fd5b81600001519050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016111919190614eeb565b602060405180830381865af41580156111ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d29190614f32565b801561122e575061122d60066000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff1682613c4d565b5b61126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490615266565b60405180910390fd5b8160066000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360028111156112ff576112fe614b36565b5b0217905550905050919050565b611314613fa1565b600f6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060a00160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600282015481526020016003820154815250509050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060076000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff169050919050565b60003373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461155f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611556906151fa565b60405180910390fd5b60006115d88373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d39190614e01565b611ef0565b90503073ffffffffffffffffffffffffffffffffffffffff166391d14854828573ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa158015611642573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116669190614f74565b6040518363ffffffff1660e01b8152600401611683929190615286565b602060405180830381865afa1580156116a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c49190614f32565b611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa906152fb565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa15801561174e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117729190615359565b73ffffffffffffffffffffffffffffffffffffffff16634420e486846040518263ffffffff1660e01b81526004016117aa91906147b2565b6020604051808303816000875af11580156117c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ed9190614eaf565b91506040518060400160405280836bffffffffffffffffffffffff1681526020016001600281111561182257611821614b36565b5b81525060066000846bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360028111156118b6576118b5614b36565b5b02179055509050503073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611909573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192d9190615359565b73ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa158015611977573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199b9190614e01565b8373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119e6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0a9190614e01565b03611bb357600083905060008173ffffffffffffffffffffffffffffffffffffffff16631bdd6b766040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a859190614eaf565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401611ace9190614eeb565b602060405180830381865af4158015611aeb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0f9190614f32565b611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b45906153d2565b60405180910390fd5b8060076000866bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505050611d7c565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c229190615359565b73ffffffffffffffffffffffffffffffffffffffff16637535d2466040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c909190614e01565b8373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cff9190614e01565b03611d7b5760003090508073ffffffffffffffffffffffffffffffffffffffff16638953ea40848660006040518463ffffffff1660e01b8152600401611d47939291906153f2565b600060405180830381600087803b158015611d6157600080fd5b505af1158015611d75573d6000803e3d6000fd5b50505050505b5b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506009829080600181540180825580915050600190039060005260206000209060029182820401919006600c029091909190916101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401611eaa91906147b2565b602060405180830381865afa158015611ec7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eeb9190614eaf565b905090565b60003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f619190615359565b73ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fcf9190614e01565b820361204b573073ffffffffffffffffffffffffffffffffffffffff16636c137ea96040518163ffffffff1660e01b8152600401602060405180830381865afa158015612020573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612044919061543e565b90506122fe565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015612096573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120ba9190615359565b73ffffffffffffffffffffffffffffffffffffffff16637535d2466040518163ffffffff1660e01b8152600401602060405180830381865afa158015612104573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121289190614e01565b82036121a4573073ffffffffffffffffffffffffffffffffffffffff166332e3a6e96040518163ffffffff1660e01b8152600401602060405180830381865afa158015612179573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061219d919061543e565b90506122fe565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122139190615359565b73ffffffffffffffffffffffffffffffffffffffff166338013f026040518163ffffffff1660e01b8152600401602060405180830381865afa15801561225d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122819190614e01565b82036122fd573073ffffffffffffffffffffffffffffffffffffffff16632a5f6e856040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122f6919061543e565b90506122fe565b5b919050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001905090565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123cd9190614f74565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461243a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243190614fed565b60405180910390fd5b600060026000838152602001908152602001600020604051806060016040529081600082015481526020016001820180546124749061549a565b80601f01602080910402602001604051908101604052809291908181526020018280546124a09061549a565b80156124ed5780601f106124c2576101008083540402835291602001916124ed565b820191906000526020600020905b8154815290600101906020018083116124d057829003601f168201915b505050505081526020016002820160009054906101000a900460ff161515151581525050905081816000015114612559576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125509061553d565b60405180910390fd5b600081604001901515908115158152505061257381613c76565b505050565b60006009828154811061258e5761258d61517f565b5b9060005260206000209060029182820401919006600c029054906101000a90046bffffffffffffffffffffffff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264a906155cf565b60405180910390fd5b6000600c6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020905042816005018190555080600301544261269f919061561e565b8160060181905550600381600001600c6101000a81548160ff021916908360048111156126cf576126ce614b36565b5b02179055505050565b6000600380549050905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b815260040161274191906147b2565b602060405180830381865afa15801561275e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127829190614eaf565b905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df33330b826040518263ffffffff1660e01b81526004016127dd9190614196565b602060405180830381865afa1580156127fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061281e9190614f74565b9150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361287c57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661287e565b815b91505090565b600f6000846bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6352694ee890916040518263ffffffff1660e01b81526004016129159190614eeb565b602060405180830381865af4158015612932573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129569190614f32565b612995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298c9061569e565b60405180910390fd5b6040518060a00160405280846bffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020016402540be40081526020016000815250600f6000856bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506060820151816002015560808201518160030155905050505050565b60003373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b95906155cf565b60405180910390fd5b816bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401612be59190614eeb565b602060405180830381865af4158015612c02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c269190614f32565b15612d195760003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c9c9190615359565b73ffffffffffffffffffffffffffffffffffffffff16634c3371cd846040518263ffffffff1660e01b8152600401612cd49190614196565b60a060405180830381865afa158015612cf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d15919061574a565b9050505b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d889190615359565b73ffffffffffffffffffffffffffffffffffffffff1663294624ad88600001513073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015612df3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e179190615359565b73ffffffffffffffffffffffffffffffffffffffff1663dadbccee6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e859190614e01565b896040518463ffffffff1660e01b8152600401612ea493929190615777565b6020604051808303816000875af1158015612ec3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ee79190614eaf565b9050604051806101200160405280826bffffffffffffffffffffffff16815260200160016004811115612f1d57612f1c614b36565b5b815260200186815260200185815260200184815260200142815260200160008152602001600081526020016000815250600c6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff02191690836004811115612fde57612fdd614b36565b5b021790555060408201518160010155606082015181600201556080820151816003015560a0820151816004015560c0820151816005015560e08201518160060155610100820151816007015590505081600d6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509695505050505050565b60006130bc8260056000868152602001908152602001600020613d2890919063ffffffff16565b905092915050565b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008160405160200161313f9190614ad4565b604051602081830303815290604052805190602001209050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131cd9190614f74565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461323a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323190614fed565b60405180910390fd5b61324382613d42565b9050919050565b6040518060400160405280600b81526020017f4f7261636c654f776e657200000000000000000000000000000000000000000081525081565b6000600980549050905090565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613320576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613317906155cf565b60405180910390fd5b6000600f6000846bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002090506133798160000160009054906101000a90046bffffffffffffffffffffffff1684613c4d565b6133b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133af906157fa565b60405180910390fd5b600030905060008173ffffffffffffffffffffffffffffffffffffffff1663bd7d9d85856040518263ffffffff1660e01b81526004016133f89190614196565b61012060405180830381865afa158015613416573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061343a919061591f565b9050806040015183600301548460020154613455919061594d565b1015613496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348d906159cd565b60405180910390fd5b80604001518360030160008282546134ae919061561e565b925050819055505050505050565b6134c461400a565b600c6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020604051806101200160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900460ff16600481111561356257613561614b36565b5b600481111561357457613573614b36565b5b81526020016001820154815260200160028201548152602001600382015481526020016004820154815260200160058201548152602001600682015481526020016007820154815250509050919050565b6135cd614076565b60026000838152602001908152602001600020604051806060016040529081600082015481526020016001820180546136059061549a565b80601f01602080910402602001604051908101604052809291908181526020018280546136319061549a565b801561367e5780601f106136535761010080835404028352916020019161367e565b820191906000526020600020905b81548152906001019060200180831161366157829003601f168201915b505050505081526020016002820160009054906101000a900460ff1615151515815250509050919050565b60006136c660056000848152602001908152602001600020613d79565b9050919050565b6000919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561371f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137439190614f74565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146137b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137a790614fed565b60405180910390fd5b81600260008481526020019081526020016000206000015414613808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ff90615a39565b60405180910390fd5b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506138968160056000858152602001908152602001600020613d8e90919063ffffffff16565b505050565b6040518060400160405280600981526020017f506f6f6c4f776e6572000000000000000000000000000000000000000000000081525081565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561391f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139439190614f74565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146139b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139a790614fed565b60405180910390fd5b600060026000838152602001908152602001600020604051806060016040529081600082015481526020016001820180546139ea9061549a565b80601f0160208091040260200160405190810160405280929190818152602001828054613a169061549a565b8015613a635780601f10613a3857610100808354040283529160200191613a63565b820191906000526020600020905b815481529060010190602001808311613a4657829003601f168201915b505050505081526020016002820160009054906101000a900460ff161515151581525050905081816000015114613acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ac690615acb565b60405180910390fd5b6001816040019015159081151581525050613ae981613c76565b505050565b613af661409c565b60066000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900460ff166002811115613b9357613b92614b36565b5b6002811115613ba557613ba4614b36565b5b815250509050919050565b6040518060400160405280600c81526020017f50726f647563744f776e6572000000000000000000000000000000000000000081525081565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000613c3b836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613dbe565b905092915050565b6000819050919050565b6000816bffffffffffffffffffffffff16836bffffffffffffffffffffffff1614905092915050565b6000816000015190506000801b8103613ccc57613c96826020015161312c565b90508082600001818152505060038190806001815401808255809150506001900390600052602060002001600090919091909150555b8160026000838152602001908152602001600020600082015181600001556020820151816001019081613cff9190615c8d565b5060408201518160020160006101000a81548160ff021916908315150217905550905050919050565b6000613d378360000183613e2e565b60001c905092915050565b60008060405180606001604052806000801b8152602001848152602001600115158152509050613d7181613c76565b915050919050565b6000613d8782600001613e59565b9050919050565b6000613db6836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613e6a565b905092915050565b6000613dca8383613f7e565b613e23578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613e28565b600090505b92915050565b6000826000018281548110613e4657613e4561517f565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b60008083600101600084815260200190815260200160002054905060008114613f72576000600182613e9c919061594d565b9050600060018660000180549050613eb4919061594d565b9050818114613f23576000866000018281548110613ed557613ed461517f565b5b9060005260206000200154905080876000018481548110613ef957613ef861517f565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480613f3757613f36615d5f565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613f78565b60009150505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b6040518060a0016040528060006bffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152602001600081525090565b60405180610120016040528060006bffffffffffffffffffffffff1681526020016000600481111561403f5761403e614b36565b5b8152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806060016040528060008019168152602001606081526020016000151581525090565b604051806040016040528060006bffffffffffffffffffffffff168152602001600060028111156140d0576140cf614b36565b5b81525090565b6000604051905090565b600080fd5b600080fd5b60006bffffffffffffffffffffffff82169050919050565b61410b816140ea565b811461411657600080fd5b50565b60008135905061412881614102565b92915050565b600060208284031215614144576141436140e0565b5b600061415284828501614119565b91505092915050565b6000819050919050565b600061418061417b614176846140ea565b61415b565b6140ea565b9050919050565b61419081614165565b82525050565b60006020820190506141ab6000830184614187565b92915050565b6000819050919050565b6141c4816141b1565b82525050565b60006020820190506141df60008301846141bb565b92915050565b60008115159050919050565b6141fa816141e5565b82525050565b600060208201905061421560008301846141f1565b92915050565b6000819050919050565b61422e8161421b565b82525050565b60006020820190506142496000830184614225565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061427a8261424f565b9050919050565b61428a8161426f565b811461429557600080fd5b50565b6000813590506142a781614281565b92915050565b6000602082840312156142c3576142c26140e0565b5b60006142d184828501614298565b91505092915050565b6142e38161421b565b81146142ee57600080fd5b50565b600081359050614300816142da565b92915050565b6000806040838503121561431d5761431c6140e0565b5b600061432b858286016142f1565b925050602061433c85828601614298565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614380578082015181840152602081019050614365565b60008484015250505050565b6000601f19601f8301169050919050565b60006143a882614346565b6143b28185614351565b93506143c2818560208601614362565b6143cb8161438c565b840191505092915050565b600060208201905081810360008301526143f0818461439d565b905092915050565b600061441361440e6144098461424f565b61415b565b61424f565b9050919050565b6000614425826143f8565b9050919050565b60006144378261441a565b9050919050565b6144478161442c565b82525050565b6000602082019050614462600083018461443e565b92915050565b614471816141b1565b811461447c57600080fd5b50565b60008135905061448e81614468565b92915050565b6000602082840312156144aa576144a96140e0565b5b60006144b88482850161447f565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6144fe8261438c565b810181811067ffffffffffffffff8211171561451d5761451c6144c6565b5b80604052505050565b60006145306140d6565b905061453c82826144f5565b919050565b6003811061454e57600080fd5b50565b60008135905061456081614541565b92915050565b60006040828403121561457c5761457b6144c1565b5b6145866040614526565b9050600061459684828501614119565b60008301525060206145aa84828501614551565b60208301525092915050565b6000604082840312156145cc576145cb6140e0565b5b60006145da84828501614566565b91505092915050565b6145ec81614165565b82525050565b6145fb8161426f565b82525050565b61460a816141b1565b82525050565b60a08201600082015161462660008501826145e3565b50602082015161463960208501826145f2565b50604082015161464c60408501826145f2565b50606082015161465f6060850182614601565b5060808201516146726080850182614601565b50505050565b600060a08201905061468d6000830184614610565b92915050565b600061469e8261441a565b9050919050565b6146ae81614693565b82525050565b60006020820190506146c960008301846146a5565b92915050565b60006146da8261426f565b9050919050565b6146ea816146cf565b81146146f557600080fd5b50565b600081359050614707816146e1565b92915050565b600060208284031215614723576147226140e0565b5b6000614731848285016146f8565b91505092915050565b60006147458261441a565b9050919050565b6147558161473a565b82525050565b6000602082019050614770600083018461474c565b92915050565b60006020828403121561478c5761478b6140e0565b5b600061479a848285016142f1565b91505092915050565b6147ac8161426f565b82525050565b60006020820190506147c760008301846147a3565b92915050565b6000806000606084860312156147e6576147e56140e0565b5b60006147f486828701614119565b935050602061480586828701614298565b925050604061481686828701614298565b9150509250925092565b600060a08284031215614836576148356144c1565b5b61484060a0614526565b9050600061485084828501614119565b600083015250602061486484828501614119565b60208301525060406148788482850161447f565b604083015250606061488c84828501614298565b60608301525060806148a084828501614298565b60808301525092915050565b60008060008060008061014087890312156148ca576148c96140e0565b5b60006148d889828a01614820565b96505060a06148e989828a01614298565b95505060c06148fa89828a0161447f565b94505060e061490b89828a0161447f565b93505061010061491d89828a0161447f565b92505061012061492f89828a01614119565b9150509295509295509295565b60008060408385031215614953576149526140e0565b5b6000614961858286016142f1565b92505060206149728582860161447f565b9150509250929050565b600080fd5b600080fd5b600067ffffffffffffffff8211156149a1576149a06144c6565b5b6149aa8261438c565b9050602081019050919050565b82818337600083830152505050565b60006149d96149d484614986565b614526565b9050828152602081018484840111156149f5576149f4614981565b5b614a008482856149b7565b509392505050565b600082601f830112614a1d57614a1c61497c565b5b8135614a2d8482602086016149c6565b91505092915050565b600060208284031215614a4c57614a4b6140e0565b5b600082013567ffffffffffffffff811115614a6a57614a696140e5565b5b614a7684828501614a08565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000614aa682614a7f565b614ab08185614a8a565b9350614ac0818560208601614362565b614ac98161438c565b840191505092915050565b60006020820190508181036000830152614aee8184614a9b565b905092915050565b60008060408385031215614b0d57614b0c6140e0565b5b6000614b1b85828601614119565b9250506020614b2c85828601614119565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110614b7657614b75614b36565b5b50565b6000819050614b8782614b65565b919050565b6000614b9782614b79565b9050919050565b614ba781614b8c565b82525050565b61012082016000820151614bc460008501826145e3565b506020820151614bd76020850182614b9e565b506040820151614bea6040850182614601565b506060820151614bfd6060850182614601565b506080820151614c106080850182614601565b5060a0820151614c2360a0850182614601565b5060c0820151614c3660c0850182614601565b5060e0820151614c4960e0850182614601565b50610100820151614c5e610100850182614601565b50505050565b600061012082019050614c7a6000830184614bad565b92915050565b614c898161421b565b82525050565b600082825260208201905092915050565b6000614cab82614a7f565b614cb58185614c8f565b9350614cc5818560208601614362565b614cce8161438c565b840191505092915050565b614ce2816141e5565b82525050565b6000606083016000830151614d006000860182614c80565b5060208301518482036020860152614d188282614ca0565b9150506040830151614d2d6040860182614cd9565b508091505092915050565b60006020820190508181036000830152614d528184614ce8565b905092915050565b60038110614d6b57614d6a614b36565b5b50565b6000819050614d7c82614d5a565b919050565b6000614d8c82614d6e565b9050919050565b614d9c81614d81565b82525050565b604082016000820151614db860008501826145e3565b506020820151614dcb6020850182614d93565b50505050565b6000604082019050614de66000830184614da2565b92915050565b600081519050614dfb81614468565b92915050565b600060208284031215614e1757614e166140e0565b5b6000614e2584828501614dec565b91505092915050565b7f4552524f523a5052442d3030313a52454749535452595f5a45524f0000000000600082015250565b6000614e64601b83614a8a565b9150614e6f82614e2e565b602082019050919050565b60006020820190508181036000830152614e9381614e57565b9050919050565b600081519050614ea981614102565b92915050565b600060208284031215614ec557614ec46140e0565b5b6000614ed384828501614e9a565b91505092915050565b614ee581614165565b82525050565b6000602082019050614f006000830184614edc565b92915050565b614f0f816141e5565b8114614f1a57600080fd5b50565b600081519050614f2c81614f06565b92915050565b600060208284031215614f4857614f476140e0565b5b6000614f5684828501614f1d565b91505092915050565b600081519050614f6e81614281565b92915050565b600060208284031215614f8a57614f896140e0565b5b6000614f9884828501614f5f565b91505092915050565b7f4552524f523a41434d2d3030313a4e4f545f4f574e4552000000000000000000600082015250565b6000614fd7601783614a8a565b9150614fe282614fa1565b602082019050919050565b6000602082019050818103600083015261500681614fca565b9050919050565b7f4552524f523a41434d2d3031303a524f4c455f4e4f545f4558495354494e4700600082015250565b6000615043601f83614a8a565b915061504e8261500d565b602082019050919050565b6000602082019050818103600083015261507281615036565b9050919050565b7f4552524f523a41434d2d3031313a524f4c455f4e4f545f414354495645000000600082015250565b60006150af601d83614a8a565b91506150ba82615079565b602082019050919050565b600060208201905081810360008301526150de816150a2565b9050919050565b60006060820190506150fa6000830186614225565b61510760208301856147a3565b61511460408301846141f1565b949350505050565b6000819050919050565b600060ff82169050919050565b600061514e6151496151448461511c565b61415b565b615126565b9050919050565b61515e81615133565b82525050565b60006020820190506151796000830184615155565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500600082015250565b60006151e4601f83614a8a565b91506151ef826151ae565b602082019050919050565b60006020820190508181036000830152615213816151d7565b9050919050565b7f4552524f523a434d502d3030363a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b6000615250601f83614a8a565b915061525b8261521a565b602082019050919050565b6000602082019050818103600083015261527f81615243565b9050919050565b600060408201905061529b6000830185614225565b6152a860208301846147a3565b9392505050565b7f4552524f523a434d502d3030343a545950455f524f4c455f4d495353494e4700600082015250565b60006152e5601f83614a8a565b91506152f0826152af565b602082019050919050565b60006020820190508181036000830152615314816152d8565b9050919050565b60006153268261426f565b9050919050565b6153368161531b565b811461534157600080fd5b50565b6000815190506153538161532d565b92915050565b60006020828403121561536f5761536e6140e0565b5b600061537d84828501615344565b91505092915050565b7f4552524f523a434d502d3030353a504f4f4c5f554e4b4e4f574e000000000000600082015250565b60006153bc601a83614a8a565b91506153c782615386565b602082019050919050565b600060208201905081810360008301526153eb816153af565b9050919050565b60006060820190506154076000830186614187565b61541460208301856147a3565b61542160408301846147a3565b949350505050565b600081519050615438816142da565b92915050565b600060208284031215615454576154536140e0565b5b600061546284828501615429565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806154b257607f821691505b6020821081036154c5576154c461546b565b5b50919050565b7f4552524f523a414f532d3030313a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b6000615527602183614a8a565b9150615532826154cb565b604082019050919050565b600060208201905081810360008301526155568161551a565b9050919050565b7f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f53455256494360008201527f4500000000000000000000000000000000000000000000000000000000000000602082015250565b60006155b9602183614a8a565b91506155c48261555d565b604082019050919050565b600060208201905081810360008301526155e8816155ac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000615629826141b1565b9150615634836141b1565b925082820190508082111561564c5761564b6155ef565b5b92915050565b7f4552524f523a504c2d3030313a414c52454144595f4352454154454400000000600082015250565b6000615688601c83614a8a565b915061569382615652565b602082019050919050565b600060208201905081810360008301526156b78161567b565b9050919050565b600060a082840312156156d4576156d36144c1565b5b6156de60a0614526565b905060006156ee84828501614e9a565b600083015250602061570284828501614e9a565b602083015250604061571684828501614dec565b604083015250606061572a84828501614f5f565b606083015250608061573e84828501614f5f565b60808301525092915050565b600060a082840312156157605761575f6140e0565b5b600061576e848285016156be565b91505092915050565b600060608201905061578c6000830186614187565b61579960208301856141bb565b6157a660408301846147a3565b949350505050565b7f4552524f523a504c2d3030323a504f4f4c5f554e4b4e4f574e00000000000000600082015250565b60006157e4601983614a8a565b91506157ef826157ae565b602082019050919050565b60006020820190508181036000830152615813816157d7565b9050919050565b6005811061582757600080fd5b50565b6000815190506158398161581a565b92915050565b60006101208284031215615856576158556144c1565b5b615861610120614526565b9050600061587184828501614e9a565b60008301525060206158858482850161582a565b602083015250604061589984828501614dec565b60408301525060606158ad84828501614dec565b60608301525060806158c184828501614dec565b60808301525060a06158d584828501614dec565b60a08301525060c06158e984828501614dec565b60c08301525060e06158fd84828501614dec565b60e08301525061010061591284828501614dec565b6101008301525092915050565b60006101208284031215615936576159356140e0565b5b60006159448482850161583f565b91505092915050565b6000615958826141b1565b9150615963836141b1565b925082820390508181111561597b5761597a6155ef565b5b92915050565b7f4552524f523a504c2d3030333a43415041434954595f544f4f5f4c4f57000000600082015250565b60006159b7601d83614a8a565b91506159c282615981565b602082019050919050565b600060208201905081810360008301526159e6816159aa565b9050919050565b7f4552524f523a41434d2d3032303a524f4c455f4e4f545f4558495354494e4700600082015250565b6000615a23601f83614a8a565b9150615a2e826159ed565b602082019050919050565b60006020820190508181036000830152615a5281615a16565b9050919050565b7f4552524f523a414f532d3030323a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b6000615ab5602183614a8a565b9150615ac082615a59565b604082019050919050565b60006020820190508181036000830152615ae481615aa8565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302615b4d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615b10565b615b578683615b10565b95508019841693508086168417925050509392505050565b6000615b8a615b85615b80846141b1565b61415b565b6141b1565b9050919050565b6000819050919050565b615ba483615b6f565b615bb8615bb082615b91565b848454615b1d565b825550505050565b600090565b615bcd615bc0565b615bd8818484615b9b565b505050565b5b81811015615bfc57615bf1600082615bc5565b600181019050615bde565b5050565b601f821115615c4157615c1281615aeb565b615c1b84615b00565b81016020851015615c2a578190505b615c3e615c3685615b00565b830182615bdd565b50505b505050565b600082821c905092915050565b6000615c6460001984600802615c46565b1980831691505092915050565b6000615c7d8383615c53565b9150826002028217905092915050565b615c9682614a7f565b67ffffffffffffffff811115615caf57615cae6144c6565b5b615cb9825461549a565b615cc4828285615c00565b600060209050601f831160018114615cf75760008415615ce5578287015190505b615cef8582615c71565b865550615d57565b601f198416615d0586615aeb565b60005b82811015615d2d57848901518255600182019150602085019450602081019050615d08565b86831015615d4a5784890151615d46601f891682615c53565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220eb5ab8d02cc88b61576dd4ee5c0cda445726ffe4d444af8368ce6ca497db582264736f6c63430008140033",
|
1006
|
-
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106102955760003560e01c80637c4a13b111610167578063ba62fbe4116100ce578063d547741f11610087578063d547741f146108a2578063eb71e8c4146108be578063eb7f494d146108dc578063f0ea17c3146108f8578063f174ce1914610928578063fb2cb1011461094657610295565b8063ba62fbe4146107a8578063bce39523146107c6578063bd7d9d85146107e2578063be409a1114610812578063ca15c87314610842578063cfe9c12d1461087257610295565b80638a618e94116101205780638a618e941461069a5780639010d07c146106ca57806391d14854146106fa5780639cad00521461072a578063af17d38a1461075a578063b90915521461078a57610295565b80637c4a13b1146105da5780637fec8b31146105f65780637ff826131461062657806383d3331914610642578063893d20e8146106605780638953ea401461067e57610295565b80634288121d1161020b5780636078a3b2116101c45780636078a3b214610502578063644c45e0146105325780636b34608a146105505780636c137ea9146105805780636fa298531461059e57806379e829d0146105bc57610295565b80634288121d146104065780635312fdc214610424578063559dc3d01461045457806357f80bbf146104845780635ab1bd53146104b45780635ae7ecc3146104d257610295565b80632a5f6e851161025d5780632a5f6e85146103425780632b1c7f73146103605780632f2ff15d1461039057806331b62a3b146103ac57806332e3a6e9146103ca5780633bc5de30146103e857610295565b806301ed76041461029a57806302393c41146102ca57806315dae03e146102e85780631aa3a008146103065780632236684414610324575b600080fd5b6102b460048036038101906102af919061412e565b610964565b6040516102c19190614196565b60405180910390f35b6102d26109b5565b6040516102df91906141ca565b60405180910390f35b6102f06109be565b6040516102fd91906141ca565b60405180910390f35b61030e610a55565b60405161031b9190614196565b60405180910390f35b61032c610b86565b6040516103399190614200565b60405180910390f35b61034a610cb3565b6040516103579190614234565b60405180910390f35b61037a600480360381019061037591906142ad565b610cdb565b6040516103879190614196565b60405180910390f35b6103aa60048036038101906103a59190614306565b610d3c565b005b6103b4610ffe565b6040516103c19190614196565b60405180910390f35b6103d261100f565b6040516103df9190614234565b60405180910390f35b6103f0611037565b6040516103fd91906143d6565b60405180910390f35b61040e61105f565b60405161041b919061444d565b60405180910390f35b61043e60048036038101906104399190614494565b611089565b60405161044b9190614234565b60405180910390f35b61046e600480360381019061046991906145b6565b6110b1565b60405161047b9190614196565b60405180910390f35b61049e6004803603810190610499919061412e565b61130c565b6040516104ab9190614678565b60405180910390f35b6104bc611453565b6040516104c991906146b4565b60405180910390f35b6104ec60048036038101906104e7919061412e565b61147c565b6040516104f99190614196565b60405180910390f35b61051c6004803603810190610517919061470d565b6114cd565b6040516105299190614196565b60405180910390f35b61053a611e4e565b6040516105479190614196565b60405180910390f35b61056a60048036038101906105659190614494565b611ef0565b6040516105779190614234565b60405180910390f35b610588612303565b6040516105959190614234565b60405180910390f35b6105a661232b565b6040516105b3919061475b565b60405180910390f35b6105c4612355565b6040516105d19190614200565b60405180910390f35b6105f460048036038101906105ef9190614776565b61235e565b005b610610600480360381019061060b9190614494565b612578565b60405161061d9190614196565b60405180910390f35b610640600480360381019061063b919061412e565b6125c3565b005b61064a6126d8565b60405161065791906141ca565b60405180910390f35b6106686126e5565b60405161067591906147b2565b60405180910390f35b610698600480360381019061069391906147cd565b612884565b005b6106b460048036038101906106af91906148ac565b612b0c565b6040516106c19190614196565b60405180910390f35b6106e460048036038101906106df919061493c565b613095565b6040516106f191906147b2565b60405180910390f35b610714600480360381019061070f9190614306565b6130c4565b6040516107219190614200565b60405180910390f35b610744600480360381019061073f9190614a36565b61312c565b6040516107519190614234565b60405180910390f35b610774600480360381019061076f9190614a36565b61315c565b6040516107819190614234565b60405180910390f35b61079261324a565b60405161079f9190614ad4565b60405180910390f35b6107b0613283565b6040516107bd91906141ca565b60405180910390f35b6107e060048036038101906107db9190614af6565b613290565b005b6107fc60048036038101906107f7919061412e565b6134bc565b6040516108099190614c64565b60405180910390f35b61082c60048036038101906108279190614776565b6135c5565b6040516108399190614d38565b60405180910390f35b61085c60048036038101906108579190614776565b6136a9565b60405161086991906141ca565b60405180910390f35b61088c6004803603810190610887919061412e565b6136cd565b60405161089991906147b2565b60405180910390f35b6108bc60048036038101906108b79190614306565b6136d4565b005b6108c661389b565b6040516108d39190614ad4565b60405180910390f35b6108f660048036038101906108f19190614776565b6138d4565b005b610912600480360381019061090d919061412e565b613aee565b60405161091f9190614dd1565b60405180910390f35b610930613bb0565b60405161093d9190614ad4565b60405180910390f35b61094e613be9565b60405161095b91906147b2565b60405180910390f35b6000600d6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff169050919050565b6402540be40081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d15db8b46040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a509190614e01565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc90614e7a565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401610b3e91906147b2565b6020604051808303816000875af1158015610b5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b819190614eaf565b905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401610be291906147b2565b602060405180830381865afa158015610bff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c239190614eaf565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401610c6c9190614eeb565b602060405180830381865af4158015610c89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cad9190614f32565b91505090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff169050919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dab9190614f74565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90614fed565b60405180910390fd5b81600260008481526020019081526020016000206000015414610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790615059565b60405180910390fd5b6002600083815260200190815260200160002060020160009054906101000a900460ff16610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca906150c5565b60405180910390fd5b60016004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f618160056000858152602001908152602001600020613c1390919063ffffffff16565b507f9a2df6ca1a9ab5e734f2f076b73fd00974eca8e06b9895f8f4eaebb590cc09a582826004600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16604051610ff2939291906150e5565b60405180910390a15050565b600061100a6000613c43565b905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6060600060405160200161104b9190615164565b604051602081830303815290604052905090565b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006003828154811061109f5761109e61517f565b5b90600052602060002001549050919050565b60003373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a906151fa565b60405180910390fd5b81600001519050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b81526004016111919190614eeb565b602060405180830381865af41580156111ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d29190614f32565b801561122e575061122d60066000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff1682613c4d565b5b61126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490615266565b60405180910390fd5b8160066000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360028111156112ff576112fe614b36565b5b0217905550905050919050565b611314613fa1565b600f6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060a00160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600282015481526020016003820154815250509050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060076000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff169050919050565b60003373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461155f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611556906151fa565b60405180910390fd5b60006115d88373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d39190614e01565b611ef0565b90503073ffffffffffffffffffffffffffffffffffffffff166391d14854828573ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa158015611642573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116669190614f74565b6040518363ffffffff1660e01b8152600401611683929190615286565b602060405180830381865afa1580156116a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c49190614f32565b611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa906152fb565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa15801561174e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117729190615359565b73ffffffffffffffffffffffffffffffffffffffff16634420e486846040518263ffffffff1660e01b81526004016117aa91906147b2565b6020604051808303816000875af11580156117c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ed9190614eaf565b91506040518060400160405280836bffffffffffffffffffffffff1681526020016001600281111561182257611821614b36565b5b81525060066000846bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff021916908360028111156118b6576118b5614b36565b5b02179055509050503073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611909573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192d9190615359565b73ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa158015611977573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199b9190614e01565b8373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119e6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0a9190614e01565b03611bb357600083905060008173ffffffffffffffffffffffffffffffffffffffff16631bdd6b766040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a859190614eaf565b9050806bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401611ace9190614eeb565b602060405180830381865af4158015611aeb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0f9190614f32565b611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b45906153d2565b60405180910390fd5b8060076000866bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505050611d7c565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c229190615359565b73ffffffffffffffffffffffffffffffffffffffff16637535d2466040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c909190614e01565b8373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cff9190614e01565b03611d7b5760003090508073ffffffffffffffffffffffffffffffffffffffff16638953ea40848660006040518463ffffffff1660e01b8152600401611d47939291906153f2565b600060405180830381600087803b158015611d6157600080fd5b505af1158015611d75573d6000803e3d6000fd5b50505050505b5b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506009829080600181540180825580915050600190039060005260206000209060029182820401919006600c029091909190916101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401611eaa91906147b2565b602060405180830381865afa158015611ec7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eeb9190614eaf565b905090565b60003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f619190615359565b73ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fcf9190614e01565b820361204b573073ffffffffffffffffffffffffffffffffffffffff16636c137ea96040518163ffffffff1660e01b8152600401602060405180830381865afa158015612020573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612044919061543e565b90506122fe565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015612096573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120ba9190615359565b73ffffffffffffffffffffffffffffffffffffffff16637535d2466040518163ffffffff1660e01b8152600401602060405180830381865afa158015612104573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121289190614e01565b82036121a4573073ffffffffffffffffffffffffffffffffffffffff166332e3a6e96040518163ffffffff1660e01b8152600401602060405180830381865afa158015612179573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061219d919061543e565b90506122fe565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122139190615359565b73ffffffffffffffffffffffffffffffffffffffff166338013f026040518163ffffffff1660e01b8152600401602060405180830381865afa15801561225d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122819190614e01565b82036122fd573073ffffffffffffffffffffffffffffffffffffffff16632a5f6e856040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122f6919061543e565b90506122fe565b5b919050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001905090565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123cd9190614f74565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461243a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243190614fed565b60405180910390fd5b600060026000838152602001908152602001600020604051806060016040529081600082015481526020016001820180546124749061549a565b80601f01602080910402602001604051908101604052809291908181526020018280546124a09061549a565b80156124ed5780601f106124c2576101008083540402835291602001916124ed565b820191906000526020600020905b8154815290600101906020018083116124d057829003601f168201915b505050505081526020016002820160009054906101000a900460ff161515151581525050905081816000015114612559576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125509061553d565b60405180910390fd5b600081604001901515908115158152505061257381613c76565b505050565b60006009828154811061258e5761258d61517f565b5b9060005260206000209060029182820401919006600c029054906101000a90046bffffffffffffffffffffffff169050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264a906155cf565b60405180910390fd5b6000600c6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020905042816005018190555080600301544261269f919061561e565b8160060181905550600381600001600c6101000a81548160ff021916908360048111156126cf576126ce614b36565b5b02179055505050565b6000600380549050905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b815260040161274191906147b2565b602060405180830381865afa15801561275e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127829190614eaf565b905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663df33330b826040518263ffffffff1660e01b81526004016127dd9190614196565b602060405180830381865afa1580156127fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061281e9190614f74565b9150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361287c57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661287e565b815b91505090565b600f6000846bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6352694ee890916040518263ffffffff1660e01b81526004016129159190614eeb565b602060405180830381865af4158015612932573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129569190614f32565b612995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298c9061569e565b60405180910390fd5b6040518060a00160405280846bffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020016402540be40081526020016000815250600f6000856bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506060820151816002015560808201518160030155905050505050565b60003373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b95906155cf565b60405180910390fd5b816bffffffffffffffffffffffff1673__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__6330b8415f90916040518263ffffffff1660e01b8152600401612be59190614eeb565b602060405180830381865af4158015612c02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c269190614f32565b15612d195760003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c9c9190615359565b73ffffffffffffffffffffffffffffffffffffffff16634c3371cd846040518263ffffffff1660e01b8152600401612cd49190614196565b60a060405180830381865afa158015612cf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d15919061574a565b9050505b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d889190615359565b73ffffffffffffffffffffffffffffffffffffffff1663294624ad88600001513073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015612df3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e179190615359565b73ffffffffffffffffffffffffffffffffffffffff1663dadbccee6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e859190614e01565b896040518463ffffffff1660e01b8152600401612ea493929190615777565b6020604051808303816000875af1158015612ec3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ee79190614eaf565b9050604051806101200160405280826bffffffffffffffffffffffff16815260200160016004811115612f1d57612f1c614b36565b5b815260200186815260200185815260200184815260200142815260200160008152602001600081526020016000815250600c6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550602082015181600001600c6101000a81548160ff02191690836004811115612fde57612fdd614b36565b5b021790555060408201518160010155606082015181600201556080820151816003015560a0820151816004015560c0820151816005015560e08201518160060155610100820151816007015590505081600d6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509695505050505050565b60006130bc8260056000868152602001908152602001600020613d2890919063ffffffff16565b905092915050565b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008160405160200161313f9190614ad4565b604051602081830303815290604052805190602001209050919050565b60003073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131cd9190614f74565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461323a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161323190614fed565b60405180910390fd5b61324382613d42565b9050919050565b6040518060400160405280600b81526020017f4f7261636c654f776e657200000000000000000000000000000000000000000081525081565b6000600980549050905090565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613320576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613317906155cf565b60405180910390fd5b6000600f6000846bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200190815260200160002090506133798160000160009054906101000a90046bffffffffffffffffffffffff1684613c4d565b6133b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133af906157fa565b60405180910390fd5b600030905060008173ffffffffffffffffffffffffffffffffffffffff1663bd7d9d85856040518263ffffffff1660e01b81526004016133f89190614196565b61012060405180830381865afa158015613416573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061343a919061591f565b9050806040015183600301548460020154613455919061594d565b1015613496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348d906159cd565b60405180910390fd5b80604001518360030160008282546134ae919061561e565b925050819055505050505050565b6134c461400a565b600c6000836bffffffffffffffffffffffff166bffffffffffffffffffffffff168152602001908152602001600020604051806101200160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900460ff16600481111561356257613561614b36565b5b600481111561357457613573614b36565b5b81526020016001820154815260200160028201548152602001600382015481526020016004820154815260200160058201548152602001600682015481526020016007820154815250509050919050565b6135cd614076565b60026000838152602001908152602001600020604051806060016040529081600082015481526020016001820180546136059061549a565b80601f01602080910402602001604051908101604052809291908181526020018280546136319061549a565b801561367e5780601f106136535761010080835404028352916020019161367e565b820191906000526020600020905b81548152906001019060200180831161366157829003601f168201915b505050505081526020016002820160009054906101000a900460ff1615151515815250509050919050565b60006136c660056000848152602001908152602001600020613d79565b9050919050565b6000919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561371f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137439190614f74565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146137b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137a790614fed565b60405180910390fd5b81600260008481526020019081526020016000206000015414613808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137ff90615a39565b60405180910390fd5b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506138968160056000858152602001908152602001600020613d8e90919063ffffffff16565b505050565b6040518060400160405280600981526020017f506f6f6c4f776e6572000000000000000000000000000000000000000000000081525081565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561391f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139439190614f74565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146139b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139a790614fed565b60405180910390fd5b600060026000838152602001908152602001600020604051806060016040529081600082015481526020016001820180546139ea9061549a565b80601f0160208091040260200160405190810160405280929190818152602001828054613a169061549a565b8015613a635780601f10613a3857610100808354040283529160200191613a63565b820191906000526020600020905b815481529060010190602001808311613a4657829003601f168201915b505050505081526020016002820160009054906101000a900460ff161515151581525050905081816000015114613acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ac690615acb565b60405180910390fd5b6001816040019015159081151581525050613ae981613c76565b505050565b613af661409c565b60066000836bffffffffffffffffffffffff166bffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815260200160008201600c9054906101000a900460ff166002811115613b9357613b92614b36565b5b6002811115613ba557613ba4614b36565b5b815250509050919050565b6040518060400160405280600c81526020017f50726f647563744f776e6572000000000000000000000000000000000000000081525081565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000613c3b836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613dbe565b905092915050565b6000819050919050565b6000816bffffffffffffffffffffffff16836bffffffffffffffffffffffff1614905092915050565b6000816000015190506000801b8103613ccc57613c96826020015161312c565b90508082600001818152505060038190806001815401808255809150506001900390600052602060002001600090919091909150555b8160026000838152602001908152602001600020600082015181600001556020820151816001019081613cff9190615c8d565b5060408201518160020160006101000a81548160ff021916908315150217905550905050919050565b6000613d378360000183613e2e565b60001c905092915050565b60008060405180606001604052806000801b8152602001848152602001600115158152509050613d7181613c76565b915050919050565b6000613d8782600001613e59565b9050919050565b6000613db6836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613e6a565b905092915050565b6000613dca8383613f7e565b613e23578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613e28565b600090505b92915050565b6000826000018281548110613e4657613e4561517f565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b60008083600101600084815260200190815260200160002054905060008114613f72576000600182613e9c919061594d565b9050600060018660000180549050613eb4919061594d565b9050818114613f23576000866000018281548110613ed557613ed461517f565b5b9060005260206000200154905080876000018481548110613ef957613ef861517f565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480613f3757613f36615d5f565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613f78565b60009150505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b6040518060a0016040528060006bffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152602001600081525090565b60405180610120016040528060006bffffffffffffffffffffffff1681526020016000600481111561403f5761403e614b36565b5b8152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806060016040528060008019168152602001606081526020016000151581525090565b604051806040016040528060006bffffffffffffffffffffffff168152602001600060028111156140d0576140cf614b36565b5b81525090565b6000604051905090565b600080fd5b600080fd5b60006bffffffffffffffffffffffff82169050919050565b61410b816140ea565b811461411657600080fd5b50565b60008135905061412881614102565b92915050565b600060208284031215614144576141436140e0565b5b600061415284828501614119565b91505092915050565b6000819050919050565b600061418061417b614176846140ea565b61415b565b6140ea565b9050919050565b61419081614165565b82525050565b60006020820190506141ab6000830184614187565b92915050565b6000819050919050565b6141c4816141b1565b82525050565b60006020820190506141df60008301846141bb565b92915050565b60008115159050919050565b6141fa816141e5565b82525050565b600060208201905061421560008301846141f1565b92915050565b6000819050919050565b61422e8161421b565b82525050565b60006020820190506142496000830184614225565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061427a8261424f565b9050919050565b61428a8161426f565b811461429557600080fd5b50565b6000813590506142a781614281565b92915050565b6000602082840312156142c3576142c26140e0565b5b60006142d184828501614298565b91505092915050565b6142e38161421b565b81146142ee57600080fd5b50565b600081359050614300816142da565b92915050565b6000806040838503121561431d5761431c6140e0565b5b600061432b858286016142f1565b925050602061433c85828601614298565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614380578082015181840152602081019050614365565b60008484015250505050565b6000601f19601f8301169050919050565b60006143a882614346565b6143b28185614351565b93506143c2818560208601614362565b6143cb8161438c565b840191505092915050565b600060208201905081810360008301526143f0818461439d565b905092915050565b600061441361440e6144098461424f565b61415b565b61424f565b9050919050565b6000614425826143f8565b9050919050565b60006144378261441a565b9050919050565b6144478161442c565b82525050565b6000602082019050614462600083018461443e565b92915050565b614471816141b1565b811461447c57600080fd5b50565b60008135905061448e81614468565b92915050565b6000602082840312156144aa576144a96140e0565b5b60006144b88482850161447f565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6144fe8261438c565b810181811067ffffffffffffffff8211171561451d5761451c6144c6565b5b80604052505050565b60006145306140d6565b905061453c82826144f5565b919050565b6003811061454e57600080fd5b50565b60008135905061456081614541565b92915050565b60006040828403121561457c5761457b6144c1565b5b6145866040614526565b9050600061459684828501614119565b60008301525060206145aa84828501614551565b60208301525092915050565b6000604082840312156145cc576145cb6140e0565b5b60006145da84828501614566565b91505092915050565b6145ec81614165565b82525050565b6145fb8161426f565b82525050565b61460a816141b1565b82525050565b60a08201600082015161462660008501826145e3565b50602082015161463960208501826145f2565b50604082015161464c60408501826145f2565b50606082015161465f6060850182614601565b5060808201516146726080850182614601565b50505050565b600060a08201905061468d6000830184614610565b92915050565b600061469e8261441a565b9050919050565b6146ae81614693565b82525050565b60006020820190506146c960008301846146a5565b92915050565b60006146da8261426f565b9050919050565b6146ea816146cf565b81146146f557600080fd5b50565b600081359050614707816146e1565b92915050565b600060208284031215614723576147226140e0565b5b6000614731848285016146f8565b91505092915050565b60006147458261441a565b9050919050565b6147558161473a565b82525050565b6000602082019050614770600083018461474c565b92915050565b60006020828403121561478c5761478b6140e0565b5b600061479a848285016142f1565b91505092915050565b6147ac8161426f565b82525050565b60006020820190506147c760008301846147a3565b92915050565b6000806000606084860312156147e6576147e56140e0565b5b60006147f486828701614119565b935050602061480586828701614298565b925050604061481686828701614298565b9150509250925092565b600060a08284031215614836576148356144c1565b5b61484060a0614526565b9050600061485084828501614119565b600083015250602061486484828501614119565b60208301525060406148788482850161447f565b604083015250606061488c84828501614298565b60608301525060806148a084828501614298565b60808301525092915050565b60008060008060008061014087890312156148ca576148c96140e0565b5b60006148d889828a01614820565b96505060a06148e989828a01614298565b95505060c06148fa89828a0161447f565b94505060e061490b89828a0161447f565b93505061010061491d89828a0161447f565b92505061012061492f89828a01614119565b9150509295509295509295565b60008060408385031215614953576149526140e0565b5b6000614961858286016142f1565b92505060206149728582860161447f565b9150509250929050565b600080fd5b600080fd5b600067ffffffffffffffff8211156149a1576149a06144c6565b5b6149aa8261438c565b9050602081019050919050565b82818337600083830152505050565b60006149d96149d484614986565b614526565b9050828152602081018484840111156149f5576149f4614981565b5b614a008482856149b7565b509392505050565b600082601f830112614a1d57614a1c61497c565b5b8135614a2d8482602086016149c6565b91505092915050565b600060208284031215614a4c57614a4b6140e0565b5b600082013567ffffffffffffffff811115614a6a57614a696140e5565b5b614a7684828501614a08565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000614aa682614a7f565b614ab08185614a8a565b9350614ac0818560208601614362565b614ac98161438c565b840191505092915050565b60006020820190508181036000830152614aee8184614a9b565b905092915050565b60008060408385031215614b0d57614b0c6140e0565b5b6000614b1b85828601614119565b9250506020614b2c85828601614119565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110614b7657614b75614b36565b5b50565b6000819050614b8782614b65565b919050565b6000614b9782614b79565b9050919050565b614ba781614b8c565b82525050565b61012082016000820151614bc460008501826145e3565b506020820151614bd76020850182614b9e565b506040820151614bea6040850182614601565b506060820151614bfd6060850182614601565b506080820151614c106080850182614601565b5060a0820151614c2360a0850182614601565b5060c0820151614c3660c0850182614601565b5060e0820151614c4960e0850182614601565b50610100820151614c5e610100850182614601565b50505050565b600061012082019050614c7a6000830184614bad565b92915050565b614c898161421b565b82525050565b600082825260208201905092915050565b6000614cab82614a7f565b614cb58185614c8f565b9350614cc5818560208601614362565b614cce8161438c565b840191505092915050565b614ce2816141e5565b82525050565b6000606083016000830151614d006000860182614c80565b5060208301518482036020860152614d188282614ca0565b9150506040830151614d2d6040860182614cd9565b508091505092915050565b60006020820190508181036000830152614d528184614ce8565b905092915050565b60038110614d6b57614d6a614b36565b5b50565b6000819050614d7c82614d5a565b919050565b6000614d8c82614d6e565b9050919050565b614d9c81614d81565b82525050565b604082016000820151614db860008501826145e3565b506020820151614dcb6020850182614d93565b50505050565b6000604082019050614de66000830184614da2565b92915050565b600081519050614dfb81614468565b92915050565b600060208284031215614e1757614e166140e0565b5b6000614e2584828501614dec565b91505092915050565b7f4552524f523a5052442d3030313a52454749535452595f5a45524f0000000000600082015250565b6000614e64601b83614a8a565b9150614e6f82614e2e565b602082019050919050565b60006020820190508181036000830152614e9381614e57565b9050919050565b600081519050614ea981614102565b92915050565b600060208284031215614ec557614ec46140e0565b5b6000614ed384828501614e9a565b91505092915050565b614ee581614165565b82525050565b6000602082019050614f006000830184614edc565b92915050565b614f0f816141e5565b8114614f1a57600080fd5b50565b600081519050614f2c81614f06565b92915050565b600060208284031215614f4857614f476140e0565b5b6000614f5684828501614f1d565b91505092915050565b600081519050614f6e81614281565b92915050565b600060208284031215614f8a57614f896140e0565b5b6000614f9884828501614f5f565b91505092915050565b7f4552524f523a41434d2d3030313a4e4f545f4f574e4552000000000000000000600082015250565b6000614fd7601783614a8a565b9150614fe282614fa1565b602082019050919050565b6000602082019050818103600083015261500681614fca565b9050919050565b7f4552524f523a41434d2d3031303a524f4c455f4e4f545f4558495354494e4700600082015250565b6000615043601f83614a8a565b915061504e8261500d565b602082019050919050565b6000602082019050818103600083015261507281615036565b9050919050565b7f4552524f523a41434d2d3031313a524f4c455f4e4f545f414354495645000000600082015250565b60006150af601d83614a8a565b91506150ba82615079565b602082019050919050565b600060208201905081810360008301526150de816150a2565b9050919050565b60006060820190506150fa6000830186614225565b61510760208301856147a3565b61511460408301846141f1565b949350505050565b6000819050919050565b600060ff82169050919050565b600061514e6151496151448461511c565b61415b565b615126565b9050919050565b61515e81615133565b82525050565b60006020820190506151796000830184615155565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500600082015250565b60006151e4601f83614a8a565b91506151ef826151ae565b602082019050919050565b60006020820190508181036000830152615213816151d7565b9050919050565b7f4552524f523a434d502d3030363a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b6000615250601f83614a8a565b915061525b8261521a565b602082019050919050565b6000602082019050818103600083015261527f81615243565b9050919050565b600060408201905061529b6000830185614225565b6152a860208301846147a3565b9392505050565b7f4552524f523a434d502d3030343a545950455f524f4c455f4d495353494e4700600082015250565b60006152e5601f83614a8a565b91506152f0826152af565b602082019050919050565b60006020820190508181036000830152615314816152d8565b9050919050565b60006153268261426f565b9050919050565b6153368161531b565b811461534157600080fd5b50565b6000815190506153538161532d565b92915050565b60006020828403121561536f5761536e6140e0565b5b600061537d84828501615344565b91505092915050565b7f4552524f523a434d502d3030353a504f4f4c5f554e4b4e4f574e000000000000600082015250565b60006153bc601a83614a8a565b91506153c782615386565b602082019050919050565b600060208201905081810360008301526153eb816153af565b9050919050565b60006060820190506154076000830186614187565b61541460208301856147a3565b61542160408301846147a3565b949350505050565b600081519050615438816142da565b92915050565b600060208284031215615454576154536140e0565b5b600061546284828501615429565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806154b257607f821691505b6020821081036154c5576154c461546b565b5b50919050565b7f4552524f523a414f532d3030313a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b6000615527602183614a8a565b9150615532826154cb565b604082019050919050565b600060208201905081810360008301526155568161551a565b9050919050565b7f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f53455256494360008201527f4500000000000000000000000000000000000000000000000000000000000000602082015250565b60006155b9602183614a8a565b91506155c48261555d565b604082019050919050565b600060208201905081810360008301526155e8816155ac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000615629826141b1565b9150615634836141b1565b925082820190508082111561564c5761564b6155ef565b5b92915050565b7f4552524f523a504c2d3030313a414c52454144595f4352454154454400000000600082015250565b6000615688601c83614a8a565b915061569382615652565b602082019050919050565b600060208201905081810360008301526156b78161567b565b9050919050565b600060a082840312156156d4576156d36144c1565b5b6156de60a0614526565b905060006156ee84828501614e9a565b600083015250602061570284828501614e9a565b602083015250604061571684828501614dec565b604083015250606061572a84828501614f5f565b606083015250608061573e84828501614f5f565b60808301525092915050565b600060a082840312156157605761575f6140e0565b5b600061576e848285016156be565b91505092915050565b600060608201905061578c6000830186614187565b61579960208301856141bb565b6157a660408301846147a3565b949350505050565b7f4552524f523a504c2d3030323a504f4f4c5f554e4b4e4f574e00000000000000600082015250565b60006157e4601983614a8a565b91506157ef826157ae565b602082019050919050565b60006020820190508181036000830152615813816157d7565b9050919050565b6005811061582757600080fd5b50565b6000815190506158398161581a565b92915050565b60006101208284031215615856576158556144c1565b5b615861610120614526565b9050600061587184828501614e9a565b60008301525060206158858482850161582a565b602083015250604061589984828501614dec565b60408301525060606158ad84828501614dec565b60608301525060806158c184828501614dec565b60808301525060a06158d584828501614dec565b60a08301525060c06158e984828501614dec565b60c08301525060e06158fd84828501614dec565b60e08301525061010061591284828501614dec565b6101008301525092915050565b60006101208284031215615936576159356140e0565b5b60006159448482850161583f565b91505092915050565b6000615958826141b1565b9150615963836141b1565b925082820390508181111561597b5761597a6155ef565b5b92915050565b7f4552524f523a504c2d3030333a43415041434954595f544f4f5f4c4f57000000600082015250565b60006159b7601d83614a8a565b91506159c282615981565b602082019050919050565b600060208201905081810360008301526159e6816159aa565b9050919050565b7f4552524f523a41434d2d3032303a524f4c455f4e4f545f4558495354494e4700600082015250565b6000615a23601f83614a8a565b9150615a2e826159ed565b602082019050919050565b60006020820190508181036000830152615a5281615a16565b9050919050565b7f4552524f523a414f532d3030323a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b6000615ab5602183614a8a565b9150615ac082615a59565b604082019050919050565b60006020820190508181036000830152615ae481615aa8565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302615b4d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615b10565b615b578683615b10565b95508019841693508086168417925050509392505050565b6000615b8a615b85615b80846141b1565b61415b565b6141b1565b9050919050565b6000819050919050565b615ba483615b6f565b615bb8615bb082615b91565b848454615b1d565b825550505050565b600090565b615bcd615bc0565b615bd8818484615b9b565b505050565b5b81811015615bfc57615bf1600082615bc5565b600181019050615bde565b5050565b601f821115615c4157615c1281615aeb565b615c1b84615b00565b81016020851015615c2a578190505b615c3e615c3685615b00565b830182615bdd565b50505b505050565b600082821c905092915050565b6000615c6460001984600802615c46565b1980831691505092915050565b6000615c7d8383615c53565b9150826002028217905092915050565b615c9682614a7f565b67ffffffffffffffff811115615caf57615cae6144c6565b5b615cb9825461549a565b615cc4828285615c00565b600060209050601f831160018114615cf75760008415615ce5578287015190505b615cef8582615c71565b865550615d57565b601f198416615d0586615aeb565b60005b82811015615d2d57848901518255600182019150602085019450602081019050615d08565b86831015615d4a5784890151615d46601f891682615c53565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220eb5ab8d02cc88b61576dd4ee5c0cda445726ffe4d444af8368ce6ca497db582264736f6c63430008140033",
|
1007
|
-
"linkReferences": {
|
1008
|
-
"contracts/types/NftId.sol": {
|
1009
|
-
"NftIdLib": [
|
1010
|
-
{
|
1011
|
-
"length": 20,
|
1012
|
-
"start": 5414
|
1013
|
-
},
|
1426
|
+
},
|
1427
|
+
{
|
1428
|
+
"inputs": [
|
1014
1429
|
{
|
1015
|
-
"
|
1016
|
-
"
|
1430
|
+
"internalType": "RoleId",
|
1431
|
+
"name": "role",
|
1432
|
+
"type": "bytes8"
|
1017
1433
|
},
|
1434
|
+
{
|
1435
|
+
"internalType": "address",
|
1436
|
+
"name": "member",
|
1437
|
+
"type": "address"
|
1438
|
+
}
|
1439
|
+
],
|
1440
|
+
"name": "hasRole",
|
1441
|
+
"outputs": [
|
1442
|
+
{
|
1443
|
+
"internalType": "bool",
|
1444
|
+
"name": "",
|
1445
|
+
"type": "bool"
|
1446
|
+
}
|
1447
|
+
],
|
1448
|
+
"stateMutability": "view",
|
1449
|
+
"type": "function"
|
1450
|
+
},
|
1451
|
+
{
|
1452
|
+
"inputs": [
|
1453
|
+
{
|
1454
|
+
"internalType": "NftId",
|
1455
|
+
"name": "productNftId",
|
1456
|
+
"type": "uint96"
|
1457
|
+
}
|
1458
|
+
],
|
1459
|
+
"name": "hasTreasuryInfo",
|
1460
|
+
"outputs": [
|
1461
|
+
{
|
1462
|
+
"internalType": "bool",
|
1463
|
+
"name": "hasInfo",
|
1464
|
+
"type": "bool"
|
1465
|
+
}
|
1466
|
+
],
|
1467
|
+
"stateMutability": "view",
|
1468
|
+
"type": "function"
|
1469
|
+
},
|
1470
|
+
{
|
1471
|
+
"inputs": [
|
1472
|
+
{
|
1473
|
+
"internalType": "address",
|
1474
|
+
"name": "implementation",
|
1475
|
+
"type": "address"
|
1476
|
+
},
|
1477
|
+
{
|
1478
|
+
"internalType": "address",
|
1479
|
+
"name": "activatedBy",
|
1480
|
+
"type": "address"
|
1481
|
+
},
|
1482
|
+
{
|
1483
|
+
"internalType": "bytes",
|
1484
|
+
"name": "data",
|
1485
|
+
"type": "bytes"
|
1486
|
+
}
|
1487
|
+
],
|
1488
|
+
"name": "initialize",
|
1489
|
+
"outputs": [],
|
1490
|
+
"stateMutability": "nonpayable",
|
1491
|
+
"type": "function"
|
1492
|
+
},
|
1493
|
+
{
|
1494
|
+
"inputs": [
|
1495
|
+
{
|
1496
|
+
"internalType": "Version",
|
1497
|
+
"name": "_version",
|
1498
|
+
"type": "uint24"
|
1499
|
+
}
|
1500
|
+
],
|
1501
|
+
"name": "isInitialized",
|
1502
|
+
"outputs": [
|
1503
|
+
{
|
1504
|
+
"internalType": "bool",
|
1505
|
+
"name": "",
|
1506
|
+
"type": "bool"
|
1507
|
+
}
|
1508
|
+
],
|
1509
|
+
"stateMutability": "view",
|
1510
|
+
"type": "function"
|
1511
|
+
},
|
1512
|
+
{
|
1513
|
+
"inputs": [
|
1514
|
+
{
|
1515
|
+
"internalType": "NftId",
|
1516
|
+
"name": "nftId",
|
1517
|
+
"type": "uint96"
|
1518
|
+
},
|
1519
|
+
{
|
1520
|
+
"internalType": "contract IERC20Metadata",
|
1521
|
+
"name": "token",
|
1522
|
+
"type": "address"
|
1523
|
+
},
|
1524
|
+
{
|
1525
|
+
"internalType": "address",
|
1526
|
+
"name": "wallet",
|
1527
|
+
"type": "address"
|
1528
|
+
}
|
1529
|
+
],
|
1530
|
+
"name": "registerComponent",
|
1531
|
+
"outputs": [],
|
1532
|
+
"stateMutability": "nonpayable",
|
1533
|
+
"type": "function"
|
1534
|
+
},
|
1535
|
+
{
|
1536
|
+
"inputs": [
|
1537
|
+
{
|
1538
|
+
"internalType": "NftId",
|
1539
|
+
"name": "nftId",
|
1540
|
+
"type": "uint96"
|
1541
|
+
},
|
1542
|
+
{
|
1543
|
+
"components": [
|
1544
|
+
{
|
1545
|
+
"internalType": "bool",
|
1546
|
+
"name": "isVerifying",
|
1547
|
+
"type": "bool"
|
1548
|
+
},
|
1549
|
+
{
|
1550
|
+
"internalType": "UFixed",
|
1551
|
+
"name": "collateralizationLevel",
|
1552
|
+
"type": "uint256"
|
1553
|
+
}
|
1554
|
+
],
|
1555
|
+
"internalType": "struct IPool.PoolInfo",
|
1556
|
+
"name": "info",
|
1557
|
+
"type": "tuple"
|
1558
|
+
}
|
1559
|
+
],
|
1560
|
+
"name": "registerPool",
|
1561
|
+
"outputs": [],
|
1562
|
+
"stateMutability": "nonpayable",
|
1563
|
+
"type": "function"
|
1564
|
+
},
|
1565
|
+
{
|
1566
|
+
"inputs": [
|
1567
|
+
{
|
1568
|
+
"internalType": "NftId",
|
1569
|
+
"name": "productNftId",
|
1570
|
+
"type": "uint96"
|
1571
|
+
},
|
1572
|
+
{
|
1573
|
+
"components": [
|
1574
|
+
{
|
1575
|
+
"internalType": "NftId",
|
1576
|
+
"name": "poolNftId",
|
1577
|
+
"type": "uint96"
|
1578
|
+
},
|
1579
|
+
{
|
1580
|
+
"internalType": "NftId",
|
1581
|
+
"name": "distributionNftId",
|
1582
|
+
"type": "uint96"
|
1583
|
+
},
|
1584
|
+
{
|
1585
|
+
"internalType": "contract IERC20Metadata",
|
1586
|
+
"name": "token",
|
1587
|
+
"type": "address"
|
1588
|
+
},
|
1589
|
+
{
|
1590
|
+
"components": [
|
1591
|
+
{
|
1592
|
+
"internalType": "UFixed",
|
1593
|
+
"name": "fractionalFee",
|
1594
|
+
"type": "uint256"
|
1595
|
+
},
|
1596
|
+
{
|
1597
|
+
"internalType": "uint256",
|
1598
|
+
"name": "fixedFee",
|
1599
|
+
"type": "uint256"
|
1600
|
+
}
|
1601
|
+
],
|
1602
|
+
"internalType": "struct Fee",
|
1603
|
+
"name": "productFee",
|
1604
|
+
"type": "tuple"
|
1605
|
+
},
|
1606
|
+
{
|
1607
|
+
"components": [
|
1608
|
+
{
|
1609
|
+
"internalType": "UFixed",
|
1610
|
+
"name": "fractionalFee",
|
1611
|
+
"type": "uint256"
|
1612
|
+
},
|
1613
|
+
{
|
1614
|
+
"internalType": "uint256",
|
1615
|
+
"name": "fixedFee",
|
1616
|
+
"type": "uint256"
|
1617
|
+
}
|
1618
|
+
],
|
1619
|
+
"internalType": "struct Fee",
|
1620
|
+
"name": "processingFee",
|
1621
|
+
"type": "tuple"
|
1622
|
+
},
|
1623
|
+
{
|
1624
|
+
"components": [
|
1625
|
+
{
|
1626
|
+
"internalType": "UFixed",
|
1627
|
+
"name": "fractionalFee",
|
1628
|
+
"type": "uint256"
|
1629
|
+
},
|
1630
|
+
{
|
1631
|
+
"internalType": "uint256",
|
1632
|
+
"name": "fixedFee",
|
1633
|
+
"type": "uint256"
|
1634
|
+
}
|
1635
|
+
],
|
1636
|
+
"internalType": "struct Fee",
|
1637
|
+
"name": "poolFee",
|
1638
|
+
"type": "tuple"
|
1639
|
+
},
|
1640
|
+
{
|
1641
|
+
"components": [
|
1642
|
+
{
|
1643
|
+
"internalType": "UFixed",
|
1644
|
+
"name": "fractionalFee",
|
1645
|
+
"type": "uint256"
|
1646
|
+
},
|
1647
|
+
{
|
1648
|
+
"internalType": "uint256",
|
1649
|
+
"name": "fixedFee",
|
1650
|
+
"type": "uint256"
|
1651
|
+
}
|
1652
|
+
],
|
1653
|
+
"internalType": "struct Fee",
|
1654
|
+
"name": "stakingFee",
|
1655
|
+
"type": "tuple"
|
1656
|
+
},
|
1657
|
+
{
|
1658
|
+
"components": [
|
1659
|
+
{
|
1660
|
+
"internalType": "UFixed",
|
1661
|
+
"name": "fractionalFee",
|
1662
|
+
"type": "uint256"
|
1663
|
+
},
|
1664
|
+
{
|
1665
|
+
"internalType": "uint256",
|
1666
|
+
"name": "fixedFee",
|
1667
|
+
"type": "uint256"
|
1668
|
+
}
|
1669
|
+
],
|
1670
|
+
"internalType": "struct Fee",
|
1671
|
+
"name": "performanceFee",
|
1672
|
+
"type": "tuple"
|
1673
|
+
},
|
1674
|
+
{
|
1675
|
+
"components": [
|
1676
|
+
{
|
1677
|
+
"internalType": "UFixed",
|
1678
|
+
"name": "fractionalFee",
|
1679
|
+
"type": "uint256"
|
1680
|
+
},
|
1681
|
+
{
|
1682
|
+
"internalType": "uint256",
|
1683
|
+
"name": "fixedFee",
|
1684
|
+
"type": "uint256"
|
1685
|
+
}
|
1686
|
+
],
|
1687
|
+
"internalType": "struct Fee",
|
1688
|
+
"name": "distributionFee",
|
1689
|
+
"type": "tuple"
|
1690
|
+
}
|
1691
|
+
],
|
1692
|
+
"internalType": "struct ITreasury.TreasuryInfo",
|
1693
|
+
"name": "setup",
|
1694
|
+
"type": "tuple"
|
1695
|
+
}
|
1696
|
+
],
|
1697
|
+
"name": "registerProductSetup",
|
1698
|
+
"outputs": [],
|
1699
|
+
"stateMutability": "nonpayable",
|
1700
|
+
"type": "function"
|
1701
|
+
},
|
1702
|
+
{
|
1703
|
+
"inputs": [
|
1704
|
+
{
|
1705
|
+
"internalType": "NftId",
|
1706
|
+
"name": "bundleNftId",
|
1707
|
+
"type": "uint96"
|
1708
|
+
},
|
1709
|
+
{
|
1710
|
+
"internalType": "NftId",
|
1711
|
+
"name": "policyNftId",
|
1712
|
+
"type": "uint96"
|
1713
|
+
}
|
1714
|
+
],
|
1715
|
+
"name": "releasePolicy",
|
1716
|
+
"outputs": [
|
1717
|
+
{
|
1718
|
+
"internalType": "uint256",
|
1719
|
+
"name": "collateralAmount",
|
1720
|
+
"type": "uint256"
|
1721
|
+
}
|
1722
|
+
],
|
1723
|
+
"stateMutability": "nonpayable",
|
1724
|
+
"type": "function"
|
1725
|
+
},
|
1726
|
+
{
|
1727
|
+
"inputs": [
|
1728
|
+
{
|
1729
|
+
"internalType": "RoleId",
|
1730
|
+
"name": "role",
|
1731
|
+
"type": "bytes8"
|
1732
|
+
},
|
1733
|
+
{
|
1734
|
+
"internalType": "address",
|
1735
|
+
"name": "member",
|
1736
|
+
"type": "address"
|
1737
|
+
}
|
1738
|
+
],
|
1739
|
+
"name": "revokeRole",
|
1740
|
+
"outputs": [],
|
1741
|
+
"stateMutability": "nonpayable",
|
1742
|
+
"type": "function"
|
1743
|
+
},
|
1744
|
+
{
|
1745
|
+
"inputs": [
|
1746
|
+
{
|
1747
|
+
"internalType": "RoleId",
|
1748
|
+
"name": "role",
|
1749
|
+
"type": "bytes8"
|
1750
|
+
}
|
1751
|
+
],
|
1752
|
+
"name": "roleExists",
|
1753
|
+
"outputs": [
|
1754
|
+
{
|
1755
|
+
"internalType": "bool",
|
1756
|
+
"name": "",
|
1757
|
+
"type": "bool"
|
1758
|
+
}
|
1759
|
+
],
|
1760
|
+
"stateMutability": "view",
|
1761
|
+
"type": "function"
|
1762
|
+
},
|
1763
|
+
{
|
1764
|
+
"inputs": [
|
1765
|
+
{
|
1766
|
+
"internalType": "NftId",
|
1767
|
+
"name": "bundleNftId",
|
1768
|
+
"type": "uint96"
|
1769
|
+
},
|
1770
|
+
{
|
1771
|
+
"components": [
|
1772
|
+
{
|
1773
|
+
"internalType": "NftId",
|
1774
|
+
"name": "poolNftId",
|
1775
|
+
"type": "uint96"
|
1776
|
+
},
|
1777
|
+
{
|
1778
|
+
"components": [
|
1779
|
+
{
|
1780
|
+
"internalType": "UFixed",
|
1781
|
+
"name": "fractionalFee",
|
1782
|
+
"type": "uint256"
|
1783
|
+
},
|
1784
|
+
{
|
1785
|
+
"internalType": "uint256",
|
1786
|
+
"name": "fixedFee",
|
1787
|
+
"type": "uint256"
|
1788
|
+
}
|
1789
|
+
],
|
1790
|
+
"internalType": "struct Fee",
|
1791
|
+
"name": "fee",
|
1792
|
+
"type": "tuple"
|
1793
|
+
},
|
1794
|
+
{
|
1795
|
+
"internalType": "bytes",
|
1796
|
+
"name": "filter",
|
1797
|
+
"type": "bytes"
|
1798
|
+
},
|
1799
|
+
{
|
1800
|
+
"internalType": "uint256",
|
1801
|
+
"name": "capitalAmount",
|
1802
|
+
"type": "uint256"
|
1803
|
+
},
|
1804
|
+
{
|
1805
|
+
"internalType": "uint256",
|
1806
|
+
"name": "lockedAmount",
|
1807
|
+
"type": "uint256"
|
1808
|
+
},
|
1809
|
+
{
|
1810
|
+
"internalType": "uint256",
|
1811
|
+
"name": "balanceAmount",
|
1812
|
+
"type": "uint256"
|
1813
|
+
},
|
1814
|
+
{
|
1815
|
+
"internalType": "Timestamp",
|
1816
|
+
"name": "expiredAt",
|
1817
|
+
"type": "uint40"
|
1818
|
+
},
|
1819
|
+
{
|
1820
|
+
"internalType": "Timestamp",
|
1821
|
+
"name": "closedAt",
|
1822
|
+
"type": "uint40"
|
1823
|
+
}
|
1824
|
+
],
|
1825
|
+
"internalType": "struct IBundle.BundleInfo",
|
1826
|
+
"name": "info",
|
1827
|
+
"type": "tuple"
|
1828
|
+
}
|
1829
|
+
],
|
1830
|
+
"name": "setBundleInfo",
|
1831
|
+
"outputs": [],
|
1832
|
+
"stateMutability": "nonpayable",
|
1833
|
+
"type": "function"
|
1834
|
+
},
|
1835
|
+
{
|
1836
|
+
"inputs": [
|
1837
|
+
{
|
1838
|
+
"internalType": "NftId",
|
1839
|
+
"name": "policyNftId",
|
1840
|
+
"type": "uint96"
|
1841
|
+
},
|
1842
|
+
{
|
1843
|
+
"components": [
|
1844
|
+
{
|
1845
|
+
"internalType": "NftId",
|
1846
|
+
"name": "productNftId",
|
1847
|
+
"type": "uint96"
|
1848
|
+
},
|
1849
|
+
{
|
1850
|
+
"internalType": "NftId",
|
1851
|
+
"name": "bundleNftId",
|
1852
|
+
"type": "uint96"
|
1853
|
+
},
|
1854
|
+
{
|
1855
|
+
"internalType": "ReferralId",
|
1856
|
+
"name": "referralId",
|
1857
|
+
"type": "bytes8"
|
1858
|
+
},
|
1859
|
+
{
|
1860
|
+
"internalType": "address",
|
1861
|
+
"name": "beneficiary",
|
1862
|
+
"type": "address"
|
1863
|
+
},
|
1864
|
+
{
|
1865
|
+
"internalType": "RiskId",
|
1866
|
+
"name": "riskId",
|
1867
|
+
"type": "bytes8"
|
1868
|
+
},
|
1869
|
+
{
|
1870
|
+
"internalType": "uint256",
|
1871
|
+
"name": "sumInsuredAmount",
|
1872
|
+
"type": "uint256"
|
1873
|
+
},
|
1874
|
+
{
|
1875
|
+
"internalType": "uint256",
|
1876
|
+
"name": "premiumAmount",
|
1877
|
+
"type": "uint256"
|
1878
|
+
},
|
1879
|
+
{
|
1880
|
+
"internalType": "uint256",
|
1881
|
+
"name": "premiumPaidAmount",
|
1882
|
+
"type": "uint256"
|
1883
|
+
},
|
1884
|
+
{
|
1885
|
+
"internalType": "uint256",
|
1886
|
+
"name": "lifetime",
|
1887
|
+
"type": "uint256"
|
1888
|
+
},
|
1889
|
+
{
|
1890
|
+
"internalType": "bytes",
|
1891
|
+
"name": "applicationData",
|
1892
|
+
"type": "bytes"
|
1893
|
+
},
|
1894
|
+
{
|
1895
|
+
"internalType": "bytes",
|
1896
|
+
"name": "policyData",
|
1897
|
+
"type": "bytes"
|
1898
|
+
},
|
1899
|
+
{
|
1900
|
+
"internalType": "Timestamp",
|
1901
|
+
"name": "activatedAt",
|
1902
|
+
"type": "uint40"
|
1903
|
+
},
|
1904
|
+
{
|
1905
|
+
"internalType": "Timestamp",
|
1906
|
+
"name": "expiredAt",
|
1907
|
+
"type": "uint40"
|
1908
|
+
},
|
1909
|
+
{
|
1910
|
+
"internalType": "Timestamp",
|
1911
|
+
"name": "closedAt",
|
1912
|
+
"type": "uint40"
|
1913
|
+
}
|
1914
|
+
],
|
1915
|
+
"internalType": "struct IPolicy.PolicyInfo",
|
1916
|
+
"name": "info",
|
1917
|
+
"type": "tuple"
|
1918
|
+
}
|
1919
|
+
],
|
1920
|
+
"name": "setPolicyInfo",
|
1921
|
+
"outputs": [],
|
1922
|
+
"stateMutability": "nonpayable",
|
1923
|
+
"type": "function"
|
1924
|
+
},
|
1925
|
+
{
|
1926
|
+
"inputs": [
|
1927
|
+
{
|
1928
|
+
"internalType": "RiskId",
|
1929
|
+
"name": "riskId",
|
1930
|
+
"type": "bytes8"
|
1931
|
+
},
|
1932
|
+
{
|
1933
|
+
"components": [
|
1934
|
+
{
|
1935
|
+
"internalType": "NftId",
|
1936
|
+
"name": "productNftId",
|
1937
|
+
"type": "uint96"
|
1938
|
+
},
|
1939
|
+
{
|
1940
|
+
"internalType": "bytes",
|
1941
|
+
"name": "data",
|
1942
|
+
"type": "bytes"
|
1943
|
+
}
|
1944
|
+
],
|
1945
|
+
"internalType": "struct IRisk.RiskInfo",
|
1946
|
+
"name": "info",
|
1947
|
+
"type": "tuple"
|
1948
|
+
}
|
1949
|
+
],
|
1950
|
+
"name": "setRiskInfo",
|
1951
|
+
"outputs": [],
|
1952
|
+
"stateMutability": "nonpayable",
|
1953
|
+
"type": "function"
|
1954
|
+
},
|
1955
|
+
{
|
1956
|
+
"inputs": [
|
1957
|
+
{
|
1958
|
+
"internalType": "RoleId",
|
1959
|
+
"name": "role",
|
1960
|
+
"type": "bytes8"
|
1961
|
+
},
|
1962
|
+
{
|
1963
|
+
"internalType": "bool",
|
1964
|
+
"name": "active",
|
1965
|
+
"type": "bool"
|
1966
|
+
}
|
1967
|
+
],
|
1968
|
+
"name": "setRoleState",
|
1969
|
+
"outputs": [],
|
1970
|
+
"stateMutability": "nonpayable",
|
1971
|
+
"type": "function"
|
1972
|
+
},
|
1973
|
+
{
|
1974
|
+
"inputs": [
|
1975
|
+
{
|
1976
|
+
"internalType": "NftId",
|
1977
|
+
"name": "productNftId",
|
1978
|
+
"type": "uint96"
|
1979
|
+
},
|
1980
|
+
{
|
1981
|
+
"components": [
|
1982
|
+
{
|
1983
|
+
"internalType": "NftId",
|
1984
|
+
"name": "poolNftId",
|
1985
|
+
"type": "uint96"
|
1986
|
+
},
|
1987
|
+
{
|
1988
|
+
"internalType": "NftId",
|
1989
|
+
"name": "distributionNftId",
|
1990
|
+
"type": "uint96"
|
1991
|
+
},
|
1992
|
+
{
|
1993
|
+
"internalType": "contract IERC20Metadata",
|
1994
|
+
"name": "token",
|
1995
|
+
"type": "address"
|
1996
|
+
},
|
1997
|
+
{
|
1998
|
+
"components": [
|
1999
|
+
{
|
2000
|
+
"internalType": "UFixed",
|
2001
|
+
"name": "fractionalFee",
|
2002
|
+
"type": "uint256"
|
2003
|
+
},
|
2004
|
+
{
|
2005
|
+
"internalType": "uint256",
|
2006
|
+
"name": "fixedFee",
|
2007
|
+
"type": "uint256"
|
2008
|
+
}
|
2009
|
+
],
|
2010
|
+
"internalType": "struct Fee",
|
2011
|
+
"name": "productFee",
|
2012
|
+
"type": "tuple"
|
2013
|
+
},
|
2014
|
+
{
|
2015
|
+
"components": [
|
2016
|
+
{
|
2017
|
+
"internalType": "UFixed",
|
2018
|
+
"name": "fractionalFee",
|
2019
|
+
"type": "uint256"
|
2020
|
+
},
|
2021
|
+
{
|
2022
|
+
"internalType": "uint256",
|
2023
|
+
"name": "fixedFee",
|
2024
|
+
"type": "uint256"
|
2025
|
+
}
|
2026
|
+
],
|
2027
|
+
"internalType": "struct Fee",
|
2028
|
+
"name": "processingFee",
|
2029
|
+
"type": "tuple"
|
2030
|
+
},
|
2031
|
+
{
|
2032
|
+
"components": [
|
2033
|
+
{
|
2034
|
+
"internalType": "UFixed",
|
2035
|
+
"name": "fractionalFee",
|
2036
|
+
"type": "uint256"
|
2037
|
+
},
|
2038
|
+
{
|
2039
|
+
"internalType": "uint256",
|
2040
|
+
"name": "fixedFee",
|
2041
|
+
"type": "uint256"
|
2042
|
+
}
|
2043
|
+
],
|
2044
|
+
"internalType": "struct Fee",
|
2045
|
+
"name": "poolFee",
|
2046
|
+
"type": "tuple"
|
2047
|
+
},
|
2048
|
+
{
|
2049
|
+
"components": [
|
2050
|
+
{
|
2051
|
+
"internalType": "UFixed",
|
2052
|
+
"name": "fractionalFee",
|
2053
|
+
"type": "uint256"
|
2054
|
+
},
|
2055
|
+
{
|
2056
|
+
"internalType": "uint256",
|
2057
|
+
"name": "fixedFee",
|
2058
|
+
"type": "uint256"
|
2059
|
+
}
|
2060
|
+
],
|
2061
|
+
"internalType": "struct Fee",
|
2062
|
+
"name": "stakingFee",
|
2063
|
+
"type": "tuple"
|
2064
|
+
},
|
2065
|
+
{
|
2066
|
+
"components": [
|
2067
|
+
{
|
2068
|
+
"internalType": "UFixed",
|
2069
|
+
"name": "fractionalFee",
|
2070
|
+
"type": "uint256"
|
2071
|
+
},
|
2072
|
+
{
|
2073
|
+
"internalType": "uint256",
|
2074
|
+
"name": "fixedFee",
|
2075
|
+
"type": "uint256"
|
2076
|
+
}
|
2077
|
+
],
|
2078
|
+
"internalType": "struct Fee",
|
2079
|
+
"name": "performanceFee",
|
2080
|
+
"type": "tuple"
|
2081
|
+
},
|
2082
|
+
{
|
2083
|
+
"components": [
|
2084
|
+
{
|
2085
|
+
"internalType": "UFixed",
|
2086
|
+
"name": "fractionalFee",
|
2087
|
+
"type": "uint256"
|
2088
|
+
},
|
2089
|
+
{
|
2090
|
+
"internalType": "uint256",
|
2091
|
+
"name": "fixedFee",
|
2092
|
+
"type": "uint256"
|
2093
|
+
}
|
2094
|
+
],
|
2095
|
+
"internalType": "struct Fee",
|
2096
|
+
"name": "distributionFee",
|
2097
|
+
"type": "tuple"
|
2098
|
+
}
|
2099
|
+
],
|
2100
|
+
"internalType": "struct ITreasury.TreasuryInfo",
|
2101
|
+
"name": "info",
|
2102
|
+
"type": "tuple"
|
2103
|
+
}
|
2104
|
+
],
|
2105
|
+
"name": "setTreasuryInfo",
|
2106
|
+
"outputs": [],
|
2107
|
+
"stateMutability": "nonpayable",
|
2108
|
+
"type": "function"
|
2109
|
+
},
|
2110
|
+
{
|
2111
|
+
"inputs": [
|
2112
|
+
{
|
2113
|
+
"internalType": "bytes4",
|
2114
|
+
"name": "interfaceId",
|
2115
|
+
"type": "bytes4"
|
2116
|
+
}
|
2117
|
+
],
|
2118
|
+
"name": "supportsInterface",
|
2119
|
+
"outputs": [
|
2120
|
+
{
|
2121
|
+
"internalType": "bool",
|
2122
|
+
"name": "",
|
2123
|
+
"type": "bool"
|
2124
|
+
}
|
2125
|
+
],
|
2126
|
+
"stateMutability": "view",
|
2127
|
+
"type": "function"
|
2128
|
+
},
|
2129
|
+
{
|
2130
|
+
"inputs": [
|
2131
|
+
{
|
2132
|
+
"internalType": "NftId",
|
2133
|
+
"name": "bundleNftId",
|
2134
|
+
"type": "uint96"
|
2135
|
+
},
|
2136
|
+
{
|
2137
|
+
"internalType": "StateId",
|
2138
|
+
"name": "state",
|
2139
|
+
"type": "uint8"
|
2140
|
+
}
|
2141
|
+
],
|
2142
|
+
"name": "updateBundleState",
|
2143
|
+
"outputs": [],
|
2144
|
+
"stateMutability": "nonpayable",
|
2145
|
+
"type": "function"
|
2146
|
+
},
|
2147
|
+
{
|
2148
|
+
"inputs": [
|
2149
|
+
{
|
2150
|
+
"internalType": "NftId",
|
2151
|
+
"name": "bundleNftId",
|
2152
|
+
"type": "uint96"
|
2153
|
+
},
|
2154
|
+
{
|
2155
|
+
"internalType": "StateId",
|
2156
|
+
"name": "state",
|
2157
|
+
"type": "uint8"
|
2158
|
+
}
|
2159
|
+
],
|
2160
|
+
"name": "updatePolicyState",
|
2161
|
+
"outputs": [],
|
2162
|
+
"stateMutability": "nonpayable",
|
2163
|
+
"type": "function"
|
2164
|
+
},
|
2165
|
+
{
|
2166
|
+
"inputs": [
|
2167
|
+
{
|
2168
|
+
"internalType": "RiskId",
|
2169
|
+
"name": "riskId",
|
2170
|
+
"type": "bytes8"
|
2171
|
+
},
|
2172
|
+
{
|
2173
|
+
"internalType": "StateId",
|
2174
|
+
"name": "state",
|
2175
|
+
"type": "uint8"
|
2176
|
+
}
|
2177
|
+
],
|
2178
|
+
"name": "updateRiskState",
|
2179
|
+
"outputs": [],
|
2180
|
+
"stateMutability": "nonpayable",
|
2181
|
+
"type": "function"
|
2182
|
+
},
|
2183
|
+
{
|
2184
|
+
"inputs": [
|
2185
|
+
{
|
2186
|
+
"internalType": "Key32",
|
2187
|
+
"name": "key",
|
2188
|
+
"type": "bytes32"
|
2189
|
+
},
|
2190
|
+
{
|
2191
|
+
"internalType": "StateId",
|
2192
|
+
"name": "state",
|
2193
|
+
"type": "uint8"
|
2194
|
+
}
|
2195
|
+
],
|
2196
|
+
"name": "updateState",
|
2197
|
+
"outputs": [],
|
2198
|
+
"stateMutability": "nonpayable",
|
2199
|
+
"type": "function"
|
2200
|
+
},
|
2201
|
+
{
|
2202
|
+
"inputs": [
|
2203
|
+
{
|
2204
|
+
"internalType": "address",
|
2205
|
+
"name": "implementation",
|
2206
|
+
"type": "address"
|
2207
|
+
},
|
2208
|
+
{
|
2209
|
+
"internalType": "address",
|
2210
|
+
"name": "activatedBy",
|
2211
|
+
"type": "address"
|
2212
|
+
},
|
2213
|
+
{
|
2214
|
+
"internalType": "bytes",
|
2215
|
+
"name": "data",
|
2216
|
+
"type": "bytes"
|
2217
|
+
}
|
2218
|
+
],
|
2219
|
+
"name": "upgrade",
|
2220
|
+
"outputs": [],
|
2221
|
+
"stateMutability": "nonpayable",
|
2222
|
+
"type": "function"
|
2223
|
+
}
|
2224
|
+
],
|
2225
|
+
"bytecode": "0x60806040523480156200001157600080fd5b5060405162008d6a38038062008d6a833981016040819052620000349162000c34565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff191660011790558282826200007d6200025a565b6040805160208101909152600081526200009e848460326001868662000313565b604051620000ac9062000c09565b604051809103906000f080158015620000c9573d6000803e3d6000fd5b50600180546001600160a01b0319166001600160a01b0392909216919091178155630de7806f60e41b60009081526020527f6a2871a87efe986e5081c6997e4facaad2d5b985b7721e8c5662aa9554947837805460ff191690911790556200013062000548565b5050505062000182620001486200073b60201b60201c565b60408051808201909152601581527f446973747269627574696f6e4f776e6572526f6c6500000000000000000000006020820152620007e3565b620001bc6200019062000855565b60408051808201909152600f81526e4f7261636c654f776e6572526f6c6560881b6020820152620007e3565b620001f4620001ca620008b0565b60408051808201909152600d81526c506f6f6c4f776e6572526f6c6560981b6020820152620007e3565b6200022f6200020262000909565b60408051808201909152601081526f50726f647563744f776e6572526f6c6560801b6020820152620007e3565b5050600154600a80546001600160a01b0319166001600160a01b039092169190911790555062000f5c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620002ab5760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146200030b5780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b905090565b6001600160a01b0386166200036f5760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a5247422d3031303a52454749535452595f5a45524f000000000060448201526064015b60405180910390fd5b6040516301ffc9a760e01b8152636882e63f60e11b600482015286906001600160a01b038216906301ffc9a790602401602060405180830381865afa158015620003bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003e3919062000c8c565b620004315760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a5247422d3031313a4e4f545f5245474953545259000000000000604482015260640162000366565b6001600160a01b03818116600160a01b6001600160601b0389168102919091177f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3009081557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30180546001600160a01b031961ffff60a01b1990911660ff8b1690940260ff60a81b191693909317600160a81b8915150217929092169286169290921790557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30262000501848262000d5c565b5063a6d3826560e01b60009081526020527f164a5a3a3a16df858f794c5fc01b962add2c2151ae53ddb31581eabdf1156730805460ff191660011790555050505050505050565b60006200055462000965565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015620005aa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005d0919062000e28565b9050620006196040518060400160405280601581526020017f436f6d706f6e656e744f776e657253657276696365000000000000000000000081525082620009ed60201b60201c565b600280546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152601381527f446973747269627574696f6e53657276696365000000000000000000000000006020820152620006799082620009ed565b600380546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152600e81526d50726f647563745365727669636560901b6020820152620006ca9082620009ed565b600480546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152600b81526a506f6f6c5365727669636560a81b6020820152620007189082620009ed565b600580546001600160a01b0319166001600160a01b039290921691909117905550565b60405163e14787cb60e01b815260206004820152601560248201527f446973747269627574696f6e4f776e6572526f6c650000000000000000000000604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906064015b602060405180830381865af4158015620007bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030e919062000e4d565b604080516060810182526001600160c01b03198416815260208101839052600191810191909152620008158162000acc565b7f34e1f82fc40bf14028ae2a3150f074e7715e20ed8e30e250f8789cee718c648583836040516200084892919062000ec1565b60405180910390a1505050565b60405163e14787cb60e01b815260206004820152600f60248201526e4f7261636c654f776e6572526f6c6560881b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906064016200079f565b60405163e14787cb60e01b815260206004820152600d60248201526c506f6f6c4f776e6572526f6c6560981b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906064016200079f565b60405163e14787cb60e01b815260206004820152601060248201526f50726f647563744f776e6572526f6c6560801b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906064016200079f565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015620009c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030e919062000ef0565b6000620009f962000baa565b6001600160a01b031663a3bcd81d84846040518363ffffffff1660e01b815260040162000a2892919062000f17565b602060405180830381865afa15801562000a46573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a6c919062000f3e565b90506001600160a01b03811662000ac65760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a494e532d3030313a4e4f545f5245474953544552454400000000604482015260640162000366565b92915050565b80516001600160c01b031981166000908152600660209081526040909120835181546001600160401b03191660c09190911c17815590830151839190600182019062000b19908262000d5c565b50604091909101516002909101805460ff191691151591909117905562000b408162000bde565b62000ba657600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600482040180546001600160401b0360039093166008026101000a928302191660c084901c929092029190911790555b5050565b60006200030e7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300546001600160a01b031690565b6001600160c01b0319818116600081815260066020526040812054909260c09190911b161462000ac6565b611f948062006dd683390190565b80516001600160a01b038116811462000c2f57600080fd5b919050565b60008060006060848603121562000c4a57600080fd5b62000c558462000c17565b60208501519093506001600160601b038116811462000c7357600080fd5b915062000c836040850162000c17565b90509250925092565b60006020828403121562000c9f57600080fd5b8151801515811462000cb057600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000ce257607f821691505b60208210810362000d0357634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000d5757600081815260208120601f850160051c8101602086101562000d325750805b601f850160051c820191505b8181101562000d535782815560010162000d3e565b5050505b505050565b81516001600160401b0381111562000d785762000d7862000cb7565b62000d908162000d89845462000ccd565b8462000d09565b602080601f83116001811462000dc8576000841562000daf5750858301515b600019600386901b1c1916600185901b17855562000d53565b600085815260208120601f198616915b8281101562000df95788860151825594840194600190910190840162000dd8565b508582101562000e185787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000e3b57600080fd5b815160ff8116811462000cb057600080fd5b60006020828403121562000e6057600080fd5b81516001600160c01b03198116811462000cb057600080fd5b6000815180845260005b8181101562000ea15760208185018101518683018201520162000e83565b506000602082860101526020601f19601f83011685010191505092915050565b6001600160c01b03198316815260406020820181905260009062000ee89083018462000e79565b949350505050565b60006020828403121562000f0357600080fd5b815162ffffff8116811462000cb057600080fd5b60408152600062000f2c604083018562000e79565b905060ff831660208301529392505050565b60006020828403121562000f5157600080fd5b62000cb08262000c17565b615e6a8062000f6c6000396000f3fe60806040523480156200001157600080fd5b5060043610620004515760003560e01c8063893d20e81162000241578063b9f36dde116200013d578063db70354c11620000c7578063ee0fdf711162000092578063ee0fdf711462000c55578063f274e87d1462000c6c578063f2b246c31462000c99578063fd143c761462000cbf578063fe1f18d61462000cd657600080fd5b8063db70354c1462000bf9578063e1f64d771462000c10578063e79597401462000c27578063ea5fa54b1462000c3e57600080fd5b8063cf5ccedb1162000108578063cf5ccedb1462000b8e578063cf7a1d771462000bb4578063d250185c1462000bcb578063dad73bed1462000be257600080fd5b8063b9f36dde1462000b28578063bd7d9d851462000b3f578063c2bf7d261462000b65578063ca600b1c1462000b7c57600080fd5b8063a310e2a311620001cb578063af17d38a1162000196578063af17d38a1462000aa9578063b3c650151462000ac0578063b88da7591462000ae3578063b89010821462000afa578063b8c510671462000b1157600080fd5b8063a310e2a31462000a2f578063a5a4fbbc1462000a64578063a745e3df1462000a7b578063a90be9071462000a9257600080fd5b806398457437116200020c57806398457437146200098a57806399fd467714620009a15780639ae31ff514620009e9578063a238accd1462000a1857600080fd5b8063893d20e8146200092a5780638d5d536e1462000934578063946dfcfe146200094b5780639675513d146200097357600080fd5b80634f42133311620003515780636b9bf08b11620002db5780637fec8b3111620002a65780637fec8b31146200088f5780638125ea9214620008a657806383d3331914620008b057806387c5658614620008b9578063887b1fa914620008f157600080fd5b80636b9bf08b14620008435780636fa29853146200085557806373617bf114620008675780637cef4842146200087e57600080fd5b80635d4345cc116200031c5780635d4345cc14620007db578063644c45e014620007f2578063674d0ccf146200081557806369a44a1b146200082c57600080fd5b80634f42133314620007545780635312fdc2146200076b57806357f80bbf146200079c5780635ab1bd5314620007d157600080fd5b80631a91887611620003df578063423eb9fa11620003aa578063423eb9fa14620005d25780634288121d14620005e757806342c74ed014620005f95780634793b4ab14620006105780634d459c90146200063657600080fd5b80631a918876146200056b5780631eff4b22146200059b578063278b381b14620005b2578063349195f914620005c957600080fd5b80630d0ccc5b11620004205780630d0ccc5b14620004f55780630d8e6e2c146200051b5780630d9b998d146200053a5780630fec111c146200055157600080fd5b806301ffc9a7146200045657806306a5298b146200049b57806307af0dc014620004b457806309648a9d14620004cb575b600080fd5b6200048662000467366004620040e1565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b620004b2620004ac3660046200426f565b62000ced565b005b620004b2620004c536600462004445565b62000d1c565b620004e2620004dc366004620045c7565b62000dd9565b60405160ff909116815260200162000492565b6200050c62000506366004620045e1565b62000e50565b60405190815260200162000492565b6200052562000ed9565b60405162ffffff909116815260200162000492565b620004b26200054b36600462004619565b62000f66565b6200055b62001109565b6040516200049292919062004706565b620005826200057c366004620047b2565b62001276565b6040516001600160a01b03909116815260200162000492565b6200050c60008051602062005dd583398151915281565b62000486620005c3366004620047b2565b620012a7565b600d546200050c565b620004b2620005e3366004620047d2565b5050565b6004546001600160a01b031662000582565b620004b26200060a3660046200426f565b620012b6565b6200062762000621366004620047b2565b620016a4565b60405162000492919062004872565b620006f6620006473660046200492d565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915260008051602062005e1583398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a00162000492565b62000486620007653660046200492d565b620016d1565b620007826200077c366004620045c7565b62001788565b6040516001600160c01b0319909116815260200162000492565b620007b3620007ad366004620047b2565b620017ca565b60408051825115158152602092830151928101929092520162000492565b62000582620017ff565b620004b2620007ec3660046200495d565b62001822565b620007fc620018cb565b6040516001600160601b03909116815260200162000492565b6200050c6200082636600462004990565b6200194a565b6200050c6200083d366004620047b2565b6200196e565b6005546001600160a01b031662000582565b6002546001600160a01b031662000582565b620004b262000878366004620049bf565b620019ff565b620004b2620005e336600462004a26565b620007fc620008a0366004620045c7565b62001ac4565b6200058262001b0c565b6007546200050c565b604080518082018252600080825260209182015281518083019092526011548252601254908201525b60405162000492919062004a47565b6200091b6200090236600462004990565b5060408051808201909152600081526060602082015290565b60405162000492919062004a5f565b6200058262001b26565b620004b26200094536600462004a97565b62001b32565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed901546200050c565b6200050c6200098436600462004b5e565b62001d2f565b620004b26200099b36600462004b91565b62001e99565b62000486620009b236600462004bd7565b6001600160c01b0319821660009081526008602090815260408083206001600160a01b038516845290915290205460ff1692915050565b620007fc620009fa366004620047b2565b6001600160601b039081166000908152600f60205260409020541690565b620004b262000a2936600462004c0a565b62002019565b6200058262000a40366004620047b2565b6001600160601b03166000908152601060205260409020546001600160a01b031690565b6200058262000a75366004620047b2565b62002086565b620004b262000a8c36600462004c32565b620020b2565b6200050c62000aa3366004620045c7565b62002218565b6200078262000aba36600462004c9b565b62002254565b62000aca620023dd565b6040516001600160401b03909116815260200162000492565b6200052562000af4366004620045c7565b62002400565b620004b262000b0b36600462004ce8565b62002455565b6200078262000b2236600462004c9b565b62002520565b620004b262000b3936600462004bd7565b620025a0565b62000b5662000b50366004620047b2565b62002709565b60405162000492919062004d1d565b620004b262000b7636600462004bd7565b6200279a565b6003546001600160a01b031662000582565b62000ba562000b9f36600462004990565b6200299a565b60405162000492919062004e5c565b620004b262000bc536600462004c32565b62002a98565b620008e262000bdc36600462004ea5565b62002bab565b620004b262000bf336600462004ec8565b62002c3a565b620007fc62000c0a36600462004efb565b62002e58565b620004b262000c2136600462004b91565b62002eef565b6200058262000c3836600462004f2a565b6200303d565b620004b262000c4f36600462004f4b565b62003062565b6200048662000c6636600462004990565b620031b3565b62000c8362000c7d36600462004f9d565b620031de565b6040805192835260208301919091520162000492565b62000cb062000caa366004620047b2565b62003275565b60405162000492919062004fcd565b620004b262000cd0366004620050b6565b62003339565b620004b262000ce73660046200495d565b620034b1565b620005e36065838360405160200162000d07919062004fcd565b60405160208183030381529060405262003586565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000d5d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d839190620051ae565b6001600160a01b0316336001600160a01b03161462000dbf5760405162461bcd60e51b815260040162000db690620051ce565b60405180910390fd5b620005e360d2838360405160200162000d07919062004d1d565b6001546040516309648a9d60e01b8152600481018390526000916001600160a01b0316906309648a9d90602401602060405180830381865afa15801562000e24573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e4a91906200520f565b92915050565b604051631488c84560e01b815260048101839052600082810b60248301529073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__90631488c84590604401602060405180830381865af415801562000eac573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ed291906200522f565b9392505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562000f3b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f61919062005249565b905090565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000fa7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fcd9190620051ae565b6001600160a01b0316336001600160a01b031614620010005760405162461bcd60e51b815260040162000db690620051ce565b6000604051806101c00160405280896001600160601b03168152602001836001600160601b03168152602001886001600160c01b031916815260200160006001600160a01b03168152602001876001600160c01b031916815260200186815260200185815260200160008152602001848152602001604051806020016040528060008152508152602001604051806020016040528060008152508152602001620010a8600090565b64ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff1690529050620010fe60d28a83604051602001620010e9919062004d1d565b6040516020818303038152906040526200367c565b505050505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201819052909160008051602062005dd583398151915290506040518060e001604052806200116a600090565b6001600160601b0390811682528354600160a01b908190049091166020830152600184015490810460ff9081166040840152600160a81b820416151560608301523060808301526001600160a01b031660a082015260028301805460c090920191620011d69062005269565b80601f0160208091040260200160405190810160405280929190818152602001828054620012049062005269565b8015620012555780601f10620012295761010080835404028352916020019162001255565b820191906000526020600020905b8154815290600101906020018083116200123757829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6000806200128760645b846200373b565b8060200190518101906200129c9190620052b2565b602001519392505050565b600062000e4a60658362003840565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620012f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200131b9190620051ae565b6001600160a01b0316336001600160a01b0316146200134e5760405162461bcd60e51b815260040162000db690620052fa565b80516020808301516001600160601b038516600090815260109092526040909120546001600160a01b031615620013df5760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031323a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000db6565b6001600160601b038281166000908152600f602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af41580156200144b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200147191906200533c565b620014c95760405162461bcd60e51b815260206004820152602160248201527f4552524f523a5452532d3031333a504f4f4c5f414c52454144595f4c494e4b456044820152601160fa1b606482015260840162000db6565b6001600160601b038181166000908152600f602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af415801562001535573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200155b91906200533c565b620015bb5760405162461bcd60e51b815260206004820152602960248201527f4552524f523a5452532d3031343a434f4d50454e534154494f4e5f414c524541604482015268111657d3125392d15160ba1b606482015260840162000db6565b838360400151604051620015cf906200405b565b6001600160601b0390921682526001600160a01b03166020820152604001604051809103906000f0801580156200160a573d6000803e3d6000fd5b506001600160601b03858116600081815260106020908152604080832080546001600160a01b0319166001600160a01b0397909716969096179095558584168252600f905283812080546bffffffffffffffffffffffff199081168417909155928616815292909220805490911690911790556200169e6200168a606590565b8585604051602001620010e9919062004fcd565b50505050565b620016ae62004069565b620016bc60dc5b836200373b565b80602001905181019062000e4a9190620053f5565b60008060008051602062005e1583398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af41580156200175b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200178191906200522f565b1192915050565b600060078281548110620017a057620017a0620054d6565b90600052602060002090600491828204019190066008029054906101000a900460c01b9050919050565b6040805180820190915260008082526020820152620017ea608c620016b5565b80602001905181019062000e4a9190620054ec565b600062000f6160008051602062005dd5833981519152546001600160a01b031690565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001863573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620018899190620051ae565b6001600160a01b0316336001600160a01b031614620018bc5760405162461bcd60e51b815260040162000db690620051ce565b620005e360d25b838362003941565b600060008051602062005dd583398151915254604051636939560f60e11b81523060048201526001600160a01b039091169063d272ac1e90602401602060405180830381865afa15801562001924573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f6191906200552b565b6001600160c01b03198116600090815260096020526040812062000e4a9062003a0c565b6001600160601b0381166000908152600e6020526040808220905163697d0f1b60e11b8152600481019190915273__$0dc988b1672de335b826773df9015af2da$__9063d2fa1e36906024015b602060405180830381865af4158015620019d9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e4a91906200522f565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001a3e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001a649190620051ae565b6001600160a01b0316336001600160a01b03161462001a975760405162461bcd60e51b815260040162000db690620052fa565b620005e3608c8383604051602001620010e991908151151581526020918201519181019190915260400190565b6000600d828154811062001adc5762001adc620054d6565b9060005260206000209060029182820401919006600c029054906101000a90046001600160601b03169050919050565b600062000f616001546001600160a01b031690565b919050565b600062000f6162003a17565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001b73573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001b999190620051ae565b6001600160a01b0316336001600160a01b03161462001bfb5760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000db6565b6000604051806101000160405280886001600160601b0316815260200187815260200184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050506020820188905260408201526060810187905260800142604051631ded81af60e31b815264ffffffffff90911660048201526024810187905273__$d53880c81dc91c20799140d711e5ab8718$__9063ef6c0d7890604401602060405180830381865af415801562001ccc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001cf291906200554b565b64ffffffffff168152602001600064ffffffffff169052905062001d2560dc8983604051602001620010e9919062004872565b5050505050505050565b6000306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001d72573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001d989190620051ae565b6001600160a01b0316336001600160a01b03161462001dcb5760405162461bcd60e51b815260040162000db6906200556b565b506001600160601b038083166000818152600c602090815260408083209486168352938152838220805490839055928252600b9052829020915163539eabab60e11b8152909173__$0dc988b1672de335b826773df9015af2da$__9163a73d57569162001e4e9186906004019182526001600160601b0316602082015260400190565b602060405180830381865af415801562001e6c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001e9291906200533c565b5092915050565b6001600160601b038281166000908152600e6020526040908190209051632bfdd6b960e01b81526004810182905291851660248301529073__$0dc988b1672de335b826773df9015af2da$__90632bfdd6b990604401602060405180830381865af415801562001f0d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001f3391906200533c565b1562001f8c5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504c2d3032303a42554e444c455f414c52454144595f414444456044820152601160fa1b606482015260840162000db6565b604051631461054360e31b8152600481018290526001600160601b038516602482015273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af415801562001fec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200201291906200533c565b5050505050565b60015460405163a238accd60e01b81526004810184905260ff831660248201526001600160a01b039091169063a238accd90604401600060405180830381600087803b1580156200206957600080fd5b505af11580156200207e573d6000803e3d6000fd5b505050505050565b60008062002095606462001280565b806020019051810190620020aa9190620052b2565b519392505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c620020d662000ed9565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801562002117573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200213d9190620055ac565b60008051602062005df58339815191528054600160401b900460ff168062002172575080546001600160401b03808416911610155b15620021915760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155620021be858562003a96565b620021c98362003cde565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b6040516322f5db0f60e11b81526004810182905260009073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__906345ebb61e90602401620019bb565b6000306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002295573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620022bb9190620051ae565b6001600160a01b0316336001600160a01b031614620022ee5760405162461bcd60e51b815260040162000db690620055d7565b60405163e14787cb60e01b815273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90620023279085906004016200560e565b602060405180830381865af415801562002345573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200236b919062005630565b90506200237881620031b3565b15620023d15760405162461bcd60e51b815260206004820152602160248201527f4552524f523a4143532d3031303a524f4c455f414c52454144595f45584953546044820152605360f81b606482015260840162000db6565b62001b21818362003ce8565b600062000f6160008051602062005df5833981519152546001600160401b031690565b600060008051602062005e158339815191526001018281548110620024295762002429620054d6565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b604080518082019091526001600160601b0383168152602081018290526200169e60c86040516355ee627560e01b81526001600160c01b03198716600482015273__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015620024d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620024f891906200522f565b836040516020016200250b919062004a5f565b60405160208183030381529060405262003d4d565b60405163e14787cb60e01b815260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906200255c9085906004016200560e565b602060405180830381865af41580156200257a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e4a919062005630565b6001600160c01b0319828116600081815260066020526040902054849260c09190911b1614620025e45760405162461bcd60e51b815260040162000db69062005650565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002623573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620026499190620051ae565b6001600160a01b0316336001600160a01b0316146200267c5760405162461bcd60e51b815260040162000db690620055d7565b6001600160c01b0319831660008181526008602090815260408083206001600160a01b03871684528252808320805460ff191690559282526009905220620026c5908362003d83565b507fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d1698754539668483836000604051620026fc9392919062005687565b60405180910390a1505050565b604080516101c08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820183905261010082018390526101208201819052610140820152610160810182905261018081018290526101a08101919091526200278560d2620016b5565b80602001905181019062000e4a9190620056b4565b6001600160c01b0319828116600081815260066020526040902054849260c09190911b1614620027de5760405162461bcd60e51b815260040162000db69062005650565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200281d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620028439190620051ae565b6001600160a01b0316336001600160a01b031614620028765760405162461bcd60e51b815260040162000db690620055d7565b6001600160c01b0319831660009081526006602052604090206002015460ff16620028e45760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4143532d3034303a524f4c455f4e4f545f414354495645000000604482015260640162000db6565b6001600160c01b0319831660008181526008602090815260408083206001600160a01b03871684528252808320805460ff19166001179055928252600990522062002930908362003d9a565b506001600160c01b0319831660009081526008602090815260408083206001600160a01b0386168452909152908190205490517fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d1698754539668491620026fc918691869160ff9091169062005687565b6040805160608082018352600080835260208084018390528385018290526001600160c01b0319868116835260068252918590208551938401909552845460c01b90911682526001840180549394929391840191620029f99062005269565b80601f016020809104026020016040519081016040528092919081815260200182805462002a279062005269565b801562002a785780601f1062002a4c5761010080835404028352916020019162002a78565b820191906000526020600020905b81548152906001019060200180831162002a5a57829003601f168201915b50505091835250506002919091015460ff16151560209091015292915050565b60008051602062005df58339815191528054600160401b810460ff1615906001600160401b031660008115801562002acd5750825b90506000826001600160401b0316600114801562002aea5750303b155b90508115801562002af9575080155b1562002b185760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831562002b4357845460ff60401b1916600160401b1785555b62002b4f888862003a96565b62002b5b878762003cde565b831562001d2557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b60408051808201825260008082526020820152905163638086fd60e11b8152600481018490526024810183905273__$a23651848365a6a5ca15f07b4331037f48$__9063c7010dfa906044016040805180830381865af415801562002c14573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ed2919062005821565b6001600160c01b0319828116600081815260066020526040902054849260c09190911b161462002c7e5760405162461bcd60e51b815260040162000db69062005650565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002cbd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002ce39190620051ae565b6001600160a01b0316336001600160a01b03161462002d165760405162461bcd60e51b815260040162000db690620055d7565b6001600160c01b03198084166000908152600660209081526040808320815160608101909252805460c01b909416815260018401805493949193919284019162002d609062005269565b80601f016020809104026020016040519081016040528092919081815260200182805462002d8e9062005269565b801562002ddf5780601f1062002db35761010080835404028352916020019162002ddf565b820191906000526020600020905b81548152906001019060200180831162002dc157829003601f168201915b50505091835250506002919091015460ff1615156020909101528315156040820152905062002e0e8162003db1565b604080516001600160c01b03198616815284151560208201527feaffaec948991ecc6e201ba4f67ba865fbf66aace3d2f2823dc5483cc9813fda910160405180910390a150505050565b6001600160601b0382166000908152600e6020526040808220905163e797d89960e01b815260048101919091526024810183905273__$0dc988b1672de335b826773df9015af2da$__9063e797d89990604401602060405180830381865af415801562002ec9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ed291906200552b565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562002f30573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002f569190620051ae565b6001600160a01b0316336001600160a01b03161462002f895760405162461bcd60e51b815260040162000db6906200556b565b6001600160601b038381166000818152600c60209081526040808320948716808452948252808320869055928252600b90528190209051631461054360e31b81526004810191909152602481019190915273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af415801562003017573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200169e91906200533c565b6001600160c01b03198216600090815260096020526040812062000ed2908362003e8f565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620030a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620030c79190620051ae565b6001600160a01b0316336001600160a01b031614620030fa5760405162461bcd60e51b815260040162000db690620052fa565b604080518082019091526001600160a01b03838116825282166020820152600d8054600180820183556000929092527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb56002820401805492909116600c026101000a6001600160601b0381810219909316928716029190911790556200169e62003182606490565b8583604051602001620010e9919081516001600160a01b039081168252602092830151169181019190915260400190565b6001600160c01b0319818116600081815260066020526040812054909260c09190911b161462000e4a565b60405163012ebd8360e21b8152815160048201526020820151602482015260448101839052600090819073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af415801562003244573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200326a919062005840565b915091509250929050565b620033186040805161012081018252600080825260208083018290528284018290528351808501855282815280820183905260608401528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e084015283518085019094528184528301529061010082015290565b620033246065620016b5565b80602001905181019062000e4a919062005865565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af11580156200337a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620033a09190620051ae565b6001600160a01b0316336001600160a01b03161480620034375750306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620033fc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620034229190620051ae565b6001600160a01b0316336001600160a01b0316145b620034975760405162461bcd60e51b815260206004820152602960248201527f4552524f523a42444c2d3030333a4e4f545f504f4f4c5f4f525f50524f445543604482015268545f5345525649434560b81b606482015260840162000db6565b620005e360dc838360405160200162000d07919062004872565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620034f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620035189190620051ae565b6001600160a01b0316336001600160a01b0316146200357a5760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000db6565b620005e360dc620018c3565b600a54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b0390911690636ec3d9409073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620035fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200362391906200522f565b836040518363ffffffff1660e01b81526004016200364392919062005939565b600060405180830381600087803b1580156200365e57600080fd5b505af115801562003673573d6000803e3d6000fd5b50505050505050565b600a54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b0390911690635dee47889073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620036f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200371991906200522f565b85846040518463ffffffff1660e01b8152600401620036439392919062005954565b600a54604051630711349960e31b81526001600160601b038316600482015260ff841660248201526060916001600160a01b0316906354f6127f9073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620037b3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620037d991906200522f565b6040518263ffffffff1660e01b8152600401620037f891815260200190565b600060405180830381865afa15801562003816573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000ed2919081019062005978565b600a54604051630711349960e31b81526001600160601b038316600482015260ff841660248201526000916001600160a01b0316906338a699a49073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620038b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620038de91906200522f565b6040518263ffffffff1660e01b8152600401620038fd91815260200190565b602060405180830381865afa1580156200391b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ed291906200533c565b600a54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b039091169063a238accd9073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620039b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620039de91906200522f565b6040516001600160e01b031960e084901b168152600481019190915260ff8416602482015260440162003643565b600062000e4a825490565b600060008051602062005dd583398151915254604051630a57ebcf60e11b81523060048201526001600160a01b03909116906314afd79e90602401602060405180830381865afa15801562003a70573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f619190620051ae565b62003aa062003e9d565b60008051602062005e15833981519152600062003ad360008051602062005df5833981519152546001600160401b031690565b9050600062003ae162000ed9565b9050816001600160401b031660010362003b105760028301805462ffffff191662ffffff831617905562003b60565b600283015462ffffff9081169082161162003b605760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b604482015260640162000db6565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b0380891692840192909252908616908201526060810162003bd54290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890620022099083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6200045162003e9d565b604080516060810182526001600160c01b0319841681526020810183905260019181019190915262003d1a8162003db1565b7f34e1f82fc40bf14028ae2a3150f074e7715e20ed8e30e250f8789cee718c64858383604051620026fc929190620059b0565b600a54604051630bbdc8f160e31b81526001600160a01b0390911690635dee478890620036439085908790869060040162005954565b600062000ed2836001600160a01b03841662003ed8565b600062000ed2836001600160a01b03841662003fdc565b80516001600160c01b0319811660009081526006602090815260409091208351815467ffffffffffffffff191660c09190911c17815590830151839190600182019062003dff908262005a26565b50604091909101516002909101805460ff191691151591909117905562003e2681620031b3565b620005e357600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600482040180546001600160401b0360039093166008026101000a928302191660c09390931c9190910291909117905550565b600062000ed283836200402e565b60008051602062005df583398151915254600160401b900460ff1662003ed657604051631afcd79f60e31b815260040160405180910390fd5b565b6000818152600183016020526040812054801562003fd157600062003eff60018362005af2565b855490915060009062003f159060019062005af2565b905081811462003f8157600086600001828154811062003f395762003f39620054d6565b906000526020600020015490508087600001848154811062003f5f5762003f5f620054d6565b6000918252602080832090910192909255918252600188019052604090208390555b855486908062003f955762003f9562005b14565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505062000e4a565b600091505062000e4a565b6000818152600183016020526040812054620040255750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000e4a565b50600062000e4a565b6000826000018281548110620040485762004048620054d6565b9060005260206000200154905092915050565b6102aa8062005b2b83390190565b60405180610100016040528060006001600160601b03168152602001620040a3604051806040016040528060008152602001600081525090565b815260200160608152602001600081526020016000815260200160008152602001600064ffffffffff168152602001600064ffffffffff1681525090565b600060208284031215620040f457600080fd5b81356001600160e01b03198116811462000ed257600080fd5b6001600160601b03811681146200412357600080fd5b50565b803562001b21816200410d565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156200416e576200416e62004133565b60405290565b60405161012081016001600160401b03811182821017156200416e576200416e62004133565b6040516101c081016001600160401b03811182821017156200416e576200416e62004133565b60405161010081016001600160401b03811182821017156200416e576200416e62004133565b604051601f8201601f191681016001600160401b038111828210171562004211576200421162004133565b604052919050565b6001600160a01b03811681146200412357600080fd5b803562001b218162004219565b6000604082840312156200424f57600080fd5b6200425962004149565b9050813581526020820135602082015292915050565b6000808284036102008112156200428557600080fd5b833562004292816200410d565b92506101e0601f1982011215620042a857600080fd5b50620042b362004174565b620042c16020850162004126565b8152620042d16040850162004126565b6020820152620042e4606085016200422f565b6040820152620042f885608086016200423c565b60608201526200430c8560c086016200423c565b608082015261010062004322868287016200423c565b60a0830152620043378661014087016200423c565b60c08301526200434c8661018087016200423c565b60e083015262004361866101c087016200423c565b90820152919491935090915050565b6001600160c01b0319811681146200412357600080fd5b803562001b218162004370565b60006001600160401b03821115620043b057620043b062004133565b50601f01601f191660200190565b6000620043d5620043cf8462004394565b620041e6565b9050828152838383011115620043ea57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126200441357600080fd5b62000ed283833560208501620043be565b64ffffffffff811681146200412357600080fd5b803562001b218162004424565b600080604083850312156200445957600080fd5b823562004466816200410d565b915060208301356001600160401b03808211156200448357600080fd5b908401906101c082870312156200449957600080fd5b620044a36200419a565b620044ae8362004126565b8152620044be6020840162004126565b6020820152620044d16040840162004387565b6040820152620044e4606084016200422f565b6060820152620044f76080840162004387565b608082015260a083013560a082015260c083013560c082015260e083013560e082015261010080840135818301525061012080840135838111156200453b57600080fd5b620045498982870162004401565b82840152505061014080840135838111156200456457600080fd5b620045728982870162004401565b82840152505061016091506200458a82840162004438565b828201526101809150620045a082840162004438565b828201526101a09150620045b682840162004438565b828201528093505050509250929050565b600060208284031215620045da57600080fd5b5035919050565b60008060408385031215620045f557600080fd5b8235915060208301358060000b81146200460e57600080fd5b809150509250929050565b600080600080600080600080610100898b0312156200463757600080fd5b883562004644816200410d565b9750602089013562004656816200410d565b96506040890135620046688162004370565b955060608901356200467a8162004370565b94506080890135935060a0890135925060c0890135915060e0890135620046a1816200410d565b809150509295985092959890939650565b60005b83811015620046cf578181015183820152602001620046b5565b50506000910152565b60008151808452620046f2816020860160208601620046b2565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516200474b60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015262004793610120840182620046d8565b90508281036020840152620047a98185620046d8565b95945050505050565b600060208284031215620047c557600080fd5b813562000ed2816200410d565b60008060408385031215620047e657600080fd5b8235620047f38162004370565b915060208301356001600160401b03808211156200481057600080fd5b90840190604082870312156200482557600080fd5b6200482f62004149565b82356200483c816200410d565b81526020830135828111156200485157600080fd5b6200485f8882860162004401565b6020830152508093505050509250929050565b602081526001600160601b03825116602082015260006020830151620048a5604084018280518252602090810151910152565b506040830151610120806080850152620048c4610140850183620046d8565b9150606085015160a0850152608085015160c085015260a085015160e085015260c0850151620048fe61010086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b62ffffff811681146200412357600080fd5b6000602082840312156200494057600080fd5b813562000ed2816200491b565b60ff811681146200412357600080fd5b600080604083850312156200497157600080fd5b82356200497e816200410d565b915060208301356200460e816200494d565b600060208284031215620049a357600080fd5b813562000ed28162004370565b80151581146200412357600080fd5b6000808284036060811215620049d457600080fd5b8335620049e1816200410d565b92506040601f1982011215620049f657600080fd5b5062004a0162004149565b602084013562004a1181620049b0565b81526040939093013560208401525092909150565b6000806040838503121562004a3a57600080fd5b82356200497e8162004370565b81518152602080830151908201526040810162000e4a565b602081526001600160601b0382511660208201526000602083015160408084015262004a8f6060840182620046d8565b949350505050565b600080600080600080600060e0888a03121562004ab357600080fd5b873562004ac0816200410d565b9650602088013562004ad2816200410d565b955062004ae38960408a016200423c565b94506080880135935060a0880135925060c08801356001600160401b038082111562004b0e57600080fd5b818a0191508a601f83011262004b2357600080fd5b81358181111562004b3357600080fd5b8b602082850101111562004b4657600080fd5b60208301945080935050505092959891949750929550565b6000806040838503121562004b7257600080fd5b823562004b7f816200410d565b915060208301356200460e816200410d565b60008060006060848603121562004ba757600080fd5b833562004bb4816200410d565b9250602084013562004bc6816200410d565b929592945050506040919091013590565b6000806040838503121562004beb57600080fd5b823562004bf88162004370565b915060208301356200460e8162004219565b6000806040838503121562004c1e57600080fd5b8235915060208301356200460e816200494d565b60008060006060848603121562004c4857600080fd5b833562004c558162004219565b9250602084013562004c678162004219565b915060408401356001600160401b0381111562004c8357600080fd5b62004c918682870162004401565b9150509250925092565b60006020828403121562004cae57600080fd5b81356001600160401b0381111562004cc557600080fd5b8201601f8101841362004cd757600080fd5b62004a8f84823560208401620043be565b60008060006060848603121562004cfe57600080fd5b833562004d0b8162004370565b9250602084013562004c67816200410d565b6020815262004d386020820183516001600160601b03169052565b6000602083015162004d5560408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160a01b03811660808401525060808301516001600160c01b0319811660a08401525060a083015160c083015260c083015160e083015260e08301516101008181850152808501519150506101208181850152808501519150506101c0610140818186015262004de96101e0860184620046d8565b9250808601519050610160601f19868503018187015262004e0b8483620046d8565b93508087015191505061018062004e2a8187018364ffffffffff169052565b86015190506101a062004e458682018364ffffffffff169052565b86015164ffffffffff811683870152905062004911565b602080825282516001600160c01b031916828201528201516060604083015260009062004e8d6080840182620046d8565b90506040840151151560608401528091505092915050565b6000806040838503121562004eb957600080fd5b50508035926020909101359150565b6000806040838503121562004edc57600080fd5b823562004ee98162004370565b915060208301356200460e81620049b0565b6000806040838503121562004f0f57600080fd5b823562004f1c816200410d565b946020939093013593505050565b6000806040838503121562004f3e57600080fd5b823562004f1c8162004370565b60008060006060848603121562004f6157600080fd5b833562004f6e816200410d565b9250602084013562004f808162004219565b9150604084013562004f928162004219565b809150509250925092565b6000806060838503121562004fb157600080fd5b8235915062004fc484602085016200423c565b90509250929050565b81516001600160601b031681526020808301516101e083019162004ffb908401826001600160601b03169052565b5060408301516200501760408401826001600160a01b03169052565b50606083015162005035606084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151805161012084015260208101516101408401525060e0830151805161016084015260208101516101808401525061010083015180516101a084015260208101516101c084015262001e92565b60008060408385031215620050ca57600080fd5b8235620050d7816200410d565b915060208301356001600160401b0380821115620050f457600080fd5b9084019061012082870312156200510a57600080fd5b62005114620041c0565b6200511f8362004126565b81526200513087602085016200423c565b60208201526060830135828111156200514857600080fd5b620051568882860162004401565b6040830152506080830135606082015260a0830135608082015260c083013560a08201526200518860e0840162004438565b60c08201526200519c610100840162004438565b60e08201528093505050509250929050565b600060208284031215620051c157600080fd5b815162000ed28162004219565b60208082526021908201527f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b6000602082840312156200522257600080fd5b815162000ed2816200494d565b6000602082840312156200524257600080fd5b5051919050565b6000602082840312156200525c57600080fd5b815162000ed2816200491b565b600181811c908216806200527e57607f821691505b6020821081036200529f57634e487b7160e01b600052602260045260246000fd5b50919050565b805162001b218162004219565b600060408284031215620052c557600080fd5b620052cf62004149565b8251620052dc8162004219565b81526020830151620052ee8162004219565b60208201529392505050565b60208082526022908201527f4552524f523a434d502d3030313a4e4f545f52454749535452595f5345525649604082015261434560f01b606082015260800190565b6000602082840312156200534f57600080fd5b815162000ed281620049b0565b805162001b21816200410d565b6000604082840312156200537c57600080fd5b6200538662004149565b9050815181526020820151602082015292915050565b600082601f830112620053ae57600080fd5b8151620053bf620043cf8262004394565b818152846020838601011115620053d557600080fd5b62004a8f826020830160208701620046b2565b805162001b218162004424565b6000602082840312156200540857600080fd5b81516001600160401b03808211156200542057600080fd5b9083019061012082860312156200543657600080fd5b62005440620041c0565b6200544b836200535c565b81526200545c866020850162005369565b60208201526060830151828111156200547457600080fd5b62005482878286016200539c565b6040830152506080830151606082015260a0830151608082015260c083015160a0820152620054b460e08401620053e8565b60c0820152620054c86101008401620053e8565b60e082015295945050505050565b634e487b7160e01b600052603260045260246000fd5b600060408284031215620054ff57600080fd5b6200550962004149565b82516200551681620049b0565b81526020928301519281019290925250919050565b6000602082840312156200553e57600080fd5b815162000ed2816200410d565b6000602082840312156200555e57600080fd5b815162000ed28162004424565b60208082526021908201527f4552524f523a42444c2d3030323a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b600060208284031215620055bf57600080fd5b81516001600160401b038116811462000ed257600080fd5b60208082526017908201527f4552524f523a4143532d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b60208152600062000ed26020830184620046d8565b805162001b218162004370565b6000602082840312156200564357600080fd5b815162000ed28162004370565b6020808252601f908201527f4552524f523a4143532d3030323a524f4c455f4e4f545f4558495354494e4700604082015260600190565b6001600160c01b03199390931683526001600160a01b039190911660208301521515604082015260600190565b600060208284031215620056c757600080fd5b81516001600160401b0380821115620056df57600080fd5b908301906101c08286031215620056f557600080fd5b620056ff6200419a565b6200570a836200535c565b81526200571a602084016200535c565b60208201526200572d6040840162005623565b60408201526200574060608401620052a5565b6060820152620057536080840162005623565b608082015260a083015160a082015260c083015160c082015260e083015160e082015261010080840151818301525061012080840151838111156200579757600080fd5b620057a5888287016200539c565b8284015250506101408084015183811115620057c057600080fd5b620057ce888287016200539c565b8284015250506101609150620057e6828401620053e8565b828201526101809150620057fc828401620053e8565b828201526101a0915062005812828401620053e8565b91810191909152949350505050565b6000604082840312156200583457600080fd5b62000ed2838362005369565b600080604083850312156200585457600080fd5b505080516020909101519092909150565b60006101e082840312156200587957600080fd5b6200588362004174565b6200588e836200535c565b81526200589e602084016200535c565b6020820152620058b160408401620052a5565b6040820152620058c5846060850162005369565b6060820152620058d98460a0850162005369565b6080820152620058ed8460e0850162005369565b60a08201526200590284610120850162005369565b60c08201526200591784610160850162005369565b60e08201526200592c846101a0850162005369565b6101008201529392505050565b82815260406020820152600062004a8f6040830184620046d8565b83815260ff83166020820152606060408201526000620047a96060830184620046d8565b6000602082840312156200598b57600080fd5b81516001600160401b03811115620059a257600080fd5b62004a8f848285016200539c565b6001600160401b0360c01b8316815260406020820152600062004a8f6040830184620046d8565b601f82111562005a2157600081815260208120601f850160051c8101602086101562005a005750805b601f850160051c820191505b818110156200207e5782815560010162005a0c565b505050565b81516001600160401b0381111562005a425762005a4262004133565b62005a5a8162005a53845462005269565b84620059d7565b602080601f83116001811462005a92576000841562005a795750858301515b600019600386901b1c1916600185901b1785556200207e565b600085815260208120601f198616915b8281101562005ac35788860151825594840194600190910190840162005aa2565b508582101562005ae25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8181038181111562000e4a57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fdfe608060405234801561001057600080fd5b506040516102aa3803806102aa83398101604081905261002f9161005b565b6001600160a01b03166c01000000000000000000000000026001600160601b03909116176000556100ad565b6000806040838503121561006e57600080fd5b82516001600160601b038116811461008557600080fd5b60208401519092506001600160a01b03811681146100a257600080fd5b809150509250929050565b6101ee806100bc6000396000f3fe608060405234801561001057600080fd5b50600436106100405760003560e01c806251884a1461004557806321df0da71461006a578063beabacc814610095575b600080fd5b6000546040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b600054600160601b90046001600160a01b03166040516001600160a01b039091168152602001610061565b6100a86100a3366004610153565b6100aa565b005b6000546040516323b872dd60e01b81526001600160a01b038581166004830152848116602483015260448201849052600160601b909204909116906323b872dd906064016020604051808303816000875af115801561010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610131919061018f565b50505050565b80356001600160a01b038116811461014e57600080fd5b919050565b60008060006060848603121561016857600080fd5b61017184610137565b925061017f60208501610137565b9150604084013590509250925092565b6000602082840312156101a157600080fd5b815180151581146101b157600080fd5b939250505056fea2646970667358221220455e331420069b52ddb557c4094a8236a9cb76b6fb2388562bb6d2f594dbd6b064736f6c634300081400336548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220f72222e8986b9953e8934aed7c93f9d934bb86e1e1f99464a912bbd238b3f1a564736f6c6343000814003360806040523480156200001157600080fd5b506200001c62000052565b6200002662000206565b620000306200033f565b6200003a620005a7565b600380546001600160a01b031916331790556200071d565b60dc600090815260208190527f5bd290414b404036f9d63146803dd83b59a8e1905062a5bfed8b0154d20a390d805460ff1916606417905560019081906200009860dc90565b60ff1660ff1681526020019081526020016000206000620000be620006eb60201b60201c565b60ff1660ff1681526020019081526020016000206000620000e4620006f560201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200011760dc90565b60ff1660ff16815260200190815260200160002060006200013d620006f560201b60201c565b60ff1660ff168152602001908152602001600020600062000163620006eb60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200019660dc90565b60ff1660ff1681526020019081526020016000206000620001bc620006f560201b60201c565b60ff1660ff1681526020019081526020016000206000620001e2620006fa60201b60201c565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f9db7038e59677010ca8f72fa448bad1b4f3c53346b666689163ccac31db467728054606460ff1991821681179092557f1a3062e9a24818c8281fcfb58ec4f3083a2f9a1314ac63f80d8d646661fdc5098054909116600190811790915560009182526020819052907f1bd07f61ef326b4de236f5b68f225f46ff76ee2c375ae31a06da201c49c70c12906200029a606e90565b60ff1660ff1681526020019081526020016000206000620002c0620006eb60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001908190620002f3606490565b60ff1660ff168152602001908152602001600020600062000319620006f560201b60201c565b60ff1660ff1681526020019081526020016000206000620001e2620006ff60201b60201c565b60d2600090815260208190527fc0d27dadfcf8ee0186a0f6fe9b5805a51e99869050491e4a3040efec012a214f805460ff1916600a17905560019081906200038560d290565b60ff1660ff1681526020019081526020016000206000620003ab6200070460201b60201c565b60ff1660ff1681526020019081526020016000206000620003d16200070960201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200040460d290565b60ff1660ff16815260200190815260200160002060006200042a6200070460201b60201c565b60ff1660ff1681526020019081526020016000206000620004506200070e60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200048360d290565b60ff1660ff1681526020019081526020016000206000620004a96200070460201b60201c565b60ff1660ff1681526020019081526020016000206000620004cf6200071360201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200050260d290565b60ff1660ff1681526020019081526020016000206000620005286200071360201b60201c565b60ff1660ff16815260200190815260200160002060006200054e620006eb60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200058160d290565b60ff1660ff1681526020019081526020016000206000620001bc620006eb60201b60201c565b60c8600090815260208190527fc5f2c791ab4e0b1a0b6c600884b07e98575b00ebd7c3166c4272a53bebf71403805460ff191660641790556001908190620005ed60c890565b60ff1660ff168152602001908152602001600020600062000613620006eb60201b60201c565b60ff1660ff168152602001908152602001600020600062000639620006f560201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200066c60c890565b60ff1660ff168152602001908152602001600020600062000692620006f560201b60201c565b60ff1660ff1681526020019081526020016000206000620006b8620006eb60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001908190620002f360c890565b606490565b905090565b606e90565b60c890565b60d290565b600a90565b601490565b601e90565b60006028620006f0565b611867806200072d6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063a238accd11610097578063b24133ec11610066578063b24133ec146102e1578063bf1db3f9146102f4578063e9e96c7014610307578063f48016ce1461034557600080fd5b8063a238accd146101ea578063a4dc7d86146101fd578063a5961b4c1461021d578063a8989675146102ce57600080fd5b806354f6127f116100d357806354f6127f146101825780635dee4788146101a25780636ec3d940146101b75780638eaa6ac0146101ca57600080fd5b806309648a9d146100fa5780630d3581811461013957806338a699a41461015f575b600080fd5b610122610108366004611234565b600090815260026020526040902054610100900460ff1690565b60405160ff90911681526020015b60405180910390f35b61012261014736600461125f565b60ff9081166000908152602081905260409020541690565b61017261016d366004611234565b610366565b6040519015158152602001610130565b610195610190366004611234565b6103f7565b60405161013091906112c2565b6101b56101b0366004611378565b61049c565b005b6101b56101c53660046113d1565b610771565b6101dd6101d8366004611234565b610927565b6040516101309190611462565b6101b56101f8366004611496565b610a68565b61021061020b366004611234565b610cda565b60405161013091906114dc565b6102c161022b366004611234565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260026020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b60405161013091906114ea565b6101b56102dc3660046114f8565b610d88565b6101b56102ef366004611378565b610e7e565b61017261030236600461125f565b61115d565b6101726103153660046114f8565b60ff9283166000908152600160209081526040808320948616835293815283822092851682529190915220541690565b610358610353366004611553565b6111aa565b604051908152602001610130565b60008181526002602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156103cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f19190611581565b92915050565b6000818152600260205260409020600101805460609190610417906115a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610443906115a3565b80156104905780601f1061046557610100808354040283529160200191610490565b820191906000526020600020905b81548152906001019060200180831161047357829003601f168201915b50505050509050919050565b6003546001600160a01b031633146104cf5760405162461bcd60e51b81526004016104c6906115dd565b60405180910390fd5b60405163b2466acf60e01b815260ff8316600482015273__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015610521573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105459190611581565b6105915760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e45440000000060448201526064016104c6565b600083815260026020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af41580156105fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061e9190611581565b61066a5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f4352454154454400000060448201526064016104c6565b334360006106778661115d565b610682576064610698565b60ff808716600090815260208190526040902054165b845460ff88811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b9190910217855560008881526002602052604090209091506001016107228682611662565b507f0ccdf5d7cd4da66a6894cfa246e02d19253a3f7c4cb3b0daee0bc2bf1a7dd4ff61074d88610cda565b8285326040516107609493929190611722565b60405180910390a150505050505050565b6003546001600160a01b0316331461079b5760405162461bcd60e51b81526004016104c6906115dd565b600082815260026020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610807573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082b9190611581565b6108775760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3033303a4e4f545f4558495354494e4700000000000060448201526064016104c6565b60008481526002602052604090206001016108928482611662565b508154620100003390810262010000600160b01b031983161784559063ffffffff600160b01b909104166108c34390565b845463ffffffff91909116600160b01b0263ffffffff60b01b1990911617845560006108ee87610cda565b90507f228147c3bb5d3f2e24432bc0abaa1541c1f3f4208a9ab759bf26567e983fbdb78185853286604051610760959493929190611758565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260026020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c082015292835260018101805491928401916109df906115a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0b906115a3565b8015610a585780601f10610a2d57610100808354040283529160200191610a58565b820191906000526020600020905b815481529060010190602001808311610a3b57829003601f168201915b5050505050815250509050919050565b6003546001600160a01b03163314610a925760405162461bcd60e51b81526004016104c6906115dd565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610ae4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b089190611581565b610b545760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e454400000060448201526064016104c6565b600082815260026020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610bc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be49190611581565b610c305760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e4700000000000060448201526064016104c6565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b90910416610c744390565b845463ffffffff91909116600160b01b0263ffffffff60b01b199091161784556000610c9f87610cda565b90507feb640fdc9d45826fb47cd85fac116714d3d638f1409790b2b7c0ac824db13b728187868632876040516107609695949392919061179d565b604080518082019091526000808252602082015260405163526e3ec360e11b815260048101839052600090819073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063a4dc7d86906024016040805180830381865af4158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6691906117e9565b6040805180820190915260ff909216825260ff19166020820152949350505050565b60ff8381166000908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015610ded573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e119190611581565b15610e1b57505050565b60ff808416600090815260016020908152604080832086851684528252808320858516845290915290205416610e7957604051636bb20ea760e01b815260ff80851660048301528084166024830152821660448201526064016104c6565b505050565b6003546001600160a01b03163314610ea85760405162461bcd60e51b81526004016104c6906115dd565b60405163b2466acf60e01b815260ff8316600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610efa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1e9190611581565b610f6a5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e454400000060448201526064016104c6565b600083815260026020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610fd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffa9190611581565b6110465760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e4700000000000060448201526064016104c6565b60008581526002602052604090206001016110618482611662565b508154620100003390810262010000600160b01b031960ff88166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166110a64390565b845463ffffffff91909116600160b01b0263ffffffff60b01b1990911617845560006110d188610cda565b90507feb640fdc9d45826fb47cd85fac116714d3d638f1409790b2b7c0ac824db13b7281888686328760405161110c9695949392919061179d565b60405180910390a17f228147c3bb5d3f2e24432bc0abaa1541c1f3f4208a9ab759bf26567e983fbdb7818885328660405161114b959493929190611758565b60405180910390a15050505050505050565b60ff81811660009081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016103b0565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce90604401602060405180830381865af4158015611209573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122d9190611818565b9392505050565b60006020828403121561124657600080fd5b5035919050565b60ff8116811461125c57600080fd5b50565b60006020828403121561127157600080fd5b813561122d8161124d565b6000815180845260005b818110156112a257602081850181015186830182015201611286565b506000602082860101526020601f19601f83011685010191505092915050565b60208152600061122d602083018461127c565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126112fc57600080fd5b813567ffffffffffffffff80821115611317576113176112d5565b604051601f8301601f19908116603f0116810190828211818310171561133f5761133f6112d5565b8160405283815286602085880101111561135857600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060006060848603121561138d57600080fd5b83359250602084013561139f8161124d565b9150604084013567ffffffffffffffff8111156113bb57600080fd5b6113c7868287016112eb565b9150509250925092565b600080604083850312156113e457600080fd5b82359150602083013567ffffffffffffffff81111561140257600080fd5b61140e858286016112eb565b9150509250929050565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b60208152611474602082018351611418565b6000602083015160c08084015261148e60e084018261127c565b949350505050565b600080604083850312156114a957600080fd5b8235915060208301356114bb8161124d565b809150509250929050565b805160ff16825260209081015160ff1916910152565b604081016103f182846114c6565b60a081016103f18284611418565b60008060006060848603121561150d57600080fd5b83356115188161124d565b925060208401356115288161124d565b915060408401356115388161124d565b809150509250925092565b60ff198116811461125c57600080fd5b6000806040838503121561156657600080fd5b82356115718161124d565b915060208301356114bb81611543565b60006020828403121561159357600080fd5b8151801515811461122d57600080fd5b600181811c908216806115b757607f821691505b6020821081036115d757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527f4552524f523a4b56532d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b601f821115610e7957600081815260208120601f850160051c8101602086101561163b5750805b601f850160051c820191505b8181101561165a57828155600101611647565b505050505050565b815167ffffffffffffffff81111561167c5761167c6112d5565b6116908161168a84546115a3565b84611614565b602080601f8311600181146116c557600084156116ad5750858301515b600019600386901b1c1916600185901b17855561165a565b600085815260208120601f198616915b828110156116f4578886015182559484019460019091019084016116d5565b50858210156117125787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60a0810161173082876114c6565b60ff9490941660408201526001600160a01b0392831660608201529116608090910152919050565b60c0810161176682886114c6565b60ff9590951660408201526001600160a01b03938416606082015291909216608082015263ffffffff90911660a090910152919050565b60e081016117ab82896114c6565b60ff96871660408301529490951660608601526001600160a01b039283166080860152911660a084015263ffffffff1660c090920191909152919050565b600080604083850312156117fc57600080fd5b82516118078161124d565b60208401519092506114bb81611543565b60006020828403121561182a57600080fd5b505191905056fea2646970667358221220f939c446d2a8f4e906670f91871af4dbd5d1080e0e33cb50e0e6fc2a596aabeb64736f6c63430008140033",
|
2226
|
+
"deployedBytecode": "0x60806040523480156200001157600080fd5b5060043610620004515760003560e01c8063893d20e81162000241578063b9f36dde116200013d578063db70354c11620000c7578063ee0fdf711162000092578063ee0fdf711462000c55578063f274e87d1462000c6c578063f2b246c31462000c99578063fd143c761462000cbf578063fe1f18d61462000cd657600080fd5b8063db70354c1462000bf9578063e1f64d771462000c10578063e79597401462000c27578063ea5fa54b1462000c3e57600080fd5b8063cf5ccedb1162000108578063cf5ccedb1462000b8e578063cf7a1d771462000bb4578063d250185c1462000bcb578063dad73bed1462000be257600080fd5b8063b9f36dde1462000b28578063bd7d9d851462000b3f578063c2bf7d261462000b65578063ca600b1c1462000b7c57600080fd5b8063a310e2a311620001cb578063af17d38a1162000196578063af17d38a1462000aa9578063b3c650151462000ac0578063b88da7591462000ae3578063b89010821462000afa578063b8c510671462000b1157600080fd5b8063a310e2a31462000a2f578063a5a4fbbc1462000a64578063a745e3df1462000a7b578063a90be9071462000a9257600080fd5b806398457437116200020c57806398457437146200098a57806399fd467714620009a15780639ae31ff514620009e9578063a238accd1462000a1857600080fd5b8063893d20e8146200092a5780638d5d536e1462000934578063946dfcfe146200094b5780639675513d146200097357600080fd5b80634f42133311620003515780636b9bf08b11620002db5780637fec8b3111620002a65780637fec8b31146200088f5780638125ea9214620008a657806383d3331914620008b057806387c5658614620008b9578063887b1fa914620008f157600080fd5b80636b9bf08b14620008435780636fa29853146200085557806373617bf114620008675780637cef4842146200087e57600080fd5b80635d4345cc116200031c5780635d4345cc14620007db578063644c45e014620007f2578063674d0ccf146200081557806369a44a1b146200082c57600080fd5b80634f42133314620007545780635312fdc2146200076b57806357f80bbf146200079c5780635ab1bd5314620007d157600080fd5b80631a91887611620003df578063423eb9fa11620003aa578063423eb9fa14620005d25780634288121d14620005e757806342c74ed014620005f95780634793b4ab14620006105780634d459c90146200063657600080fd5b80631a918876146200056b5780631eff4b22146200059b578063278b381b14620005b2578063349195f914620005c957600080fd5b80630d0ccc5b11620004205780630d0ccc5b14620004f55780630d8e6e2c146200051b5780630d9b998d146200053a5780630fec111c146200055157600080fd5b806301ffc9a7146200045657806306a5298b146200049b57806307af0dc014620004b457806309648a9d14620004cb575b600080fd5b6200048662000467366004620040e1565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b620004b2620004ac3660046200426f565b62000ced565b005b620004b2620004c536600462004445565b62000d1c565b620004e2620004dc366004620045c7565b62000dd9565b60405160ff909116815260200162000492565b6200050c62000506366004620045e1565b62000e50565b60405190815260200162000492565b6200052562000ed9565b60405162ffffff909116815260200162000492565b620004b26200054b36600462004619565b62000f66565b6200055b62001109565b6040516200049292919062004706565b620005826200057c366004620047b2565b62001276565b6040516001600160a01b03909116815260200162000492565b6200050c60008051602062005dd583398151915281565b62000486620005c3366004620047b2565b620012a7565b600d546200050c565b620004b2620005e3366004620047d2565b5050565b6004546001600160a01b031662000582565b620004b26200060a3660046200426f565b620012b6565b6200062762000621366004620047b2565b620016a4565b60405162000492919062004872565b620006f6620006473660046200492d565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915260008051602062005e1583398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a00162000492565b62000486620007653660046200492d565b620016d1565b620007826200077c366004620045c7565b62001788565b6040516001600160c01b0319909116815260200162000492565b620007b3620007ad366004620047b2565b620017ca565b60408051825115158152602092830151928101929092520162000492565b62000582620017ff565b620004b2620007ec3660046200495d565b62001822565b620007fc620018cb565b6040516001600160601b03909116815260200162000492565b6200050c6200082636600462004990565b6200194a565b6200050c6200083d366004620047b2565b6200196e565b6005546001600160a01b031662000582565b6002546001600160a01b031662000582565b620004b262000878366004620049bf565b620019ff565b620004b2620005e336600462004a26565b620007fc620008a0366004620045c7565b62001ac4565b6200058262001b0c565b6007546200050c565b604080518082018252600080825260209182015281518083019092526011548252601254908201525b60405162000492919062004a47565b6200091b6200090236600462004990565b5060408051808201909152600081526060602082015290565b60405162000492919062004a5f565b6200058262001b26565b620004b26200094536600462004a97565b62001b32565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed901546200050c565b6200050c6200098436600462004b5e565b62001d2f565b620004b26200099b36600462004b91565b62001e99565b62000486620009b236600462004bd7565b6001600160c01b0319821660009081526008602090815260408083206001600160a01b038516845290915290205460ff1692915050565b620007fc620009fa366004620047b2565b6001600160601b039081166000908152600f60205260409020541690565b620004b262000a2936600462004c0a565b62002019565b6200058262000a40366004620047b2565b6001600160601b03166000908152601060205260409020546001600160a01b031690565b6200058262000a75366004620047b2565b62002086565b620004b262000a8c36600462004c32565b620020b2565b6200050c62000aa3366004620045c7565b62002218565b6200078262000aba36600462004c9b565b62002254565b62000aca620023dd565b6040516001600160401b03909116815260200162000492565b6200052562000af4366004620045c7565b62002400565b620004b262000b0b36600462004ce8565b62002455565b6200078262000b2236600462004c9b565b62002520565b620004b262000b3936600462004bd7565b620025a0565b62000b5662000b50366004620047b2565b62002709565b60405162000492919062004d1d565b620004b262000b7636600462004bd7565b6200279a565b6003546001600160a01b031662000582565b62000ba562000b9f36600462004990565b6200299a565b60405162000492919062004e5c565b620004b262000bc536600462004c32565b62002a98565b620008e262000bdc36600462004ea5565b62002bab565b620004b262000bf336600462004ec8565b62002c3a565b620007fc62000c0a36600462004efb565b62002e58565b620004b262000c2136600462004b91565b62002eef565b6200058262000c3836600462004f2a565b6200303d565b620004b262000c4f36600462004f4b565b62003062565b6200048662000c6636600462004990565b620031b3565b62000c8362000c7d36600462004f9d565b620031de565b6040805192835260208301919091520162000492565b62000cb062000caa366004620047b2565b62003275565b60405162000492919062004fcd565b620004b262000cd0366004620050b6565b62003339565b620004b262000ce73660046200495d565b620034b1565b620005e36065838360405160200162000d07919062004fcd565b60405160208183030381529060405262003586565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000d5d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d839190620051ae565b6001600160a01b0316336001600160a01b03161462000dbf5760405162461bcd60e51b815260040162000db690620051ce565b60405180910390fd5b620005e360d2838360405160200162000d07919062004d1d565b6001546040516309648a9d60e01b8152600481018390526000916001600160a01b0316906309648a9d90602401602060405180830381865afa15801562000e24573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e4a91906200520f565b92915050565b604051631488c84560e01b815260048101839052600082810b60248301529073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__90631488c84590604401602060405180830381865af415801562000eac573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ed291906200522f565b9392505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562000f3b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f61919062005249565b905090565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000fa7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fcd9190620051ae565b6001600160a01b0316336001600160a01b031614620010005760405162461bcd60e51b815260040162000db690620051ce565b6000604051806101c00160405280896001600160601b03168152602001836001600160601b03168152602001886001600160c01b031916815260200160006001600160a01b03168152602001876001600160c01b031916815260200186815260200185815260200160008152602001848152602001604051806020016040528060008152508152602001604051806020016040528060008152508152602001620010a8600090565b64ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff1690529050620010fe60d28a83604051602001620010e9919062004d1d565b6040516020818303038152906040526200367c565b505050505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c08201819052909160008051602062005dd583398151915290506040518060e001604052806200116a600090565b6001600160601b0390811682528354600160a01b908190049091166020830152600184015490810460ff9081166040840152600160a81b820416151560608301523060808301526001600160a01b031660a082015260028301805460c090920191620011d69062005269565b80601f0160208091040260200160405190810160405280929190818152602001828054620012049062005269565b8015620012555780601f10620012295761010080835404028352916020019162001255565b820191906000526020600020905b8154815290600101906020018083116200123757829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6000806200128760645b846200373b565b8060200190518101906200129c9190620052b2565b602001519392505050565b600062000e4a60658362003840565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620012f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200131b9190620051ae565b6001600160a01b0316336001600160a01b0316146200134e5760405162461bcd60e51b815260040162000db690620052fa565b80516020808301516001600160601b038516600090815260109092526040909120546001600160a01b031615620013df5760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031323a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000db6565b6001600160601b038281166000908152600f602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af41580156200144b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200147191906200533c565b620014c95760405162461bcd60e51b815260206004820152602160248201527f4552524f523a5452532d3031333a504f4f4c5f414c52454144595f4c494e4b456044820152601160fa1b606482015260840162000db6565b6001600160601b038181166000908152600f602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af415801562001535573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200155b91906200533c565b620015bb5760405162461bcd60e51b815260206004820152602960248201527f4552524f523a5452532d3031343a434f4d50454e534154494f4e5f414c524541604482015268111657d3125392d15160ba1b606482015260840162000db6565b838360400151604051620015cf906200405b565b6001600160601b0390921682526001600160a01b03166020820152604001604051809103906000f0801580156200160a573d6000803e3d6000fd5b506001600160601b03858116600081815260106020908152604080832080546001600160a01b0319166001600160a01b0397909716969096179095558584168252600f905283812080546bffffffffffffffffffffffff199081168417909155928616815292909220805490911690911790556200169e6200168a606590565b8585604051602001620010e9919062004fcd565b50505050565b620016ae62004069565b620016bc60dc5b836200373b565b80602001905181019062000e4a9190620053f5565b60008060008051602062005e1583398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af41580156200175b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200178191906200522f565b1192915050565b600060078281548110620017a057620017a0620054d6565b90600052602060002090600491828204019190066008029054906101000a900460c01b9050919050565b6040805180820190915260008082526020820152620017ea608c620016b5565b80602001905181019062000e4a9190620054ec565b600062000f6160008051602062005dd5833981519152546001600160a01b031690565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001863573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620018899190620051ae565b6001600160a01b0316336001600160a01b031614620018bc5760405162461bcd60e51b815260040162000db690620051ce565b620005e360d25b838362003941565b600060008051602062005dd583398151915254604051636939560f60e11b81523060048201526001600160a01b039091169063d272ac1e90602401602060405180830381865afa15801562001924573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f6191906200552b565b6001600160c01b03198116600090815260096020526040812062000e4a9062003a0c565b6001600160601b0381166000908152600e6020526040808220905163697d0f1b60e11b8152600481019190915273__$0dc988b1672de335b826773df9015af2da$__9063d2fa1e36906024015b602060405180830381865af4158015620019d9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e4a91906200522f565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001a3e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001a649190620051ae565b6001600160a01b0316336001600160a01b03161462001a975760405162461bcd60e51b815260040162000db690620052fa565b620005e3608c8383604051602001620010e991908151151581526020918201519181019190915260400190565b6000600d828154811062001adc5762001adc620054d6565b9060005260206000209060029182820401919006600c029054906101000a90046001600160601b03169050919050565b600062000f616001546001600160a01b031690565b919050565b600062000f6162003a17565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001b73573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001b999190620051ae565b6001600160a01b0316336001600160a01b03161462001bfb5760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000db6565b6000604051806101000160405280886001600160601b0316815260200187815260200184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050506020820188905260408201526060810187905260800142604051631ded81af60e31b815264ffffffffff90911660048201526024810187905273__$d53880c81dc91c20799140d711e5ab8718$__9063ef6c0d7890604401602060405180830381865af415801562001ccc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001cf291906200554b565b64ffffffffff168152602001600064ffffffffff169052905062001d2560dc8983604051602001620010e9919062004872565b5050505050505050565b6000306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001d72573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001d989190620051ae565b6001600160a01b0316336001600160a01b03161462001dcb5760405162461bcd60e51b815260040162000db6906200556b565b506001600160601b038083166000818152600c602090815260408083209486168352938152838220805490839055928252600b9052829020915163539eabab60e11b8152909173__$0dc988b1672de335b826773df9015af2da$__9163a73d57569162001e4e9186906004019182526001600160601b0316602082015260400190565b602060405180830381865af415801562001e6c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001e9291906200533c565b5092915050565b6001600160601b038281166000908152600e6020526040908190209051632bfdd6b960e01b81526004810182905291851660248301529073__$0dc988b1672de335b826773df9015af2da$__90632bfdd6b990604401602060405180830381865af415801562001f0d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001f3391906200533c565b1562001f8c5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504c2d3032303a42554e444c455f414c52454144595f414444456044820152601160fa1b606482015260840162000db6565b604051631461054360e31b8152600481018290526001600160601b038516602482015273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af415801562001fec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200201291906200533c565b5050505050565b60015460405163a238accd60e01b81526004810184905260ff831660248201526001600160a01b039091169063a238accd90604401600060405180830381600087803b1580156200206957600080fd5b505af11580156200207e573d6000803e3d6000fd5b505050505050565b60008062002095606462001280565b806020019051810190620020aa9190620052b2565b519392505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c620020d662000ed9565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801562002117573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200213d9190620055ac565b60008051602062005df58339815191528054600160401b900460ff168062002172575080546001600160401b03808416911610155b15620021915760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155620021be858562003a96565b620021c98362003cde565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b6040516322f5db0f60e11b81526004810182905260009073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__906345ebb61e90602401620019bb565b6000306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002295573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620022bb9190620051ae565b6001600160a01b0316336001600160a01b031614620022ee5760405162461bcd60e51b815260040162000db690620055d7565b60405163e14787cb60e01b815273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90620023279085906004016200560e565b602060405180830381865af415801562002345573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200236b919062005630565b90506200237881620031b3565b15620023d15760405162461bcd60e51b815260206004820152602160248201527f4552524f523a4143532d3031303a524f4c455f414c52454144595f45584953546044820152605360f81b606482015260840162000db6565b62001b21818362003ce8565b600062000f6160008051602062005df5833981519152546001600160401b031690565b600060008051602062005e158339815191526001018281548110620024295762002429620054d6565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b604080518082019091526001600160601b0383168152602081018290526200169e60c86040516355ee627560e01b81526001600160c01b03198716600482015273__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015620024d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620024f891906200522f565b836040516020016200250b919062004a5f565b60405160208183030381529060405262003d4d565b60405163e14787cb60e01b815260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906200255c9085906004016200560e565b602060405180830381865af41580156200257a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e4a919062005630565b6001600160c01b0319828116600081815260066020526040902054849260c09190911b1614620025e45760405162461bcd60e51b815260040162000db69062005650565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002623573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620026499190620051ae565b6001600160a01b0316336001600160a01b0316146200267c5760405162461bcd60e51b815260040162000db690620055d7565b6001600160c01b0319831660008181526008602090815260408083206001600160a01b03871684528252808320805460ff191690559282526009905220620026c5908362003d83565b507fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d1698754539668483836000604051620026fc9392919062005687565b60405180910390a1505050565b604080516101c08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820183905261010082018390526101208201819052610140820152610160810182905261018081018290526101a08101919091526200278560d2620016b5565b80602001905181019062000e4a9190620056b4565b6001600160c01b0319828116600081815260066020526040902054849260c09190911b1614620027de5760405162461bcd60e51b815260040162000db69062005650565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200281d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620028439190620051ae565b6001600160a01b0316336001600160a01b031614620028765760405162461bcd60e51b815260040162000db690620055d7565b6001600160c01b0319831660009081526006602052604090206002015460ff16620028e45760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4143532d3034303a524f4c455f4e4f545f414354495645000000604482015260640162000db6565b6001600160c01b0319831660008181526008602090815260408083206001600160a01b03871684528252808320805460ff19166001179055928252600990522062002930908362003d9a565b506001600160c01b0319831660009081526008602090815260408083206001600160a01b0386168452909152908190205490517fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d1698754539668491620026fc918691869160ff9091169062005687565b6040805160608082018352600080835260208084018390528385018290526001600160c01b0319868116835260068252918590208551938401909552845460c01b90911682526001840180549394929391840191620029f99062005269565b80601f016020809104026020016040519081016040528092919081815260200182805462002a279062005269565b801562002a785780601f1062002a4c5761010080835404028352916020019162002a78565b820191906000526020600020905b81548152906001019060200180831162002a5a57829003601f168201915b50505091835250506002919091015460ff16151560209091015292915050565b60008051602062005df58339815191528054600160401b810460ff1615906001600160401b031660008115801562002acd5750825b90506000826001600160401b0316600114801562002aea5750303b155b90508115801562002af9575080155b1562002b185760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831562002b4357845460ff60401b1916600160401b1785555b62002b4f888862003a96565b62002b5b878762003cde565b831562001d2557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b60408051808201825260008082526020820152905163638086fd60e11b8152600481018490526024810183905273__$a23651848365a6a5ca15f07b4331037f48$__9063c7010dfa906044016040805180830381865af415801562002c14573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ed2919062005821565b6001600160c01b0319828116600081815260066020526040902054849260c09190911b161462002c7e5760405162461bcd60e51b815260040162000db69062005650565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002cbd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002ce39190620051ae565b6001600160a01b0316336001600160a01b03161462002d165760405162461bcd60e51b815260040162000db690620055d7565b6001600160c01b03198084166000908152600660209081526040808320815160608101909252805460c01b909416815260018401805493949193919284019162002d609062005269565b80601f016020809104026020016040519081016040528092919081815260200182805462002d8e9062005269565b801562002ddf5780601f1062002db35761010080835404028352916020019162002ddf565b820191906000526020600020905b81548152906001019060200180831162002dc157829003601f168201915b50505091835250506002919091015460ff1615156020909101528315156040820152905062002e0e8162003db1565b604080516001600160c01b03198616815284151560208201527feaffaec948991ecc6e201ba4f67ba865fbf66aace3d2f2823dc5483cc9813fda910160405180910390a150505050565b6001600160601b0382166000908152600e6020526040808220905163e797d89960e01b815260048101919091526024810183905273__$0dc988b1672de335b826773df9015af2da$__9063e797d89990604401602060405180830381865af415801562002ec9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ed291906200552b565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562002f30573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002f569190620051ae565b6001600160a01b0316336001600160a01b03161462002f895760405162461bcd60e51b815260040162000db6906200556b565b6001600160601b038381166000818152600c60209081526040808320948716808452948252808320869055928252600b90528190209051631461054360e31b81526004810191909152602481019190915273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af415801562003017573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200169e91906200533c565b6001600160c01b03198216600090815260096020526040812062000ed2908362003e8f565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620030a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620030c79190620051ae565b6001600160a01b0316336001600160a01b031614620030fa5760405162461bcd60e51b815260040162000db690620052fa565b604080518082019091526001600160a01b03838116825282166020820152600d8054600180820183556000929092527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb56002820401805492909116600c026101000a6001600160601b0381810219909316928716029190911790556200169e62003182606490565b8583604051602001620010e9919081516001600160a01b039081168252602092830151169181019190915260400190565b6001600160c01b0319818116600081815260066020526040812054909260c09190911b161462000e4a565b60405163012ebd8360e21b8152815160048201526020820151602482015260448101839052600090819073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af415801562003244573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200326a919062005840565b915091509250929050565b620033186040805161012081018252600080825260208083018290528284018290528351808501855282815280820183905260608401528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e084015283518085019094528184528301529061010082015290565b620033246065620016b5565b80602001905181019062000e4a919062005865565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af11580156200337a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620033a09190620051ae565b6001600160a01b0316336001600160a01b03161480620034375750306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620033fc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620034229190620051ae565b6001600160a01b0316336001600160a01b0316145b620034975760405162461bcd60e51b815260206004820152602960248201527f4552524f523a42444c2d3030333a4e4f545f504f4f4c5f4f525f50524f445543604482015268545f5345525649434560b81b606482015260840162000db6565b620005e360dc838360405160200162000d07919062004872565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620034f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620035189190620051ae565b6001600160a01b0316336001600160a01b0316146200357a5760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000db6565b620005e360dc620018c3565b600a54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b0390911690636ec3d9409073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620035fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200362391906200522f565b836040518363ffffffff1660e01b81526004016200364392919062005939565b600060405180830381600087803b1580156200365e57600080fd5b505af115801562003673573d6000803e3d6000fd5b50505050505050565b600a54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b0390911690635dee47889073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620036f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200371991906200522f565b85846040518463ffffffff1660e01b8152600401620036439392919062005954565b600a54604051630711349960e31b81526001600160601b038316600482015260ff841660248201526060916001600160a01b0316906354f6127f9073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620037b3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620037d991906200522f565b6040518263ffffffff1660e01b8152600401620037f891815260200190565b600060405180830381865afa15801562003816573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000ed2919081019062005978565b600a54604051630711349960e31b81526001600160601b038316600482015260ff841660248201526000916001600160a01b0316906338a699a49073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620038b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620038de91906200522f565b6040518263ffffffff1660e01b8152600401620038fd91815260200190565b602060405180830381865afa1580156200391b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ed291906200533c565b600a54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b039091169063a238accd9073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620039b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620039de91906200522f565b6040516001600160e01b031960e084901b168152600481019190915260ff8416602482015260440162003643565b600062000e4a825490565b600060008051602062005dd583398151915254604051630a57ebcf60e11b81523060048201526001600160a01b03909116906314afd79e90602401602060405180830381865afa15801562003a70573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f619190620051ae565b62003aa062003e9d565b60008051602062005e15833981519152600062003ad360008051602062005df5833981519152546001600160401b031690565b9050600062003ae162000ed9565b9050816001600160401b031660010362003b105760028301805462ffffff191662ffffff831617905562003b60565b600283015462ffffff9081169082161162003b605760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b604482015260640162000db6565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b0380891692840192909252908616908201526060810162003bd54290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890620022099083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6200045162003e9d565b604080516060810182526001600160c01b0319841681526020810183905260019181019190915262003d1a8162003db1565b7f34e1f82fc40bf14028ae2a3150f074e7715e20ed8e30e250f8789cee718c64858383604051620026fc929190620059b0565b600a54604051630bbdc8f160e31b81526001600160a01b0390911690635dee478890620036439085908790869060040162005954565b600062000ed2836001600160a01b03841662003ed8565b600062000ed2836001600160a01b03841662003fdc565b80516001600160c01b0319811660009081526006602090815260409091208351815467ffffffffffffffff191660c09190911c17815590830151839190600182019062003dff908262005a26565b50604091909101516002909101805460ff191691151591909117905562003e2681620031b3565b620005e357600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600482040180546001600160401b0360039093166008026101000a928302191660c09390931c9190910291909117905550565b600062000ed283836200402e565b60008051602062005df583398151915254600160401b900460ff1662003ed657604051631afcd79f60e31b815260040160405180910390fd5b565b6000818152600183016020526040812054801562003fd157600062003eff60018362005af2565b855490915060009062003f159060019062005af2565b905081811462003f8157600086600001828154811062003f395762003f39620054d6565b906000526020600020015490508087600001848154811062003f5f5762003f5f620054d6565b6000918252602080832090910192909255918252600188019052604090208390555b855486908062003f955762003f9562005b14565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505062000e4a565b600091505062000e4a565b6000818152600183016020526040812054620040255750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000e4a565b50600062000e4a565b6000826000018281548110620040485762004048620054d6565b9060005260206000200154905092915050565b6102aa8062005b2b83390190565b60405180610100016040528060006001600160601b03168152602001620040a3604051806040016040528060008152602001600081525090565b815260200160608152602001600081526020016000815260200160008152602001600064ffffffffff168152602001600064ffffffffff1681525090565b600060208284031215620040f457600080fd5b81356001600160e01b03198116811462000ed257600080fd5b6001600160601b03811681146200412357600080fd5b50565b803562001b21816200410d565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156200416e576200416e62004133565b60405290565b60405161012081016001600160401b03811182821017156200416e576200416e62004133565b6040516101c081016001600160401b03811182821017156200416e576200416e62004133565b60405161010081016001600160401b03811182821017156200416e576200416e62004133565b604051601f8201601f191681016001600160401b038111828210171562004211576200421162004133565b604052919050565b6001600160a01b03811681146200412357600080fd5b803562001b218162004219565b6000604082840312156200424f57600080fd5b6200425962004149565b9050813581526020820135602082015292915050565b6000808284036102008112156200428557600080fd5b833562004292816200410d565b92506101e0601f1982011215620042a857600080fd5b50620042b362004174565b620042c16020850162004126565b8152620042d16040850162004126565b6020820152620042e4606085016200422f565b6040820152620042f885608086016200423c565b60608201526200430c8560c086016200423c565b608082015261010062004322868287016200423c565b60a0830152620043378661014087016200423c565b60c08301526200434c8661018087016200423c565b60e083015262004361866101c087016200423c565b90820152919491935090915050565b6001600160c01b0319811681146200412357600080fd5b803562001b218162004370565b60006001600160401b03821115620043b057620043b062004133565b50601f01601f191660200190565b6000620043d5620043cf8462004394565b620041e6565b9050828152838383011115620043ea57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126200441357600080fd5b62000ed283833560208501620043be565b64ffffffffff811681146200412357600080fd5b803562001b218162004424565b600080604083850312156200445957600080fd5b823562004466816200410d565b915060208301356001600160401b03808211156200448357600080fd5b908401906101c082870312156200449957600080fd5b620044a36200419a565b620044ae8362004126565b8152620044be6020840162004126565b6020820152620044d16040840162004387565b6040820152620044e4606084016200422f565b6060820152620044f76080840162004387565b608082015260a083013560a082015260c083013560c082015260e083013560e082015261010080840135818301525061012080840135838111156200453b57600080fd5b620045498982870162004401565b82840152505061014080840135838111156200456457600080fd5b620045728982870162004401565b82840152505061016091506200458a82840162004438565b828201526101809150620045a082840162004438565b828201526101a09150620045b682840162004438565b828201528093505050509250929050565b600060208284031215620045da57600080fd5b5035919050565b60008060408385031215620045f557600080fd5b8235915060208301358060000b81146200460e57600080fd5b809150509250929050565b600080600080600080600080610100898b0312156200463757600080fd5b883562004644816200410d565b9750602089013562004656816200410d565b96506040890135620046688162004370565b955060608901356200467a8162004370565b94506080890135935060a0890135925060c0890135915060e0890135620046a1816200410d565b809150509295985092959890939650565b60005b83811015620046cf578181015183820152602001620046b5565b50506000910152565b60008151808452620046f2816020860160208601620046b2565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516200474b60a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015262004793610120840182620046d8565b90508281036020840152620047a98185620046d8565b95945050505050565b600060208284031215620047c557600080fd5b813562000ed2816200410d565b60008060408385031215620047e657600080fd5b8235620047f38162004370565b915060208301356001600160401b03808211156200481057600080fd5b90840190604082870312156200482557600080fd5b6200482f62004149565b82356200483c816200410d565b81526020830135828111156200485157600080fd5b6200485f8882860162004401565b6020830152508093505050509250929050565b602081526001600160601b03825116602082015260006020830151620048a5604084018280518252602090810151910152565b506040830151610120806080850152620048c4610140850183620046d8565b9150606085015160a0850152608085015160c085015260a085015160e085015260c0850151620048fe61010086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b62ffffff811681146200412357600080fd5b6000602082840312156200494057600080fd5b813562000ed2816200491b565b60ff811681146200412357600080fd5b600080604083850312156200497157600080fd5b82356200497e816200410d565b915060208301356200460e816200494d565b600060208284031215620049a357600080fd5b813562000ed28162004370565b80151581146200412357600080fd5b6000808284036060811215620049d457600080fd5b8335620049e1816200410d565b92506040601f1982011215620049f657600080fd5b5062004a0162004149565b602084013562004a1181620049b0565b81526040939093013560208401525092909150565b6000806040838503121562004a3a57600080fd5b82356200497e8162004370565b81518152602080830151908201526040810162000e4a565b602081526001600160601b0382511660208201526000602083015160408084015262004a8f6060840182620046d8565b949350505050565b600080600080600080600060e0888a03121562004ab357600080fd5b873562004ac0816200410d565b9650602088013562004ad2816200410d565b955062004ae38960408a016200423c565b94506080880135935060a0880135925060c08801356001600160401b038082111562004b0e57600080fd5b818a0191508a601f83011262004b2357600080fd5b81358181111562004b3357600080fd5b8b602082850101111562004b4657600080fd5b60208301945080935050505092959891949750929550565b6000806040838503121562004b7257600080fd5b823562004b7f816200410d565b915060208301356200460e816200410d565b60008060006060848603121562004ba757600080fd5b833562004bb4816200410d565b9250602084013562004bc6816200410d565b929592945050506040919091013590565b6000806040838503121562004beb57600080fd5b823562004bf88162004370565b915060208301356200460e8162004219565b6000806040838503121562004c1e57600080fd5b8235915060208301356200460e816200494d565b60008060006060848603121562004c4857600080fd5b833562004c558162004219565b9250602084013562004c678162004219565b915060408401356001600160401b0381111562004c8357600080fd5b62004c918682870162004401565b9150509250925092565b60006020828403121562004cae57600080fd5b81356001600160401b0381111562004cc557600080fd5b8201601f8101841362004cd757600080fd5b62004a8f84823560208401620043be565b60008060006060848603121562004cfe57600080fd5b833562004d0b8162004370565b9250602084013562004c67816200410d565b6020815262004d386020820183516001600160601b03169052565b6000602083015162004d5560408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160a01b03811660808401525060808301516001600160c01b0319811660a08401525060a083015160c083015260c083015160e083015260e08301516101008181850152808501519150506101208181850152808501519150506101c0610140818186015262004de96101e0860184620046d8565b9250808601519050610160601f19868503018187015262004e0b8483620046d8565b93508087015191505061018062004e2a8187018364ffffffffff169052565b86015190506101a062004e458682018364ffffffffff169052565b86015164ffffffffff811683870152905062004911565b602080825282516001600160c01b031916828201528201516060604083015260009062004e8d6080840182620046d8565b90506040840151151560608401528091505092915050565b6000806040838503121562004eb957600080fd5b50508035926020909101359150565b6000806040838503121562004edc57600080fd5b823562004ee98162004370565b915060208301356200460e81620049b0565b6000806040838503121562004f0f57600080fd5b823562004f1c816200410d565b946020939093013593505050565b6000806040838503121562004f3e57600080fd5b823562004f1c8162004370565b60008060006060848603121562004f6157600080fd5b833562004f6e816200410d565b9250602084013562004f808162004219565b9150604084013562004f928162004219565b809150509250925092565b6000806060838503121562004fb157600080fd5b8235915062004fc484602085016200423c565b90509250929050565b81516001600160601b031681526020808301516101e083019162004ffb908401826001600160601b03169052565b5060408301516200501760408401826001600160a01b03169052565b50606083015162005035606084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151805161012084015260208101516101408401525060e0830151805161016084015260208101516101808401525061010083015180516101a084015260208101516101c084015262001e92565b60008060408385031215620050ca57600080fd5b8235620050d7816200410d565b915060208301356001600160401b0380821115620050f457600080fd5b9084019061012082870312156200510a57600080fd5b62005114620041c0565b6200511f8362004126565b81526200513087602085016200423c565b60208201526060830135828111156200514857600080fd5b620051568882860162004401565b6040830152506080830135606082015260a0830135608082015260c083013560a08201526200518860e0840162004438565b60c08201526200519c610100840162004438565b60e08201528093505050509250929050565b600060208284031215620051c157600080fd5b815162000ed28162004219565b60208082526021908201527f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b6000602082840312156200522257600080fd5b815162000ed2816200494d565b6000602082840312156200524257600080fd5b5051919050565b6000602082840312156200525c57600080fd5b815162000ed2816200491b565b600181811c908216806200527e57607f821691505b6020821081036200529f57634e487b7160e01b600052602260045260246000fd5b50919050565b805162001b218162004219565b600060408284031215620052c557600080fd5b620052cf62004149565b8251620052dc8162004219565b81526020830151620052ee8162004219565b60208201529392505050565b60208082526022908201527f4552524f523a434d502d3030313a4e4f545f52454749535452595f5345525649604082015261434560f01b606082015260800190565b6000602082840312156200534f57600080fd5b815162000ed281620049b0565b805162001b21816200410d565b6000604082840312156200537c57600080fd5b6200538662004149565b9050815181526020820151602082015292915050565b600082601f830112620053ae57600080fd5b8151620053bf620043cf8262004394565b818152846020838601011115620053d557600080fd5b62004a8f826020830160208701620046b2565b805162001b218162004424565b6000602082840312156200540857600080fd5b81516001600160401b03808211156200542057600080fd5b9083019061012082860312156200543657600080fd5b62005440620041c0565b6200544b836200535c565b81526200545c866020850162005369565b60208201526060830151828111156200547457600080fd5b62005482878286016200539c565b6040830152506080830151606082015260a0830151608082015260c083015160a0820152620054b460e08401620053e8565b60c0820152620054c86101008401620053e8565b60e082015295945050505050565b634e487b7160e01b600052603260045260246000fd5b600060408284031215620054ff57600080fd5b6200550962004149565b82516200551681620049b0565b81526020928301519281019290925250919050565b6000602082840312156200553e57600080fd5b815162000ed2816200410d565b6000602082840312156200555e57600080fd5b815162000ed28162004424565b60208082526021908201527f4552524f523a42444c2d3030323a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b600060208284031215620055bf57600080fd5b81516001600160401b038116811462000ed257600080fd5b60208082526017908201527f4552524f523a4143532d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b60208152600062000ed26020830184620046d8565b805162001b218162004370565b6000602082840312156200564357600080fd5b815162000ed28162004370565b6020808252601f908201527f4552524f523a4143532d3030323a524f4c455f4e4f545f4558495354494e4700604082015260600190565b6001600160c01b03199390931683526001600160a01b039190911660208301521515604082015260600190565b600060208284031215620056c757600080fd5b81516001600160401b0380821115620056df57600080fd5b908301906101c08286031215620056f557600080fd5b620056ff6200419a565b6200570a836200535c565b81526200571a602084016200535c565b60208201526200572d6040840162005623565b60408201526200574060608401620052a5565b6060820152620057536080840162005623565b608082015260a083015160a082015260c083015160c082015260e083015160e082015261010080840151818301525061012080840151838111156200579757600080fd5b620057a5888287016200539c565b8284015250506101408084015183811115620057c057600080fd5b620057ce888287016200539c565b8284015250506101609150620057e6828401620053e8565b828201526101809150620057fc828401620053e8565b828201526101a0915062005812828401620053e8565b91810191909152949350505050565b6000604082840312156200583457600080fd5b62000ed2838362005369565b600080604083850312156200585457600080fd5b505080516020909101519092909150565b60006101e082840312156200587957600080fd5b6200588362004174565b6200588e836200535c565b81526200589e602084016200535c565b6020820152620058b160408401620052a5565b6040820152620058c5846060850162005369565b6060820152620058d98460a0850162005369565b6080820152620058ed8460e0850162005369565b60a08201526200590284610120850162005369565b60c08201526200591784610160850162005369565b60e08201526200592c846101a0850162005369565b6101008201529392505050565b82815260406020820152600062004a8f6040830184620046d8565b83815260ff83166020820152606060408201526000620047a96060830184620046d8565b6000602082840312156200598b57600080fd5b81516001600160401b03811115620059a257600080fd5b62004a8f848285016200539c565b6001600160401b0360c01b8316815260406020820152600062004a8f6040830184620046d8565b601f82111562005a2157600081815260208120601f850160051c8101602086101562005a005750805b601f850160051c820191505b818110156200207e5782815560010162005a0c565b505050565b81516001600160401b0381111562005a425762005a4262004133565b62005a5a8162005a53845462005269565b84620059d7565b602080601f83116001811462005a92576000841562005a795750858301515b600019600386901b1c1916600185901b1785556200207e565b600085815260208120601f198616915b8281101562005ac35788860151825594840194600190910190840162005aa2565b508582101562005ae25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8181038181111562000e4a57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fdfe608060405234801561001057600080fd5b506040516102aa3803806102aa83398101604081905261002f9161005b565b6001600160a01b03166c01000000000000000000000000026001600160601b03909116176000556100ad565b6000806040838503121561006e57600080fd5b82516001600160601b038116811461008557600080fd5b60208401519092506001600160a01b03811681146100a257600080fd5b809150509250929050565b6101ee806100bc6000396000f3fe608060405234801561001057600080fd5b50600436106100405760003560e01c806251884a1461004557806321df0da71461006a578063beabacc814610095575b600080fd5b6000546040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b600054600160601b90046001600160a01b03166040516001600160a01b039091168152602001610061565b6100a86100a3366004610153565b6100aa565b005b6000546040516323b872dd60e01b81526001600160a01b038581166004830152848116602483015260448201849052600160601b909204909116906323b872dd906064016020604051808303816000875af115801561010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610131919061018f565b50505050565b80356001600160a01b038116811461014e57600080fd5b919050565b60008060006060848603121561016857600080fd5b61017184610137565b925061017f60208501610137565b9150604084013590509250925092565b6000602082840312156101a157600080fd5b815180151581146101b157600080fd5b939250505056fea2646970667358221220455e331420069b52ddb557c4094a8236a9cb76b6fb2388562bb6d2f594dbd6b064736f6c634300081400336548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a2646970667358221220f72222e8986b9953e8934aed7c93f9d934bb86e1e1f99464a912bbd238b3f1a564736f6c63430008140033",
|
2227
|
+
"linkReferences": {
|
2228
|
+
"contracts/types/Blocknumber.sol": {
|
2229
|
+
"BlocknumberLib": [
|
2230
|
+
{
|
2231
|
+
"length": 20,
|
2232
|
+
"start": 9868
|
2233
|
+
}
|
2234
|
+
]
|
2235
|
+
},
|
2236
|
+
"contracts/types/Fee.sol": {
|
2237
|
+
"FeeLib": [
|
2238
|
+
{
|
2239
|
+
"length": 20,
|
2240
|
+
"start": 15174
|
2241
|
+
},
|
2242
|
+
{
|
2243
|
+
"length": 20,
|
2244
|
+
"start": 16758
|
2245
|
+
}
|
2246
|
+
]
|
2247
|
+
},
|
2248
|
+
"contracts/types/Key32.sol": {
|
2249
|
+
"Key32Lib": [
|
2250
|
+
{
|
2251
|
+
"length": 20,
|
2252
|
+
"start": 33292
|
2253
|
+
},
|
2254
|
+
{
|
2255
|
+
"length": 20,
|
2256
|
+
"start": 34514
|
2257
|
+
}
|
2258
|
+
]
|
2259
|
+
},
|
2260
|
+
"contracts/types/NftId.sol": {
|
2261
|
+
"NftIdLib": [
|
2262
|
+
{
|
2263
|
+
"length": 20,
|
2264
|
+
"start": 9084
|
2265
|
+
},
|
2266
|
+
{
|
2267
|
+
"length": 20,
|
2268
|
+
"start": 9318
|
2269
|
+
},
|
2270
|
+
{
|
2271
|
+
"length": 20,
|
2272
|
+
"start": 17710
|
2273
|
+
},
|
2274
|
+
{
|
2275
|
+
"length": 20,
|
2276
|
+
"start": 17956
|
2277
|
+
},
|
2278
|
+
{
|
2279
|
+
"length": 20,
|
2280
|
+
"start": 18148
|
2281
|
+
},
|
2282
|
+
{
|
2283
|
+
"length": 20,
|
2284
|
+
"start": 18409
|
2285
|
+
},
|
2286
|
+
{
|
2287
|
+
"length": 20,
|
2288
|
+
"start": 18665
|
2289
|
+
}
|
2290
|
+
]
|
2291
|
+
},
|
2292
|
+
"contracts/types/NftIdSet.sol": {
|
2293
|
+
"LibNftIdSet": [
|
2294
|
+
{
|
2295
|
+
"length": 20,
|
2296
|
+
"start": 10505
|
2297
|
+
},
|
2298
|
+
{
|
2299
|
+
"length": 20,
|
2300
|
+
"start": 11647
|
2301
|
+
},
|
2302
|
+
{
|
2303
|
+
"length": 20,
|
2304
|
+
"start": 11838
|
2305
|
+
},
|
2306
|
+
{
|
2307
|
+
"length": 20,
|
2308
|
+
"start": 12061
|
2309
|
+
},
|
2310
|
+
{
|
2311
|
+
"length": 20,
|
2312
|
+
"start": 15866
|
2313
|
+
},
|
2314
|
+
{
|
2315
|
+
"length": 20,
|
2316
|
+
"start": 16200
|
2317
|
+
}
|
2318
|
+
]
|
2319
|
+
},
|
2320
|
+
"contracts/types/ObjectType.sol": {
|
2321
|
+
"ObjectTypeLib": [
|
2322
|
+
{
|
2323
|
+
"length": 20,
|
2324
|
+
"start": 31210
|
2325
|
+
}
|
2326
|
+
]
|
2327
|
+
},
|
2328
|
+
"contracts/types/RiskId.sol": {
|
2329
|
+
"RiskIdLib": [
|
2330
|
+
{
|
2331
|
+
"length": 20,
|
2332
|
+
"start": 13315
|
2333
|
+
}
|
2334
|
+
]
|
2335
|
+
},
|
2336
|
+
"contracts/types/RoleId.sol": {
|
2337
|
+
"RoleIdLib": [
|
2338
|
+
{
|
2339
|
+
"length": 20,
|
2340
|
+
"start": 1921
|
2341
|
+
},
|
2342
|
+
{
|
2343
|
+
"length": 20,
|
2344
|
+
"start": 2189
|
2345
|
+
},
|
2346
|
+
{
|
2347
|
+
"length": 20,
|
2348
|
+
"start": 2278
|
2349
|
+
},
|
2350
|
+
{
|
2351
|
+
"length": 20,
|
2352
|
+
"start": 2370
|
2353
|
+
},
|
2354
|
+
{
|
2355
|
+
"length": 20,
|
2356
|
+
"start": 12905
|
2357
|
+
},
|
2358
|
+
{
|
2359
|
+
"length": 20,
|
2360
|
+
"start": 13470
|
2361
|
+
}
|
2362
|
+
]
|
2363
|
+
},
|
2364
|
+
"contracts/types/StateId.sol": {
|
2365
|
+
"StateIdLib": [
|
2366
|
+
{
|
2367
|
+
"length": 20,
|
2368
|
+
"start": 30869
|
2369
|
+
},
|
2370
|
+
{
|
2371
|
+
"length": 20,
|
2372
|
+
"start": 31427
|
2373
|
+
},
|
2374
|
+
{
|
2375
|
+
"length": 20,
|
2376
|
+
"start": 31952
|
2377
|
+
},
|
2378
|
+
{
|
2379
|
+
"length": 20,
|
2380
|
+
"start": 32685
|
2381
|
+
},
|
2382
|
+
{
|
2383
|
+
"length": 20,
|
2384
|
+
"start": 32905
|
2385
|
+
},
|
2386
|
+
{
|
2387
|
+
"length": 20,
|
2388
|
+
"start": 33462
|
2389
|
+
},
|
2390
|
+
{
|
2391
|
+
"length": 20,
|
2392
|
+
"start": 33731
|
2393
|
+
},
|
2394
|
+
{
|
2395
|
+
"length": 20,
|
2396
|
+
"start": 33951
|
2397
|
+
},
|
2398
|
+
{
|
2399
|
+
"length": 20,
|
2400
|
+
"start": 34443
|
2401
|
+
}
|
2402
|
+
]
|
2403
|
+
},
|
2404
|
+
"contracts/types/Timestamp.sol": {
|
2405
|
+
"TimestampLib": [
|
2406
|
+
{
|
2407
|
+
"length": 20,
|
2408
|
+
"start": 11261
|
2409
|
+
}
|
2410
|
+
]
|
2411
|
+
},
|
2412
|
+
"contracts/types/UFixed.sol": {
|
2413
|
+
"UFixedMathLib": [
|
2414
|
+
{
|
2415
|
+
"length": 20,
|
2416
|
+
"start": 7645
|
2417
|
+
},
|
2418
|
+
{
|
2419
|
+
"length": 20,
|
2420
|
+
"start": 12701
|
2421
|
+
}
|
2422
|
+
]
|
2423
|
+
},
|
2424
|
+
"contracts/types/Version.sol": {
|
2425
|
+
"VersionLib": [
|
1018
2426
|
{
|
1019
2427
|
"length": 20,
|
1020
|
-
"start":
|
2428
|
+
"start": 1391
|
1021
2429
|
},
|
1022
2430
|
{
|
1023
2431
|
"length": 20,
|
1024
|
-
"start":
|
2432
|
+
"start": 2444
|
1025
2433
|
},
|
1026
2434
|
{
|
1027
2435
|
"length": 20,
|
1028
|
-
"start":
|
2436
|
+
"start": 7788
|
2437
|
+
},
|
2438
|
+
{
|
2439
|
+
"length": 20,
|
2440
|
+
"start": 12320
|
1029
2441
|
}
|
1030
2442
|
]
|
1031
2443
|
}
|
1032
2444
|
},
|
1033
2445
|
"deployedLinkReferences": {
|
2446
|
+
"contracts/types/Blocknumber.sol": {
|
2447
|
+
"BlocknumberLib": [
|
2448
|
+
{
|
2449
|
+
"length": 20,
|
2450
|
+
"start": 5920
|
2451
|
+
}
|
2452
|
+
]
|
2453
|
+
},
|
2454
|
+
"contracts/types/Fee.sol": {
|
2455
|
+
"FeeLib": [
|
2456
|
+
{
|
2457
|
+
"length": 20,
|
2458
|
+
"start": 11226
|
2459
|
+
},
|
2460
|
+
{
|
2461
|
+
"length": 20,
|
2462
|
+
"start": 12810
|
2463
|
+
}
|
2464
|
+
]
|
2465
|
+
},
|
1034
2466
|
"contracts/types/NftId.sol": {
|
1035
2467
|
"NftIdLib": [
|
1036
2468
|
{
|
1037
2469
|
"length": 20,
|
1038
|
-
"start":
|
2470
|
+
"start": 5136
|
2471
|
+
},
|
2472
|
+
{
|
2473
|
+
"length": 20,
|
2474
|
+
"start": 5370
|
2475
|
+
},
|
2476
|
+
{
|
2477
|
+
"length": 20,
|
2478
|
+
"start": 13762
|
2479
|
+
},
|
2480
|
+
{
|
2481
|
+
"length": 20,
|
2482
|
+
"start": 14008
|
2483
|
+
},
|
2484
|
+
{
|
2485
|
+
"length": 20,
|
2486
|
+
"start": 14200
|
2487
|
+
},
|
2488
|
+
{
|
2489
|
+
"length": 20,
|
2490
|
+
"start": 14461
|
2491
|
+
},
|
2492
|
+
{
|
2493
|
+
"length": 20,
|
2494
|
+
"start": 14717
|
2495
|
+
}
|
2496
|
+
]
|
2497
|
+
},
|
2498
|
+
"contracts/types/NftIdSet.sol": {
|
2499
|
+
"LibNftIdSet": [
|
2500
|
+
{
|
2501
|
+
"length": 20,
|
2502
|
+
"start": 6557
|
2503
|
+
},
|
2504
|
+
{
|
2505
|
+
"length": 20,
|
2506
|
+
"start": 7699
|
2507
|
+
},
|
2508
|
+
{
|
2509
|
+
"length": 20,
|
2510
|
+
"start": 7890
|
2511
|
+
},
|
2512
|
+
{
|
2513
|
+
"length": 20,
|
2514
|
+
"start": 8113
|
1039
2515
|
},
|
1040
2516
|
{
|
1041
2517
|
"length": 20,
|
1042
|
-
"start":
|
2518
|
+
"start": 11918
|
2519
|
+
},
|
2520
|
+
{
|
2521
|
+
"length": 20,
|
2522
|
+
"start": 12252
|
2523
|
+
}
|
2524
|
+
]
|
2525
|
+
},
|
2526
|
+
"contracts/types/RiskId.sol": {
|
2527
|
+
"RiskIdLib": [
|
2528
|
+
{
|
2529
|
+
"length": 20,
|
2530
|
+
"start": 9367
|
2531
|
+
}
|
2532
|
+
]
|
2533
|
+
},
|
2534
|
+
"contracts/types/RoleId.sol": {
|
2535
|
+
"RoleIdLib": [
|
2536
|
+
{
|
2537
|
+
"length": 20,
|
2538
|
+
"start": 8957
|
1043
2539
|
},
|
1044
2540
|
{
|
1045
2541
|
"length": 20,
|
1046
|
-
"start":
|
2542
|
+
"start": 9522
|
2543
|
+
}
|
2544
|
+
]
|
2545
|
+
},
|
2546
|
+
"contracts/types/Timestamp.sol": {
|
2547
|
+
"TimestampLib": [
|
2548
|
+
{
|
2549
|
+
"length": 20,
|
2550
|
+
"start": 7313
|
2551
|
+
}
|
2552
|
+
]
|
2553
|
+
},
|
2554
|
+
"contracts/types/UFixed.sol": {
|
2555
|
+
"UFixedMathLib": [
|
2556
|
+
{
|
2557
|
+
"length": 20,
|
2558
|
+
"start": 3697
|
1047
2559
|
},
|
1048
2560
|
{
|
1049
2561
|
"length": 20,
|
1050
|
-
"start":
|
2562
|
+
"start": 8753
|
2563
|
+
}
|
2564
|
+
]
|
2565
|
+
},
|
2566
|
+
"contracts/types/Version.sol": {
|
2567
|
+
"VersionLib": [
|
2568
|
+
{
|
2569
|
+
"length": 20,
|
2570
|
+
"start": 3840
|
1051
2571
|
},
|
1052
2572
|
{
|
1053
2573
|
"length": 20,
|
1054
|
-
"start":
|
2574
|
+
"start": 8372
|
1055
2575
|
}
|
1056
2576
|
]
|
1057
2577
|
}
|