@etherisc/gif-next 0.0.2-f752d2a-551 → 0.0.2-f7b8c9f-518
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +71 -0
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +166 -39
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +557 -0
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +119 -39
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +177 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +108 -156
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +67 -139
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +417 -88
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +360 -51
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- 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 +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +913 -530
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +1043 -556
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +224 -43
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +51 -1
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +49 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IService.sol/IService.json +174 -53
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +263 -45
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +41 -23
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +4 -4
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +220 -52
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +55 -54
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +56 -55
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +22 -93
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +22 -93
- 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/{compensation/ICompensation.sol/ICompensation.json → distribution/IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{compensation/ICompensation.sol/ICompensationModule.json → distribution/IDistribution.sol/IDistributionModule.json} +2 -2
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +61 -51
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +61 -51
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +1 -1
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +29 -14
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +28 -13
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +104 -1
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +126 -5
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +326 -221
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +2 -2
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +326 -221
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +350 -79
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +630 -0
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +176 -74
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +446 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +235 -50
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +325 -51
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +335 -53
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +466 -71
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +141 -12
- 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 +298 -39
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +745 -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 +489 -120
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +997 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +468 -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 +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +117 -37
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -14
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +158 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +349 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +190 -37
- 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 +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -14
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +4 -0
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +557 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +1 -1
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +417 -88
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +1 -1
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +407 -56
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +204 -36
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +267 -62
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +89 -25
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +50 -11
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- 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 +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +40 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
- package/contracts/components/BaseComponent.sol +12 -21
- package/contracts/components/Distribution.sol +155 -0
- package/contracts/components/IBaseComponent.sol +2 -2
- package/contracts/components/IDistributionComponent.sol +46 -0
- package/contracts/components/IPoolComponent.sol +15 -8
- package/contracts/components/IProductComponent.sol +26 -8
- package/contracts/components/Pool.sol +99 -27
- package/contracts/components/Product.sol +204 -22
- package/contracts/instance/IInstance.sol +12 -10
- package/contracts/instance/Instance.sol +28 -9
- package/contracts/instance/base/ComponentServiceBase.sol +13 -6
- package/contracts/instance/base/IInstanceBase.sol +11 -2
- package/contracts/instance/base/IKeyValueStore.sol +4 -3
- package/contracts/instance/base/InstanceBase.sol +19 -10
- package/contracts/instance/base/KeyValueStore.sol +12 -7
- package/contracts/instance/base/Lifecycle.sol +15 -10
- package/contracts/instance/base/ModuleBase.sol +22 -17
- package/contracts/instance/base/ServiceBase.sol +20 -13
- package/contracts/instance/module/access/Access.sol +3 -3
- package/contracts/instance/module/bundle/BundleModule.sol +10 -12
- package/contracts/instance/module/bundle/IBundle.sol +6 -11
- package/contracts/instance/module/component/ComponentModule.sol +34 -58
- package/contracts/instance/module/component/IComponent.sol +7 -32
- 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 +13 -10
- package/contracts/instance/module/policy/PolicyModule.sol +35 -20
- package/contracts/instance/module/pool/IPoolModule.sol +4 -4
- package/contracts/instance/module/pool/PoolModule.sol +23 -15
- package/contracts/instance/module/risk/IRisk.sol +18 -2
- package/contracts/instance/module/risk/RiskModule.sol +56 -2
- package/contracts/instance/module/treasury/ITreasury.sol +32 -51
- package/contracts/instance/module/treasury/TokenHandler.sol +2 -2
- package/contracts/instance/module/treasury/TreasuryModule.sol +68 -89
- package/contracts/instance/service/ComponentOwnerService.sol +200 -95
- package/contracts/instance/service/DistributionService.sol +54 -0
- package/contracts/instance/service/IComponentOwnerService.sol +0 -2
- package/contracts/instance/service/IDistributionService.sol +12 -0
- package/contracts/instance/service/IPoolService.sol +7 -0
- package/contracts/instance/service/IProductService.sol +56 -7
- package/contracts/instance/service/PoolService.sol +49 -23
- package/contracts/instance/service/ProductService.sol +248 -92
- package/contracts/registry/ChainNft.sol +43 -15
- package/contracts/registry/IChainNft.sol +3 -2
- package/contracts/registry/IRegistry.sol +42 -26
- package/contracts/registry/IRegistryService.sol +29 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +384 -274
- package/contracts/registry/RegistryService.sol +368 -0
- package/contracts/registry/RegistryServiceManager.sol +43 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +1 -1
- package/contracts/shared/INftOwnable.sol +22 -0
- package/contracts/shared/IRegisterable.sol +9 -16
- package/contracts/shared/IVersionable.sol +55 -11
- package/contracts/shared/NftOwnable.sol +136 -0
- package/contracts/shared/ProxyManager.sol +94 -0
- package/contracts/shared/Registerable.sol +62 -59
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +112 -54
- package/contracts/test/TestDistribution.sol +22 -0
- package/contracts/test/TestPool.sol +7 -2
- package/contracts/test/TestProduct.sol +37 -7
- package/contracts/test/TestRegisterable.sol +5 -6
- package/contracts/test/TestService.sol +5 -11
- package/contracts/types/Fee.sol +8 -3
- package/contracts/types/ObjectType.sol +24 -8
- package/contracts/types/ReferralId.sol +48 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +2 -2
- package/contracts/types/Version.sol +9 -0
- package/package.json +1 -1
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +0 -24
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
- package/contracts/instance/module/compensation/ICompensation.sol +0 -10
- package/contracts/registry/IRegistryLinked.sol +0 -8
- package/contracts/shared/IOwnable.sol +0 -6
@@ -14,11 +14,120 @@
|
|
14
14
|
"internalType": "NftId",
|
15
15
|
"name": "registryNftId",
|
16
16
|
"type": "uint96"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"internalType": "address",
|
20
|
+
"name": "initialOwner",
|
21
|
+
"type": "address"
|
17
22
|
}
|
18
23
|
],
|
19
24
|
"stateMutability": "nonpayable",
|
20
25
|
"type": "constructor"
|
21
26
|
},
|
27
|
+
{
|
28
|
+
"inputs": [
|
29
|
+
{
|
30
|
+
"internalType": "address",
|
31
|
+
"name": "registry",
|
32
|
+
"type": "address"
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"internalType": "NftId",
|
36
|
+
"name": "nftId",
|
37
|
+
"type": "uint96"
|
38
|
+
}
|
39
|
+
],
|
40
|
+
"name": "ErrorAlreadyLinked",
|
41
|
+
"type": "error"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"inputs": [
|
45
|
+
{
|
46
|
+
"internalType": "address",
|
47
|
+
"name": "contractAddress",
|
48
|
+
"type": "address"
|
49
|
+
}
|
50
|
+
],
|
51
|
+
"name": "ErrorContractNotRegistered",
|
52
|
+
"type": "error"
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"inputs": [
|
56
|
+
{
|
57
|
+
"internalType": "address",
|
58
|
+
"name": "account",
|
59
|
+
"type": "address"
|
60
|
+
}
|
61
|
+
],
|
62
|
+
"name": "ErrorNotOwner",
|
63
|
+
"type": "error"
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"inputs": [
|
67
|
+
{
|
68
|
+
"internalType": "address",
|
69
|
+
"name": "registryAddress",
|
70
|
+
"type": "address"
|
71
|
+
}
|
72
|
+
],
|
73
|
+
"name": "ErrorNotRegistry",
|
74
|
+
"type": "error"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"inputs": [
|
78
|
+
{
|
79
|
+
"internalType": "address",
|
80
|
+
"name": "registryAddress",
|
81
|
+
"type": "address"
|
82
|
+
}
|
83
|
+
],
|
84
|
+
"name": "ErrorRegisterableNotRegistry",
|
85
|
+
"type": "error"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"inputs": [],
|
89
|
+
"name": "ErrorRegistryAddressZero",
|
90
|
+
"type": "error"
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"inputs": [
|
94
|
+
{
|
95
|
+
"internalType": "address",
|
96
|
+
"name": "registry",
|
97
|
+
"type": "address"
|
98
|
+
}
|
99
|
+
],
|
100
|
+
"name": "ErrorRegistryAlreadyInitialized",
|
101
|
+
"type": "error"
|
102
|
+
},
|
103
|
+
{
|
104
|
+
"inputs": [],
|
105
|
+
"name": "ErrorRegistryNotInitialized",
|
106
|
+
"type": "error"
|
107
|
+
},
|
108
|
+
{
|
109
|
+
"inputs": [],
|
110
|
+
"name": "InvalidInitialization",
|
111
|
+
"type": "error"
|
112
|
+
},
|
113
|
+
{
|
114
|
+
"inputs": [],
|
115
|
+
"name": "NotInitializing",
|
116
|
+
"type": "error"
|
117
|
+
},
|
118
|
+
{
|
119
|
+
"anonymous": false,
|
120
|
+
"inputs": [
|
121
|
+
{
|
122
|
+
"indexed": false,
|
123
|
+
"internalType": "uint64",
|
124
|
+
"name": "version",
|
125
|
+
"type": "uint64"
|
126
|
+
}
|
127
|
+
],
|
128
|
+
"name": "Initialized",
|
129
|
+
"type": "event"
|
130
|
+
},
|
22
131
|
{
|
23
132
|
"anonymous": false,
|
24
133
|
"inputs": [
|
@@ -104,25 +213,20 @@
|
|
104
213
|
"type": "address"
|
105
214
|
}
|
106
215
|
],
|
107
|
-
"name": "
|
216
|
+
"name": "LogVersionableInitialized",
|
108
217
|
"type": "event"
|
109
218
|
},
|
110
219
|
{
|
111
|
-
"inputs": [
|
112
|
-
|
113
|
-
|
114
|
-
"name": "implementation",
|
115
|
-
"type": "address"
|
116
|
-
},
|
220
|
+
"inputs": [],
|
221
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
222
|
+
"outputs": [
|
117
223
|
{
|
118
|
-
"internalType": "
|
119
|
-
"name": "
|
120
|
-
"type": "
|
224
|
+
"internalType": "bytes32",
|
225
|
+
"name": "",
|
226
|
+
"type": "bytes32"
|
121
227
|
}
|
122
228
|
],
|
123
|
-
"
|
124
|
-
"outputs": [],
|
125
|
-
"stateMutability": "nonpayable",
|
229
|
+
"stateMutability": "view",
|
126
230
|
"type": "function"
|
127
231
|
},
|
128
232
|
{
|
@@ -216,22 +320,34 @@
|
|
216
320
|
"inputs": [
|
217
321
|
{
|
218
322
|
"internalType": "NftId",
|
219
|
-
"name": "
|
323
|
+
"name": "bundleNftId",
|
220
324
|
"type": "uint96"
|
221
325
|
},
|
222
326
|
{
|
223
327
|
"internalType": "NftId",
|
224
|
-
"name": "
|
328
|
+
"name": "poolNftId",
|
225
329
|
"type": "uint96"
|
226
330
|
},
|
227
331
|
{
|
228
|
-
"
|
229
|
-
|
230
|
-
|
332
|
+
"components": [
|
333
|
+
{
|
334
|
+
"internalType": "UFixed",
|
335
|
+
"name": "fractionalFee",
|
336
|
+
"type": "uint256"
|
337
|
+
},
|
338
|
+
{
|
339
|
+
"internalType": "uint256",
|
340
|
+
"name": "fixedFee",
|
341
|
+
"type": "uint256"
|
342
|
+
}
|
343
|
+
],
|
344
|
+
"internalType": "struct Fee",
|
345
|
+
"name": "fee",
|
346
|
+
"type": "tuple"
|
231
347
|
},
|
232
348
|
{
|
233
349
|
"internalType": "uint256",
|
234
|
-
"name": "
|
350
|
+
"name": "amount",
|
235
351
|
"type": "uint256"
|
236
352
|
},
|
237
353
|
{
|
@@ -240,12 +356,12 @@
|
|
240
356
|
"type": "uint256"
|
241
357
|
},
|
242
358
|
{
|
243
|
-
"internalType": "
|
244
|
-
"name": "
|
245
|
-
"type": "
|
359
|
+
"internalType": "bytes",
|
360
|
+
"name": "filter",
|
361
|
+
"type": "bytes"
|
246
362
|
}
|
247
363
|
],
|
248
|
-
"name": "
|
364
|
+
"name": "createBundleInfo",
|
249
365
|
"outputs": [],
|
250
366
|
"stateMutability": "nonpayable",
|
251
367
|
"type": "function"
|
@@ -254,17 +370,32 @@
|
|
254
370
|
"inputs": [
|
255
371
|
{
|
256
372
|
"internalType": "NftId",
|
257
|
-
"name": "
|
373
|
+
"name": "policyNftId",
|
258
374
|
"type": "uint96"
|
259
375
|
},
|
260
376
|
{
|
261
377
|
"internalType": "NftId",
|
262
|
-
"name": "
|
378
|
+
"name": "productNftId",
|
263
379
|
"type": "uint96"
|
264
380
|
},
|
381
|
+
{
|
382
|
+
"internalType": "ReferralId",
|
383
|
+
"name": "referralId",
|
384
|
+
"type": "bytes8"
|
385
|
+
},
|
386
|
+
{
|
387
|
+
"internalType": "RiskId",
|
388
|
+
"name": "riskId",
|
389
|
+
"type": "bytes8"
|
390
|
+
},
|
265
391
|
{
|
266
392
|
"internalType": "uint256",
|
267
|
-
"name": "
|
393
|
+
"name": "sumInsuredAmount",
|
394
|
+
"type": "uint256"
|
395
|
+
},
|
396
|
+
{
|
397
|
+
"internalType": "uint256",
|
398
|
+
"name": "premiumAmount",
|
268
399
|
"type": "uint256"
|
269
400
|
},
|
270
401
|
{
|
@@ -272,13 +403,36 @@
|
|
272
403
|
"name": "lifetime",
|
273
404
|
"type": "uint256"
|
274
405
|
},
|
406
|
+
{
|
407
|
+
"internalType": "NftId",
|
408
|
+
"name": "bundleNftId",
|
409
|
+
"type": "uint96"
|
410
|
+
}
|
411
|
+
],
|
412
|
+
"name": "createPolicyInfo",
|
413
|
+
"outputs": [],
|
414
|
+
"stateMutability": "nonpayable",
|
415
|
+
"type": "function"
|
416
|
+
},
|
417
|
+
{
|
418
|
+
"inputs": [
|
419
|
+
{
|
420
|
+
"internalType": "RiskId",
|
421
|
+
"name": "riskId",
|
422
|
+
"type": "bytes8"
|
423
|
+
},
|
424
|
+
{
|
425
|
+
"internalType": "NftId",
|
426
|
+
"name": "productNftId",
|
427
|
+
"type": "uint96"
|
428
|
+
},
|
275
429
|
{
|
276
430
|
"internalType": "bytes",
|
277
|
-
"name": "
|
431
|
+
"name": "data",
|
278
432
|
"type": "bytes"
|
279
433
|
}
|
280
434
|
],
|
281
|
-
"name": "
|
435
|
+
"name": "createRisk",
|
282
436
|
"outputs": [],
|
283
437
|
"stateMutability": "nonpayable",
|
284
438
|
"type": "function"
|
@@ -335,13 +489,25 @@
|
|
335
489
|
"components": [
|
336
490
|
{
|
337
491
|
"internalType": "NftId",
|
338
|
-
"name": "
|
492
|
+
"name": "poolNftId",
|
339
493
|
"type": "uint96"
|
340
494
|
},
|
341
495
|
{
|
342
|
-
"
|
343
|
-
|
344
|
-
|
496
|
+
"components": [
|
497
|
+
{
|
498
|
+
"internalType": "UFixed",
|
499
|
+
"name": "fractionalFee",
|
500
|
+
"type": "uint256"
|
501
|
+
},
|
502
|
+
{
|
503
|
+
"internalType": "uint256",
|
504
|
+
"name": "fixedFee",
|
505
|
+
"type": "uint256"
|
506
|
+
}
|
507
|
+
],
|
508
|
+
"internalType": "struct Fee",
|
509
|
+
"name": "fee",
|
510
|
+
"type": "tuple"
|
345
511
|
},
|
346
512
|
{
|
347
513
|
"internalType": "bytes",
|
@@ -438,6 +604,19 @@
|
|
438
604
|
"stateMutability": "view",
|
439
605
|
"type": "function"
|
440
606
|
},
|
607
|
+
{
|
608
|
+
"inputs": [],
|
609
|
+
"name": "getComponentOwnerService",
|
610
|
+
"outputs": [
|
611
|
+
{
|
612
|
+
"internalType": "contract IComponentOwnerService",
|
613
|
+
"name": "service",
|
614
|
+
"type": "address"
|
615
|
+
}
|
616
|
+
],
|
617
|
+
"stateMutability": "view",
|
618
|
+
"type": "function"
|
619
|
+
},
|
441
620
|
{
|
442
621
|
"inputs": [
|
443
622
|
{
|
@@ -446,41 +625,30 @@
|
|
446
625
|
"type": "uint96"
|
447
626
|
}
|
448
627
|
],
|
449
|
-
"name": "
|
628
|
+
"name": "getComponentToken",
|
450
629
|
"outputs": [
|
451
630
|
{
|
452
|
-
"
|
453
|
-
|
454
|
-
|
455
|
-
"name": "nftId",
|
456
|
-
"type": "uint96"
|
457
|
-
},
|
458
|
-
{
|
459
|
-
"internalType": "StateId",
|
460
|
-
"name": "state",
|
461
|
-
"type": "uint8"
|
462
|
-
},
|
463
|
-
{
|
464
|
-
"internalType": "contract IERC20Metadata",
|
465
|
-
"name": "token",
|
466
|
-
"type": "address"
|
467
|
-
}
|
468
|
-
],
|
469
|
-
"internalType": "struct IComponent.ComponentInfo",
|
470
|
-
"name": "",
|
471
|
-
"type": "tuple"
|
631
|
+
"internalType": "contract IERC20Metadata",
|
632
|
+
"name": "token",
|
633
|
+
"type": "address"
|
472
634
|
}
|
473
635
|
],
|
474
636
|
"stateMutability": "view",
|
475
637
|
"type": "function"
|
476
638
|
},
|
477
639
|
{
|
478
|
-
"inputs": [
|
479
|
-
|
640
|
+
"inputs": [
|
641
|
+
{
|
642
|
+
"internalType": "NftId",
|
643
|
+
"name": "nftId",
|
644
|
+
"type": "uint96"
|
645
|
+
}
|
646
|
+
],
|
647
|
+
"name": "getComponentWallet",
|
480
648
|
"outputs": [
|
481
649
|
{
|
482
|
-
"internalType": "
|
483
|
-
"name": "
|
650
|
+
"internalType": "address",
|
651
|
+
"name": "wallet",
|
484
652
|
"type": "address"
|
485
653
|
}
|
486
654
|
],
|
@@ -489,12 +657,12 @@
|
|
489
657
|
},
|
490
658
|
{
|
491
659
|
"inputs": [],
|
492
|
-
"name": "
|
660
|
+
"name": "getDistributionService",
|
493
661
|
"outputs": [
|
494
662
|
{
|
495
|
-
"internalType": "
|
496
|
-
"name": "
|
497
|
-
"type": "
|
663
|
+
"internalType": "contract IDistributionService",
|
664
|
+
"name": "service",
|
665
|
+
"type": "address"
|
498
666
|
}
|
499
667
|
],
|
500
668
|
"stateMutability": "view",
|
@@ -538,37 +706,79 @@
|
|
538
706
|
},
|
539
707
|
{
|
540
708
|
"inputs": [],
|
541
|
-
"name": "
|
542
|
-
"outputs": [
|
543
|
-
{
|
544
|
-
"internalType": "contract IKeyValueStore",
|
545
|
-
"name": "keyValueStore",
|
546
|
-
"type": "address"
|
547
|
-
}
|
548
|
-
],
|
549
|
-
"stateMutability": "view",
|
550
|
-
"type": "function"
|
551
|
-
},
|
552
|
-
{
|
553
|
-
"inputs": [],
|
554
|
-
"name": "getNftId",
|
709
|
+
"name": "getInitialInfo",
|
555
710
|
"outputs": [
|
556
711
|
{
|
557
|
-
"
|
558
|
-
|
559
|
-
|
560
|
-
|
712
|
+
"components": [
|
713
|
+
{
|
714
|
+
"internalType": "NftId",
|
715
|
+
"name": "nftId",
|
716
|
+
"type": "uint96"
|
717
|
+
},
|
718
|
+
{
|
719
|
+
"internalType": "NftId",
|
720
|
+
"name": "parentNftId",
|
721
|
+
"type": "uint96"
|
722
|
+
},
|
723
|
+
{
|
724
|
+
"internalType": "ObjectType",
|
725
|
+
"name": "objectType",
|
726
|
+
"type": "uint8"
|
727
|
+
},
|
728
|
+
{
|
729
|
+
"internalType": "bool",
|
730
|
+
"name": "isInterceptor",
|
731
|
+
"type": "bool"
|
732
|
+
},
|
733
|
+
{
|
734
|
+
"internalType": "address",
|
735
|
+
"name": "objectAddress",
|
736
|
+
"type": "address"
|
737
|
+
},
|
738
|
+
{
|
739
|
+
"internalType": "address",
|
740
|
+
"name": "initialOwner",
|
741
|
+
"type": "address"
|
742
|
+
},
|
743
|
+
{
|
744
|
+
"internalType": "bytes",
|
745
|
+
"name": "data",
|
746
|
+
"type": "bytes"
|
747
|
+
}
|
748
|
+
],
|
749
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
750
|
+
"name": "",
|
751
|
+
"type": "tuple"
|
752
|
+
},
|
753
|
+
{
|
754
|
+
"internalType": "bytes",
|
755
|
+
"name": "data",
|
756
|
+
"type": "bytes"
|
757
|
+
}
|
561
758
|
],
|
562
759
|
"stateMutability": "view",
|
563
760
|
"type": "function"
|
564
761
|
},
|
565
762
|
{
|
566
763
|
"inputs": [],
|
567
|
-
"name": "
|
764
|
+
"name": "getInitializedVersion",
|
568
765
|
"outputs": [
|
569
766
|
{
|
570
|
-
"internalType": "
|
571
|
-
"name": "
|
767
|
+
"internalType": "uint64",
|
768
|
+
"name": "",
|
769
|
+
"type": "uint64"
|
770
|
+
}
|
771
|
+
],
|
772
|
+
"stateMutability": "view",
|
773
|
+
"type": "function"
|
774
|
+
},
|
775
|
+
{
|
776
|
+
"inputs": [],
|
777
|
+
"name": "getKeyValueStore",
|
778
|
+
"outputs": [
|
779
|
+
{
|
780
|
+
"internalType": "contract IKeyValueStore",
|
781
|
+
"name": "keyValueStore",
|
572
782
|
"type": "address"
|
573
783
|
}
|
574
784
|
],
|
@@ -577,17 +787,30 @@
|
|
577
787
|
},
|
578
788
|
{
|
579
789
|
"inputs": [],
|
580
|
-
"name": "
|
790
|
+
"name": "getNftId",
|
581
791
|
"outputs": [
|
582
792
|
{
|
583
793
|
"internalType": "NftId",
|
584
|
-
"name": "
|
794
|
+
"name": "",
|
585
795
|
"type": "uint96"
|
586
796
|
}
|
587
797
|
],
|
588
798
|
"stateMutability": "view",
|
589
799
|
"type": "function"
|
590
800
|
},
|
801
|
+
{
|
802
|
+
"inputs": [],
|
803
|
+
"name": "getOwner",
|
804
|
+
"outputs": [
|
805
|
+
{
|
806
|
+
"internalType": "address",
|
807
|
+
"name": "owner",
|
808
|
+
"type": "address"
|
809
|
+
}
|
810
|
+
],
|
811
|
+
"stateMutability": "view",
|
812
|
+
"type": "function"
|
813
|
+
},
|
591
814
|
{
|
592
815
|
"inputs": [
|
593
816
|
{
|
@@ -600,11 +823,6 @@
|
|
600
823
|
"outputs": [
|
601
824
|
{
|
602
825
|
"components": [
|
603
|
-
{
|
604
|
-
"internalType": "NftId",
|
605
|
-
"name": "nftId",
|
606
|
-
"type": "uint96"
|
607
|
-
},
|
608
826
|
{
|
609
827
|
"internalType": "NftId",
|
610
828
|
"name": "productNftId",
|
@@ -615,15 +833,20 @@
|
|
615
833
|
"name": "bundleNftId",
|
616
834
|
"type": "uint96"
|
617
835
|
},
|
836
|
+
{
|
837
|
+
"internalType": "ReferralId",
|
838
|
+
"name": "referralId",
|
839
|
+
"type": "bytes8"
|
840
|
+
},
|
618
841
|
{
|
619
842
|
"internalType": "address",
|
620
843
|
"name": "beneficiary",
|
621
844
|
"type": "address"
|
622
845
|
},
|
623
846
|
{
|
624
|
-
"internalType": "
|
625
|
-
"name": "
|
626
|
-
"type": "
|
847
|
+
"internalType": "RiskId",
|
848
|
+
"name": "riskId",
|
849
|
+
"type": "bytes8"
|
627
850
|
},
|
628
851
|
{
|
629
852
|
"internalType": "uint256",
|
@@ -647,13 +870,13 @@
|
|
647
870
|
},
|
648
871
|
{
|
649
872
|
"internalType": "bytes",
|
650
|
-
"name": "
|
873
|
+
"name": "applicationData",
|
651
874
|
"type": "bytes"
|
652
875
|
},
|
653
876
|
{
|
654
|
-
"internalType": "
|
655
|
-
"name": "
|
656
|
-
"type": "
|
877
|
+
"internalType": "bytes",
|
878
|
+
"name": "policyData",
|
879
|
+
"type": "bytes"
|
657
880
|
},
|
658
881
|
{
|
659
882
|
"internalType": "Timestamp",
|
@@ -669,11 +892,6 @@
|
|
669
892
|
"internalType": "Timestamp",
|
670
893
|
"name": "closedAt",
|
671
894
|
"type": "uint40"
|
672
|
-
},
|
673
|
-
{
|
674
|
-
"internalType": "Blocknumber",
|
675
|
-
"name": "updatedIn",
|
676
|
-
"type": "uint32"
|
677
895
|
}
|
678
896
|
],
|
679
897
|
"internalType": "struct IPolicy.PolicyInfo",
|
@@ -696,11 +914,6 @@
|
|
696
914
|
"outputs": [
|
697
915
|
{
|
698
916
|
"components": [
|
699
|
-
{
|
700
|
-
"internalType": "NftId",
|
701
|
-
"name": "nftId",
|
702
|
-
"type": "uint96"
|
703
|
-
},
|
704
917
|
{
|
705
918
|
"internalType": "bool",
|
706
919
|
"name": "isVerifying",
|
@@ -737,62 +950,16 @@
|
|
737
950
|
"inputs": [
|
738
951
|
{
|
739
952
|
"internalType": "NftId",
|
740
|
-
"name": "
|
953
|
+
"name": "componentNftId",
|
741
954
|
"type": "uint96"
|
742
955
|
}
|
743
956
|
],
|
744
|
-
"name": "
|
957
|
+
"name": "getProductNftId",
|
745
958
|
"outputs": [
|
746
959
|
{
|
747
|
-
"
|
748
|
-
|
749
|
-
|
750
|
-
"name": "poolNftId",
|
751
|
-
"type": "uint96"
|
752
|
-
},
|
753
|
-
{
|
754
|
-
"internalType": "address",
|
755
|
-
"name": "wallet",
|
756
|
-
"type": "address"
|
757
|
-
},
|
758
|
-
{
|
759
|
-
"components": [
|
760
|
-
{
|
761
|
-
"internalType": "UFixed",
|
762
|
-
"name": "fractionalFee",
|
763
|
-
"type": "uint256"
|
764
|
-
},
|
765
|
-
{
|
766
|
-
"internalType": "uint256",
|
767
|
-
"name": "fixedFee",
|
768
|
-
"type": "uint256"
|
769
|
-
}
|
770
|
-
],
|
771
|
-
"internalType": "struct Fee",
|
772
|
-
"name": "stakingFee",
|
773
|
-
"type": "tuple"
|
774
|
-
},
|
775
|
-
{
|
776
|
-
"components": [
|
777
|
-
{
|
778
|
-
"internalType": "UFixed",
|
779
|
-
"name": "fractionalFee",
|
780
|
-
"type": "uint256"
|
781
|
-
},
|
782
|
-
{
|
783
|
-
"internalType": "uint256",
|
784
|
-
"name": "fixedFee",
|
785
|
-
"type": "uint256"
|
786
|
-
}
|
787
|
-
],
|
788
|
-
"internalType": "struct Fee",
|
789
|
-
"name": "performanceFee",
|
790
|
-
"type": "tuple"
|
791
|
-
}
|
792
|
-
],
|
793
|
-
"internalType": "struct ITreasury.PoolSetup",
|
794
|
-
"name": "setup",
|
795
|
-
"type": "tuple"
|
960
|
+
"internalType": "NftId",
|
961
|
+
"name": "productNftId",
|
962
|
+
"type": "uint96"
|
796
963
|
}
|
797
964
|
],
|
798
965
|
"stateMutability": "view",
|
@@ -811,15 +978,28 @@
|
|
811
978
|
"stateMutability": "view",
|
812
979
|
"type": "function"
|
813
980
|
},
|
981
|
+
{
|
982
|
+
"inputs": [],
|
983
|
+
"name": "getRegistry",
|
984
|
+
"outputs": [
|
985
|
+
{
|
986
|
+
"internalType": "contract IRegistry",
|
987
|
+
"name": "registry",
|
988
|
+
"type": "address"
|
989
|
+
}
|
990
|
+
],
|
991
|
+
"stateMutability": "view",
|
992
|
+
"type": "function"
|
993
|
+
},
|
814
994
|
{
|
815
995
|
"inputs": [
|
816
996
|
{
|
817
|
-
"internalType": "
|
818
|
-
"name": "
|
819
|
-
"type": "
|
997
|
+
"internalType": "RiskId",
|
998
|
+
"name": "riskId",
|
999
|
+
"type": "bytes8"
|
820
1000
|
}
|
821
1001
|
],
|
822
|
-
"name": "
|
1002
|
+
"name": "getRiskInfo",
|
823
1003
|
"outputs": [
|
824
1004
|
{
|
825
1005
|
"components": [
|
@@ -829,81 +1009,19 @@
|
|
829
1009
|
"type": "uint96"
|
830
1010
|
},
|
831
1011
|
{
|
832
|
-
"internalType": "
|
833
|
-
"name": "
|
834
|
-
"type": "
|
835
|
-
},
|
836
|
-
{
|
837
|
-
"internalType": "NftId",
|
838
|
-
"name": "poolNftId",
|
839
|
-
"type": "uint96"
|
840
|
-
},
|
841
|
-
{
|
842
|
-
"internalType": "contract IERC20Metadata",
|
843
|
-
"name": "token",
|
844
|
-
"type": "address"
|
845
|
-
},
|
846
|
-
{
|
847
|
-
"internalType": "address",
|
848
|
-
"name": "wallet",
|
849
|
-
"type": "address"
|
850
|
-
},
|
851
|
-
{
|
852
|
-
"components": [
|
853
|
-
{
|
854
|
-
"internalType": "UFixed",
|
855
|
-
"name": "fractionalFee",
|
856
|
-
"type": "uint256"
|
857
|
-
},
|
858
|
-
{
|
859
|
-
"internalType": "uint256",
|
860
|
-
"name": "fixedFee",
|
861
|
-
"type": "uint256"
|
862
|
-
}
|
863
|
-
],
|
864
|
-
"internalType": "struct Fee",
|
865
|
-
"name": "policyFee",
|
866
|
-
"type": "tuple"
|
867
|
-
},
|
868
|
-
{
|
869
|
-
"components": [
|
870
|
-
{
|
871
|
-
"internalType": "UFixed",
|
872
|
-
"name": "fractionalFee",
|
873
|
-
"type": "uint256"
|
874
|
-
},
|
875
|
-
{
|
876
|
-
"internalType": "uint256",
|
877
|
-
"name": "fixedFee",
|
878
|
-
"type": "uint256"
|
879
|
-
}
|
880
|
-
],
|
881
|
-
"internalType": "struct Fee",
|
882
|
-
"name": "processingFee",
|
883
|
-
"type": "tuple"
|
1012
|
+
"internalType": "bytes",
|
1013
|
+
"name": "data",
|
1014
|
+
"type": "bytes"
|
884
1015
|
}
|
885
1016
|
],
|
886
|
-
"internalType": "struct
|
887
|
-
"name": "
|
1017
|
+
"internalType": "struct IRisk.RiskInfo",
|
1018
|
+
"name": "info",
|
888
1019
|
"type": "tuple"
|
889
1020
|
}
|
890
1021
|
],
|
891
1022
|
"stateMutability": "view",
|
892
1023
|
"type": "function"
|
893
1024
|
},
|
894
|
-
{
|
895
|
-
"inputs": [],
|
896
|
-
"name": "getRegistry",
|
897
|
-
"outputs": [
|
898
|
-
{
|
899
|
-
"internalType": "contract IRegistry",
|
900
|
-
"name": "registry",
|
901
|
-
"type": "address"
|
902
|
-
}
|
903
|
-
],
|
904
|
-
"stateMutability": "view",
|
905
|
-
"type": "function"
|
906
|
-
},
|
907
1025
|
{
|
908
1026
|
"inputs": [
|
909
1027
|
{
|
@@ -1034,6 +1152,25 @@
|
|
1034
1152
|
"stateMutability": "view",
|
1035
1153
|
"type": "function"
|
1036
1154
|
},
|
1155
|
+
{
|
1156
|
+
"inputs": [
|
1157
|
+
{
|
1158
|
+
"internalType": "Key32",
|
1159
|
+
"name": "key",
|
1160
|
+
"type": "bytes32"
|
1161
|
+
}
|
1162
|
+
],
|
1163
|
+
"name": "getState",
|
1164
|
+
"outputs": [
|
1165
|
+
{
|
1166
|
+
"internalType": "StateId",
|
1167
|
+
"name": "state",
|
1168
|
+
"type": "uint8"
|
1169
|
+
}
|
1170
|
+
],
|
1171
|
+
"stateMutability": "view",
|
1172
|
+
"type": "function"
|
1173
|
+
},
|
1037
1174
|
{
|
1038
1175
|
"inputs": [
|
1039
1176
|
{
|
@@ -1054,16 +1191,141 @@
|
|
1054
1191
|
"type": "function"
|
1055
1192
|
},
|
1056
1193
|
{
|
1057
|
-
"inputs": [
|
1058
|
-
"name": "getType",
|
1059
|
-
"outputs": [
|
1194
|
+
"inputs": [
|
1060
1195
|
{
|
1061
|
-
"internalType": "
|
1062
|
-
"name": "
|
1063
|
-
"type": "
|
1196
|
+
"internalType": "NftId",
|
1197
|
+
"name": "productNftId",
|
1198
|
+
"type": "uint96"
|
1064
1199
|
}
|
1065
1200
|
],
|
1066
|
-
"
|
1201
|
+
"name": "getTreasuryInfo",
|
1202
|
+
"outputs": [
|
1203
|
+
{
|
1204
|
+
"components": [
|
1205
|
+
{
|
1206
|
+
"internalType": "NftId",
|
1207
|
+
"name": "poolNftId",
|
1208
|
+
"type": "uint96"
|
1209
|
+
},
|
1210
|
+
{
|
1211
|
+
"internalType": "NftId",
|
1212
|
+
"name": "distributionNftId",
|
1213
|
+
"type": "uint96"
|
1214
|
+
},
|
1215
|
+
{
|
1216
|
+
"internalType": "contract IERC20Metadata",
|
1217
|
+
"name": "token",
|
1218
|
+
"type": "address"
|
1219
|
+
},
|
1220
|
+
{
|
1221
|
+
"components": [
|
1222
|
+
{
|
1223
|
+
"internalType": "UFixed",
|
1224
|
+
"name": "fractionalFee",
|
1225
|
+
"type": "uint256"
|
1226
|
+
},
|
1227
|
+
{
|
1228
|
+
"internalType": "uint256",
|
1229
|
+
"name": "fixedFee",
|
1230
|
+
"type": "uint256"
|
1231
|
+
}
|
1232
|
+
],
|
1233
|
+
"internalType": "struct Fee",
|
1234
|
+
"name": "productFee",
|
1235
|
+
"type": "tuple"
|
1236
|
+
},
|
1237
|
+
{
|
1238
|
+
"components": [
|
1239
|
+
{
|
1240
|
+
"internalType": "UFixed",
|
1241
|
+
"name": "fractionalFee",
|
1242
|
+
"type": "uint256"
|
1243
|
+
},
|
1244
|
+
{
|
1245
|
+
"internalType": "uint256",
|
1246
|
+
"name": "fixedFee",
|
1247
|
+
"type": "uint256"
|
1248
|
+
}
|
1249
|
+
],
|
1250
|
+
"internalType": "struct Fee",
|
1251
|
+
"name": "processingFee",
|
1252
|
+
"type": "tuple"
|
1253
|
+
},
|
1254
|
+
{
|
1255
|
+
"components": [
|
1256
|
+
{
|
1257
|
+
"internalType": "UFixed",
|
1258
|
+
"name": "fractionalFee",
|
1259
|
+
"type": "uint256"
|
1260
|
+
},
|
1261
|
+
{
|
1262
|
+
"internalType": "uint256",
|
1263
|
+
"name": "fixedFee",
|
1264
|
+
"type": "uint256"
|
1265
|
+
}
|
1266
|
+
],
|
1267
|
+
"internalType": "struct Fee",
|
1268
|
+
"name": "poolFee",
|
1269
|
+
"type": "tuple"
|
1270
|
+
},
|
1271
|
+
{
|
1272
|
+
"components": [
|
1273
|
+
{
|
1274
|
+
"internalType": "UFixed",
|
1275
|
+
"name": "fractionalFee",
|
1276
|
+
"type": "uint256"
|
1277
|
+
},
|
1278
|
+
{
|
1279
|
+
"internalType": "uint256",
|
1280
|
+
"name": "fixedFee",
|
1281
|
+
"type": "uint256"
|
1282
|
+
}
|
1283
|
+
],
|
1284
|
+
"internalType": "struct Fee",
|
1285
|
+
"name": "stakingFee",
|
1286
|
+
"type": "tuple"
|
1287
|
+
},
|
1288
|
+
{
|
1289
|
+
"components": [
|
1290
|
+
{
|
1291
|
+
"internalType": "UFixed",
|
1292
|
+
"name": "fractionalFee",
|
1293
|
+
"type": "uint256"
|
1294
|
+
},
|
1295
|
+
{
|
1296
|
+
"internalType": "uint256",
|
1297
|
+
"name": "fixedFee",
|
1298
|
+
"type": "uint256"
|
1299
|
+
}
|
1300
|
+
],
|
1301
|
+
"internalType": "struct Fee",
|
1302
|
+
"name": "performanceFee",
|
1303
|
+
"type": "tuple"
|
1304
|
+
},
|
1305
|
+
{
|
1306
|
+
"components": [
|
1307
|
+
{
|
1308
|
+
"internalType": "UFixed",
|
1309
|
+
"name": "fractionalFee",
|
1310
|
+
"type": "uint256"
|
1311
|
+
},
|
1312
|
+
{
|
1313
|
+
"internalType": "uint256",
|
1314
|
+
"name": "fixedFee",
|
1315
|
+
"type": "uint256"
|
1316
|
+
}
|
1317
|
+
],
|
1318
|
+
"internalType": "struct Fee",
|
1319
|
+
"name": "distributionFee",
|
1320
|
+
"type": "tuple"
|
1321
|
+
}
|
1322
|
+
],
|
1323
|
+
"internalType": "struct ITreasury.TreasuryInfo",
|
1324
|
+
"name": "info",
|
1325
|
+
"type": "tuple"
|
1326
|
+
}
|
1327
|
+
],
|
1328
|
+
"stateMutability": "view",
|
1067
1329
|
"type": "function"
|
1068
1330
|
},
|
1069
1331
|
{
|
@@ -1222,7 +1484,7 @@
|
|
1222
1484
|
"type": "tuple"
|
1223
1485
|
}
|
1224
1486
|
],
|
1225
|
-
"stateMutability": "
|
1487
|
+
"stateMutability": "view",
|
1226
1488
|
"type": "function"
|
1227
1489
|
},
|
1228
1490
|
{
|
@@ -1267,6 +1529,48 @@
|
|
1267
1529
|
"stateMutability": "view",
|
1268
1530
|
"type": "function"
|
1269
1531
|
},
|
1532
|
+
{
|
1533
|
+
"inputs": [
|
1534
|
+
{
|
1535
|
+
"internalType": "NftId",
|
1536
|
+
"name": "productNftId",
|
1537
|
+
"type": "uint96"
|
1538
|
+
}
|
1539
|
+
],
|
1540
|
+
"name": "hasTreasuryInfo",
|
1541
|
+
"outputs": [
|
1542
|
+
{
|
1543
|
+
"internalType": "bool",
|
1544
|
+
"name": "hasInfo",
|
1545
|
+
"type": "bool"
|
1546
|
+
}
|
1547
|
+
],
|
1548
|
+
"stateMutability": "view",
|
1549
|
+
"type": "function"
|
1550
|
+
},
|
1551
|
+
{
|
1552
|
+
"inputs": [
|
1553
|
+
{
|
1554
|
+
"internalType": "address",
|
1555
|
+
"name": "implementation",
|
1556
|
+
"type": "address"
|
1557
|
+
},
|
1558
|
+
{
|
1559
|
+
"internalType": "address",
|
1560
|
+
"name": "activatedBy",
|
1561
|
+
"type": "address"
|
1562
|
+
},
|
1563
|
+
{
|
1564
|
+
"internalType": "bytes",
|
1565
|
+
"name": "data",
|
1566
|
+
"type": "bytes"
|
1567
|
+
}
|
1568
|
+
],
|
1569
|
+
"name": "initialize",
|
1570
|
+
"outputs": [],
|
1571
|
+
"stateMutability": "nonpayable",
|
1572
|
+
"type": "function"
|
1573
|
+
},
|
1270
1574
|
{
|
1271
1575
|
"inputs": [
|
1272
1576
|
{
|
@@ -1275,7 +1579,7 @@
|
|
1275
1579
|
"type": "uint24"
|
1276
1580
|
}
|
1277
1581
|
],
|
1278
|
-
"name": "
|
1582
|
+
"name": "isInitialized",
|
1279
1583
|
"outputs": [
|
1280
1584
|
{
|
1281
1585
|
"internalType": "bool",
|
@@ -1288,14 +1592,8 @@
|
|
1288
1592
|
},
|
1289
1593
|
{
|
1290
1594
|
"inputs": [],
|
1291
|
-
"name": "
|
1292
|
-
"outputs": [
|
1293
|
-
{
|
1294
|
-
"internalType": "NftId",
|
1295
|
-
"name": "nftId",
|
1296
|
-
"type": "uint96"
|
1297
|
-
}
|
1298
|
-
],
|
1595
|
+
"name": "linkToRegisteredNftId",
|
1596
|
+
"outputs": [],
|
1299
1597
|
"stateMutability": "nonpayable",
|
1300
1598
|
"type": "function"
|
1301
1599
|
},
|
@@ -1306,15 +1604,15 @@
|
|
1306
1604
|
"name": "nftId",
|
1307
1605
|
"type": "uint96"
|
1308
1606
|
},
|
1309
|
-
{
|
1310
|
-
"internalType": "ObjectType",
|
1311
|
-
"name": "objectType",
|
1312
|
-
"type": "uint8"
|
1313
|
-
},
|
1314
1607
|
{
|
1315
1608
|
"internalType": "contract IERC20Metadata",
|
1316
1609
|
"name": "token",
|
1317
1610
|
"type": "address"
|
1611
|
+
},
|
1612
|
+
{
|
1613
|
+
"internalType": "address",
|
1614
|
+
"name": "wallet",
|
1615
|
+
"type": "address"
|
1318
1616
|
}
|
1319
1617
|
],
|
1320
1618
|
"name": "registerComponent",
|
@@ -1326,46 +1624,24 @@
|
|
1326
1624
|
"inputs": [
|
1327
1625
|
{
|
1328
1626
|
"internalType": "NftId",
|
1329
|
-
"name": "
|
1627
|
+
"name": "nftId",
|
1330
1628
|
"type": "uint96"
|
1331
1629
|
},
|
1332
|
-
{
|
1333
|
-
"internalType": "address",
|
1334
|
-
"name": "wallet",
|
1335
|
-
"type": "address"
|
1336
|
-
},
|
1337
1630
|
{
|
1338
1631
|
"components": [
|
1339
1632
|
{
|
1340
|
-
"internalType": "
|
1341
|
-
"name": "
|
1342
|
-
"type": "
|
1633
|
+
"internalType": "bool",
|
1634
|
+
"name": "isVerifying",
|
1635
|
+
"type": "bool"
|
1343
1636
|
},
|
1344
|
-
{
|
1345
|
-
"internalType": "uint256",
|
1346
|
-
"name": "fixedFee",
|
1347
|
-
"type": "uint256"
|
1348
|
-
}
|
1349
|
-
],
|
1350
|
-
"internalType": "struct Fee",
|
1351
|
-
"name": "stakingFee",
|
1352
|
-
"type": "tuple"
|
1353
|
-
},
|
1354
|
-
{
|
1355
|
-
"components": [
|
1356
1637
|
{
|
1357
1638
|
"internalType": "UFixed",
|
1358
|
-
"name": "
|
1359
|
-
"type": "uint256"
|
1360
|
-
},
|
1361
|
-
{
|
1362
|
-
"internalType": "uint256",
|
1363
|
-
"name": "fixedFee",
|
1639
|
+
"name": "collateralizationLevel",
|
1364
1640
|
"type": "uint256"
|
1365
1641
|
}
|
1366
1642
|
],
|
1367
|
-
"internalType": "struct
|
1368
|
-
"name": "
|
1643
|
+
"internalType": "struct IPool.PoolInfo",
|
1644
|
+
"name": "info",
|
1369
1645
|
"type": "tuple"
|
1370
1646
|
}
|
1371
1647
|
],
|
@@ -1374,29 +1650,6 @@
|
|
1374
1650
|
"stateMutability": "nonpayable",
|
1375
1651
|
"type": "function"
|
1376
1652
|
},
|
1377
|
-
{
|
1378
|
-
"inputs": [
|
1379
|
-
{
|
1380
|
-
"internalType": "NftId",
|
1381
|
-
"name": "nftId",
|
1382
|
-
"type": "uint96"
|
1383
|
-
},
|
1384
|
-
{
|
1385
|
-
"internalType": "bool",
|
1386
|
-
"name": "isVerifying",
|
1387
|
-
"type": "bool"
|
1388
|
-
},
|
1389
|
-
{
|
1390
|
-
"internalType": "UFixed",
|
1391
|
-
"name": "collateralizationRate",
|
1392
|
-
"type": "uint256"
|
1393
|
-
}
|
1394
|
-
],
|
1395
|
-
"name": "registerPool",
|
1396
|
-
"outputs": [],
|
1397
|
-
"stateMutability": "nonpayable",
|
1398
|
-
"type": "function"
|
1399
|
-
},
|
1400
1653
|
{
|
1401
1654
|
"inputs": [
|
1402
1655
|
{
|
@@ -1404,62 +1657,132 @@
|
|
1404
1657
|
"name": "productNftId",
|
1405
1658
|
"type": "uint96"
|
1406
1659
|
},
|
1407
|
-
{
|
1408
|
-
"internalType": "NftId",
|
1409
|
-
"name": "distributorNftId",
|
1410
|
-
"type": "uint96"
|
1411
|
-
},
|
1412
|
-
{
|
1413
|
-
"internalType": "NftId",
|
1414
|
-
"name": "poolNftId",
|
1415
|
-
"type": "uint96"
|
1416
|
-
},
|
1417
|
-
{
|
1418
|
-
"internalType": "contract IERC20Metadata",
|
1419
|
-
"name": "token",
|
1420
|
-
"type": "address"
|
1421
|
-
},
|
1422
|
-
{
|
1423
|
-
"internalType": "address",
|
1424
|
-
"name": "wallet",
|
1425
|
-
"type": "address"
|
1426
|
-
},
|
1427
1660
|
{
|
1428
1661
|
"components": [
|
1429
1662
|
{
|
1430
|
-
"internalType": "
|
1431
|
-
"name": "
|
1432
|
-
"type": "
|
1663
|
+
"internalType": "NftId",
|
1664
|
+
"name": "poolNftId",
|
1665
|
+
"type": "uint96"
|
1433
1666
|
},
|
1434
1667
|
{
|
1435
|
-
"internalType": "
|
1436
|
-
"name": "
|
1437
|
-
"type": "
|
1438
|
-
}
|
1439
|
-
],
|
1440
|
-
"internalType": "struct Fee",
|
1441
|
-
"name": "policyFee",
|
1442
|
-
"type": "tuple"
|
1443
|
-
},
|
1444
|
-
{
|
1445
|
-
"components": [
|
1668
|
+
"internalType": "NftId",
|
1669
|
+
"name": "distributionNftId",
|
1670
|
+
"type": "uint96"
|
1671
|
+
},
|
1446
1672
|
{
|
1447
|
-
"internalType": "
|
1448
|
-
"name": "
|
1449
|
-
"type": "
|
1673
|
+
"internalType": "contract IERC20Metadata",
|
1674
|
+
"name": "token",
|
1675
|
+
"type": "address"
|
1450
1676
|
},
|
1451
1677
|
{
|
1452
|
-
"
|
1453
|
-
|
1454
|
-
|
1678
|
+
"components": [
|
1679
|
+
{
|
1680
|
+
"internalType": "UFixed",
|
1681
|
+
"name": "fractionalFee",
|
1682
|
+
"type": "uint256"
|
1683
|
+
},
|
1684
|
+
{
|
1685
|
+
"internalType": "uint256",
|
1686
|
+
"name": "fixedFee",
|
1687
|
+
"type": "uint256"
|
1688
|
+
}
|
1689
|
+
],
|
1690
|
+
"internalType": "struct Fee",
|
1691
|
+
"name": "productFee",
|
1692
|
+
"type": "tuple"
|
1693
|
+
},
|
1694
|
+
{
|
1695
|
+
"components": [
|
1696
|
+
{
|
1697
|
+
"internalType": "UFixed",
|
1698
|
+
"name": "fractionalFee",
|
1699
|
+
"type": "uint256"
|
1700
|
+
},
|
1701
|
+
{
|
1702
|
+
"internalType": "uint256",
|
1703
|
+
"name": "fixedFee",
|
1704
|
+
"type": "uint256"
|
1705
|
+
}
|
1706
|
+
],
|
1707
|
+
"internalType": "struct Fee",
|
1708
|
+
"name": "processingFee",
|
1709
|
+
"type": "tuple"
|
1710
|
+
},
|
1711
|
+
{
|
1712
|
+
"components": [
|
1713
|
+
{
|
1714
|
+
"internalType": "UFixed",
|
1715
|
+
"name": "fractionalFee",
|
1716
|
+
"type": "uint256"
|
1717
|
+
},
|
1718
|
+
{
|
1719
|
+
"internalType": "uint256",
|
1720
|
+
"name": "fixedFee",
|
1721
|
+
"type": "uint256"
|
1722
|
+
}
|
1723
|
+
],
|
1724
|
+
"internalType": "struct Fee",
|
1725
|
+
"name": "poolFee",
|
1726
|
+
"type": "tuple"
|
1727
|
+
},
|
1728
|
+
{
|
1729
|
+
"components": [
|
1730
|
+
{
|
1731
|
+
"internalType": "UFixed",
|
1732
|
+
"name": "fractionalFee",
|
1733
|
+
"type": "uint256"
|
1734
|
+
},
|
1735
|
+
{
|
1736
|
+
"internalType": "uint256",
|
1737
|
+
"name": "fixedFee",
|
1738
|
+
"type": "uint256"
|
1739
|
+
}
|
1740
|
+
],
|
1741
|
+
"internalType": "struct Fee",
|
1742
|
+
"name": "stakingFee",
|
1743
|
+
"type": "tuple"
|
1744
|
+
},
|
1745
|
+
{
|
1746
|
+
"components": [
|
1747
|
+
{
|
1748
|
+
"internalType": "UFixed",
|
1749
|
+
"name": "fractionalFee",
|
1750
|
+
"type": "uint256"
|
1751
|
+
},
|
1752
|
+
{
|
1753
|
+
"internalType": "uint256",
|
1754
|
+
"name": "fixedFee",
|
1755
|
+
"type": "uint256"
|
1756
|
+
}
|
1757
|
+
],
|
1758
|
+
"internalType": "struct Fee",
|
1759
|
+
"name": "performanceFee",
|
1760
|
+
"type": "tuple"
|
1761
|
+
},
|
1762
|
+
{
|
1763
|
+
"components": [
|
1764
|
+
{
|
1765
|
+
"internalType": "UFixed",
|
1766
|
+
"name": "fractionalFee",
|
1767
|
+
"type": "uint256"
|
1768
|
+
},
|
1769
|
+
{
|
1770
|
+
"internalType": "uint256",
|
1771
|
+
"name": "fixedFee",
|
1772
|
+
"type": "uint256"
|
1773
|
+
}
|
1774
|
+
],
|
1775
|
+
"internalType": "struct Fee",
|
1776
|
+
"name": "distributionFee",
|
1777
|
+
"type": "tuple"
|
1455
1778
|
}
|
1456
1779
|
],
|
1457
|
-
"internalType": "struct
|
1458
|
-
"name": "
|
1780
|
+
"internalType": "struct ITreasury.TreasuryInfo",
|
1781
|
+
"name": "setup",
|
1459
1782
|
"type": "tuple"
|
1460
1783
|
}
|
1461
1784
|
],
|
1462
|
-
"name": "
|
1785
|
+
"name": "registerProductSetup",
|
1463
1786
|
"outputs": [],
|
1464
1787
|
"stateMutability": "nonpayable",
|
1465
1788
|
"type": "function"
|
@@ -1527,17 +1850,34 @@
|
|
1527
1850
|
},
|
1528
1851
|
{
|
1529
1852
|
"inputs": [
|
1853
|
+
{
|
1854
|
+
"internalType": "NftId",
|
1855
|
+
"name": "bundleNftId",
|
1856
|
+
"type": "uint96"
|
1857
|
+
},
|
1530
1858
|
{
|
1531
1859
|
"components": [
|
1532
1860
|
{
|
1533
1861
|
"internalType": "NftId",
|
1534
|
-
"name": "
|
1862
|
+
"name": "poolNftId",
|
1535
1863
|
"type": "uint96"
|
1536
1864
|
},
|
1537
1865
|
{
|
1538
|
-
"
|
1539
|
-
|
1540
|
-
|
1866
|
+
"components": [
|
1867
|
+
{
|
1868
|
+
"internalType": "UFixed",
|
1869
|
+
"name": "fractionalFee",
|
1870
|
+
"type": "uint256"
|
1871
|
+
},
|
1872
|
+
{
|
1873
|
+
"internalType": "uint256",
|
1874
|
+
"name": "fixedFee",
|
1875
|
+
"type": "uint256"
|
1876
|
+
}
|
1877
|
+
],
|
1878
|
+
"internalType": "struct Fee",
|
1879
|
+
"name": "fee",
|
1880
|
+
"type": "tuple"
|
1541
1881
|
},
|
1542
1882
|
{
|
1543
1883
|
"internalType": "bytes",
|
@@ -1571,7 +1911,7 @@
|
|
1571
1911
|
}
|
1572
1912
|
],
|
1573
1913
|
"internalType": "struct IBundle.BundleInfo",
|
1574
|
-
"name": "
|
1914
|
+
"name": "info",
|
1575
1915
|
"type": "tuple"
|
1576
1916
|
}
|
1577
1917
|
],
|
@@ -1582,49 +1922,13 @@
|
|
1582
1922
|
},
|
1583
1923
|
{
|
1584
1924
|
"inputs": [
|
1585
|
-
{
|
1586
|
-
"components": [
|
1587
|
-
{
|
1588
|
-
"internalType": "NftId",
|
1589
|
-
"name": "nftId",
|
1590
|
-
"type": "uint96"
|
1591
|
-
},
|
1592
|
-
{
|
1593
|
-
"internalType": "StateId",
|
1594
|
-
"name": "state",
|
1595
|
-
"type": "uint8"
|
1596
|
-
},
|
1597
|
-
{
|
1598
|
-
"internalType": "contract IERC20Metadata",
|
1599
|
-
"name": "token",
|
1600
|
-
"type": "address"
|
1601
|
-
}
|
1602
|
-
],
|
1603
|
-
"internalType": "struct IComponent.ComponentInfo",
|
1604
|
-
"name": "info",
|
1605
|
-
"type": "tuple"
|
1606
|
-
}
|
1607
|
-
],
|
1608
|
-
"name": "setComponentInfo",
|
1609
|
-
"outputs": [
|
1610
1925
|
{
|
1611
1926
|
"internalType": "NftId",
|
1612
|
-
"name": "
|
1927
|
+
"name": "policyNftId",
|
1613
1928
|
"type": "uint96"
|
1614
|
-
}
|
1615
|
-
],
|
1616
|
-
"stateMutability": "nonpayable",
|
1617
|
-
"type": "function"
|
1618
|
-
},
|
1619
|
-
{
|
1620
|
-
"inputs": [
|
1929
|
+
},
|
1621
1930
|
{
|
1622
1931
|
"components": [
|
1623
|
-
{
|
1624
|
-
"internalType": "NftId",
|
1625
|
-
"name": "nftId",
|
1626
|
-
"type": "uint96"
|
1627
|
-
},
|
1628
1932
|
{
|
1629
1933
|
"internalType": "NftId",
|
1630
1934
|
"name": "productNftId",
|
@@ -1635,15 +1939,20 @@
|
|
1635
1939
|
"name": "bundleNftId",
|
1636
1940
|
"type": "uint96"
|
1637
1941
|
},
|
1942
|
+
{
|
1943
|
+
"internalType": "ReferralId",
|
1944
|
+
"name": "referralId",
|
1945
|
+
"type": "bytes8"
|
1946
|
+
},
|
1638
1947
|
{
|
1639
1948
|
"internalType": "address",
|
1640
1949
|
"name": "beneficiary",
|
1641
1950
|
"type": "address"
|
1642
1951
|
},
|
1643
1952
|
{
|
1644
|
-
"internalType": "
|
1645
|
-
"name": "
|
1646
|
-
"type": "
|
1953
|
+
"internalType": "RiskId",
|
1954
|
+
"name": "riskId",
|
1955
|
+
"type": "bytes8"
|
1647
1956
|
},
|
1648
1957
|
{
|
1649
1958
|
"internalType": "uint256",
|
@@ -1667,13 +1976,13 @@
|
|
1667
1976
|
},
|
1668
1977
|
{
|
1669
1978
|
"internalType": "bytes",
|
1670
|
-
"name": "
|
1979
|
+
"name": "applicationData",
|
1671
1980
|
"type": "bytes"
|
1672
1981
|
},
|
1673
1982
|
{
|
1674
|
-
"internalType": "
|
1675
|
-
"name": "
|
1676
|
-
"type": "
|
1983
|
+
"internalType": "bytes",
|
1984
|
+
"name": "policyData",
|
1985
|
+
"type": "bytes"
|
1677
1986
|
},
|
1678
1987
|
{
|
1679
1988
|
"internalType": "Timestamp",
|
@@ -1689,15 +1998,10 @@
|
|
1689
1998
|
"internalType": "Timestamp",
|
1690
1999
|
"name": "closedAt",
|
1691
2000
|
"type": "uint40"
|
1692
|
-
},
|
1693
|
-
{
|
1694
|
-
"internalType": "Blocknumber",
|
1695
|
-
"name": "updatedIn",
|
1696
|
-
"type": "uint32"
|
1697
2001
|
}
|
1698
2002
|
],
|
1699
2003
|
"internalType": "struct IPolicy.PolicyInfo",
|
1700
|
-
"name": "
|
2004
|
+
"name": "info",
|
1701
2005
|
"type": "tuple"
|
1702
2006
|
}
|
1703
2007
|
],
|
@@ -1709,93 +2013,29 @@
|
|
1709
2013
|
{
|
1710
2014
|
"inputs": [
|
1711
2015
|
{
|
1712
|
-
"internalType": "
|
1713
|
-
"name": "
|
1714
|
-
"type": "
|
1715
|
-
},
|
1716
|
-
{
|
1717
|
-
"components": [
|
1718
|
-
{
|
1719
|
-
"internalType": "UFixed",
|
1720
|
-
"name": "fractionalFee",
|
1721
|
-
"type": "uint256"
|
1722
|
-
},
|
1723
|
-
{
|
1724
|
-
"internalType": "uint256",
|
1725
|
-
"name": "fixedFee",
|
1726
|
-
"type": "uint256"
|
1727
|
-
}
|
1728
|
-
],
|
1729
|
-
"internalType": "struct Fee",
|
1730
|
-
"name": "stakingFee",
|
1731
|
-
"type": "tuple"
|
1732
|
-
},
|
1733
|
-
{
|
1734
|
-
"components": [
|
1735
|
-
{
|
1736
|
-
"internalType": "UFixed",
|
1737
|
-
"name": "fractionalFee",
|
1738
|
-
"type": "uint256"
|
1739
|
-
},
|
1740
|
-
{
|
1741
|
-
"internalType": "uint256",
|
1742
|
-
"name": "fixedFee",
|
1743
|
-
"type": "uint256"
|
1744
|
-
}
|
1745
|
-
],
|
1746
|
-
"internalType": "struct Fee",
|
1747
|
-
"name": "performanceFee",
|
1748
|
-
"type": "tuple"
|
1749
|
-
}
|
1750
|
-
],
|
1751
|
-
"name": "setPoolFees",
|
1752
|
-
"outputs": [],
|
1753
|
-
"stateMutability": "nonpayable",
|
1754
|
-
"type": "function"
|
1755
|
-
},
|
1756
|
-
{
|
1757
|
-
"inputs": [
|
1758
|
-
{
|
1759
|
-
"internalType": "NftId",
|
1760
|
-
"name": "productNftId",
|
1761
|
-
"type": "uint96"
|
1762
|
-
},
|
1763
|
-
{
|
1764
|
-
"components": [
|
1765
|
-
{
|
1766
|
-
"internalType": "UFixed",
|
1767
|
-
"name": "fractionalFee",
|
1768
|
-
"type": "uint256"
|
1769
|
-
},
|
1770
|
-
{
|
1771
|
-
"internalType": "uint256",
|
1772
|
-
"name": "fixedFee",
|
1773
|
-
"type": "uint256"
|
1774
|
-
}
|
1775
|
-
],
|
1776
|
-
"internalType": "struct Fee",
|
1777
|
-
"name": "policyFee",
|
1778
|
-
"type": "tuple"
|
2016
|
+
"internalType": "RiskId",
|
2017
|
+
"name": "riskId",
|
2018
|
+
"type": "bytes8"
|
1779
2019
|
},
|
1780
2020
|
{
|
1781
2021
|
"components": [
|
1782
2022
|
{
|
1783
|
-
"internalType": "
|
1784
|
-
"name": "
|
1785
|
-
"type": "
|
2023
|
+
"internalType": "NftId",
|
2024
|
+
"name": "productNftId",
|
2025
|
+
"type": "uint96"
|
1786
2026
|
},
|
1787
2027
|
{
|
1788
|
-
"internalType": "
|
1789
|
-
"name": "
|
1790
|
-
"type": "
|
2028
|
+
"internalType": "bytes",
|
2029
|
+
"name": "data",
|
2030
|
+
"type": "bytes"
|
1791
2031
|
}
|
1792
2032
|
],
|
1793
|
-
"internalType": "struct
|
1794
|
-
"name": "
|
2033
|
+
"internalType": "struct IRisk.RiskInfo",
|
2034
|
+
"name": "info",
|
1795
2035
|
"type": "tuple"
|
1796
2036
|
}
|
1797
2037
|
],
|
1798
|
-
"name": "
|
2038
|
+
"name": "setRiskInfo",
|
1799
2039
|
"outputs": [],
|
1800
2040
|
"stateMutability": "nonpayable",
|
1801
2041
|
"type": "function"
|
@@ -1818,6 +2058,143 @@
|
|
1818
2058
|
"stateMutability": "nonpayable",
|
1819
2059
|
"type": "function"
|
1820
2060
|
},
|
2061
|
+
{
|
2062
|
+
"inputs": [
|
2063
|
+
{
|
2064
|
+
"internalType": "NftId",
|
2065
|
+
"name": "productNftId",
|
2066
|
+
"type": "uint96"
|
2067
|
+
},
|
2068
|
+
{
|
2069
|
+
"components": [
|
2070
|
+
{
|
2071
|
+
"internalType": "NftId",
|
2072
|
+
"name": "poolNftId",
|
2073
|
+
"type": "uint96"
|
2074
|
+
},
|
2075
|
+
{
|
2076
|
+
"internalType": "NftId",
|
2077
|
+
"name": "distributionNftId",
|
2078
|
+
"type": "uint96"
|
2079
|
+
},
|
2080
|
+
{
|
2081
|
+
"internalType": "contract IERC20Metadata",
|
2082
|
+
"name": "token",
|
2083
|
+
"type": "address"
|
2084
|
+
},
|
2085
|
+
{
|
2086
|
+
"components": [
|
2087
|
+
{
|
2088
|
+
"internalType": "UFixed",
|
2089
|
+
"name": "fractionalFee",
|
2090
|
+
"type": "uint256"
|
2091
|
+
},
|
2092
|
+
{
|
2093
|
+
"internalType": "uint256",
|
2094
|
+
"name": "fixedFee",
|
2095
|
+
"type": "uint256"
|
2096
|
+
}
|
2097
|
+
],
|
2098
|
+
"internalType": "struct Fee",
|
2099
|
+
"name": "productFee",
|
2100
|
+
"type": "tuple"
|
2101
|
+
},
|
2102
|
+
{
|
2103
|
+
"components": [
|
2104
|
+
{
|
2105
|
+
"internalType": "UFixed",
|
2106
|
+
"name": "fractionalFee",
|
2107
|
+
"type": "uint256"
|
2108
|
+
},
|
2109
|
+
{
|
2110
|
+
"internalType": "uint256",
|
2111
|
+
"name": "fixedFee",
|
2112
|
+
"type": "uint256"
|
2113
|
+
}
|
2114
|
+
],
|
2115
|
+
"internalType": "struct Fee",
|
2116
|
+
"name": "processingFee",
|
2117
|
+
"type": "tuple"
|
2118
|
+
},
|
2119
|
+
{
|
2120
|
+
"components": [
|
2121
|
+
{
|
2122
|
+
"internalType": "UFixed",
|
2123
|
+
"name": "fractionalFee",
|
2124
|
+
"type": "uint256"
|
2125
|
+
},
|
2126
|
+
{
|
2127
|
+
"internalType": "uint256",
|
2128
|
+
"name": "fixedFee",
|
2129
|
+
"type": "uint256"
|
2130
|
+
}
|
2131
|
+
],
|
2132
|
+
"internalType": "struct Fee",
|
2133
|
+
"name": "poolFee",
|
2134
|
+
"type": "tuple"
|
2135
|
+
},
|
2136
|
+
{
|
2137
|
+
"components": [
|
2138
|
+
{
|
2139
|
+
"internalType": "UFixed",
|
2140
|
+
"name": "fractionalFee",
|
2141
|
+
"type": "uint256"
|
2142
|
+
},
|
2143
|
+
{
|
2144
|
+
"internalType": "uint256",
|
2145
|
+
"name": "fixedFee",
|
2146
|
+
"type": "uint256"
|
2147
|
+
}
|
2148
|
+
],
|
2149
|
+
"internalType": "struct Fee",
|
2150
|
+
"name": "stakingFee",
|
2151
|
+
"type": "tuple"
|
2152
|
+
},
|
2153
|
+
{
|
2154
|
+
"components": [
|
2155
|
+
{
|
2156
|
+
"internalType": "UFixed",
|
2157
|
+
"name": "fractionalFee",
|
2158
|
+
"type": "uint256"
|
2159
|
+
},
|
2160
|
+
{
|
2161
|
+
"internalType": "uint256",
|
2162
|
+
"name": "fixedFee",
|
2163
|
+
"type": "uint256"
|
2164
|
+
}
|
2165
|
+
],
|
2166
|
+
"internalType": "struct Fee",
|
2167
|
+
"name": "performanceFee",
|
2168
|
+
"type": "tuple"
|
2169
|
+
},
|
2170
|
+
{
|
2171
|
+
"components": [
|
2172
|
+
{
|
2173
|
+
"internalType": "UFixed",
|
2174
|
+
"name": "fractionalFee",
|
2175
|
+
"type": "uint256"
|
2176
|
+
},
|
2177
|
+
{
|
2178
|
+
"internalType": "uint256",
|
2179
|
+
"name": "fixedFee",
|
2180
|
+
"type": "uint256"
|
2181
|
+
}
|
2182
|
+
],
|
2183
|
+
"internalType": "struct Fee",
|
2184
|
+
"name": "distributionFee",
|
2185
|
+
"type": "tuple"
|
2186
|
+
}
|
2187
|
+
],
|
2188
|
+
"internalType": "struct ITreasury.TreasuryInfo",
|
2189
|
+
"name": "info",
|
2190
|
+
"type": "tuple"
|
2191
|
+
}
|
2192
|
+
],
|
2193
|
+
"name": "setTreasuryInfo",
|
2194
|
+
"outputs": [],
|
2195
|
+
"stateMutability": "nonpayable",
|
2196
|
+
"type": "function"
|
2197
|
+
},
|
1821
2198
|
{
|
1822
2199
|
"inputs": [
|
1823
2200
|
{
|
@@ -1843,17 +2220,16 @@
|
|
1843
2220
|
"internalType": "NftId",
|
1844
2221
|
"name": "bundleNftId",
|
1845
2222
|
"type": "uint96"
|
1846
|
-
}
|
1847
|
-
],
|
1848
|
-
"name": "toBundleKey32",
|
1849
|
-
"outputs": [
|
2223
|
+
},
|
1850
2224
|
{
|
1851
|
-
"internalType": "
|
1852
|
-
"name": "
|
1853
|
-
"type": "
|
2225
|
+
"internalType": "StateId",
|
2226
|
+
"name": "state",
|
2227
|
+
"type": "uint8"
|
1854
2228
|
}
|
1855
2229
|
],
|
1856
|
-
"
|
2230
|
+
"name": "updateBundleState",
|
2231
|
+
"outputs": [],
|
2232
|
+
"stateMutability": "nonpayable",
|
1857
2233
|
"type": "function"
|
1858
2234
|
},
|
1859
2235
|
{
|
@@ -1869,24 +2245,79 @@
|
|
1869
2245
|
"type": "uint8"
|
1870
2246
|
}
|
1871
2247
|
],
|
1872
|
-
"name": "
|
2248
|
+
"name": "updatePolicyState",
|
2249
|
+
"outputs": [],
|
2250
|
+
"stateMutability": "nonpayable",
|
2251
|
+
"type": "function"
|
2252
|
+
},
|
2253
|
+
{
|
2254
|
+
"inputs": [
|
2255
|
+
{
|
2256
|
+
"internalType": "RiskId",
|
2257
|
+
"name": "riskId",
|
2258
|
+
"type": "bytes8"
|
2259
|
+
},
|
2260
|
+
{
|
2261
|
+
"internalType": "StateId",
|
2262
|
+
"name": "state",
|
2263
|
+
"type": "uint8"
|
2264
|
+
}
|
2265
|
+
],
|
2266
|
+
"name": "updateRiskState",
|
2267
|
+
"outputs": [],
|
2268
|
+
"stateMutability": "nonpayable",
|
2269
|
+
"type": "function"
|
2270
|
+
},
|
2271
|
+
{
|
2272
|
+
"inputs": [
|
2273
|
+
{
|
2274
|
+
"internalType": "Key32",
|
2275
|
+
"name": "key",
|
2276
|
+
"type": "bytes32"
|
2277
|
+
},
|
2278
|
+
{
|
2279
|
+
"internalType": "StateId",
|
2280
|
+
"name": "state",
|
2281
|
+
"type": "uint8"
|
2282
|
+
}
|
2283
|
+
],
|
2284
|
+
"name": "updateState",
|
2285
|
+
"outputs": [],
|
2286
|
+
"stateMutability": "nonpayable",
|
2287
|
+
"type": "function"
|
2288
|
+
},
|
2289
|
+
{
|
2290
|
+
"inputs": [
|
2291
|
+
{
|
2292
|
+
"internalType": "address",
|
2293
|
+
"name": "implementation",
|
2294
|
+
"type": "address"
|
2295
|
+
},
|
2296
|
+
{
|
2297
|
+
"internalType": "address",
|
2298
|
+
"name": "activatedBy",
|
2299
|
+
"type": "address"
|
2300
|
+
},
|
2301
|
+
{
|
2302
|
+
"internalType": "bytes",
|
2303
|
+
"name": "data",
|
2304
|
+
"type": "bytes"
|
2305
|
+
}
|
2306
|
+
],
|
2307
|
+
"name": "upgrade",
|
1873
2308
|
"outputs": [],
|
1874
2309
|
"stateMutability": "nonpayable",
|
1875
2310
|
"type": "function"
|
1876
2311
|
}
|
1877
2312
|
],
|
1878
|
-
"bytecode": "0x60e06040523480156200001157600080fd5b506040516200898938038062008989833981016040819052620000349162000e52565b818181816200004560003362000484565b6301ffc9a760e01b60005260026020527f71203db6a8b906f8e7c7701ea536708e3d7c6018d3ad50e5680c3241edacce17805460ff191660011790556001600160a01b038216620000dd5760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a5247422d3031303a52454749535452595f5a45524f000000000060448201526064015b60405180910390fd5b6001600160a01b03821660808190526040516301ffc9a760e01b81526306ecd8ef60e01b60048201526301ffc9a790602401602060405180830381865afa1580156200012d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000153919062000e9a565b620001a15760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a5247422d3031313a4e4f545f52454749535452590000000000006044820152606401620000d4565b6001600160601b03811660a081905260805160405163e74d052f60e01b815260048101929092526001600160a01b03169063e74d052f90602401602060405180830381865afa158015620001f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021f919062000e9a565b620002795760405162461bcd60e51b815260206004820152602360248201527f4552524f523a5247422d3031323a504152454e545f4e4f545f5245474953544560448201526214915160ea1b6064820152608401620000d4565b3360c052631dfba64760e11b60005260026020527ffc5164b528507fb56c225cc68864b8f0ef1e129250403b69e252bd0b2789bfea805460ff191660011790555050604051620002c99062000e27565b604051809103906000f080158015620002e6573d6000803e3d6000fd5b50600380546001600160a01b0319166001600160a01b0392909216919091179055638de54b9b60e01b60005260026020527fbbbdb2fb0832d9cc0814bfd5527573cc6f84893ca59f86761ee168a6f8d07708805460ff191660011790556200034d6200075b565b506200039890506200035e620008ee565b60408051808201909152601481527f4469737472696275746f724f776e6572526f6c6500000000000000000000000060208201526200099b565b620003d2620003a662000a00565b60408051808201909152600f81526e4f7261636c654f776e6572526f6c6560881b60208201526200099b565b6200040a620003e062000a5b565b60408051808201909152600d81526c506f6f6c4f776e6572526f6c6560981b60208201526200099b565b620004456200041862000ab4565b60408051808201909152601081526f50726f647563744f776e6572526f6c6560801b60208201526200099b565b6003546200047c906001600160a01b0316600b80546001600160a01b0383166001600160a81b031990911617606960a11b17905550565b5050620011bc565b60006200049062000b10565b90506200049d8162000b98565b15620004fc5760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b6064820152608401620000d4565b60015415620005bc5760018054600091906200051a90829062000ec5565b815481106200052d576200052d62000ee7565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff16905062000560828262000c3c565b620005ba5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b6064820152608401620000d4565b505b600180548082018255600091909152600a8082047fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b03808616602084015284169082015260608101620006454290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602081815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d4419906200074e9083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b60405180910390a1505050565b60006200076762000b10565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015620007bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007e3919062000efd565b90506200082c6040518060400160405280601581526020017f436f6d706f6e656e744f776e65725365727669636500000000000000000000008152508262000c4e60201b60201c565b600480546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152600e81526d50726f647563745365727669636560901b60208201526200087d908262000c4e565b600580546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152600b81526a506f6f6c5365727669636560a81b6020820152620008cb908262000c4e565b600680546001600160a01b0319166001600160a01b039290921691909117905550565b60405163e14787cb60e01b815260206004820152601460248201527f4469737472696275746f724f776e6572526f6c65000000000000000000000000604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906064015b602060405180830381865af415801562000970573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000996919062000f22565b905090565b604080516060810182526001600160c01b03198416815260208101839052600191810191909152620009cd8162000d21565b7f34e1f82fc40bf14028ae2a3150f074e7715e20ed8e30e250f8789cee718c648583836040516200074e92919062000f96565b60405163e14787cb60e01b815260206004820152600f60248201526e4f7261636c654f776e6572526f6c6560881b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb9060640162000952565b60405163e14787cb60e01b815260206004820152600d60248201526c506f6f6c4f776e6572526f6c6560981b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb9060640162000952565b60405163e14787cb60e01b815260206004820152601060248201526f50726f647563744f776e6572526f6c6560801b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb9060640162000952565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562000b72573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000996919062000fc5565b62ffffff8116600090815260208190526040808220600101549051631bbffab160e21b8152600160c81b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af415801562000c0f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c35919062000fec565b1192915050565b62ffffff808216908316115b92915050565b60805160405163a3bcd81d60e01b81526000916001600160a01b03169063a3bcd81d9062000c83908690869060040162001006565b602060405180830381865afa15801562000ca1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000cc791906200102d565b90506001600160a01b03811662000c485760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a494e532d3030313a4e4f545f52454749535445524544000000006044820152606401620000d4565b80516001600160c01b031981166000908152600760209081526040909120835181546001600160401b03191660c09190911c17815590830151839190600182019062000d6e9082620010f0565b50604091909101516002909101805460ff191691151591909117905562000d958162000dfc565b62000df857600880546001810182556000829052600481047ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee301805460c085901c60039093169093026101000a9182026001600160401b03909202199092161790555b5050565b6001600160c01b0319818116600081815260076020526040812054909260c09190911b161462000c48565b611e2b8062006b5e83390190565b80516001600160a01b038116811462000e4d57600080fd5b919050565b6000806040838503121562000e6657600080fd5b62000e718362000e35565b60208401519092506001600160601b038116811462000e8f57600080fd5b809150509250929050565b60006020828403121562000ead57600080fd5b8151801515811462000ebe57600080fd5b9392505050565b8181038181111562000c4857634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006020828403121562000f1057600080fd5b815160ff8116811462000ebe57600080fd5b60006020828403121562000f3557600080fd5b81516001600160c01b03198116811462000ebe57600080fd5b6000815180845260005b8181101562000f765760208185018101518683018201520162000f58565b506000602082860101526020601f19601f83011685010191505092915050565b6001600160c01b03198316815260406020820181905260009062000fbd9083018462000f4e565b949350505050565b60006020828403121562000fd857600080fd5b815162ffffff8116811462000ebe57600080fd5b60006020828403121562000fff57600080fd5b5051919050565b6040815260006200101b604083018562000f4e565b905060ff831660208301529392505050565b6000602082840312156200104057600080fd5b62000ebe8262000e35565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200107657607f821691505b6020821081036200109757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620010eb57600081815260208120601f850160051c81016020861015620010c65750805b601f850160051c820191505b81811015620010e757828155600101620010d2565b5050505b505050565b81516001600160401b038111156200110c576200110c6200104b565b62001124816200111d845462001061565b846200109d565b602080601f8311600181146200115c5760008415620011435750858301515b600019600386901b1c1916600185901b178555620010e7565b600085815260208120601f198616915b828110156200118d578886015182559484019460019091019084016200116c565b5085821015620011ac5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c0516159566200120860003960006139d1015260006105140152600081816107f1015281816111c601528181611aeb015281816139500152613a1401526159566000f3fe60806040523480156200001157600080fd5b5060043610620004095760003560e01c8063893d20e8116200021d578063bd62faf71162000131578063dc261c3a11620000bb578063ee0fdf711162000086578063ee0fdf711462000c5e578063f0ea17c31462000c75578063f274e87d1462000d26578063fe1f18d61462000d5357600080fd5b8063dc261c3a1462000bc8578063e03eeb851462000c19578063e1f64d771462000c30578063e79597401462000c4757600080fd5b8063d0bb064c11620000fc578063d0bb064c1462000af3578063d250185c1462000b83578063dad73bed1462000b9a578063db70354c1462000bb157600080fd5b8063bd62faf71462000a79578063bd7d9d851462000a90578063c2bf7d261462000ab6578063cf5ccedb1462000acd57600080fd5b806399fd467711620001b3578063af17d38a116200017e578063af17d38a1462000a1d578063b88da7591462000a34578063b8c510671462000a4b578063b9f36dde1462000a6257600080fd5b806399fd467714620009a3578063a13df2ab14620009ba578063a310e2a314620009d1578063a90be9071462000a0657600080fd5b8063946dfcfe11620001f4578063946dfcfe14620009555780639555c4db146200095e5780639675513d146200097557806398457437146200098c57600080fd5b8063893d20e814620008e35780638b59fe2a14620008ed57806393865aec146200090457600080fd5b80634d459c90116200032157806369a44a1b11620002ab5780637fec8b3111620002765780637fec8b3114620008a05780638125ea9214620008b757806383d3331914620008c157806387c5658614620008ca57600080fd5b806369a44a1b146200084e5780636b9bf08b14620008655780636fa29853146200087757806375a07ed2146200088957600080fd5b80635ab1bd5311620002ec5780635ab1bd5314620007ef5780635fe9f2a51462000816578063644c45e0146200082d578063674d0ccf146200083757600080fd5b80634d459c9014620005e75780634fd077f514620006f85780635312fdc2146200071e57806357f80bbf146200074f57600080fd5b806320f4b65e11620003a3578063349195f9116200036e578063349195f914620005765780633bc5de30146200057f5780634288121d146200059b5780634793b4ab14620005c157600080fd5b806320f4b65e14620004fb57806331b62a3b146200051257806331e48e3214620005395780633300a8a8146200055057600080fd5b80630d0ccc5b11620003e45780630d0ccc5b14620004835780630d8e6e2c14620004a957806315dae03e14620004c85780631aa3a00814620004d857600080fd5b806301ffc9a7146200040e5780630591087414620004535780630abd8434146200046c575b600080fd5b6200043e6200041f366004620041c5565b6001600160e01b03191660009081526002602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6200046a620004643660046200421b565b62000d6a565b005b6200043e6200047d366004620042df565b62000f87565b6200049a62000494366004620042ff565b6200102b565b6040519081526020016200044a565b620004b3620010b6565b60405162ffffff90911681526020016200044a565b604051603281526020016200044a565b620004e262001143565b6040516001600160601b0390911681526020016200044a565b6200046a6200050c366004620044a8565b6200123e565b7f0000000000000000000000000000000000000000000000000000000000000000620004e2565b6200046a6200054a366004620045dd565b620013d0565b62000567620005613660046200467f565b620016cc565b6040516200044a91906200469f565b600f546200049a565b604080516020810182526000815290516200044a919062004752565b6005546001600160a01b03165b6040516001600160a01b0390911681526020016200044a565b620005d8620005d23660046200467f565b62001752565b6040516200044a919062004767565b6200069a620005f8366004620042df565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091525062ffffff90811660009081526020818152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a0016200044a565b6200070f620007093660046200467f565b620017db565b6040516200044a9190620047ff565b620007356200072f3660046200488c565b62001886565b6040516001600160c01b031990911681526020016200044a565b620007c1620007603660046200467f565b6040805160608082018352600080835260208084018290529284018190526001600160601b039485168152601283528390208351918201845280549485168252600160601b90940460ff161515918101919091526001909201549082015290565b6040805182516001600160601b0316815260208084015115159082015291810151908201526060016200044a565b7f0000000000000000000000000000000000000000000000000000000000000000620005a8565b6200046a62000827366004620048d8565b620018c8565b620004e262001ad3565b6200049a6200084836600462004a5f565b62001b3b565b6200049a6200085f3660046200467f565b62001b5f565b6006546001600160a01b0316620005a8565b6004546001600160a01b0316620005a8565b6200046a6200089a36600462004a7f565b62001bf0565b620004e2620008b13660046200488c565b62001eca565b620005a862001f12565b6008546200049a565b620008d462001f27565b6040516200044a919062004aed565b620005a862001faa565b6200046a620008fe36600462004b05565b62001fb6565b6200046a6200091536600462004b57565b6001600160601b03909216600090815260166020908152604090912082516001820155918101516002830155825160038301559190910151600490910155565b6001546200049a565b6200046a6200096f36600462004ba5565b6200216a565b6200049a6200098636600462004bd8565b6200217a565b6200046a6200099d36600462004c0b565b620022e4565b6200043e620009b436600462004c51565b62002464565b6200049a620009cb3660046200467f565b6200249b565b620005a8620009e23660046200467f565b6001600160601b03166000908152601760205260409020546001600160a01b031690565b6200049a62000a173660046200488c565b620024a8565b6200073562000a2e36600462004c72565b620024e4565b620004b362000a453660046200488c565b62002672565b6200073562000a5c36600462004c72565b620026b6565b6200046a62000a7336600462004c51565b62002736565b620004e262000a8a36600462004cc7565b6200289f565b62000aa762000aa13660046200467f565b62002b46565b6040516200044a919062004d42565b6200046a62000ac736600462004c51565b62002d4d565b62000ae462000ade36600462004a5f565b62002f4d565b6040516200044a919062004e8a565b6200046a62000b0436600462004ed3565b604080516080810182526001600160601b039586168082526001600160a01b039586166020808401918252838501968752606084019586526000928352601681529390912091519051909516600160601b0294909516939093178455905180516001850155820151600284015551805160038401550151600490910155565b620008d462000b9436600462004f36565b6200304b565b6200046a62000bab36600462004f68565b620030da565b620004e262000bc236600462004f9b565b620032f8565b6200046a62000bd936600462004b57565b6001600160601b03909216600090815260146020908152604090912082516003820155918101516004830155825160058301559190910151600690910155565b6200046a62000c2a36600462004fca565b6200338f565b6200046a62000c4136600462004c0b565b620034d5565b620005a862000c5836600462004fff565b62003629565b6200043e62000c6f36600462004a5f565b6200364e565b62000cee62000c863660046200467f565b6040805160608082018352600080835260208084018290529284018190526001600160601b039485168152600e83528390208351918201845280549485168252600160601b90940460ff16918101919091526001909201546001600160a01b03169082015290565b6040805182516001600160601b0316815260208084015160ff1690820152918101516001600160a01b0316908201526060016200044a565b62000d3d62000d3736600462005020565b62003679565b604080519283526020830191909152016200044a565b6200046a62000d6436600462005050565b62003705565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000dab573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dd1919062005083565b6001600160a01b0316336001600160a01b03161462000e375760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f53455256494345000060448201526064015b60405180910390fd5b6000604051806101000160405280886001600160601b03168152602001876001600160601b0316815260200184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050506020820188905260408201526060810187905260800142604051631ded81af60e31b815264ffffffffff90911660048201526024810187905273__$d53880c81dc91c20799140d711e5ab8718$__9063ef6c0d7890604401602060405180830381865af415801562000f11573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f379190620050b0565b64ffffffffff168152602001600064ffffffffff16815250905062000f7e878260405160200162000f69919062004767565b604051602081830303815290604052620037da565b50505050505050565b62ffffff8116600090815260208190526040808220600101549051631bbffab160e21b8152600160c81b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af415801562000ffe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010249190620050d0565b1192915050565b604051631488c84560e01b815260048101839052600082810b60248301529073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__90631488c84590604401602060405180830381865af415801562001087573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010ad9190620050d0565b90505b92915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562001118573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200113e9190620050ea565b905090565b60006200114f62001faa565b6001600160a01b0316336001600160a01b031614620011b15760405162461bcd60e51b815260206004820152601760248201527f4552524f523a5247422d3030313a4e4f545f4f574e4552000000000000000000604482015260640162000e2e565b604051632210724360e11b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690634420e486906024016020604051808303816000875af115801562001218573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200113e919062005117565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af11580156200127f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620012a5919062005083565b6001600160a01b0316336001600160a01b031614806200133c5750306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001301573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001327919062005083565b6001600160a01b0316336001600160a01b0316145b6200139c5760405162461bcd60e51b815260206004820152602960248201527f4552524f523a42444c2d3030333a4e4f545f504f4f4c5f4f525f50524f445543604482015268545f5345525649434560b81b606482015260840162000e2e565b620013cd816000015182604051602001620013b8919062004767565b60405160208183030381529060405262003861565b50565b6001600160601b0387166000908152601760205260409020546001600160a01b031615620014585760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031303a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000e2e565b6001600160601b0385166000908152601760205260409020546001600160a01b031615620014e05760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031313a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000e2e565b6001600160601b0386166000908152601760205260409020546001600160a01b031615620015685760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031323a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000e2e565b600087856040516200157a9062004101565b6001600160601b0390921682526001600160a01b03166020820152604001604051809103906000f080158015620015b5573d6000803e3d6000fd5b506001600160601b03988916600081815260176020908152604080832080546001600160a01b039687166001600160a01b031991821681179092559b8e1680855282852080548e16831790559c8e1680855282852080548e16909217909155815160e0810183528581528084019182528083019d8e529a861660608c0190815299861660808c0190815260a08c01998a5260c08c019889529484526014835292209851895492518d16600160601b9081026001600160c01b0319909416918e1691909117929092178955995196518316029590991694909417600186015550955160028401805491909316941693909317905590518051600383015582015160048201559151805160058401550151600690910155565b620016d66200410f565b506001600160601b03908116600090815260166020908152604091829020825160808101845281549485168152600160601b9094046001600160a01b0316848301528251808401845260018201548152600282015481840152848401528251808401909352600381015483526004015490820152606082015290565b620017bb60405180610100016040528060006001600160601b0316815260200160006001600160601b0316815260200160608152602001600081526020016000815260200160008152602001600064ffffffffff168152602001600064ffffffffff1681525090565b620017c6826200389d565b806020019051810190620010b0919062005183565b620017e562004180565b506001600160601b03908116600090815260146020908152604091829020825160e08101845281548086168252600160601b908190048616828501526001830154958616828601526001600160a01b0395048516606082015260028201549094166080850152825180840184526003820154815260048201548184015260a0850152825180840190935260058101548352600601549082015260c082015290565b6000600882815481106200189e576200189e62005254565b90600052602060002090600491828204019190066008029054906101000a900460c01b9050919050565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001909573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200192f919062005083565b6001600160a01b0316336001600160a01b031614620019625760405162461bcd60e51b815260040162000e2e906200526a565b80516001600160601b0390811660009081526011602090815260409182902084518154928601519085166001600160c01b031990931692909217600160601b928516830217815591840151606085015193166001600160a01b0390931602919091176001820155608082015160028201805460ff191660ff90921691909117905560a0820151600382015560c0820151600482015560e082015160058201556101008201516006820155610120820151829190600782019062001a26908262005336565b50610140820151600890910180546101608401516101808501516101a08601516101c09096015163ffffffff16600160a01b0263ffffffff60a01b1964ffffffffff978816600160781b0264ffffffffff60781b19938916600160501b029390931669ffffffffffffffffffff60501b19948916650100000000000269ffffffffffffffffffff199096169890971697909717939093179190911693909317929092179290921617905550565b604051636939560f60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa15801562001218573d6000803e3d6000fd5b6001600160c01b031981166000908152600a60205260408120620010b09062003923565b6001600160601b038116600090815260136020526040808220905163697d0f1b60e11b8152600481019190915273__$0dc988b1672de335b826773df9015af2da$__9063d2fa1e36906024015b602060405180830381865af415801562001bca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010b09190620050d0565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001c31573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001c57919062005083565b6001600160a01b0316336001600160a01b03161462001c8a5760405162461bcd60e51b815260040162000e2e906200526a565b604051806101e00160405280866001600160601b03168152602001876001600160601b03168152602001826001600160601b0316815260200160006001600160a01b0316815260200162001cdc600a90565b60ff1681526020018581526020018481526020016000815260200183815260200160405180602001604052806000815250815260200162001d1a4290565b64ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff1681526020014363ffffffff1690526001600160601b0386811660009081526011602090815260409182902084518154928601519085166001600160c01b031990931692909217600160601b928516830217815591840151606085015193166001600160a01b0390931602919091176001820155608082015160028201805460ff191660ff90921691909117905560a0820151600382015560c0820151600482015560e082015160058201556101008201516006820155610120820151600782019062001e18908262005336565b50610140820151600890910180546101608401516101808501516101a08601516101c09096015163ffffffff16600160a01b0263ffffffff60a01b1964ffffffffff978816600160781b0264ffffffffff60781b19938916600160501b029390931669ffffffffffffffffffff60501b19948916650100000000000269ffffffffffffffffffff1990961698909716979097179390931791909116939093179290921792909216179055505050505050565b6000600f828154811062001ee25762001ee262005254565b9060005260206000209060029182820401919006600c029054906101000a90046001600160601b03169050919050565b60006200113e6003546001600160a01b031690565b604080518082019091526000808252602082015273__$a23651848365a6a5ca15f07b4331037f48$__632bd182d36040518163ffffffff1660e01b81526004016040805180830381865af415801562001f84573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200113e919062005402565b60006200113e6200392e565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001ff5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200201b919062005083565b6001600160a01b0316336001600160a01b0316146200207d5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500604482015260640162000e2e565b6040518060600160405280846001600160601b03168152602001620020a0606490565b60ff90811682526001600160a01b039384166020928301526001600160601b039586166000818152600e845260408082208651815496880151909516600160601b026001600160681b0319909616948a1694909417949094178355939092015160019182018054919095166001600160a01b031990911617909355600f805480850182559252600282047f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80201805492909316600c026101000a908102940219169290921790915550565b62002176828262003a90565b5050565b6000306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620021bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620021e3919062005083565b6001600160a01b0316336001600160a01b031614620022165760405162461bcd60e51b815260040162000e2e9062005437565b506001600160601b038083166000818152600d602090815260408083209486168352938152838220805490839055928252600c9052829020915163539eabab60e11b8152909173__$0dc988b1672de335b826773df9015af2da$__9163a73d575691620022999186906004019182526001600160601b0316602082015260400190565b602060405180830381865af4158015620022b7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620022dd919062005478565b5092915050565b6001600160601b03828116600090815260136020526040908190209051632bfdd6b960e01b81526004810182905291851660248301529073__$0dc988b1672de335b826773df9015af2da$__90632bfdd6b990604401602060405180830381865af415801562002358573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200237e919062005478565b15620023d75760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504c2d3032303a42554e444c455f414c52454144595f414444456044820152601160fa1b606482015260840162000e2e565b604051631461054360e31b8152600481018290526001600160601b038516602482015273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af415801562002437573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200245d919062005478565b5050505050565b6001600160c01b0319821660009081526009602090815260408083206001600160a01b038516845290915281205460ff16620010ad565b6000620010b08262003d61565b6040516322f5db0f60e11b81526004810182905260009073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__906345ebb61e9060240162001bac565b6000306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002525573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200254b919062005083565b6001600160a01b0316336001600160a01b0316146200257e5760405162461bcd60e51b815260040162000e2e9062005498565b60405163e14787cb60e01b815273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90620025b790859060040162004752565b602060405180830381865af4158015620025d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620025fb9190620054cf565b905062002608816200364e565b15620026615760405162461bcd60e51b815260206004820152602160248201527f4552524f523a4143532d3031303a524f4c455f414c52454144595f45584953546044820152605360f81b606482015260840162000e2e565b6200266d818362003db8565b919050565b6000600182815481106200268a576200268a62005254565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60405163e14787cb60e01b815260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90620026f290859060040162004752565b602060405180830381865af415801562002710573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010b09190620054cf565b6001600160c01b0319828116600081815260076020526040902054849260c09190911b16146200277a5760405162461bcd60e51b815260040162000e2e90620054ef565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015620027b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027df919062005083565b6001600160a01b0316336001600160a01b031614620028125760405162461bcd60e51b815260040162000e2e9062005498565b6001600160c01b0319831660008181526009602090815260408083206001600160a01b03871684528252808320805460ff19169055928252600a9052206200285b908362003e1d565b507fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d1698754539668483836000604051620028929392919062005526565b60405180910390a1505050565b6000306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620028e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002906919062005083565b6001600160a01b0316336001600160a01b031614620029685760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500604482015260640162000e2e565b5080516040516330b8415f60e01b81526001600160601b038216600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015620029c4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620029ea919062005478565b801562002a8957506001600160601b038181166000818152600e60205260409081902054905163c4cade9d60e01b815292166004830152602482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90604401602060405180830381865af415801562002a63573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a89919062005478565b62002ad75760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434d502d3030363a434f4d504f4e454e545f554e4b4e4f574e00604482015260640162000e2e565b6001600160601b038082166000908152600e6020908152604091829020855181549287015160ff16600160601b026001600160681b031990931694169390931717825590920151600190920180546001600160a01b039093166001600160a01b03199093169290921790915590565b604080516101e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820183905261010082018390526101208201526101408101829052610160810182905261018081018290526101a081018290526101c08101919091526001600160601b0382811660009081526011602090815260409182902082516101e08101845281548086168252600160601b9081900486169382019390935260018201549485169381019390935292046001600160a01b03166060820152600282015460ff166080820152600382015460a0820152600482015460c0820152600582015460e082015260068201546101008201526007820180549192916101208401919062002c6d90620052ab565b80601f016020809104026020016040519081016040528092919081815260200182805462002c9b90620052ab565b801562002cec5780601f1062002cc05761010080835404028352916020019162002cec565b820191906000526020600020905b81548152906001019060200180831162002cce57829003601f168201915b50505091835250506008919091015464ffffffffff808216602084015265010000000000820481166040840152600160501b820481166060840152600160781b8204166080830152600160a01b900463ffffffff1660a09091015292915050565b6001600160c01b0319828116600081815260076020526040902054849260c09190911b161462002d915760405162461bcd60e51b815260040162000e2e90620054ef565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002dd0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002df6919062005083565b6001600160a01b0316336001600160a01b03161462002e295760405162461bcd60e51b815260040162000e2e9062005498565b6001600160c01b0319831660009081526007602052604090206002015460ff1662002e975760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4143532d3034303a524f4c455f4e4f545f414354495645000000604482015260640162000e2e565b6001600160c01b0319831660008181526009602090815260408083206001600160a01b03871684528252808320805460ff19166001179055928252600a90522062002ee3908362003e34565b506001600160c01b0319831660009081526009602090815260408083206001600160a01b0386168452909152908190205490517fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d169875453966849162002892918691869160ff9091169062005526565b6040805160608082018352600080835260208084018390528385018290526001600160c01b0319868116835260078252918590208551938401909552845460c01b9091168252600184018054939492939184019162002fac90620052ab565b80601f016020809104026020016040519081016040528092919081815260200182805462002fda90620052ab565b80156200302b5780601f1062002fff576101008083540402835291602001916200302b565b820191906000526020600020905b8154815290600101906020018083116200300d57829003601f168201915b50505091835250506002919091015460ff16151560209091015292915050565b60408051808201825260008082526020820152905163638086fd60e11b8152600481018490526024810183905273__$a23651848365a6a5ca15f07b4331037f48$__9063c7010dfa906044016040805180830381865af4158015620030b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010ad919062005402565b6001600160c01b0319828116600081815260076020526040902054849260c09190911b16146200311e5760405162461bcd60e51b815260040162000e2e90620054ef565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200315d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003183919062005083565b6001600160a01b0316336001600160a01b031614620031b65760405162461bcd60e51b815260040162000e2e9062005498565b6001600160c01b03198084166000908152600760209081526040808320815160608101909252805460c01b90941681526001840180549394919391928401916200320090620052ab565b80601f01602080910402602001604051908101604052809291908181526020018280546200322e90620052ab565b80156200327f5780601f1062003253576101008083540402835291602001916200327f565b820191906000526020600020905b8154815290600101906020018083116200326157829003601f168201915b50505091835250506002919091015460ff16151560209091015283151560408201529050620032ae8162003e4b565b604080516001600160c01b03198616815284151560208201527feaffaec948991ecc6e201ba4f67ba865fbf66aace3d2f2823dc5483cc9813fda910160405180910390a150505050565b6001600160601b038216600090815260136020526040808220905163e797d89960e01b815260048101919091526024810183905273__$0dc988b1672de335b826773df9015af2da$__9063e797d89990604401602060405180830381865af415801562003369573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010ad919062005117565b6001600160601b0383811660009081526012602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af4158015620033fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003421919062005478565b6200346f5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a504c2d3031303a414c52454144595f4352454154454400000000604482015260640162000e2e565b604080516060810182526001600160601b039485168082529315156020808301918252828401948552600095865260129052919093209251835491511515600160601b026001600160681b03199092169416939093179290921781559051600190910155565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562003516573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200353c919062005083565b6001600160a01b0316336001600160a01b0316146200356f5760405162461bcd60e51b815260040162000e2e9062005437565b6001600160601b038381166000818152600d60209081526040808320948716808452948252808320869055928252600c90528190209051631461054360e31b81526004810191909152602481019190915273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af4158015620035fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003623919062005478565b50505050565b6001600160c01b031982166000908152600a60205260408120620010ad908362003f26565b6001600160c01b0319818116600081815260076020526040812054909260c09190911b1614620010b0565b60008073__$a23651848365a6a5ca15f07b4331037f48$__63c66fb3ae85856040518363ffffffff1660e01b8152600401620036b792919062005553565b6040805180830381865af4158015620036d4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620036fa919062005572565b915091509250929050565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562003746573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200376c919062005083565b6001600160a01b0316336001600160a01b031614620037ce5760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000e2e565b62002176828262003f34565b600b546001600160a01b0316635dee4788620037f68462003d61565b600b5460405160e084901b6001600160e01b0319168152620038299291600160a01b900460ff1690869060040162005597565b600060405180830381600087803b1580156200384457600080fd5b505af115801562003859573d6000803e3d6000fd5b505050505050565b600b546001600160a01b0316636ec3d9406200387d8462003d61565b836040518363ffffffff1660e01b815260040162003829929190620055c4565b600b546060906001600160a01b03166354f6127f620038bc8462003d61565b6040518263ffffffff1660e01b8152600401620038db91815260200190565b600060405180830381865afa158015620038f9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620010b09190810190620055df565b6000620010b0825490565b604051636939560f60e11b815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e90602401602060405180830381865afa15801562003998573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620039be919062005117565b90506001600160601b038116620039f6577f000000000000000000000000000000000000000000000000000000000000000091505090565b60405163df33330b60e01b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df33330b90602401602060405180830381865afa15801562003a64573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003a8a919062005083565b91505090565b600062003a9c620010b6565b905062003aa98162000f87565b1562003b085760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b606482015260840162000e2e565b6001541562003bcf57600180546000919062003b2690829062005617565b8154811062003b395762003b3962005254565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff16905062003b73828262ffffff90811691161190565b62003bcd5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b606482015260840162000e2e565b505b600180548082018255600091909152600a8082047fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b0380861660208401528416908201526060810162003c584290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602081815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d441990620028929083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b600b54604051630711349960e31b81526001600160601b0383166004820152600160a01b90910460ff16602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c89060440162001bac565b604080516060810182526001600160c01b0319841681526020810183905260019181019190915262003dea8162003e4b565b7f34e1f82fc40bf14028ae2a3150f074e7715e20ed8e30e250f8789cee718c648583836040516200289292919062005639565b6000620010ad836001600160a01b03841662003f7e565b6000620010ad836001600160a01b03841662004082565b80516001600160c01b0319811660009081526007602090815260409091208351815467ffffffffffffffff191660c09190911c17815590830151839190600182019062003e99908262005336565b50604091909101516002909101805460ff191691151591909117905562003ec0816200364e565b6200217657600880546001810182556000829052600481047ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee301805460c085901c60039093169093026101000a9182026001600160401b03909202199092161790555050565b6000620010ad8383620040d4565b600b546001600160a01b031663a238accd62003f508462003d61565b6040516001600160e01b031960e084901b168152600481019190915260ff8416602482015260440162003829565b600081815260018301602052604081205480156200407757600062003fa560018362005617565b855490915060009062003fbb9060019062005617565b90508181146200402757600086600001828154811062003fdf5762003fdf62005254565b906000526020600020015490508087600001848154811062004005576200400562005254565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806200403b576200403b62005660565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050620010b0565b6000915050620010b0565b6000818152600183016020526040812054620040cb57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620010b0565b506000620010b0565b6000826000018281548110620040ee57620040ee62005254565b9060005260206000200154905092915050565b6102aa806200567783390190565b604051806080016040528060006001600160601b0316815260200160006001600160a01b0316815260200162004158604051806040016040528060008152602001600081525090565b81526020016200417b604051806040016040528060008152602001600081525090565b905290565b6040805160e08101825260008082526020808301829052828401829052606083018290526080830182905283518085019094528184528301529060a082019062004158565b600060208284031215620041d857600080fd5b81356001600160e01b031981168114620041f157600080fd5b9392505050565b6001600160601b0381168114620013cd57600080fd5b80356200266d81620041f8565b60008060008060008060a087890312156200423557600080fd5b86356200424281620041f8565b955060208701356200425481620041f8565b9450604087013593506060870135925060808701356001600160401b03808211156200427f57600080fd5b818901915089601f8301126200429457600080fd5b813581811115620042a457600080fd5b8a6020828501011115620042b757600080fd5b6020830194508093505050509295509295509295565b62ffffff81168114620013cd57600080fd5b600060208284031215620042f257600080fd5b8135620041f181620042cd565b600080604083850312156200431357600080fd5b8235915060208301358060000b81146200432c57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60405161010081016001600160401b038111828210171562004373576200437362004337565b60405290565b604080519081016001600160401b038111828210171562004373576200437362004337565b6040516101e081016001600160401b038111828210171562004373576200437362004337565b604051601f8201601f191681016001600160401b0381118282101715620043ef57620043ef62004337565b604052919050565b60006001600160401b0382111562004413576200441362004337565b50601f01601f191660200190565b6000620044386200443284620043f7565b620043c4565b90508281528383830111156200444d57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126200447657600080fd5b620010ad8383356020850162004421565b64ffffffffff81168114620013cd57600080fd5b80356200266d8162004487565b600060208284031215620044bb57600080fd5b81356001600160401b0380821115620044d357600080fd5b908301906101008286031215620044e957600080fd5b620044f36200434d565b620044fe836200420e565b81526200450e602084016200420e565b60208201526040830135828111156200452657600080fd5b620045348782860162004464565b604083015250606083013560608201526080830135608082015260a083013560a08201526200456660c084016200449b565b60c08201526200457960e084016200449b565b60e082015295945050505050565b6001600160a01b0381168114620013cd57600080fd5b80356200266d8162004587565b600060408284031215620045bd57600080fd5b620045c762004379565b9050813581526020820135602082015292915050565b6000806000806000806000610120888a031215620045fa57600080fd5b87356200460781620041f8565b965060208801356200461981620041f8565b955060408801356200462b81620041f8565b945060608801356200463d8162004587565b935060808801356200464f8162004587565b9250620046608960a08a01620045aa565b9150620046718960e08a01620045aa565b905092959891949750929550565b6000602082840312156200469257600080fd5b8135620041f181620041f8565b81516001600160601b031681526020808301516001600160a01b03169082015260408083015160c0830191620046e19084018280518252602090810151910152565b50606083015180516080840152602081015160a0840152620022dd565b60005b838110156200471b57818101518382015260200162004701565b50506000910152565b600081518084526200473e816020860160208601620046fe565b601f01601f19169290920160200192915050565b602081526000620010ad602083018462004724565b6020815260006001600160601b03808451166020840152806020850151166040840152506040830151610100806060850152620047a961012085018362004724565b915060608501516080850152608085015160a085015260a085015160c085015260c0850151620047e260e086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b6000610120820190506001600160601b0380845116835280602085015116602084015280604085015116604084015250606083015160018060a01b038082166060850152806080860151166080850152505060a08301516200486e60a084018280518252602090810151910152565b5060c0830151805160e08401526020810151610100840152620022dd565b6000602082840312156200489f57600080fd5b5035919050565b60ff81168114620013cd57600080fd5b80356200266d81620048a6565b803563ffffffff811681146200266d57600080fd5b600060208284031215620048eb57600080fd5b81356001600160401b03808211156200490357600080fd5b908301906101e082860312156200491957600080fd5b620049236200439e565b6200492e836200420e565b81526200493e602084016200420e565b602082015262004951604084016200420e565b604082015262004964606084016200459d565b60608201526200497760808401620048b6565b608082015260a083013560a082015260c083013560c082015260e083013560e08201526101008084013581830152506101208084013583811115620049bb57600080fd5b620049c98882870162004464565b8284015250506101409150620049e18284016200449b565b828201526101609150620049f78284016200449b565b82820152610180915062004a0d8284016200449b565b828201526101a0915062004a238284016200449b565b828201526101c0915062004a39828401620048c3565b91810191909152949350505050565b6001600160c01b031981168114620013cd57600080fd5b60006020828403121562004a7257600080fd5b8135620041f18162004a48565b60008060008060008060c0878903121562004a9957600080fd5b863562004aa681620041f8565b9550602087013562004ab881620041f8565b945060408701359350606087013592506080870135915060a087013562004adf81620041f8565b809150509295509295509295565b815181526020808301519082015260408101620010b0565b60008060006060848603121562004b1b57600080fd5b833562004b2881620041f8565b9250602084013562004b3a81620048a6565b9150604084013562004b4c8162004587565b809150509250925092565b600080600060a0848603121562004b6d57600080fd5b833562004b7a81620041f8565b925062004b8b8560208601620045aa565b915062004b9c8560608601620045aa565b90509250925092565b6000806040838503121562004bb957600080fd5b823562004bc68162004587565b915060208301356200432c8162004587565b6000806040838503121562004bec57600080fd5b823562004bf981620041f8565b915060208301356200432c81620041f8565b60008060006060848603121562004c2157600080fd5b833562004c2e81620041f8565b9250602084013562004c4081620041f8565b929592945050506040919091013590565b6000806040838503121562004c6557600080fd5b823562004bc68162004a48565b60006020828403121562004c8557600080fd5b81356001600160401b0381111562004c9c57600080fd5b8201601f8101841362004cae57600080fd5b62004cbf8482356020840162004421565b949350505050565b60006060828403121562004cda57600080fd5b604051606081018181106001600160401b038211171562004cff5762004cff62004337565b604052823562004d0f81620041f8565b8152602083013562004d2181620048a6565b6020820152604083013562004d368162004587565b60408201529392505050565b6020815262004d5d6020820183516001600160601b03169052565b6000602083015162004d7a60408401826001600160601b03169052565b5060408301516001600160601b03811660608401525060608301516001600160a01b038116608084015250608083015160ff811660a08401525060a083015160c083015260c083015160e083015260e08301516101008181850152808501519150506101208181850152808501519150506101e0610140818186015262004e0661020086018462004724565b9086015190925061016062004e238682018364ffffffffff169052565b860151905061018062004e3e8682018364ffffffffff169052565b86015190506101a062004e598682018364ffffffffff169052565b86015190506101c062004e748682018364ffffffffff169052565b86015163ffffffff8116838701529050620047f5565b602080825282516001600160c01b031916828201528201516060604083015260009062004ebb608084018262004724565b90506040840151151560608401528091505092915050565b60008060008060c0858703121562004eea57600080fd5b843562004ef781620041f8565b9350602085013562004f098162004587565b925062004f1a8660408701620045aa565b915062004f2b8660808701620045aa565b905092959194509250565b6000806040838503121562004f4a57600080fd5b50508035926020909101359150565b8015158114620013cd57600080fd5b6000806040838503121562004f7c57600080fd5b823562004f898162004a48565b915060208301356200432c8162004f59565b6000806040838503121562004faf57600080fd5b823562004fbc81620041f8565b946020939093013593505050565b60008060006060848603121562004fe057600080fd5b833562004fed81620041f8565b9250602084013562004c408162004f59565b600080604083850312156200501357600080fd5b823562004fbc8162004a48565b600080606083850312156200503457600080fd5b82359150620050478460208501620045aa565b90509250929050565b600080604083850312156200506457600080fd5b82356200507181620041f8565b915060208301356200432c81620048a6565b6000602082840312156200509657600080fd5b8151620041f18162004587565b80516200266d8162004487565b600060208284031215620050c357600080fd5b8151620041f18162004487565b600060208284031215620050e357600080fd5b5051919050565b600060208284031215620050fd57600080fd5b8151620041f181620042cd565b80516200266d81620041f8565b6000602082840312156200512a57600080fd5b8151620041f181620041f8565b600082601f8301126200514957600080fd5b81516200515a6200443282620043f7565b8181528460208386010111156200517057600080fd5b62004cbf826020830160208701620046fe565b6000602082840312156200519657600080fd5b81516001600160401b0380821115620051ae57600080fd5b908301906101008286031215620051c457600080fd5b620051ce6200434d565b620051d9836200510a565b8152620051e9602084016200510a565b60208201526040830151828111156200520157600080fd5b6200520f8782860162005137565b604083015250606083015160608201526080830151608082015260a083015160a08201526200524160c08401620050a3565b60c08201526200457960e08401620050a3565b634e487b7160e01b600052603260045260246000fd5b60208082526021908201527f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b600181811c90821680620052c057607f821691505b602082108103620052e157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200533157600081815260208120601f850160051c81016020861015620053105750805b601f850160051c820191505b8181101562003859578281556001016200531c565b505050565b81516001600160401b0381111562005352576200535262004337565b6200536a81620053638454620052ab565b84620052e7565b602080601f831160018114620053a25760008415620053895750858301515b600019600386901b1c1916600185901b17855562003859565b600085815260208120601f198616915b82811015620053d357888601518255948401946001909101908401620053b2565b5085821015620053f25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000604082840312156200541557600080fd5b6200541f62004379565b82518152602083015160208201528091505092915050565b60208082526021908201527f4552524f523a42444c2d3030323a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b6000602082840312156200548b57600080fd5b8151620041f18162004f59565b60208082526017908201527f4552524f523a4143532d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b600060208284031215620054e257600080fd5b8151620041f18162004a48565b6020808252601f908201527f4552524f523a4143532d3030323a524f4c455f4e4f545f4558495354494e4700604082015260600190565b6001600160c01b03199390931683526001600160a01b039190911660208301521515604082015260600190565b82815260608101620041f1602083018480518252602090810151910152565b600080604083850312156200558657600080fd5b505080516020909101519092909150565b83815260ff83166020820152606060408201526000620055bb606083018462004724565b95945050505050565b82815260406020820152600062004cbf604083018462004724565b600060208284031215620055f257600080fd5b81516001600160401b038111156200560957600080fd5b62004cbf8482850162005137565b81810381811115620010b057634e487b7160e01b600052601160045260246000fd5b6001600160401b0360c01b8316815260406020820152600062004cbf604083018462004724565b634e487b7160e01b600052603160045260246000fdfe608060405234801561001057600080fd5b506040516102aa3803806102aa83398101604081905261002f9161005b565b6001600160a01b03166c01000000000000000000000000026001600160601b03909116176000556100ad565b6000806040838503121561006e57600080fd5b82516001600160601b038116811461008557600080fd5b60208401519092506001600160a01b03811681146100a257600080fd5b809150509250929050565b6101ee806100bc6000396000f3fe608060405234801561001057600080fd5b50600436106100405760003560e01c806251884a1461004557806321df0da71461006a578063beabacc814610095575b600080fd5b6000546040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b600054600160601b90046001600160a01b03166040516001600160a01b039091168152602001610061565b6100a86100a3366004610153565b6100aa565b005b6000546040516323b872dd60e01b81526001600160a01b038581166004830152848116602483015260448201849052600160601b909204909116906323b872dd906064016020604051808303816000875af115801561010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610131919061018f565b50505050565b80356001600160a01b038116811461014e57600080fd5b919050565b60008060006060848603121561016857600080fd5b61017184610137565b925061017f60208501610137565b9150604084013590509250925092565b6000602082840312156101a157600080fd5b815180151581146101b157600080fd5b939250505056fea26469706673582212202b9b96f8a114d50ac700f93106ae958bdf05223b6902bd79a7088ba5f33cdf3464736f6c63430008140033a26469706673582212202e64c9b04dc66dd23c47df62b2becfeb7d7976d5a1720eacc1ee5d09eef00e0b64736f6c6343000814003360806040523480156200001157600080fd5b506200001e606462000067565b6200002a607862000067565b62000036608262000067565b6200004062000195565b6200004a62000349565b600380546001600160a01b03191633179055620005d4565b606490565b60ff8116600090815260208181526040808320805460ff191660649081179091556001808452828520918552925282209091620000a2606e90565b60ff908116825260208083019390935260409182016000908120805460ff1916951515959095179094558416835260019182905282209091620000e3606e90565b60ff1660ff1681526020019081526020016000206000620001096200006260201b60201c565b60ff908116825260208083019390935260409182016000908120805460ff19169515159590951790945584168352600191829052822090916200014a606e90565b60ff1660ff168152602001908152602001600020600062000170620005b660201b60201c565b60ff1681526020810191909152604001600020805460ff191691151591909117905550565b60d2600090815260208190527fc0d27dadfcf8ee0186a0f6fe9b5805a51e99869050491e4a3040efec012a214f805460ff191660641790556001908190620001db60d290565b60ff1660ff1681526020019081526020016000206000620002016200006260201b60201c565b60ff1660ff168152602001908152602001600020600062000227620005b160201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200025a60d290565b60ff1660ff168152602001908152602001600020600062000280620005b160201b60201c565b60ff1660ff1681526020019081526020016000206000620002a66200006260201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001908190620002d960d290565b60ff1660ff1681526020019081526020016000206000620002ff620005b160201b60201c565b60ff1660ff168152602001908152602001600020600062000325620005bb60201b60201c565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b60c8600090815260208190527fc5f2c791ab4e0b1a0b6c600884b07e98575b00ebd7c3166c4272a53bebf71403805460ff1916600a17905560019081906200038f60c890565b60ff1660ff1681526020019081526020016000206000620003b5620005c060201b60201c565b60ff1660ff1681526020019081526020016000206000620003db620005c560201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200040e60c890565b60ff1660ff168152602001908152602001600020600062000434620005c060201b60201c565b60ff1660ff16815260200190815260200160002060006200045a620005ca60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200048d60c890565b60ff1660ff1681526020019081526020016000206000620004b3620005c060201b60201c565b60ff1660ff1681526020019081526020016000206000620004d9620005cf60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200050c60c890565b60ff1660ff168152602001908152602001600020600062000532620005cf60201b60201c565b60ff1660ff1681526020019081526020016000206000620005586200006260201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200058b60c890565b60ff1660ff1681526020019081526020016000206000620002ff6200006260201b60201c565b606e90565b60d290565b60c890565b600a90565b601490565b601e90565b602890565b61184780620005e46000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063a238accd11610097578063b24133ec11610066578063b24133ec146102e1578063bf1db3f9146102f4578063e9e96c7014610307578063f48016ce1461034557600080fd5b8063a238accd146101ea578063a4dc7d86146101fd578063a5961b4c1461021d578063a8989675146102ce57600080fd5b806354f6127f116100d357806354f6127f146101825780635dee4788146101a25780636ec3d940146101b75780638eaa6ac0146101ca57600080fd5b806309648a9d146100fa5780630d3581811461013957806338a699a41461015f575b600080fd5b61012261010836600461122a565b600090815260026020526040902054610100900460ff1690565b60405160ff90911681526020015b60405180910390f35b610122610147366004611255565b60ff9081166000908152602081905260409020541690565b61017261016d36600461122a565b610366565b6040519015158152602001610130565b61019561019036600461122a565b6103f7565b60405161013091906112b8565b6101b56101b036600461136e565b61049c565b005b6101b56101c53660046113c7565b61076f565b6101dd6101d836600461122a565b610923565b6040516101309190611458565b6101b56101f836600461148c565b610a64565b61021061020b36600461122a565b610cd4565b60405161013091906114d2565b6102c161022b36600461122a565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260026020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b60405161013091906114e0565b6101b56102dc3660046114ee565b610d82565b6101b56102ef36600461136e565b610e78565b610172610302366004611255565b611153565b6101726103153660046114ee565b60ff9283166000908152600160209081526040808320948616835293815283822092851682529190915220541690565b610358610353366004611549565b6111a0565b604051908152602001610130565b60008181526002602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156103cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f19190611577565b92915050565b600081815260026020526040902060010180546060919061041790611599565b80601f016020809104026020016040519081016040528092919081815260200182805461044390611599565b80156104905780601f1061046557610100808354040283529160200191610490565b820191906000526020600020905b81548152906001019060200180831161047357829003601f168201915b50505050509050919050565b6003546001600160a01b031633146104cf5760405162461bcd60e51b81526004016104c6906115d3565b60405180910390fd5b60405163b2466acf60e01b815260ff8316600482015273__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015610521573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105459190611577565b6105915760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e45440000000060448201526064016104c6565b600083815260026020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af41580156105fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061e9190611577565b61066a5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f4352454154454400000060448201526064016104c6565b3343600061067786611153565b610682576064610698565b60ff808716600090815260208190526040902054165b845460ff88811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b9190910217855560008881526002602052604090209091506001016107228682611658565b507f73f3182791c24ae0b300ad6af1a7068367128fc289a81ef990679ae73fd6b43261074d88610cd4565b828560405161075e93929190611718565b60405180910390a150505050505050565b6003546001600160a01b031633146107995760405162461bcd60e51b81526004016104c6906115d3565b600082815260026020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610805573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108299190611577565b6108755760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3033303a4e4f545f4558495354494e4700000000000060448201526064016104c6565b60008481526002602052604090206001016108908482611658565b508154620100003390810262010000600160b01b031983161784559063ffffffff600160b01b909104166108c14390565b845463ffffffff91909116600160b01b0263ffffffff60b01b1990911617845560006108ec87610cd4565b90507f816901577d1f95b21749b8032a8c0475ee6d8f8bb5917d222ce852943b0fc1a38185858560405161075e9493929190611748565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260026020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c082015292835260018101805491928401916109db90611599565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0790611599565b8015610a545780601f10610a2957610100808354040283529160200191610a54565b820191906000526020600020905b815481529060010190602001808311610a3757829003601f168201915b5050505050815250509050919050565b6003546001600160a01b03163314610a8e5760405162461bcd60e51b81526004016104c6906115d3565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610ae0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b049190611577565b610b505760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e454400000060448201526064016104c6565b600082815260026020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610bbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be09190611577565b610c2c5760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e4700000000000060448201526064016104c6565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b90910416610c704390565b845463ffffffff91909116600160b01b0263ffffffff60b01b199091161784556000610c9b87610cd4565b90507f6858c0d3ed40228af5781ff90503acebd6c673c57f8eddec5815410aa6f21118818786868660405161075e959493929190611783565b604080518082019091526000808252602082015260405163526e3ec360e11b815260048101839052600090819073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063a4dc7d86906024016040805180830381865af4158015610d3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6091906117c9565b6040805180820190915260ff909216825260ff19166020820152949350505050565b60ff8381166000908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015610de7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0b9190611577565b15610e1557505050565b60ff808416600090815260016020908152604080832086851684528252808320858516845290915290205416610e7357604051636bb20ea760e01b815260ff80851660048301528084166024830152821660448201526064016104c6565b505050565b6003546001600160a01b03163314610ea25760405162461bcd60e51b81526004016104c6906115d3565b60405163b2466acf60e01b815260ff8316600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610ef4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f189190611577565b610f645760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e454400000060448201526064016104c6565b600083815260026020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610fd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff49190611577565b6110405760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e4700000000000060448201526064016104c6565b600085815260026020526040902060010161105b8482611658565b508154620100003390810262010000600160b01b031960ff88166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166110a04390565b845463ffffffff91909116600160b01b0263ffffffff60b01b1990911617845560006110cb88610cd4565b90507f6858c0d3ed40228af5781ff90503acebd6c673c57f8eddec5815410aa6f211188188868686604051611104959493929190611783565b60405180910390a17f816901577d1f95b21749b8032a8c0475ee6d8f8bb5917d222ce852943b0fc1a3818885856040516111419493929190611748565b60405180910390a15050505050505050565b60ff81811660009081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016103b0565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce90604401602060405180830381865af41580156111ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122391906117f8565b9392505050565b60006020828403121561123c57600080fd5b5035919050565b60ff8116811461125257600080fd5b50565b60006020828403121561126757600080fd5b813561122381611243565b6000815180845260005b818110156112985760208185018101518683018201520161127c565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006112236020830184611272565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126112f257600080fd5b813567ffffffffffffffff8082111561130d5761130d6112cb565b604051601f8301601f19908116603f01168101908282118183101715611335576113356112cb565b8160405283815286602085880101111561134e57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060006060848603121561138357600080fd5b83359250602084013561139581611243565b9150604084013567ffffffffffffffff8111156113b157600080fd5b6113bd868287016112e1565b9150509250925092565b600080604083850312156113da57600080fd5b82359150602083013567ffffffffffffffff8111156113f857600080fd5b611404858286016112e1565b9150509250929050565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b6020815261146a60208201835161140e565b6000602083015160c08084015261148460e0840182611272565b949350505050565b6000806040838503121561149f57600080fd5b8235915060208301356114b181611243565b809150509250929050565b805160ff16825260209081015160ff1916910152565b604081016103f182846114bc565b60a081016103f1828461140e565b60008060006060848603121561150357600080fd5b833561150e81611243565b9250602084013561151e81611243565b9150604084013561152e81611243565b809150509250925092565b60ff198116811461125257600080fd5b6000806040838503121561155c57600080fd5b823561156781611243565b915060208301356114b181611539565b60006020828403121561158957600080fd5b8151801515811461122357600080fd5b600181811c908216806115ad57607f821691505b6020821081036115cd57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527f4552524f523a4b56532d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b601f821115610e7357600081815260208120601f850160051c810160208610156116315750805b601f850160051c820191505b818110156116505782815560010161163d565b505050505050565b815167ffffffffffffffff811115611672576116726112cb565b611686816116808454611599565b8461160a565b602080601f8311600181146116bb57600084156116a35750858301515b600019600386901b1c1916600185901b178555611650565b600085815260208120601f198616915b828110156116ea578886015182559484019460019091019084016116cb565b50858210156117085787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6080810161172682866114bc565b60ff9390931660408201526001600160a01b0391909116606090910152919050565b60a0810161175682876114bc565b60ff9490941660408201526001600160a01b0392909216606083015263ffffffff16608090910152919050565b60c0810161179182886114bc565b60ff95861660408301529390941660608501526001600160a01b0391909116608084015263ffffffff1660a090920191909152919050565b600080604083850312156117dc57600080fd5b82516117e781611243565b60208401519092506114b181611539565b60006020828403121561180a57600080fd5b505191905056fea26469706673582212206c9aa7362d7ede9bf9088758da34b321e06de1b9c704ab032d5b56697ce2bee564736f6c63430008140033",
|
1879
|
-
"deployedBytecode": "0x60806040523480156200001157600080fd5b5060043610620004095760003560e01c8063893d20e8116200021d578063bd62faf71162000131578063dc261c3a11620000bb578063ee0fdf711162000086578063ee0fdf711462000c5e578063f0ea17c31462000c75578063f274e87d1462000d26578063fe1f18d61462000d5357600080fd5b8063dc261c3a1462000bc8578063e03eeb851462000c19578063e1f64d771462000c30578063e79597401462000c4757600080fd5b8063d0bb064c11620000fc578063d0bb064c1462000af3578063d250185c1462000b83578063dad73bed1462000b9a578063db70354c1462000bb157600080fd5b8063bd62faf71462000a79578063bd7d9d851462000a90578063c2bf7d261462000ab6578063cf5ccedb1462000acd57600080fd5b806399fd467711620001b3578063af17d38a116200017e578063af17d38a1462000a1d578063b88da7591462000a34578063b8c510671462000a4b578063b9f36dde1462000a6257600080fd5b806399fd467714620009a3578063a13df2ab14620009ba578063a310e2a314620009d1578063a90be9071462000a0657600080fd5b8063946dfcfe11620001f4578063946dfcfe14620009555780639555c4db146200095e5780639675513d146200097557806398457437146200098c57600080fd5b8063893d20e814620008e35780638b59fe2a14620008ed57806393865aec146200090457600080fd5b80634d459c90116200032157806369a44a1b11620002ab5780637fec8b3111620002765780637fec8b3114620008a05780638125ea9214620008b757806383d3331914620008c157806387c5658614620008ca57600080fd5b806369a44a1b146200084e5780636b9bf08b14620008655780636fa29853146200087757806375a07ed2146200088957600080fd5b80635ab1bd5311620002ec5780635ab1bd5314620007ef5780635fe9f2a51462000816578063644c45e0146200082d578063674d0ccf146200083757600080fd5b80634d459c9014620005e75780634fd077f514620006f85780635312fdc2146200071e57806357f80bbf146200074f57600080fd5b806320f4b65e11620003a3578063349195f9116200036e578063349195f914620005765780633bc5de30146200057f5780634288121d146200059b5780634793b4ab14620005c157600080fd5b806320f4b65e14620004fb57806331b62a3b146200051257806331e48e3214620005395780633300a8a8146200055057600080fd5b80630d0ccc5b11620003e45780630d0ccc5b14620004835780630d8e6e2c14620004a957806315dae03e14620004c85780631aa3a00814620004d857600080fd5b806301ffc9a7146200040e5780630591087414620004535780630abd8434146200046c575b600080fd5b6200043e6200041f366004620041c5565b6001600160e01b03191660009081526002602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6200046a620004643660046200421b565b62000d6a565b005b6200043e6200047d366004620042df565b62000f87565b6200049a62000494366004620042ff565b6200102b565b6040519081526020016200044a565b620004b3620010b6565b60405162ffffff90911681526020016200044a565b604051603281526020016200044a565b620004e262001143565b6040516001600160601b0390911681526020016200044a565b6200046a6200050c366004620044a8565b6200123e565b7f0000000000000000000000000000000000000000000000000000000000000000620004e2565b6200046a6200054a366004620045dd565b620013d0565b62000567620005613660046200467f565b620016cc565b6040516200044a91906200469f565b600f546200049a565b604080516020810182526000815290516200044a919062004752565b6005546001600160a01b03165b6040516001600160a01b0390911681526020016200044a565b620005d8620005d23660046200467f565b62001752565b6040516200044a919062004767565b6200069a620005f8366004620042df565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091525062ffffff90811660009081526020818152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a0016200044a565b6200070f620007093660046200467f565b620017db565b6040516200044a9190620047ff565b620007356200072f3660046200488c565b62001886565b6040516001600160c01b031990911681526020016200044a565b620007c1620007603660046200467f565b6040805160608082018352600080835260208084018290529284018190526001600160601b039485168152601283528390208351918201845280549485168252600160601b90940460ff161515918101919091526001909201549082015290565b6040805182516001600160601b0316815260208084015115159082015291810151908201526060016200044a565b7f0000000000000000000000000000000000000000000000000000000000000000620005a8565b6200046a62000827366004620048d8565b620018c8565b620004e262001ad3565b6200049a6200084836600462004a5f565b62001b3b565b6200049a6200085f3660046200467f565b62001b5f565b6006546001600160a01b0316620005a8565b6004546001600160a01b0316620005a8565b6200046a6200089a36600462004a7f565b62001bf0565b620004e2620008b13660046200488c565b62001eca565b620005a862001f12565b6008546200049a565b620008d462001f27565b6040516200044a919062004aed565b620005a862001faa565b6200046a620008fe36600462004b05565b62001fb6565b6200046a6200091536600462004b57565b6001600160601b03909216600090815260166020908152604090912082516001820155918101516002830155825160038301559190910151600490910155565b6001546200049a565b6200046a6200096f36600462004ba5565b6200216a565b6200049a6200098636600462004bd8565b6200217a565b6200046a6200099d36600462004c0b565b620022e4565b6200043e620009b436600462004c51565b62002464565b6200049a620009cb3660046200467f565b6200249b565b620005a8620009e23660046200467f565b6001600160601b03166000908152601760205260409020546001600160a01b031690565b6200049a62000a173660046200488c565b620024a8565b6200073562000a2e36600462004c72565b620024e4565b620004b362000a453660046200488c565b62002672565b6200073562000a5c36600462004c72565b620026b6565b6200046a62000a7336600462004c51565b62002736565b620004e262000a8a36600462004cc7565b6200289f565b62000aa762000aa13660046200467f565b62002b46565b6040516200044a919062004d42565b6200046a62000ac736600462004c51565b62002d4d565b62000ae462000ade36600462004a5f565b62002f4d565b6040516200044a919062004e8a565b6200046a62000b0436600462004ed3565b604080516080810182526001600160601b039586168082526001600160a01b039586166020808401918252838501968752606084019586526000928352601681529390912091519051909516600160601b0294909516939093178455905180516001850155820151600284015551805160038401550151600490910155565b620008d462000b9436600462004f36565b6200304b565b6200046a62000bab36600462004f68565b620030da565b620004e262000bc236600462004f9b565b620032f8565b6200046a62000bd936600462004b57565b6001600160601b03909216600090815260146020908152604090912082516003820155918101516004830155825160058301559190910151600690910155565b6200046a62000c2a36600462004fca565b6200338f565b6200046a62000c4136600462004c0b565b620034d5565b620005a862000c5836600462004fff565b62003629565b6200043e62000c6f36600462004a5f565b6200364e565b62000cee62000c863660046200467f565b6040805160608082018352600080835260208084018290529284018190526001600160601b039485168152600e83528390208351918201845280549485168252600160601b90940460ff16918101919091526001909201546001600160a01b03169082015290565b6040805182516001600160601b0316815260208084015160ff1690820152918101516001600160a01b0316908201526060016200044a565b62000d3d62000d3736600462005020565b62003679565b604080519283526020830191909152016200044a565b6200046a62000d6436600462005050565b62003705565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000dab573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dd1919062005083565b6001600160a01b0316336001600160a01b03161462000e375760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f53455256494345000060448201526064015b60405180910390fd5b6000604051806101000160405280886001600160601b03168152602001876001600160601b0316815260200184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050506020820188905260408201526060810187905260800142604051631ded81af60e31b815264ffffffffff90911660048201526024810187905273__$d53880c81dc91c20799140d711e5ab8718$__9063ef6c0d7890604401602060405180830381865af415801562000f11573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f379190620050b0565b64ffffffffff168152602001600064ffffffffff16815250905062000f7e878260405160200162000f69919062004767565b604051602081830303815290604052620037da565b50505050505050565b62ffffff8116600090815260208190526040808220600101549051631bbffab160e21b8152600160c81b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af415801562000ffe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010249190620050d0565b1192915050565b604051631488c84560e01b815260048101839052600082810b60248301529073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__90631488c84590604401602060405180830381865af415801562001087573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010ad9190620050d0565b90505b92915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562001118573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200113e9190620050ea565b905090565b60006200114f62001faa565b6001600160a01b0316336001600160a01b031614620011b15760405162461bcd60e51b815260206004820152601760248201527f4552524f523a5247422d3030313a4e4f545f4f574e4552000000000000000000604482015260640162000e2e565b604051632210724360e11b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690634420e486906024016020604051808303816000875af115801562001218573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200113e919062005117565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af11580156200127f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620012a5919062005083565b6001600160a01b0316336001600160a01b031614806200133c5750306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001301573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001327919062005083565b6001600160a01b0316336001600160a01b0316145b6200139c5760405162461bcd60e51b815260206004820152602960248201527f4552524f523a42444c2d3030333a4e4f545f504f4f4c5f4f525f50524f445543604482015268545f5345525649434560b81b606482015260840162000e2e565b620013cd816000015182604051602001620013b8919062004767565b60405160208183030381529060405262003861565b50565b6001600160601b0387166000908152601760205260409020546001600160a01b031615620014585760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031303a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000e2e565b6001600160601b0385166000908152601760205260409020546001600160a01b031615620014e05760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031313a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000e2e565b6001600160601b0386166000908152601760205260409020546001600160a01b031615620015685760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031323a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000e2e565b600087856040516200157a9062004101565b6001600160601b0390921682526001600160a01b03166020820152604001604051809103906000f080158015620015b5573d6000803e3d6000fd5b506001600160601b03988916600081815260176020908152604080832080546001600160a01b039687166001600160a01b031991821681179092559b8e1680855282852080548e16831790559c8e1680855282852080548e16909217909155815160e0810183528581528084019182528083019d8e529a861660608c0190815299861660808c0190815260a08c01998a5260c08c019889529484526014835292209851895492518d16600160601b9081026001600160c01b0319909416918e1691909117929092178955995196518316029590991694909417600186015550955160028401805491909316941693909317905590518051600383015582015160048201559151805160058401550151600690910155565b620016d66200410f565b506001600160601b03908116600090815260166020908152604091829020825160808101845281549485168152600160601b9094046001600160a01b0316848301528251808401845260018201548152600282015481840152848401528251808401909352600381015483526004015490820152606082015290565b620017bb60405180610100016040528060006001600160601b0316815260200160006001600160601b0316815260200160608152602001600081526020016000815260200160008152602001600064ffffffffff168152602001600064ffffffffff1681525090565b620017c6826200389d565b806020019051810190620010b0919062005183565b620017e562004180565b506001600160601b03908116600090815260146020908152604091829020825160e08101845281548086168252600160601b908190048616828501526001830154958616828601526001600160a01b0395048516606082015260028201549094166080850152825180840184526003820154815260048201548184015260a0850152825180840190935260058101548352600601549082015260c082015290565b6000600882815481106200189e576200189e62005254565b90600052602060002090600491828204019190066008029054906101000a900460c01b9050919050565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001909573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200192f919062005083565b6001600160a01b0316336001600160a01b031614620019625760405162461bcd60e51b815260040162000e2e906200526a565b80516001600160601b0390811660009081526011602090815260409182902084518154928601519085166001600160c01b031990931692909217600160601b928516830217815591840151606085015193166001600160a01b0390931602919091176001820155608082015160028201805460ff191660ff90921691909117905560a0820151600382015560c0820151600482015560e082015160058201556101008201516006820155610120820151829190600782019062001a26908262005336565b50610140820151600890910180546101608401516101808501516101a08601516101c09096015163ffffffff16600160a01b0263ffffffff60a01b1964ffffffffff978816600160781b0264ffffffffff60781b19938916600160501b029390931669ffffffffffffffffffff60501b19948916650100000000000269ffffffffffffffffffff199096169890971697909717939093179190911693909317929092179290921617905550565b604051636939560f60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa15801562001218573d6000803e3d6000fd5b6001600160c01b031981166000908152600a60205260408120620010b09062003923565b6001600160601b038116600090815260136020526040808220905163697d0f1b60e11b8152600481019190915273__$0dc988b1672de335b826773df9015af2da$__9063d2fa1e36906024015b602060405180830381865af415801562001bca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010b09190620050d0565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001c31573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001c57919062005083565b6001600160a01b0316336001600160a01b03161462001c8a5760405162461bcd60e51b815260040162000e2e906200526a565b604051806101e00160405280866001600160601b03168152602001876001600160601b03168152602001826001600160601b0316815260200160006001600160a01b0316815260200162001cdc600a90565b60ff1681526020018581526020018481526020016000815260200183815260200160405180602001604052806000815250815260200162001d1a4290565b64ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff1681526020014363ffffffff1690526001600160601b0386811660009081526011602090815260409182902084518154928601519085166001600160c01b031990931692909217600160601b928516830217815591840151606085015193166001600160a01b0390931602919091176001820155608082015160028201805460ff191660ff90921691909117905560a0820151600382015560c0820151600482015560e082015160058201556101008201516006820155610120820151600782019062001e18908262005336565b50610140820151600890910180546101608401516101808501516101a08601516101c09096015163ffffffff16600160a01b0263ffffffff60a01b1964ffffffffff978816600160781b0264ffffffffff60781b19938916600160501b029390931669ffffffffffffffffffff60501b19948916650100000000000269ffffffffffffffffffff1990961698909716979097179390931791909116939093179290921792909216179055505050505050565b6000600f828154811062001ee25762001ee262005254565b9060005260206000209060029182820401919006600c029054906101000a90046001600160601b03169050919050565b60006200113e6003546001600160a01b031690565b604080518082019091526000808252602082015273__$a23651848365a6a5ca15f07b4331037f48$__632bd182d36040518163ffffffff1660e01b81526004016040805180830381865af415801562001f84573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200113e919062005402565b60006200113e6200392e565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001ff5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200201b919062005083565b6001600160a01b0316336001600160a01b0316146200207d5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500604482015260640162000e2e565b6040518060600160405280846001600160601b03168152602001620020a0606490565b60ff90811682526001600160a01b039384166020928301526001600160601b039586166000818152600e845260408082208651815496880151909516600160601b026001600160681b0319909616948a1694909417949094178355939092015160019182018054919095166001600160a01b031990911617909355600f805480850182559252600282047f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80201805492909316600c026101000a908102940219169290921790915550565b62002176828262003a90565b5050565b6000306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620021bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620021e3919062005083565b6001600160a01b0316336001600160a01b031614620022165760405162461bcd60e51b815260040162000e2e9062005437565b506001600160601b038083166000818152600d602090815260408083209486168352938152838220805490839055928252600c9052829020915163539eabab60e11b8152909173__$0dc988b1672de335b826773df9015af2da$__9163a73d575691620022999186906004019182526001600160601b0316602082015260400190565b602060405180830381865af4158015620022b7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620022dd919062005478565b5092915050565b6001600160601b03828116600090815260136020526040908190209051632bfdd6b960e01b81526004810182905291851660248301529073__$0dc988b1672de335b826773df9015af2da$__90632bfdd6b990604401602060405180830381865af415801562002358573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200237e919062005478565b15620023d75760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504c2d3032303a42554e444c455f414c52454144595f414444456044820152601160fa1b606482015260840162000e2e565b604051631461054360e31b8152600481018290526001600160601b038516602482015273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af415801562002437573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200245d919062005478565b5050505050565b6001600160c01b0319821660009081526009602090815260408083206001600160a01b038516845290915281205460ff16620010ad565b6000620010b08262003d61565b6040516322f5db0f60e11b81526004810182905260009073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__906345ebb61e9060240162001bac565b6000306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002525573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200254b919062005083565b6001600160a01b0316336001600160a01b0316146200257e5760405162461bcd60e51b815260040162000e2e9062005498565b60405163e14787cb60e01b815273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90620025b790859060040162004752565b602060405180830381865af4158015620025d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620025fb9190620054cf565b905062002608816200364e565b15620026615760405162461bcd60e51b815260206004820152602160248201527f4552524f523a4143532d3031303a524f4c455f414c52454144595f45584953546044820152605360f81b606482015260840162000e2e565b6200266d818362003db8565b919050565b6000600182815481106200268a576200268a62005254565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60405163e14787cb60e01b815260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90620026f290859060040162004752565b602060405180830381865af415801562002710573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010b09190620054cf565b6001600160c01b0319828116600081815260076020526040902054849260c09190911b16146200277a5760405162461bcd60e51b815260040162000e2e90620054ef565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015620027b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027df919062005083565b6001600160a01b0316336001600160a01b031614620028125760405162461bcd60e51b815260040162000e2e9062005498565b6001600160c01b0319831660008181526009602090815260408083206001600160a01b03871684528252808320805460ff19169055928252600a9052206200285b908362003e1d565b507fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d1698754539668483836000604051620028929392919062005526565b60405180910390a1505050565b6000306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620028e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002906919062005083565b6001600160a01b0316336001600160a01b031614620029685760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500604482015260640162000e2e565b5080516040516330b8415f60e01b81526001600160601b038216600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015620029c4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620029ea919062005478565b801562002a8957506001600160601b038181166000818152600e60205260409081902054905163c4cade9d60e01b815292166004830152602482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90604401602060405180830381865af415801562002a63573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a89919062005478565b62002ad75760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434d502d3030363a434f4d504f4e454e545f554e4b4e4f574e00604482015260640162000e2e565b6001600160601b038082166000908152600e6020908152604091829020855181549287015160ff16600160601b026001600160681b031990931694169390931717825590920151600190920180546001600160a01b039093166001600160a01b03199093169290921790915590565b604080516101e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820183905261010082018390526101208201526101408101829052610160810182905261018081018290526101a081018290526101c08101919091526001600160601b0382811660009081526011602090815260409182902082516101e08101845281548086168252600160601b9081900486169382019390935260018201549485169381019390935292046001600160a01b03166060820152600282015460ff166080820152600382015460a0820152600482015460c0820152600582015460e082015260068201546101008201526007820180549192916101208401919062002c6d90620052ab565b80601f016020809104026020016040519081016040528092919081815260200182805462002c9b90620052ab565b801562002cec5780601f1062002cc05761010080835404028352916020019162002cec565b820191906000526020600020905b81548152906001019060200180831162002cce57829003601f168201915b50505091835250506008919091015464ffffffffff808216602084015265010000000000820481166040840152600160501b820481166060840152600160781b8204166080830152600160a01b900463ffffffff1660a09091015292915050565b6001600160c01b0319828116600081815260076020526040902054849260c09190911b161462002d915760405162461bcd60e51b815260040162000e2e90620054ef565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002dd0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002df6919062005083565b6001600160a01b0316336001600160a01b03161462002e295760405162461bcd60e51b815260040162000e2e9062005498565b6001600160c01b0319831660009081526007602052604090206002015460ff1662002e975760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4143532d3034303a524f4c455f4e4f545f414354495645000000604482015260640162000e2e565b6001600160c01b0319831660008181526009602090815260408083206001600160a01b03871684528252808320805460ff19166001179055928252600a90522062002ee3908362003e34565b506001600160c01b0319831660009081526009602090815260408083206001600160a01b0386168452909152908190205490517fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d169875453966849162002892918691869160ff9091169062005526565b6040805160608082018352600080835260208084018390528385018290526001600160c01b0319868116835260078252918590208551938401909552845460c01b9091168252600184018054939492939184019162002fac90620052ab565b80601f016020809104026020016040519081016040528092919081815260200182805462002fda90620052ab565b80156200302b5780601f1062002fff576101008083540402835291602001916200302b565b820191906000526020600020905b8154815290600101906020018083116200300d57829003601f168201915b50505091835250506002919091015460ff16151560209091015292915050565b60408051808201825260008082526020820152905163638086fd60e11b8152600481018490526024810183905273__$a23651848365a6a5ca15f07b4331037f48$__9063c7010dfa906044016040805180830381865af4158015620030b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010ad919062005402565b6001600160c01b0319828116600081815260076020526040902054849260c09190911b16146200311e5760405162461bcd60e51b815260040162000e2e90620054ef565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200315d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003183919062005083565b6001600160a01b0316336001600160a01b031614620031b65760405162461bcd60e51b815260040162000e2e9062005498565b6001600160c01b03198084166000908152600760209081526040808320815160608101909252805460c01b90941681526001840180549394919391928401916200320090620052ab565b80601f01602080910402602001604051908101604052809291908181526020018280546200322e90620052ab565b80156200327f5780601f1062003253576101008083540402835291602001916200327f565b820191906000526020600020905b8154815290600101906020018083116200326157829003601f168201915b50505091835250506002919091015460ff16151560209091015283151560408201529050620032ae8162003e4b565b604080516001600160c01b03198616815284151560208201527feaffaec948991ecc6e201ba4f67ba865fbf66aace3d2f2823dc5483cc9813fda910160405180910390a150505050565b6001600160601b038216600090815260136020526040808220905163e797d89960e01b815260048101919091526024810183905273__$0dc988b1672de335b826773df9015af2da$__9063e797d89990604401602060405180830381865af415801562003369573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010ad919062005117565b6001600160601b0383811660009081526012602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af4158015620033fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003421919062005478565b6200346f5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a504c2d3031303a414c52454144595f4352454154454400000000604482015260640162000e2e565b604080516060810182526001600160601b039485168082529315156020808301918252828401948552600095865260129052919093209251835491511515600160601b026001600160681b03199092169416939093179290921781559051600190910155565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562003516573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200353c919062005083565b6001600160a01b0316336001600160a01b0316146200356f5760405162461bcd60e51b815260040162000e2e9062005437565b6001600160601b038381166000818152600d60209081526040808320948716808452948252808320869055928252600c90528190209051631461054360e31b81526004810191909152602481019190915273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af4158015620035fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003623919062005478565b50505050565b6001600160c01b031982166000908152600a60205260408120620010ad908362003f26565b6001600160c01b0319818116600081815260076020526040812054909260c09190911b1614620010b0565b60008073__$a23651848365a6a5ca15f07b4331037f48$__63c66fb3ae85856040518363ffffffff1660e01b8152600401620036b792919062005553565b6040805180830381865af4158015620036d4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620036fa919062005572565b915091509250929050565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562003746573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200376c919062005083565b6001600160a01b0316336001600160a01b031614620037ce5760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000e2e565b62002176828262003f34565b600b546001600160a01b0316635dee4788620037f68462003d61565b600b5460405160e084901b6001600160e01b0319168152620038299291600160a01b900460ff1690869060040162005597565b600060405180830381600087803b1580156200384457600080fd5b505af115801562003859573d6000803e3d6000fd5b505050505050565b600b546001600160a01b0316636ec3d9406200387d8462003d61565b836040518363ffffffff1660e01b815260040162003829929190620055c4565b600b546060906001600160a01b03166354f6127f620038bc8462003d61565b6040518263ffffffff1660e01b8152600401620038db91815260200190565b600060405180830381865afa158015620038f9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620010b09190810190620055df565b6000620010b0825490565b604051636939560f60e11b815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e90602401602060405180830381865afa15801562003998573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620039be919062005117565b90506001600160601b038116620039f6577f000000000000000000000000000000000000000000000000000000000000000091505090565b60405163df33330b60e01b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df33330b90602401602060405180830381865afa15801562003a64573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003a8a919062005083565b91505090565b600062003a9c620010b6565b905062003aa98162000f87565b1562003b085760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b606482015260840162000e2e565b6001541562003bcf57600180546000919062003b2690829062005617565b8154811062003b395762003b3962005254565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff16905062003b73828262ffffff90811691161190565b62003bcd5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b606482015260840162000e2e565b505b600180548082018255600091909152600a8082047fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b0380861660208401528416908201526060810162003c584290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602081815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d441990620028929083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b600b54604051630711349960e31b81526001600160601b0383166004820152600160a01b90910460ff16602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c89060440162001bac565b604080516060810182526001600160c01b0319841681526020810183905260019181019190915262003dea8162003e4b565b7f34e1f82fc40bf14028ae2a3150f074e7715e20ed8e30e250f8789cee718c648583836040516200289292919062005639565b6000620010ad836001600160a01b03841662003f7e565b6000620010ad836001600160a01b03841662004082565b80516001600160c01b0319811660009081526007602090815260409091208351815467ffffffffffffffff191660c09190911c17815590830151839190600182019062003e99908262005336565b50604091909101516002909101805460ff191691151591909117905562003ec0816200364e565b6200217657600880546001810182556000829052600481047ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee301805460c085901c60039093169093026101000a9182026001600160401b03909202199092161790555050565b6000620010ad8383620040d4565b600b546001600160a01b031663a238accd62003f508462003d61565b6040516001600160e01b031960e084901b168152600481019190915260ff8416602482015260440162003829565b600081815260018301602052604081205480156200407757600062003fa560018362005617565b855490915060009062003fbb9060019062005617565b90508181146200402757600086600001828154811062003fdf5762003fdf62005254565b906000526020600020015490508087600001848154811062004005576200400562005254565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806200403b576200403b62005660565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050620010b0565b6000915050620010b0565b6000818152600183016020526040812054620040cb57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620010b0565b506000620010b0565b6000826000018281548110620040ee57620040ee62005254565b9060005260206000200154905092915050565b6102aa806200567783390190565b604051806080016040528060006001600160601b0316815260200160006001600160a01b0316815260200162004158604051806040016040528060008152602001600081525090565b81526020016200417b604051806040016040528060008152602001600081525090565b905290565b6040805160e08101825260008082526020808301829052828401829052606083018290526080830182905283518085019094528184528301529060a082019062004158565b600060208284031215620041d857600080fd5b81356001600160e01b031981168114620041f157600080fd5b9392505050565b6001600160601b0381168114620013cd57600080fd5b80356200266d81620041f8565b60008060008060008060a087890312156200423557600080fd5b86356200424281620041f8565b955060208701356200425481620041f8565b9450604087013593506060870135925060808701356001600160401b03808211156200427f57600080fd5b818901915089601f8301126200429457600080fd5b813581811115620042a457600080fd5b8a6020828501011115620042b757600080fd5b6020830194508093505050509295509295509295565b62ffffff81168114620013cd57600080fd5b600060208284031215620042f257600080fd5b8135620041f181620042cd565b600080604083850312156200431357600080fd5b8235915060208301358060000b81146200432c57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60405161010081016001600160401b038111828210171562004373576200437362004337565b60405290565b604080519081016001600160401b038111828210171562004373576200437362004337565b6040516101e081016001600160401b038111828210171562004373576200437362004337565b604051601f8201601f191681016001600160401b0381118282101715620043ef57620043ef62004337565b604052919050565b60006001600160401b0382111562004413576200441362004337565b50601f01601f191660200190565b6000620044386200443284620043f7565b620043c4565b90508281528383830111156200444d57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126200447657600080fd5b620010ad8383356020850162004421565b64ffffffffff81168114620013cd57600080fd5b80356200266d8162004487565b600060208284031215620044bb57600080fd5b81356001600160401b0380821115620044d357600080fd5b908301906101008286031215620044e957600080fd5b620044f36200434d565b620044fe836200420e565b81526200450e602084016200420e565b60208201526040830135828111156200452657600080fd5b620045348782860162004464565b604083015250606083013560608201526080830135608082015260a083013560a08201526200456660c084016200449b565b60c08201526200457960e084016200449b565b60e082015295945050505050565b6001600160a01b0381168114620013cd57600080fd5b80356200266d8162004587565b600060408284031215620045bd57600080fd5b620045c762004379565b9050813581526020820135602082015292915050565b6000806000806000806000610120888a031215620045fa57600080fd5b87356200460781620041f8565b965060208801356200461981620041f8565b955060408801356200462b81620041f8565b945060608801356200463d8162004587565b935060808801356200464f8162004587565b9250620046608960a08a01620045aa565b9150620046718960e08a01620045aa565b905092959891949750929550565b6000602082840312156200469257600080fd5b8135620041f181620041f8565b81516001600160601b031681526020808301516001600160a01b03169082015260408083015160c0830191620046e19084018280518252602090810151910152565b50606083015180516080840152602081015160a0840152620022dd565b60005b838110156200471b57818101518382015260200162004701565b50506000910152565b600081518084526200473e816020860160208601620046fe565b601f01601f19169290920160200192915050565b602081526000620010ad602083018462004724565b6020815260006001600160601b03808451166020840152806020850151166040840152506040830151610100806060850152620047a961012085018362004724565b915060608501516080850152608085015160a085015260a085015160c085015260c0850151620047e260e086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b6000610120820190506001600160601b0380845116835280602085015116602084015280604085015116604084015250606083015160018060a01b038082166060850152806080860151166080850152505060a08301516200486e60a084018280518252602090810151910152565b5060c0830151805160e08401526020810151610100840152620022dd565b6000602082840312156200489f57600080fd5b5035919050565b60ff81168114620013cd57600080fd5b80356200266d81620048a6565b803563ffffffff811681146200266d57600080fd5b600060208284031215620048eb57600080fd5b81356001600160401b03808211156200490357600080fd5b908301906101e082860312156200491957600080fd5b620049236200439e565b6200492e836200420e565b81526200493e602084016200420e565b602082015262004951604084016200420e565b604082015262004964606084016200459d565b60608201526200497760808401620048b6565b608082015260a083013560a082015260c083013560c082015260e083013560e08201526101008084013581830152506101208084013583811115620049bb57600080fd5b620049c98882870162004464565b8284015250506101409150620049e18284016200449b565b828201526101609150620049f78284016200449b565b82820152610180915062004a0d8284016200449b565b828201526101a0915062004a238284016200449b565b828201526101c0915062004a39828401620048c3565b91810191909152949350505050565b6001600160c01b031981168114620013cd57600080fd5b60006020828403121562004a7257600080fd5b8135620041f18162004a48565b60008060008060008060c0878903121562004a9957600080fd5b863562004aa681620041f8565b9550602087013562004ab881620041f8565b945060408701359350606087013592506080870135915060a087013562004adf81620041f8565b809150509295509295509295565b815181526020808301519082015260408101620010b0565b60008060006060848603121562004b1b57600080fd5b833562004b2881620041f8565b9250602084013562004b3a81620048a6565b9150604084013562004b4c8162004587565b809150509250925092565b600080600060a0848603121562004b6d57600080fd5b833562004b7a81620041f8565b925062004b8b8560208601620045aa565b915062004b9c8560608601620045aa565b90509250925092565b6000806040838503121562004bb957600080fd5b823562004bc68162004587565b915060208301356200432c8162004587565b6000806040838503121562004bec57600080fd5b823562004bf981620041f8565b915060208301356200432c81620041f8565b60008060006060848603121562004c2157600080fd5b833562004c2e81620041f8565b9250602084013562004c4081620041f8565b929592945050506040919091013590565b6000806040838503121562004c6557600080fd5b823562004bc68162004a48565b60006020828403121562004c8557600080fd5b81356001600160401b0381111562004c9c57600080fd5b8201601f8101841362004cae57600080fd5b62004cbf8482356020840162004421565b949350505050565b60006060828403121562004cda57600080fd5b604051606081018181106001600160401b038211171562004cff5762004cff62004337565b604052823562004d0f81620041f8565b8152602083013562004d2181620048a6565b6020820152604083013562004d368162004587565b60408201529392505050565b6020815262004d5d6020820183516001600160601b03169052565b6000602083015162004d7a60408401826001600160601b03169052565b5060408301516001600160601b03811660608401525060608301516001600160a01b038116608084015250608083015160ff811660a08401525060a083015160c083015260c083015160e083015260e08301516101008181850152808501519150506101208181850152808501519150506101e0610140818186015262004e0661020086018462004724565b9086015190925061016062004e238682018364ffffffffff169052565b860151905061018062004e3e8682018364ffffffffff169052565b86015190506101a062004e598682018364ffffffffff169052565b86015190506101c062004e748682018364ffffffffff169052565b86015163ffffffff8116838701529050620047f5565b602080825282516001600160c01b031916828201528201516060604083015260009062004ebb608084018262004724565b90506040840151151560608401528091505092915050565b60008060008060c0858703121562004eea57600080fd5b843562004ef781620041f8565b9350602085013562004f098162004587565b925062004f1a8660408701620045aa565b915062004f2b8660808701620045aa565b905092959194509250565b6000806040838503121562004f4a57600080fd5b50508035926020909101359150565b8015158114620013cd57600080fd5b6000806040838503121562004f7c57600080fd5b823562004f898162004a48565b915060208301356200432c8162004f59565b6000806040838503121562004faf57600080fd5b823562004fbc81620041f8565b946020939093013593505050565b60008060006060848603121562004fe057600080fd5b833562004fed81620041f8565b9250602084013562004c408162004f59565b600080604083850312156200501357600080fd5b823562004fbc8162004a48565b600080606083850312156200503457600080fd5b82359150620050478460208501620045aa565b90509250929050565b600080604083850312156200506457600080fd5b82356200507181620041f8565b915060208301356200432c81620048a6565b6000602082840312156200509657600080fd5b8151620041f18162004587565b80516200266d8162004487565b600060208284031215620050c357600080fd5b8151620041f18162004487565b600060208284031215620050e357600080fd5b5051919050565b600060208284031215620050fd57600080fd5b8151620041f181620042cd565b80516200266d81620041f8565b6000602082840312156200512a57600080fd5b8151620041f181620041f8565b600082601f8301126200514957600080fd5b81516200515a6200443282620043f7565b8181528460208386010111156200517057600080fd5b62004cbf826020830160208701620046fe565b6000602082840312156200519657600080fd5b81516001600160401b0380821115620051ae57600080fd5b908301906101008286031215620051c457600080fd5b620051ce6200434d565b620051d9836200510a565b8152620051e9602084016200510a565b60208201526040830151828111156200520157600080fd5b6200520f8782860162005137565b604083015250606083015160608201526080830151608082015260a083015160a08201526200524160c08401620050a3565b60c08201526200457960e08401620050a3565b634e487b7160e01b600052603260045260246000fd5b60208082526021908201527f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b600181811c90821680620052c057607f821691505b602082108103620052e157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200533157600081815260208120601f850160051c81016020861015620053105750805b601f850160051c820191505b8181101562003859578281556001016200531c565b505050565b81516001600160401b0381111562005352576200535262004337565b6200536a81620053638454620052ab565b84620052e7565b602080601f831160018114620053a25760008415620053895750858301515b600019600386901b1c1916600185901b17855562003859565b600085815260208120601f198616915b82811015620053d357888601518255948401946001909101908401620053b2565b5085821015620053f25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000604082840312156200541557600080fd5b6200541f62004379565b82518152602083015160208201528091505092915050565b60208082526021908201527f4552524f523a42444c2d3030323a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b6000602082840312156200548b57600080fd5b8151620041f18162004f59565b60208082526017908201527f4552524f523a4143532d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b600060208284031215620054e257600080fd5b8151620041f18162004a48565b6020808252601f908201527f4552524f523a4143532d3030323a524f4c455f4e4f545f4558495354494e4700604082015260600190565b6001600160c01b03199390931683526001600160a01b039190911660208301521515604082015260600190565b82815260608101620041f1602083018480518252602090810151910152565b600080604083850312156200558657600080fd5b505080516020909101519092909150565b83815260ff83166020820152606060408201526000620055bb606083018462004724565b95945050505050565b82815260406020820152600062004cbf604083018462004724565b600060208284031215620055f257600080fd5b81516001600160401b038111156200560957600080fd5b62004cbf8482850162005137565b81810381811115620010b057634e487b7160e01b600052601160045260246000fd5b6001600160401b0360c01b8316815260406020820152600062004cbf604083018462004724565b634e487b7160e01b600052603160045260246000fdfe608060405234801561001057600080fd5b506040516102aa3803806102aa83398101604081905261002f9161005b565b6001600160a01b03166c01000000000000000000000000026001600160601b03909116176000556100ad565b6000806040838503121561006e57600080fd5b82516001600160601b038116811461008557600080fd5b60208401519092506001600160a01b03811681146100a257600080fd5b809150509250929050565b6101ee806100bc6000396000f3fe608060405234801561001057600080fd5b50600436106100405760003560e01c806251884a1461004557806321df0da71461006a578063beabacc814610095575b600080fd5b6000546040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b600054600160601b90046001600160a01b03166040516001600160a01b039091168152602001610061565b6100a86100a3366004610153565b6100aa565b005b6000546040516323b872dd60e01b81526001600160a01b038581166004830152848116602483015260448201849052600160601b909204909116906323b872dd906064016020604051808303816000875af115801561010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610131919061018f565b50505050565b80356001600160a01b038116811461014e57600080fd5b919050565b60008060006060848603121561016857600080fd5b61017184610137565b925061017f60208501610137565b9150604084013590509250925092565b6000602082840312156101a157600080fd5b815180151581146101b157600080fd5b939250505056fea26469706673582212202b9b96f8a114d50ac700f93106ae958bdf05223b6902bd79a7088ba5f33cdf3464736f6c63430008140033a26469706673582212202e64c9b04dc66dd23c47df62b2becfeb7d7976d5a1720eacc1ee5d09eef00e0b64736f6c63430008140033",
|
2313
|
+
"bytecode": "0x60806040523480156200001157600080fd5b5060405162008ff838038062008ff8833981016040819052620000349162000c64565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff191660011790558282826200007d62000273565b600280546001600160a01b03191633179055604080516020810190915260008152620000b78484620000ad603290565b600186866200032c565b604051620000c59062000c39565b604051809103906000f080158015620000e2573d6000803e3d6000fd5b50600380546001600160a01b0319166001600160a01b0392909216919091179055630de7806f60e41b60009081526020527f6a2871a87efe986e5081c6997e4facaad2d5b985b7721e8c5662aa9554947837805460ff1916600117905562000149620003fd565b505050506200019b62000161620005f060201b60201c565b60408051808201909152601581527f446973747269627574696f6e4f776e6572526f6c650000000000000000000000602082015262000698565b620001d5620001a96200070a565b60408051808201909152600f81526e4f7261636c654f776e6572526f6c6560881b602082015262000698565b6200020d620001e362000765565b60408051808201909152600d81526c506f6f6c4f776e6572526f6c6560981b602082015262000698565b620002486200021b620007be565b60408051808201909152601081526f50726f647563744f776e6572526f6c6560801b602082015262000698565b5050600354600c80546001600160a01b0319166001600160a01b039092169190911790555062000f8c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620002c45760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620003245780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b905090565b6200033882876200081a565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d010000000000000000000000000086151502178155905060018101620003b7838262000d61565b506303fb044760e21b60009081526020527fb43e4f3791bfcdefa3a0fbe2a5555f8d6490b90e01de0ff40c66f18b49b562c5805460ff1916600117905550505050505050565b60006200040962000844565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af41580156200045f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000485919062000e2d565b9050620004ce6040518060400160405280601581526020017f436f6d706f6e656e744f776e657253657276696365000000000000000000000081525082620008cc60201b60201c565b600480546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152601381527f446973747269627574696f6e536572766963650000000000000000000000000060208201526200052e9082620008cc565b600580546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152600e81526d50726f647563745365727669636560901b60208201526200057f9082620008cc565b600680546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152600b81526a506f6f6c5365727669636560a81b6020820152620005cd9082620008cc565b600780546001600160a01b0319166001600160a01b039290921691909117905550565b60405163e14787cb60e01b815260206004820152601560248201527f446973747269627574696f6e4f776e6572526f6c650000000000000000000000604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906064015b602060405180830381865af415801562000672573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000327919062000e59565b604080516060810182526001600160c01b03198416815260208101839052600191810191909152620006ca81620009af565b7f34e1f82fc40bf14028ae2a3150f074e7715e20ed8e30e250f8789cee718c64858383604051620006fd92919062000ecd565b60405180910390a1505050565b60405163e14787cb60e01b815260206004820152600f60248201526e4f7261636c654f776e6572526f6c6560881b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb9060640162000654565b60405163e14787cb60e01b815260206004820152600d60248201526c506f6f6c4f776e6572526f6c6560981b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb9060640162000654565b60405163e14787cb60e01b815260206004820152601060248201526f50726f647563744f776e6572526f6c6560801b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb9060640162000654565b600280546001600160a01b0319166001600160a01b038416179055620008408162000a8c565b5050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015620008a6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000327919062000efc565b6000620008d862000bf9565b6001600160a01b031663a3bcd81d84846040518363ffffffff1660e01b81526004016200090792919062000f23565b602060405180830381865afa15801562000925573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200094b919062000f4a565b90506001600160a01b038116620009a95760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a494e532d3030313a4e4f545f524547495354455245440000000060448201526064015b60405180910390fd5b92915050565b80516001600160c01b031981166000908152600860209081526040909120835181546001600160401b03191660c09190911c178155908301518391906001820190620009fc908262000d61565b50604091909101516002909101805460ff191691151591909117905562000a238162000c0e565b6200084057600980546001810182556000919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af600482040180546001600160401b0360039093166008026101000a928302191660c09390931c9190910291909117905550565b6001546001600160a01b03161562000ac75760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401620009a0565b6001600160a01b03811662000aef5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b60000362000b275760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620009a0565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632c1c764b60e11b60048201526301ffc9a790602401602060405180830381865afa92505050801562000ba4575060408051601f3d908101601f1916820190925262000ba19181019062000f68565b60015b62000bce5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620009a0565b80620008405760405163fdeac91f60e01b81526001600160a01b0383166004820152602401620009a0565b6000620003276001546001600160a01b031690565b6001600160c01b0319818116600081815260086020526040812054909260c09190911b1614620009a9565b611f94806200706483390190565b80516001600160a01b038116811462000c5f57600080fd5b919050565b60008060006060848603121562000c7a57600080fd5b62000c858462000c47565b60208501519093506001600160601b038116811462000ca357600080fd5b915062000cb36040850162000c47565b90509250925092565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000ce757607f821691505b60208210810362000d0857634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000d5c57600081815260208120601f850160051c8101602086101562000d375750805b601f850160051c820191505b8181101562000d585782815560010162000d43565b5050505b505050565b81516001600160401b0381111562000d7d5762000d7d62000cbc565b62000d958162000d8e845462000cd2565b8462000d0e565b602080601f83116001811462000dcd576000841562000db45750858301515b600019600386901b1c1916600185901b17855562000d58565b600085815260208120601f198616915b8281101562000dfe5788860151825594840194600190910190840162000ddd565b508582101562000e1d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000e4057600080fd5b815160ff8116811462000e5257600080fd5b9392505050565b60006020828403121562000e6c57600080fd5b81516001600160c01b03198116811462000e5257600080fd5b6000815180845260005b8181101562000ead5760208185018101518683018201520162000e8f565b506000602082860101526020601f19601f83011685010191505092915050565b6001600160c01b03198316815260406020820181905260009062000ef49083018462000e85565b949350505050565b60006020828403121562000f0f57600080fd5b815162ffffff8116811462000e5257600080fd5b60408152600062000f38604083018562000e85565b905060ff831660208301529392505050565b60006020828403121562000f5d57600080fd5b62000e528262000c47565b60006020828403121562000f7b57600080fd5b8151801515811462000e5257600080fd5b6160c88062000f9c6000396000f3fe60806040523480156200001157600080fd5b50600436106200045d5760003560e01c8063887b1fa9116200024d578063b8c510671162000149578063db70354c11620000c7578063ee0fdf711162000092578063ee0fdf711462000c86578063f274e87d1462000c9d578063f2b246c31462000cca578063fd143c761462000cf0578063fe1f18d61462000d0757600080fd5b8063db70354c1462000c2a578063e1f64d771462000c41578063e79597401462000c58578063ea5fa54b1462000c6f57600080fd5b8063ca600b1c1162000114578063ca600b1c1462000bad578063cf5ccedb1462000bbf578063cf7a1d771462000be5578063d250185c1462000bfc578063dad73bed1462000c1357600080fd5b8063b8c510671462000b42578063b9f36dde1462000b59578063bd7d9d851462000b70578063c2bf7d261462000b9657600080fd5b8063a238accd11620001d7578063a90be90711620001a2578063a90be9071462000ac3578063af17d38a1462000ada578063b3c650151462000af1578063b88da7591462000b14578063b89010821462000b2b57600080fd5b8063a238accd1462000a49578063a310e2a31462000a60578063a5a4fbbc1462000a95578063a745e3df1462000aac57600080fd5b80639675513d11620002185780639675513d14620009a45780639845743714620009bb57806399fd467714620009d25780639ae31ff51462000a1a57600080fd5b8063887b1fa91462000922578063893d20e8146200095b5780638d5d536e1462000965578063946dfcfe146200097c57600080fd5b80634d459c90116200035d57806369a44a1b11620002e75780637cef484211620002b25780637cef484214620008af5780637fec8b3114620008c05780638125ea9214620008d757806383d3331914620008e157806387c5658614620008ea57600080fd5b806369a44a1b146200085d5780636b9bf08b14620008745780636fa29853146200088657806373617bf1146200089857600080fd5b80635ab1bd5311620003285780635ab1bd5314620007f85780635d4345cc1462000802578063644c45e01462000819578063674d0ccf146200084657600080fd5b80634d459c90146200065d5780634f421333146200077b5780635312fdc2146200079257806357f80bbf14620007c357600080fd5b8063138461e011620003eb578063349195f911620003b6578063349195f914620005f0578063423eb9fa14620005f95780634288121d146200060e57806342c74ed014620006205780634793b4ab146200063757600080fd5b8063138461e014620005775780631a91887614620005815780631eff4b2214620005b1578063278b381b14620005d957600080fd5b80630d0ccc5b116200042c5780630d0ccc5b14620005015780630d8e6e2c14620005275780630d9b998d14620005465780630fec111c146200055d57600080fd5b806301ffc9a7146200046257806306a5298b14620004a757806307af0dc014620004c057806309648a9d14620004d7575b600080fd5b62000492620004733660046200435f565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b620004be620004b8366004620044ed565b62000d1e565b005b620004be620004d1366004620046c3565b62000d4d565b620004ee620004e836600462004845565b62000e0a565b60405160ff90911681526020016200049e565b62000518620005123660046200485f565b62000e81565b6040519081526020016200049e565b6200053162000f0a565b60405162ffffff90911681526020016200049e565b620004be6200055736600462004897565b62000f97565b620005676200113a565b6040516200049e92919062004984565b620004be620012b5565b620005986200059236600462004a30565b620014e0565b6040516001600160a01b0390911681526020016200049e565b620005187f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b62000492620005ea36600462004a30565b62001511565b600f5462000518565b620004be6200060a36600462004a50565b5050565b6006546001600160a01b031662000598565b620004be62000631366004620044ed565b62001520565b6200064e6200064836600462004a30565b6200190e565b6040516200049e919062004af0565b6200071d6200066e36600462004bab565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091526000805160206200607383398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a0016200049e565b620004926200078c36600462004bab565b6200193b565b620007a9620007a336600462004845565b620019f2565b6040516001600160c01b031990911681526020016200049e565b620007da620007d436600462004a30565b62001a34565b6040805182511515815260209283015192810192909252016200049e565b6200059862001a69565b620004be6200081336600462004bdb565b62001a7e565b600154600160a01b90046001600160601b03165b6040516001600160601b0390911681526020016200049e565b620005186200085736600462004c0e565b62001b27565b620005186200086e36600462004a30565b62001b4b565b6007546001600160a01b031662000598565b6004546001600160a01b031662000598565b620004be620008a936600462004c3d565b62001bdc565b620004be6200060a36600462004ca4565b6200082d620008d136600462004845565b62001ca1565b6200059862001ce9565b60095462000518565b604080518082018252600080825260209182015281518083019092526013548252601454908201525b6040516200049e919062004cc5565b6200094c6200093336600462004c0e565b5060408051808201909152600081526060602082015290565b6040516200049e919062004cdd565b6200059862001d03565b620004be6200097636600462004d15565b62001d0f565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed9015462000518565b62000518620009b536600462004ddc565b62001f0c565b620004be620009cc36600462004e0f565b62002076565b62000492620009e336600462004e55565b6001600160c01b031982166000908152600a602090815260408083206001600160a01b038516845290915290205460ff1692915050565b6200082d62000a2b36600462004a30565b6001600160601b039081166000908152601160205260409020541690565b620004be62000a5a36600462004e88565b620021f6565b6200059862000a7136600462004a30565b6001600160601b03166000908152601260205260409020546001600160a01b031690565b6200059862000aa636600462004a30565b62002263565b620004be62000abd36600462004eb0565b6200228f565b6200051862000ad436600462004845565b620023f5565b620007a962000aeb36600462004f19565b62002431565b62000afb620025ba565b6040516001600160401b0390911681526020016200049e565b6200053162000b2536600462004845565b620025dd565b620004be62000b3c36600462004f66565b62002632565b620007a962000b5336600462004f19565b620026fd565b620004be62000b6a36600462004e55565b6200277d565b62000b8762000b8136600462004a30565b620028e6565b6040516200049e919062004f9b565b620004be62000ba736600462004e55565b62002977565b6005546001600160a01b031662000598565b62000bd662000bd036600462004c0e565b62002b77565b6040516200049e9190620050da565b620004be62000bf636600462004eb0565b62002c75565b6200091362000c0d36600462005123565b62002d88565b620004be62000c2436600462005146565b62002e17565b6200082d62000c3b36600462005179565b62003035565b620004be62000c5236600462004e0f565b620030cc565b6200059862000c69366004620051a8565b6200321a565b620004be62000c80366004620051c9565b6200323f565b6200049262000c9736600462004c0e565b62003390565b62000cb462000cae3660046200521b565b620033bb565b604080519283526020830191909152016200049e565b62000ce162000cdb36600462004a30565b62003452565b6040516200049e91906200524b565b620004be62000d0136600462005334565b62003516565b620004be62000d1836600462004bdb565b6200368e565b6200060a6065838360405160200162000d3891906200524b565b60405160208183030381529060405262003763565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000d8e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000db491906200542c565b6001600160a01b0316336001600160a01b03161462000df05760405162461bcd60e51b815260040162000de7906200544c565b60405180910390fd5b6200060a60d2838360405160200162000d38919062004f9b565b6003546040516309648a9d60e01b8152600481018390526000916001600160a01b0316906309648a9d90602401602060405180830381865afa15801562000e55573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e7b91906200548d565b92915050565b604051631488c84560e01b815260048101839052600082810b60248301529073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__90631488c84590604401602060405180830381865af415801562000edd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f039190620054ad565b9392505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562000f6c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f929190620054c7565b905090565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000fd8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ffe91906200542c565b6001600160a01b0316336001600160a01b031614620010315760405162461bcd60e51b815260040162000de7906200544c565b6000604051806101c00160405280896001600160601b03168152602001836001600160601b03168152602001886001600160c01b031916815260200160006001600160a01b03168152602001876001600160c01b031916815260200186815260200185815260200160008152602001848152602001604051806020016040528060008152508152602001604051806020016040528060008152508152602001620010d9600090565b64ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff16905290506200112f60d28a836040516020016200111a919062004f9b565b60405160208183030381529060405262003859565b505050505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280620011ac600090565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001620011f662001d03565b6001600160a01b031681526020018260010180546200121590620054e7565b80601f01602080910402602001604051908101604052809291908181526020018280546200124390620054e7565b8015620012945780601f10620012685761010080835404028352916020019162001294565b820191906000526020600020905b8154815290600101906020018083116200127657829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562001318573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200133e919062005523565b1562001382576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b0316602482015260440162000de7565b6001546001600160a01b0316620013ac5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015620013f6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200141c919062005523565b62001446576040516372657a5160e01b81526001600160a01b038216600482015260240162000de7565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801562001491573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620014b7919062005550565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080620014f160645b8462003918565b8060200190518101906200150691906200557d565b602001519392505050565b600062000e7b60658362003a1d565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200155f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200158591906200542c565b6001600160a01b0316336001600160a01b031614620015b85760405162461bcd60e51b815260040162000de790620055c5565b80516020808301516001600160601b038516600090815260129092526040909120546001600160a01b031615620016495760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031323a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000de7565b6001600160601b0382811660009081526011602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af4158015620016b5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620016db919062005523565b620017335760405162461bcd60e51b815260206004820152602160248201527f4552524f523a5452532d3031333a504f4f4c5f414c52454144595f4c494e4b456044820152601160fa1b606482015260840162000de7565b6001600160601b0381811660009081526011602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af41580156200179f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620017c5919062005523565b620018255760405162461bcd60e51b815260206004820152602960248201527f4552524f523a5452532d3031343a434f4d50454e534154494f4e5f414c524541604482015268111657d3125392d15160ba1b606482015260840162000de7565b8383604001516040516200183990620042d9565b6001600160601b0390921682526001600160a01b03166020820152604001604051809103906000f08015801562001874573d6000803e3d6000fd5b506001600160601b03858116600081815260126020908152604080832080546001600160a01b0319166001600160a01b03979097169690961790955585841682526011905283812080546bffffffffffffffffffffffff1990811684179091559286168152929092208054909116909117905562001908620018f4606590565b85856040516020016200111a91906200524b565b50505050565b62001918620042e7565b6200192660dc5b8362003918565b80602001905181019062000e7b919062005693565b6000806000805160206200607383398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015620019c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620019eb9190620054ad565b1192915050565b60006009828154811062001a0a5762001a0a62005774565b90600052602060002090600491828204019190066008029054906101000a900460c01b9050919050565b604080518082019091526000808252602082015262001a54608c6200191f565b80602001905181019062000e7b91906200578a565b600062000f926001546001600160a01b031690565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001abf573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001ae591906200542c565b6001600160a01b0316336001600160a01b03161462001b185760405162461bcd60e51b815260040162000de7906200544c565b6200060a60d25b838362003b1e565b6001600160c01b031981166000908152600b6020526040812062000e7b9062003be9565b6001600160601b038116600090815260106020526040808220905163697d0f1b60e11b8152600481019190915273__$0dc988b1672de335b826773df9015af2da$__9063d2fa1e36906024015b602060405180830381865af415801562001bb6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e7b9190620054ad565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001c1b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001c4191906200542c565b6001600160a01b0316336001600160a01b03161462001c745760405162461bcd60e51b815260040162000de790620055c5565b6200060a608c83836040516020016200111a91908151151581526020918201519181019190915260400190565b6000600f828154811062001cb95762001cb962005774565b9060005260206000209060029182820401919006600c029054906101000a90046001600160601b03169050919050565b600062000f926003546001600160a01b031690565b919050565b600062000f9262003bf4565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001d50573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001d7691906200542c565b6001600160a01b0316336001600160a01b03161462001dd85760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000de7565b6000604051806101000160405280886001600160601b0316815260200187815260200184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050506020820188905260408201526060810187905260800142604051631ded81af60e31b815264ffffffffff90911660048201526024810187905273__$d53880c81dc91c20799140d711e5ab8718$__9063ef6c0d7890604401602060405180830381865af415801562001ea9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001ecf9190620057c9565b64ffffffffff168152602001600064ffffffffff169052905062001f0260dc89836040516020016200111a919062004af0565b5050505050505050565b6000306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001f4f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001f7591906200542c565b6001600160a01b0316336001600160a01b03161462001fa85760405162461bcd60e51b815260040162000de790620057e9565b506001600160601b038083166000818152600e602090815260408083209486168352938152838220805490839055928252600d9052829020915163539eabab60e11b8152909173__$0dc988b1672de335b826773df9015af2da$__9163a73d5756916200202b9186906004019182526001600160601b0316602082015260400190565b602060405180830381865af415801562002049573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200206f919062005523565b5092915050565b6001600160601b03828116600090815260106020526040908190209051632bfdd6b960e01b81526004810182905291851660248301529073__$0dc988b1672de335b826773df9015af2da$__90632bfdd6b990604401602060405180830381865af4158015620020ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002110919062005523565b15620021695760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504c2d3032303a42554e444c455f414c52454144595f414444456044820152601160fa1b606482015260840162000de7565b604051631461054360e31b8152600481018290526001600160601b038516602482015273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af4158015620021c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620021ef919062005523565b5050505050565b60035460405163a238accd60e01b81526004810184905260ff831660248201526001600160a01b039091169063a238accd90604401600060405180830381600087803b1580156200224657600080fd5b505af11580156200225b573d6000803e3d6000fd5b505050505050565b600080620022726064620014ea565b8060200190518101906200228791906200557d565b519392505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c620022b362000f0a565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015620022f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200231a91906200582a565b600080516020620060538339815191528054600160401b900460ff16806200234f575080546001600160401b03808416911610155b156200236e5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556200239b858562003d14565b620023a68362003f5c565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b6040516322f5db0f60e11b81526004810182905260009073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__906345ebb61e9060240162001b98565b6000306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002472573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200249891906200542c565b6001600160a01b0316336001600160a01b031614620024cb5760405162461bcd60e51b815260040162000de79062005855565b60405163e14787cb60e01b815273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90620025049085906004016200588c565b602060405180830381865af415801562002522573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620025489190620058ae565b9050620025558162003390565b15620025ae5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a4143532d3031303a524f4c455f414c52454144595f45584953546044820152605360f81b606482015260840162000de7565b62001cfe818362003f66565b600062000f9260008051602062006053833981519152546001600160401b031690565b600060008051602062006073833981519152600101828154811062002606576200260662005774565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b604080518082019091526001600160601b0383168152602081018290526200190860c86040516355ee627560e01b81526001600160c01b03198716600482015273__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015620026af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620026d59190620054ad565b83604051602001620026e8919062004cdd565b60405160208183030381529060405262003fcb565b60405163e14787cb60e01b815260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90620027399085906004016200588c565b602060405180830381865af415801562002757573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e7b9190620058ae565b6001600160c01b0319828116600081815260086020526040902054849260c09190911b1614620027c15760405162461bcd60e51b815260040162000de790620058ce565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200282691906200542c565b6001600160a01b0316336001600160a01b031614620028595760405162461bcd60e51b815260040162000de79062005855565b6001600160c01b031983166000818152600a602090815260408083206001600160a01b03871684528252808320805460ff19169055928252600b905220620028a2908362004001565b507fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d1698754539668483836000604051620028d99392919062005905565b60405180910390a1505050565b604080516101c08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820183905261010082018390526101208201819052610140820152610160810182905261018081018290526101a08101919091526200296260d26200191f565b80602001905181019062000e7b919062005932565b6001600160c01b0319828116600081815260086020526040902054849260c09190911b1614620029bb5760405162461bcd60e51b815260040162000de790620058ce565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015620029fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a2091906200542c565b6001600160a01b0316336001600160a01b03161462002a535760405162461bcd60e51b815260040162000de79062005855565b6001600160c01b0319831660009081526008602052604090206002015460ff1662002ac15760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4143532d3034303a524f4c455f4e4f545f414354495645000000604482015260640162000de7565b6001600160c01b031983166000818152600a602090815260408083206001600160a01b03871684528252808320805460ff19166001179055928252600b90522062002b0d908362004018565b506001600160c01b031983166000908152600a602090815260408083206001600160a01b0386168452909152908190205490517fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d1698754539668491620028d9918691869160ff9091169062005905565b6040805160608082018352600080835260208084018390528385018290526001600160c01b0319868116835260088252918590208551938401909552845460c01b9091168252600184018054939492939184019162002bd690620054e7565b80601f016020809104026020016040519081016040528092919081815260200182805462002c0490620054e7565b801562002c555780601f1062002c295761010080835404028352916020019162002c55565b820191906000526020600020905b81548152906001019060200180831162002c3757829003601f168201915b50505091835250506002919091015460ff16151560209091015292915050565b600080516020620060538339815191528054600160401b810460ff1615906001600160401b031660008115801562002caa5750825b90506000826001600160401b0316600114801562002cc75750303b155b90508115801562002cd6575080155b1562002cf55760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831562002d2057845460ff60401b1916600160401b1785555b62002d2c888862003d14565b62002d38878762003f5c565b831562001f0257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b60408051808201825260008082526020820152905163638086fd60e11b8152600481018490526024810183905273__$a23651848365a6a5ca15f07b4331037f48$__9063c7010dfa906044016040805180830381865af415801562002df1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f03919062005a9f565b6001600160c01b0319828116600081815260086020526040902054849260c09190911b161462002e5b5760405162461bcd60e51b815260040162000de790620058ce565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002e9a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002ec091906200542c565b6001600160a01b0316336001600160a01b03161462002ef35760405162461bcd60e51b815260040162000de79062005855565b6001600160c01b03198084166000908152600860209081526040808320815160608101909252805460c01b909416815260018401805493949193919284019162002f3d90620054e7565b80601f016020809104026020016040519081016040528092919081815260200182805462002f6b90620054e7565b801562002fbc5780601f1062002f905761010080835404028352916020019162002fbc565b820191906000526020600020905b81548152906001019060200180831162002f9e57829003601f168201915b50505091835250506002919091015460ff1615156020909101528315156040820152905062002feb816200402f565b604080516001600160c01b03198616815284151560208201527feaffaec948991ecc6e201ba4f67ba865fbf66aace3d2f2823dc5483cc9813fda910160405180910390a150505050565b6001600160601b038216600090815260106020526040808220905163e797d89960e01b815260048101919091526024810183905273__$0dc988b1672de335b826773df9015af2da$__9063e797d89990604401602060405180830381865af4158015620030a6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f03919062005550565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af11580156200310d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200313391906200542c565b6001600160a01b0316336001600160a01b031614620031665760405162461bcd60e51b815260040162000de790620057e9565b6001600160601b038381166000818152600e60209081526040808320948716808452948252808320869055928252600d90528190209051631461054360e31b81526004810191909152602481019190915273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af4158015620031f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001908919062005523565b6001600160c01b031982166000908152600b6020526040812062000f0390836200410d565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200327e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620032a491906200542c565b6001600160a01b0316336001600160a01b031614620032d75760405162461bcd60e51b815260040162000de790620055c5565b604080518082019091526001600160a01b03838116825282166020820152600f8054600180820183556000929092527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8026002820401805492909116600c026101000a6001600160601b038181021990931692871602919091179055620019086200335f606490565b85836040516020016200111a919081516001600160a01b039081168252602092830151169181019190915260400190565b6001600160c01b0319818116600081815260086020526040812054909260c09190911b161462000e7b565b60405163012ebd8360e21b8152815160048201526020820151602482015260448101839052600090819073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af415801562003421573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003447919062005abe565b915091509250929050565b620034f56040805161012081018252600080825260208083018290528284018290528351808501855282815280820183905260608401528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e084015283518085019094528184528301529061010082015290565b6200350160656200191f565b80602001905181019062000e7b919062005ae3565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562003557573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200357d91906200542c565b6001600160a01b0316336001600160a01b03161480620036145750306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620035d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620035ff91906200542c565b6001600160a01b0316336001600160a01b0316145b620036745760405162461bcd60e51b815260206004820152602960248201527f4552524f523a42444c2d3030333a4e4f545f504f4f4c5f4f525f50524f445543604482015268545f5345525649434560b81b606482015260840162000de7565b6200060a60dc838360405160200162000d38919062004af0565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620036cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620036f591906200542c565b6001600160a01b0316336001600160a01b031614620037575760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000de7565b6200060a60dc62001b1f565b600c54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b0390911690636ec3d9409073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620037da573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620038009190620054ad565b836040518363ffffffff1660e01b81526004016200382092919062005bb7565b600060405180830381600087803b1580156200383b57600080fd5b505af115801562003850573d6000803e3d6000fd5b50505050505050565b600c54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b0390911690635dee47889073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620038d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620038f69190620054ad565b85846040518463ffffffff1660e01b8152600401620038209392919062005bd2565b600c54604051630711349960e31b81526001600160601b038316600482015260ff841660248201526060916001600160a01b0316906354f6127f9073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af415801562003990573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620039b69190620054ad565b6040518263ffffffff1660e01b8152600401620039d591815260200190565b600060405180830381865afa158015620039f3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000f03919081019062005bf6565b600c54604051630711349960e31b81526001600160601b038316600482015260ff841660248201526000916001600160a01b0316906338a699a49073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af415801562003a95573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003abb9190620054ad565b6040518263ffffffff1660e01b815260040162003ada91815260200190565b602060405180830381865afa15801562003af8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f03919062005523565b600c54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b039091169063a238accd9073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af415801562003b95573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003bbb9190620054ad565b6040516001600160e01b031960e084901b168152600481019190915260ff8416602482015260440162003820565b600062000e7b825490565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562003c5a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003c80919062005523565b1562003d0457600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa15801562003cde573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f9291906200542c565b506002546001600160a01b031690565b62003d1e6200411b565b60008051602062006073833981519152600062003d5160008051602062006053833981519152546001600160401b031690565b9050600062003d5f62000f0a565b9050816001600160401b031660010362003d8e5760028301805462ffffff191662ffffff831617905562003dde565b600283015462ffffff9081169082161162003dde5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b604482015260640162000de7565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b0380891692840192909252908616908201526060810162003e534290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890620023e69083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6200045d6200411b565b604080516060810182526001600160c01b0319841681526020810183905260019181019190915262003f98816200402f565b7f34e1f82fc40bf14028ae2a3150f074e7715e20ed8e30e250f8789cee718c64858383604051620028d992919062005c2e565b600c54604051630bbdc8f160e31b81526001600160a01b0390911690635dee478890620038209085908790869060040162005bd2565b600062000f03836001600160a01b03841662004156565b600062000f03836001600160a01b0384166200425a565b80516001600160c01b0319811660009081526008602090815260409091208351815467ffffffffffffffff191660c09190911c1781559083015183919060018201906200407d908262005ca4565b50604091909101516002909101805460ff1916911515919091179055620040a48162003390565b6200060a57600980546001810182556000919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af600482040180546001600160401b0360039093166008026101000a928302191660c09390931c9190910291909117905550565b600062000f038383620042ac565b6000805160206200605383398151915254600160401b900460ff166200415457604051631afcd79f60e31b815260040160405180910390fd5b565b600081815260018301602052604081205480156200424f5760006200417d60018362005d70565b8554909150600090620041939060019062005d70565b9050818114620041ff576000866000018281548110620041b757620041b762005774565b9060005260206000200154905080876000018481548110620041dd57620041dd62005774565b6000918252602080832090910192909255918252600188019052604090208390555b855486908062004213576200421362005d92565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505062000e7b565b600091505062000e7b565b6000818152600183016020526040812054620042a35750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000e7b565b50600062000e7b565b6000826000018281548110620042c657620042c662005774565b9060005260206000200154905092915050565b6102aa8062005da983390190565b60405180610100016040528060006001600160601b0316815260200162004321604051806040016040528060008152602001600081525090565b815260200160608152602001600081526020016000815260200160008152602001600064ffffffffff168152602001600064ffffffffff1681525090565b6000602082840312156200437257600080fd5b81356001600160e01b03198116811462000f0357600080fd5b6001600160601b0381168114620043a157600080fd5b50565b803562001cfe816200438b565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715620043ec57620043ec620043b1565b60405290565b60405161012081016001600160401b0381118282101715620043ec57620043ec620043b1565b6040516101c081016001600160401b0381118282101715620043ec57620043ec620043b1565b60405161010081016001600160401b0381118282101715620043ec57620043ec620043b1565b604051601f8201601f191681016001600160401b03811182821017156200448f576200448f620043b1565b604052919050565b6001600160a01b0381168114620043a157600080fd5b803562001cfe8162004497565b600060408284031215620044cd57600080fd5b620044d7620043c7565b9050813581526020820135602082015292915050565b6000808284036102008112156200450357600080fd5b833562004510816200438b565b92506101e0601f19820112156200452657600080fd5b5062004531620043f2565b6200453f60208501620043a4565b81526200454f60408501620043a4565b60208201526200456260608501620044ad565b6040820152620045768560808601620044ba565b60608201526200458a8560c08601620044ba565b6080820152610100620045a086828701620044ba565b60a0830152620045b5866101408701620044ba565b60c0830152620045ca866101808701620044ba565b60e0830152620045df866101c08701620044ba565b90820152919491935090915050565b6001600160c01b031981168114620043a157600080fd5b803562001cfe81620045ee565b60006001600160401b038211156200462e576200462e620043b1565b50601f01601f191660200190565b6000620046536200464d8462004612565b62004464565b90508281528383830111156200466857600080fd5b828260208301376000602084830101529392505050565b600082601f8301126200469157600080fd5b62000f03838335602085016200463c565b64ffffffffff81168114620043a157600080fd5b803562001cfe81620046a2565b60008060408385031215620046d757600080fd5b8235620046e4816200438b565b915060208301356001600160401b03808211156200470157600080fd5b908401906101c082870312156200471757600080fd5b6200472162004418565b6200472c83620043a4565b81526200473c60208401620043a4565b60208201526200474f6040840162004605565b60408201526200476260608401620044ad565b6060820152620047756080840162004605565b608082015260a083013560a082015260c083013560c082015260e083013560e08201526101008084013581830152506101208084013583811115620047b957600080fd5b620047c7898287016200467f565b8284015250506101408084013583811115620047e257600080fd5b620047f0898287016200467f565b828401525050610160915062004808828401620046b6565b8282015261018091506200481e828401620046b6565b828201526101a0915062004834828401620046b6565b828201528093505050509250929050565b6000602082840312156200485857600080fd5b5035919050565b600080604083850312156200487357600080fd5b8235915060208301358060000b81146200488c57600080fd5b809150509250929050565b600080600080600080600080610100898b031215620048b557600080fd5b8835620048c2816200438b565b97506020890135620048d4816200438b565b96506040890135620048e681620045ee565b95506060890135620048f881620045ee565b94506080890135935060a0890135925060c0890135915060e08901356200491f816200438b565b809150509295985092959890939650565b60005b838110156200494d57818101518382015260200162004933565b50506000910152565b600081518084526200497081602086016020860162004930565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151620049c960a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015262004a1161012084018262004956565b9050828103602084015262004a27818562004956565b95945050505050565b60006020828403121562004a4357600080fd5b813562000f03816200438b565b6000806040838503121562004a6457600080fd5b823562004a7181620045ee565b915060208301356001600160401b038082111562004a8e57600080fd5b908401906040828703121562004aa357600080fd5b62004aad620043c7565b823562004aba816200438b565b815260208301358281111562004acf57600080fd5b62004add888286016200467f565b6020830152508093505050509250929050565b602081526001600160601b0382511660208201526000602083015162004b23604084018280518252602090810151910152565b50604083015161012080608085015262004b4261014085018362004956565b9150606085015160a0850152608085015160c085015260a085015160e085015260c085015162004b7c61010086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b62ffffff81168114620043a157600080fd5b60006020828403121562004bbe57600080fd5b813562000f038162004b99565b60ff81168114620043a157600080fd5b6000806040838503121562004bef57600080fd5b823562004bfc816200438b565b915060208301356200488c8162004bcb565b60006020828403121562004c2157600080fd5b813562000f0381620045ee565b8015158114620043a157600080fd5b600080828403606081121562004c5257600080fd5b833562004c5f816200438b565b92506040601f198201121562004c7457600080fd5b5062004c7f620043c7565b602084013562004c8f8162004c2e565b81526040939093013560208401525092909150565b6000806040838503121562004cb857600080fd5b823562004bfc81620045ee565b81518152602080830151908201526040810162000e7b565b602081526001600160601b0382511660208201526000602083015160408084015262004d0d606084018262004956565b949350505050565b600080600080600080600060e0888a03121562004d3157600080fd5b873562004d3e816200438b565b9650602088013562004d50816200438b565b955062004d618960408a01620044ba565b94506080880135935060a0880135925060c08801356001600160401b038082111562004d8c57600080fd5b818a0191508a601f83011262004da157600080fd5b81358181111562004db157600080fd5b8b602082850101111562004dc457600080fd5b60208301945080935050505092959891949750929550565b6000806040838503121562004df057600080fd5b823562004dfd816200438b565b915060208301356200488c816200438b565b60008060006060848603121562004e2557600080fd5b833562004e32816200438b565b9250602084013562004e44816200438b565b929592945050506040919091013590565b6000806040838503121562004e6957600080fd5b823562004e7681620045ee565b915060208301356200488c8162004497565b6000806040838503121562004e9c57600080fd5b8235915060208301356200488c8162004bcb565b60008060006060848603121562004ec657600080fd5b833562004ed38162004497565b9250602084013562004ee58162004497565b915060408401356001600160401b0381111562004f0157600080fd5b62004f0f868287016200467f565b9150509250925092565b60006020828403121562004f2c57600080fd5b81356001600160401b0381111562004f4357600080fd5b8201601f8101841362004f5557600080fd5b62004d0d848235602084016200463c565b60008060006060848603121562004f7c57600080fd5b833562004f8981620045ee565b9250602084013562004ee5816200438b565b6020815262004fb66020820183516001600160601b03169052565b6000602083015162004fd360408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160a01b03811660808401525060808301516001600160c01b0319811660a08401525060a083015160c083015260c083015160e083015260e08301516101008181850152808501519150506101208181850152808501519150506101c06101408181860152620050676101e086018462004956565b9250808601519050610160601f19868503018187015262005089848362004956565b935080870151915050610180620050a88187018364ffffffffff169052565b86015190506101a0620050c38682018364ffffffffff169052565b86015164ffffffffff811683870152905062004b8f565b602080825282516001600160c01b03191682820152820151606060408301526000906200510b608084018262004956565b90506040840151151560608401528091505092915050565b600080604083850312156200513757600080fd5b50508035926020909101359150565b600080604083850312156200515a57600080fd5b82356200516781620045ee565b915060208301356200488c8162004c2e565b600080604083850312156200518d57600080fd5b82356200519a816200438b565b946020939093013593505050565b60008060408385031215620051bc57600080fd5b82356200519a81620045ee565b600080600060608486031215620051df57600080fd5b8335620051ec816200438b565b92506020840135620051fe8162004497565b91506040840135620052108162004497565b809150509250925092565b600080606083850312156200522f57600080fd5b82359150620052428460208501620044ba565b90509250929050565b81516001600160601b031681526020808301516101e083019162005279908401826001600160601b03169052565b5060408301516200529560408401826001600160a01b03169052565b506060830151620052b3606084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151805161012084015260208101516101408401525060e0830151805161016084015260208101516101808401525061010083015180516101a084015260208101516101c08401526200206f565b600080604083850312156200534857600080fd5b823562005355816200438b565b915060208301356001600160401b03808211156200537257600080fd5b9084019061012082870312156200538857600080fd5b620053926200443e565b6200539d83620043a4565b8152620053ae8760208501620044ba565b6020820152606083013582811115620053c657600080fd5b620053d4888286016200467f565b6040830152506080830135606082015260a0830135608082015260c083013560a08201526200540660e08401620046b6565b60c08201526200541a6101008401620046b6565b60e08201528093505050509250929050565b6000602082840312156200543f57600080fd5b815162000f038162004497565b60208082526021908201527f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b600060208284031215620054a057600080fd5b815162000f038162004bcb565b600060208284031215620054c057600080fd5b5051919050565b600060208284031215620054da57600080fd5b815162000f038162004b99565b600181811c90821680620054fc57607f821691505b6020821081036200551d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156200553657600080fd5b815162000f038162004c2e565b805162001cfe816200438b565b6000602082840312156200556357600080fd5b815162000f03816200438b565b805162001cfe8162004497565b6000604082840312156200559057600080fd5b6200559a620043c7565b8251620055a78162004497565b81526020830151620055b98162004497565b60208201529392505050565b60208082526022908201527f4552524f523a434d502d3030313a4e4f545f52454749535452595f5345525649604082015261434560f01b606082015260800190565b6000604082840312156200561a57600080fd5b62005624620043c7565b9050815181526020820151602082015292915050565b600082601f8301126200564c57600080fd5b81516200565d6200464d8262004612565b8181528460208386010111156200567357600080fd5b62004d0d82602083016020870162004930565b805162001cfe81620046a2565b600060208284031215620056a657600080fd5b81516001600160401b0380821115620056be57600080fd5b908301906101208286031215620056d457600080fd5b620056de6200443e565b620056e98362005543565b8152620056fa866020850162005607565b60208201526060830151828111156200571257600080fd5b62005720878286016200563a565b6040830152506080830151606082015260a0830151608082015260c083015160a08201526200575260e0840162005686565b60c082015262005766610100840162005686565b60e082015295945050505050565b634e487b7160e01b600052603260045260246000fd5b6000604082840312156200579d57600080fd5b620057a7620043c7565b8251620057b48162004c2e565b81526020928301519281019290925250919050565b600060208284031215620057dc57600080fd5b815162000f0381620046a2565b60208082526021908201527f4552524f523a42444c2d3030323a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b6000602082840312156200583d57600080fd5b81516001600160401b038116811462000f0357600080fd5b60208082526017908201527f4552524f523a4143532d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b60208152600062000f03602083018462004956565b805162001cfe81620045ee565b600060208284031215620058c157600080fd5b815162000f0381620045ee565b6020808252601f908201527f4552524f523a4143532d3030323a524f4c455f4e4f545f4558495354494e4700604082015260600190565b6001600160c01b03199390931683526001600160a01b039190911660208301521515604082015260600190565b6000602082840312156200594557600080fd5b81516001600160401b03808211156200595d57600080fd5b908301906101c082860312156200597357600080fd5b6200597d62004418565b620059888362005543565b8152620059986020840162005543565b6020820152620059ab60408401620058a1565b6040820152620059be6060840162005570565b6060820152620059d160808401620058a1565b608082015260a083015160a082015260c083015160c082015260e083015160e0820152610100808401518183015250610120808401518381111562005a1557600080fd5b62005a23888287016200563a565b828401525050610140808401518381111562005a3e57600080fd5b62005a4c888287016200563a565b828401525050610160915062005a6482840162005686565b82820152610180915062005a7a82840162005686565b828201526101a0915062005a9082840162005686565b91810191909152949350505050565b60006040828403121562005ab257600080fd5b62000f03838362005607565b6000806040838503121562005ad257600080fd5b505080516020909101519092909150565b60006101e0828403121562005af757600080fd5b62005b01620043f2565b62005b0c8362005543565b815262005b1c6020840162005543565b602082015262005b2f6040840162005570565b604082015262005b43846060850162005607565b606082015262005b578460a0850162005607565b608082015262005b6b8460e0850162005607565b60a082015262005b8084610120850162005607565b60c082015262005b9584610160850162005607565b60e082015262005baa846101a0850162005607565b6101008201529392505050565b82815260406020820152600062004d0d604083018462004956565b83815260ff8316602082015260606040820152600062004a27606083018462004956565b60006020828403121562005c0957600080fd5b81516001600160401b0381111562005c2057600080fd5b62004d0d848285016200563a565b6001600160401b0360c01b8316815260406020820152600062004d0d604083018462004956565b601f82111562005c9f57600081815260208120601f850160051c8101602086101562005c7e5750805b601f850160051c820191505b818110156200225b5782815560010162005c8a565b505050565b81516001600160401b0381111562005cc05762005cc0620043b1565b62005cd88162005cd18454620054e7565b8462005c55565b602080601f83116001811462005d10576000841562005cf75750858301515b600019600386901b1c1916600185901b1785556200225b565b600085815260208120601f198616915b8281101562005d415788860151825594840194600190910190840162005d20565b508582101562005d605787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8181038181111562000e7b57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fdfe608060405234801561001057600080fd5b506040516102aa3803806102aa83398101604081905261002f9161005b565b6001600160a01b03166c01000000000000000000000000026001600160601b03909116176000556100ad565b6000806040838503121561006e57600080fd5b82516001600160601b038116811461008557600080fd5b60208401519092506001600160a01b03811681146100a257600080fd5b809150509250929050565b6101ee806100bc6000396000f3fe608060405234801561001057600080fd5b50600436106100405760003560e01c806251884a1461004557806321df0da71461006a578063beabacc814610095575b600080fd5b6000546040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b600054600160601b90046001600160a01b03166040516001600160a01b039091168152602001610061565b6100a86100a3366004610153565b6100aa565b005b6000546040516323b872dd60e01b81526001600160a01b038581166004830152848116602483015260448201849052600160601b909204909116906323b872dd906064016020604051808303816000875af115801561010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610131919061018f565b50505050565b80356001600160a01b038116811461014e57600080fd5b919050565b60008060006060848603121561016857600080fd5b61017184610137565b925061017f60208501610137565b9150604084013590509250925092565b6000602082840312156101a157600080fd5b815180151581146101b157600080fd5b939250505056fea2646970667358221220455e331420069b52ddb557c4094a8236a9cb76b6fb2388562bb6d2f594dbd6b064736f6c63430008140033f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a264697066735822122093bb9b67a08862f3ed5c9a7035b32c346db4e7fbd4ef45434855ef9d289bc78864736f6c6343000814003360806040523480156200001157600080fd5b506200001c62000052565b6200002662000206565b620000306200033f565b6200003a620005a7565b600380546001600160a01b031916331790556200071d565b60dc600090815260208190527f5bd290414b404036f9d63146803dd83b59a8e1905062a5bfed8b0154d20a390d805460ff1916606417905560019081906200009860dc90565b60ff1660ff1681526020019081526020016000206000620000be620006eb60201b60201c565b60ff1660ff1681526020019081526020016000206000620000e4620006f560201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200011760dc90565b60ff1660ff16815260200190815260200160002060006200013d620006f560201b60201c565b60ff1660ff168152602001908152602001600020600062000163620006eb60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200019660dc90565b60ff1660ff1681526020019081526020016000206000620001bc620006f560201b60201c565b60ff1660ff1681526020019081526020016000206000620001e2620006fa60201b60201c565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f9db7038e59677010ca8f72fa448bad1b4f3c53346b666689163ccac31db467728054606460ff1991821681179092557f1a3062e9a24818c8281fcfb58ec4f3083a2f9a1314ac63f80d8d646661fdc5098054909116600190811790915560009182526020819052907f1bd07f61ef326b4de236f5b68f225f46ff76ee2c375ae31a06da201c49c70c12906200029a606e90565b60ff1660ff1681526020019081526020016000206000620002c0620006eb60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001908190620002f3606490565b60ff1660ff168152602001908152602001600020600062000319620006f560201b60201c565b60ff1660ff1681526020019081526020016000206000620001e2620006ff60201b60201c565b60d2600090815260208190527fc0d27dadfcf8ee0186a0f6fe9b5805a51e99869050491e4a3040efec012a214f805460ff1916600a17905560019081906200038560d290565b60ff1660ff1681526020019081526020016000206000620003ab6200070460201b60201c565b60ff1660ff1681526020019081526020016000206000620003d16200070960201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200040460d290565b60ff1660ff16815260200190815260200160002060006200042a6200070460201b60201c565b60ff1660ff1681526020019081526020016000206000620004506200070e60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200048360d290565b60ff1660ff1681526020019081526020016000206000620004a96200070460201b60201c565b60ff1660ff1681526020019081526020016000206000620004cf6200071360201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200050260d290565b60ff1660ff1681526020019081526020016000206000620005286200071360201b60201c565b60ff1660ff16815260200190815260200160002060006200054e620006eb60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200058160d290565b60ff1660ff1681526020019081526020016000206000620001bc620006eb60201b60201c565b60c8600090815260208190527fc5f2c791ab4e0b1a0b6c600884b07e98575b00ebd7c3166c4272a53bebf71403805460ff191660641790556001908190620005ed60c890565b60ff1660ff168152602001908152602001600020600062000613620006eb60201b60201c565b60ff1660ff168152602001908152602001600020600062000639620006f560201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200066c60c890565b60ff1660ff168152602001908152602001600020600062000692620006f560201b60201c565b60ff1660ff1681526020019081526020016000206000620006b8620006eb60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001908190620002f360c890565b606490565b905090565b606e90565b60c890565b60d290565b600a90565b601490565b601e90565b60006028620006f0565b611867806200072d6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063a238accd11610097578063b24133ec11610066578063b24133ec146102e1578063bf1db3f9146102f4578063e9e96c7014610307578063f48016ce1461034557600080fd5b8063a238accd146101ea578063a4dc7d86146101fd578063a5961b4c1461021d578063a8989675146102ce57600080fd5b806354f6127f116100d357806354f6127f146101825780635dee4788146101a25780636ec3d940146101b75780638eaa6ac0146101ca57600080fd5b806309648a9d146100fa5780630d3581811461013957806338a699a41461015f575b600080fd5b610122610108366004611234565b600090815260026020526040902054610100900460ff1690565b60405160ff90911681526020015b60405180910390f35b61012261014736600461125f565b60ff9081166000908152602081905260409020541690565b61017261016d366004611234565b610366565b6040519015158152602001610130565b610195610190366004611234565b6103f7565b60405161013091906112c2565b6101b56101b0366004611378565b61049c565b005b6101b56101c53660046113d1565b610771565b6101dd6101d8366004611234565b610927565b6040516101309190611462565b6101b56101f8366004611496565b610a68565b61021061020b366004611234565b610cda565b60405161013091906114dc565b6102c161022b366004611234565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260026020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b60405161013091906114ea565b6101b56102dc3660046114f8565b610d88565b6101b56102ef366004611378565b610e7e565b61017261030236600461125f565b61115d565b6101726103153660046114f8565b60ff9283166000908152600160209081526040808320948616835293815283822092851682529190915220541690565b610358610353366004611553565b6111aa565b604051908152602001610130565b60008181526002602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156103cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f19190611581565b92915050565b6000818152600260205260409020600101805460609190610417906115a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610443906115a3565b80156104905780601f1061046557610100808354040283529160200191610490565b820191906000526020600020905b81548152906001019060200180831161047357829003601f168201915b50505050509050919050565b6003546001600160a01b031633146104cf5760405162461bcd60e51b81526004016104c6906115dd565b60405180910390fd5b60405163b2466acf60e01b815260ff8316600482015273__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015610521573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105459190611581565b6105915760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e45440000000060448201526064016104c6565b600083815260026020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af41580156105fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061e9190611581565b61066a5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f4352454154454400000060448201526064016104c6565b334360006106778661115d565b610682576064610698565b60ff808716600090815260208190526040902054165b845460ff88811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b9190910217855560008881526002602052604090209091506001016107228682611662565b507f0ccdf5d7cd4da66a6894cfa246e02d19253a3f7c4cb3b0daee0bc2bf1a7dd4ff61074d88610cda565b8285326040516107609493929190611722565b60405180910390a150505050505050565b6003546001600160a01b0316331461079b5760405162461bcd60e51b81526004016104c6906115dd565b600082815260026020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610807573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082b9190611581565b6108775760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3033303a4e4f545f4558495354494e4700000000000060448201526064016104c6565b60008481526002602052604090206001016108928482611662565b508154620100003390810262010000600160b01b031983161784559063ffffffff600160b01b909104166108c34390565b845463ffffffff91909116600160b01b0263ffffffff60b01b1990911617845560006108ee87610cda565b90507f228147c3bb5d3f2e24432bc0abaa1541c1f3f4208a9ab759bf26567e983fbdb78185853286604051610760959493929190611758565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260026020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c082015292835260018101805491928401916109df906115a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0b906115a3565b8015610a585780601f10610a2d57610100808354040283529160200191610a58565b820191906000526020600020905b815481529060010190602001808311610a3b57829003601f168201915b5050505050815250509050919050565b6003546001600160a01b03163314610a925760405162461bcd60e51b81526004016104c6906115dd565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610ae4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b089190611581565b610b545760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e454400000060448201526064016104c6565b600082815260026020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610bc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be49190611581565b610c305760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e4700000000000060448201526064016104c6565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b90910416610c744390565b845463ffffffff91909116600160b01b0263ffffffff60b01b199091161784556000610c9f87610cda565b90507feb640fdc9d45826fb47cd85fac116714d3d638f1409790b2b7c0ac824db13b728187868632876040516107609695949392919061179d565b604080518082019091526000808252602082015260405163526e3ec360e11b815260048101839052600090819073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063a4dc7d86906024016040805180830381865af4158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6691906117e9565b6040805180820190915260ff909216825260ff19166020820152949350505050565b60ff8381166000908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015610ded573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e119190611581565b15610e1b57505050565b60ff808416600090815260016020908152604080832086851684528252808320858516845290915290205416610e7957604051636bb20ea760e01b815260ff80851660048301528084166024830152821660448201526064016104c6565b505050565b6003546001600160a01b03163314610ea85760405162461bcd60e51b81526004016104c6906115dd565b60405163b2466acf60e01b815260ff8316600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610efa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1e9190611581565b610f6a5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e454400000060448201526064016104c6565b600083815260026020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610fd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffa9190611581565b6110465760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e4700000000000060448201526064016104c6565b60008581526002602052604090206001016110618482611662565b508154620100003390810262010000600160b01b031960ff88166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166110a64390565b845463ffffffff91909116600160b01b0263ffffffff60b01b1990911617845560006110d188610cda565b90507feb640fdc9d45826fb47cd85fac116714d3d638f1409790b2b7c0ac824db13b7281888686328760405161110c9695949392919061179d565b60405180910390a17f228147c3bb5d3f2e24432bc0abaa1541c1f3f4208a9ab759bf26567e983fbdb7818885328660405161114b959493929190611758565b60405180910390a15050505050505050565b60ff81811660009081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016103b0565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce90604401602060405180830381865af4158015611209573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122d9190611818565b9392505050565b60006020828403121561124657600080fd5b5035919050565b60ff8116811461125c57600080fd5b50565b60006020828403121561127157600080fd5b813561122d8161124d565b6000815180845260005b818110156112a257602081850181015186830182015201611286565b506000602082860101526020601f19601f83011685010191505092915050565b60208152600061122d602083018461127c565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126112fc57600080fd5b813567ffffffffffffffff80821115611317576113176112d5565b604051601f8301601f19908116603f0116810190828211818310171561133f5761133f6112d5565b8160405283815286602085880101111561135857600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060006060848603121561138d57600080fd5b83359250602084013561139f8161124d565b9150604084013567ffffffffffffffff8111156113bb57600080fd5b6113c7868287016112eb565b9150509250925092565b600080604083850312156113e457600080fd5b82359150602083013567ffffffffffffffff81111561140257600080fd5b61140e858286016112eb565b9150509250929050565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b60208152611474602082018351611418565b6000602083015160c08084015261148e60e084018261127c565b949350505050565b600080604083850312156114a957600080fd5b8235915060208301356114bb8161124d565b809150509250929050565b805160ff16825260209081015160ff1916910152565b604081016103f182846114c6565b60a081016103f18284611418565b60008060006060848603121561150d57600080fd5b83356115188161124d565b925060208401356115288161124d565b915060408401356115388161124d565b809150509250925092565b60ff198116811461125c57600080fd5b6000806040838503121561156657600080fd5b82356115718161124d565b915060208301356114bb81611543565b60006020828403121561159357600080fd5b8151801515811461122d57600080fd5b600181811c908216806115b757607f821691505b6020821081036115d757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527f4552524f523a4b56532d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b601f821115610e7957600081815260208120601f850160051c8101602086101561163b5750805b601f850160051c820191505b8181101561165a57828155600101611647565b505050505050565b815167ffffffffffffffff81111561167c5761167c6112d5565b6116908161168a84546115a3565b84611614565b602080601f8311600181146116c557600084156116ad5750858301515b600019600386901b1c1916600185901b17855561165a565b600085815260208120601f198616915b828110156116f4578886015182559484019460019091019084016116d5565b50858210156117125787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60a0810161173082876114c6565b60ff9490941660408201526001600160a01b0392831660608201529116608090910152919050565b60c0810161176682886114c6565b60ff9590951660408201526001600160a01b03938416606082015291909216608082015263ffffffff90911660a090910152919050565b60e081016117ab82896114c6565b60ff96871660408301529490951660608601526001600160a01b039283166080860152911660a084015263ffffffff1660c090920191909152919050565b600080604083850312156117fc57600080fd5b82516118078161124d565b60208401519092506114bb81611543565b60006020828403121561182a57600080fd5b505191905056fea2646970667358221220f939c446d2a8f4e906670f91871af4dbd5d1080e0e33cb50e0e6fc2a596aabeb64736f6c63430008140033",
|
2314
|
+
"deployedBytecode": "0x60806040523480156200001157600080fd5b50600436106200045d5760003560e01c8063887b1fa9116200024d578063b8c510671162000149578063db70354c11620000c7578063ee0fdf711162000092578063ee0fdf711462000c86578063f274e87d1462000c9d578063f2b246c31462000cca578063fd143c761462000cf0578063fe1f18d61462000d0757600080fd5b8063db70354c1462000c2a578063e1f64d771462000c41578063e79597401462000c58578063ea5fa54b1462000c6f57600080fd5b8063ca600b1c1162000114578063ca600b1c1462000bad578063cf5ccedb1462000bbf578063cf7a1d771462000be5578063d250185c1462000bfc578063dad73bed1462000c1357600080fd5b8063b8c510671462000b42578063b9f36dde1462000b59578063bd7d9d851462000b70578063c2bf7d261462000b9657600080fd5b8063a238accd11620001d7578063a90be90711620001a2578063a90be9071462000ac3578063af17d38a1462000ada578063b3c650151462000af1578063b88da7591462000b14578063b89010821462000b2b57600080fd5b8063a238accd1462000a49578063a310e2a31462000a60578063a5a4fbbc1462000a95578063a745e3df1462000aac57600080fd5b80639675513d11620002185780639675513d14620009a45780639845743714620009bb57806399fd467714620009d25780639ae31ff51462000a1a57600080fd5b8063887b1fa91462000922578063893d20e8146200095b5780638d5d536e1462000965578063946dfcfe146200097c57600080fd5b80634d459c90116200035d57806369a44a1b11620002e75780637cef484211620002b25780637cef484214620008af5780637fec8b3114620008c05780638125ea9214620008d757806383d3331914620008e157806387c5658614620008ea57600080fd5b806369a44a1b146200085d5780636b9bf08b14620008745780636fa29853146200088657806373617bf1146200089857600080fd5b80635ab1bd5311620003285780635ab1bd5314620007f85780635d4345cc1462000802578063644c45e01462000819578063674d0ccf146200084657600080fd5b80634d459c90146200065d5780634f421333146200077b5780635312fdc2146200079257806357f80bbf14620007c357600080fd5b8063138461e011620003eb578063349195f911620003b6578063349195f914620005f0578063423eb9fa14620005f95780634288121d146200060e57806342c74ed014620006205780634793b4ab146200063757600080fd5b8063138461e014620005775780631a91887614620005815780631eff4b2214620005b1578063278b381b14620005d957600080fd5b80630d0ccc5b116200042c5780630d0ccc5b14620005015780630d8e6e2c14620005275780630d9b998d14620005465780630fec111c146200055d57600080fd5b806301ffc9a7146200046257806306a5298b14620004a757806307af0dc014620004c057806309648a9d14620004d7575b600080fd5b62000492620004733660046200435f565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b620004be620004b8366004620044ed565b62000d1e565b005b620004be620004d1366004620046c3565b62000d4d565b620004ee620004e836600462004845565b62000e0a565b60405160ff90911681526020016200049e565b62000518620005123660046200485f565b62000e81565b6040519081526020016200049e565b6200053162000f0a565b60405162ffffff90911681526020016200049e565b620004be6200055736600462004897565b62000f97565b620005676200113a565b6040516200049e92919062004984565b620004be620012b5565b620005986200059236600462004a30565b620014e0565b6040516001600160a01b0390911681526020016200049e565b620005187f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b62000492620005ea36600462004a30565b62001511565b600f5462000518565b620004be6200060a36600462004a50565b5050565b6006546001600160a01b031662000598565b620004be62000631366004620044ed565b62001520565b6200064e6200064836600462004a30565b6200190e565b6040516200049e919062004af0565b6200071d6200066e36600462004bab565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091526000805160206200607383398151915262ffffff92831660009081526020918252604090819020815160a0810183528154958616815263010000009095046001600160a01b03908116938601939093526001015491821690840152600160a01b810464ffffffffff166060840152600160c81b900463ffffffff1660808301525090565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a0016200049e565b620004926200078c36600462004bab565b6200193b565b620007a9620007a336600462004845565b620019f2565b6040516001600160c01b031990911681526020016200049e565b620007da620007d436600462004a30565b62001a34565b6040805182511515815260209283015192810192909252016200049e565b6200059862001a69565b620004be6200081336600462004bdb565b62001a7e565b600154600160a01b90046001600160601b03165b6040516001600160601b0390911681526020016200049e565b620005186200085736600462004c0e565b62001b27565b620005186200086e36600462004a30565b62001b4b565b6007546001600160a01b031662000598565b6004546001600160a01b031662000598565b620004be620008a936600462004c3d565b62001bdc565b620004be6200060a36600462004ca4565b6200082d620008d136600462004845565b62001ca1565b6200059862001ce9565b60095462000518565b604080518082018252600080825260209182015281518083019092526013548252601454908201525b6040516200049e919062004cc5565b6200094c6200093336600462004c0e565b5060408051808201909152600081526060602082015290565b6040516200049e919062004cdd565b6200059862001d03565b620004be6200097636600462004d15565b62001d0f565b7f4f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed9015462000518565b62000518620009b536600462004ddc565b62001f0c565b620004be620009cc36600462004e0f565b62002076565b62000492620009e336600462004e55565b6001600160c01b031982166000908152600a602090815260408083206001600160a01b038516845290915290205460ff1692915050565b6200082d62000a2b36600462004a30565b6001600160601b039081166000908152601160205260409020541690565b620004be62000a5a36600462004e88565b620021f6565b6200059862000a7136600462004a30565b6001600160601b03166000908152601260205260409020546001600160a01b031690565b6200059862000aa636600462004a30565b62002263565b620004be62000abd36600462004eb0565b6200228f565b6200051862000ad436600462004845565b620023f5565b620007a962000aeb36600462004f19565b62002431565b62000afb620025ba565b6040516001600160401b0390911681526020016200049e565b6200053162000b2536600462004845565b620025dd565b620004be62000b3c36600462004f66565b62002632565b620007a962000b5336600462004f19565b620026fd565b620004be62000b6a36600462004e55565b6200277d565b62000b8762000b8136600462004a30565b620028e6565b6040516200049e919062004f9b565b620004be62000ba736600462004e55565b62002977565b6005546001600160a01b031662000598565b62000bd662000bd036600462004c0e565b62002b77565b6040516200049e9190620050da565b620004be62000bf636600462004eb0565b62002c75565b6200091362000c0d36600462005123565b62002d88565b620004be62000c2436600462005146565b62002e17565b6200082d62000c3b36600462005179565b62003035565b620004be62000c5236600462004e0f565b620030cc565b6200059862000c69366004620051a8565b6200321a565b620004be62000c80366004620051c9565b6200323f565b6200049262000c9736600462004c0e565b62003390565b62000cb462000cae3660046200521b565b620033bb565b604080519283526020830191909152016200049e565b62000ce162000cdb36600462004a30565b62003452565b6040516200049e91906200524b565b620004be62000d0136600462005334565b62003516565b620004be62000d1836600462004bdb565b6200368e565b6200060a6065838360405160200162000d3891906200524b565b60405160208183030381529060405262003763565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000d8e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000db491906200542c565b6001600160a01b0316336001600160a01b03161462000df05760405162461bcd60e51b815260040162000de7906200544c565b60405180910390fd5b6200060a60d2838360405160200162000d38919062004f9b565b6003546040516309648a9d60e01b8152600481018390526000916001600160a01b0316906309648a9d90602401602060405180830381865afa15801562000e55573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e7b91906200548d565b92915050565b604051631488c84560e01b815260048101839052600082810b60248301529073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__90631488c84590604401602060405180830381865af415801562000edd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f039190620054ad565b9392505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562000f6c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f929190620054c7565b905090565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000fd8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ffe91906200542c565b6001600160a01b0316336001600160a01b031614620010315760405162461bcd60e51b815260040162000de7906200544c565b6000604051806101c00160405280896001600160601b03168152602001836001600160601b03168152602001886001600160c01b031916815260200160006001600160a01b03168152602001876001600160c01b031916815260200186815260200185815260200160008152602001848152602001604051806020016040528060008152508152602001604051806020016040528060008152508152602001620010d9600090565b64ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff16905290506200112f60d28a836040516020016200111a919062004f9b565b60405160208183030381529060405262003859565b505050505050505050565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280620011ac600090565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001620011f662001d03565b6001600160a01b031681526020018260010180546200121590620054e7565b80601f01602080910402602001604051908101604052809291908181526020018280546200124390620054e7565b8015620012945780601f10620012685761010080835404028352916020019162001294565b820191906000526020600020905b8154815290600101906020018083116200127657829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562001318573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200133e919062005523565b1562001382576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b0316602482015260440162000de7565b6001546001600160a01b0316620013ac5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015620013f6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200141c919062005523565b62001446576040516372657a5160e01b81526001600160a01b038216600482015260240162000de7565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801562001491573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620014b7919062005550565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080620014f160645b8462003918565b8060200190518101906200150691906200557d565b602001519392505050565b600062000e7b60658362003a1d565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200155f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200158591906200542c565b6001600160a01b0316336001600160a01b031614620015b85760405162461bcd60e51b815260040162000de790620055c5565b80516020808301516001600160601b038516600090815260129092526040909120546001600160a01b031615620016495760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031323a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000de7565b6001600160601b0382811660009081526011602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af4158015620016b5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620016db919062005523565b620017335760405162461bcd60e51b815260206004820152602160248201527f4552524f523a5452532d3031333a504f4f4c5f414c52454144595f4c494e4b456044820152601160fa1b606482015260840162000de7565b6001600160601b0381811660009081526011602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af41580156200179f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620017c5919062005523565b620018255760405162461bcd60e51b815260206004820152602960248201527f4552524f523a5452532d3031343a434f4d50454e534154494f4e5f414c524541604482015268111657d3125392d15160ba1b606482015260840162000de7565b8383604001516040516200183990620042d9565b6001600160601b0390921682526001600160a01b03166020820152604001604051809103906000f08015801562001874573d6000803e3d6000fd5b506001600160601b03858116600081815260126020908152604080832080546001600160a01b0319166001600160a01b03979097169690961790955585841682526011905283812080546bffffffffffffffffffffffff1990811684179091559286168152929092208054909116909117905562001908620018f4606590565b85856040516020016200111a91906200524b565b50505050565b62001918620042e7565b6200192660dc5b8362003918565b80602001905181019062000e7b919062005693565b6000806000805160206200607383398151915262ffffff84166000908152602091909152604090819020600101549051631bbffab160e21b8152600160c81b90910463ffffffff16600482015273__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af4158015620019c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620019eb9190620054ad565b1192915050565b60006009828154811062001a0a5762001a0a62005774565b90600052602060002090600491828204019190066008029054906101000a900460c01b9050919050565b604080518082019091526000808252602082015262001a54608c6200191f565b80602001905181019062000e7b91906200578a565b600062000f926001546001600160a01b031690565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001abf573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001ae591906200542c565b6001600160a01b0316336001600160a01b03161462001b185760405162461bcd60e51b815260040162000de7906200544c565b6200060a60d25b838362003b1e565b6001600160c01b031981166000908152600b6020526040812062000e7b9062003be9565b6001600160601b038116600090815260106020526040808220905163697d0f1b60e11b8152600481019190915273__$0dc988b1672de335b826773df9015af2da$__9063d2fa1e36906024015b602060405180830381865af415801562001bb6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e7b9190620054ad565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001c1b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001c4191906200542c565b6001600160a01b0316336001600160a01b03161462001c745760405162461bcd60e51b815260040162000de790620055c5565b6200060a608c83836040516020016200111a91908151151581526020918201519181019190915260400190565b6000600f828154811062001cb95762001cb962005774565b9060005260206000209060029182820401919006600c029054906101000a90046001600160601b03169050919050565b600062000f926003546001600160a01b031690565b919050565b600062000f9262003bf4565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001d50573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001d7691906200542c565b6001600160a01b0316336001600160a01b03161462001dd85760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000de7565b6000604051806101000160405280886001600160601b0316815260200187815260200184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050506020820188905260408201526060810187905260800142604051631ded81af60e31b815264ffffffffff90911660048201526024810187905273__$d53880c81dc91c20799140d711e5ab8718$__9063ef6c0d7890604401602060405180830381865af415801562001ea9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001ecf9190620057c9565b64ffffffffff168152602001600064ffffffffff169052905062001f0260dc89836040516020016200111a919062004af0565b5050505050505050565b6000306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001f4f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001f7591906200542c565b6001600160a01b0316336001600160a01b03161462001fa85760405162461bcd60e51b815260040162000de790620057e9565b506001600160601b038083166000818152600e602090815260408083209486168352938152838220805490839055928252600d9052829020915163539eabab60e11b8152909173__$0dc988b1672de335b826773df9015af2da$__9163a73d5756916200202b9186906004019182526001600160601b0316602082015260400190565b602060405180830381865af415801562002049573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200206f919062005523565b5092915050565b6001600160601b03828116600090815260106020526040908190209051632bfdd6b960e01b81526004810182905291851660248301529073__$0dc988b1672de335b826773df9015af2da$__90632bfdd6b990604401602060405180830381865af4158015620020ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002110919062005523565b15620021695760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504c2d3032303a42554e444c455f414c52454144595f414444456044820152601160fa1b606482015260840162000de7565b604051631461054360e31b8152600481018290526001600160601b038516602482015273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af4158015620021c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620021ef919062005523565b5050505050565b60035460405163a238accd60e01b81526004810184905260ff831660248201526001600160a01b039091169063a238accd90604401600060405180830381600087803b1580156200224657600080fd5b505af11580156200225b573d6000803e3d6000fd5b505050505050565b600080620022726064620014ea565b8060200190518101906200228791906200557d565b519392505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c620022b362000f0a565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015620022f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200231a91906200582a565b600080516020620060538339815191528054600160401b900460ff16806200234f575080546001600160401b03808416911610155b156200236e5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b1781556200239b858562003d14565b620023a68362003f5c565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15050505050565b6040516322f5db0f60e11b81526004810182905260009073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__906345ebb61e9060240162001b98565b6000306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002472573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200249891906200542c565b6001600160a01b0316336001600160a01b031614620024cb5760405162461bcd60e51b815260040162000de79062005855565b60405163e14787cb60e01b815273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90620025049085906004016200588c565b602060405180830381865af415801562002522573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620025489190620058ae565b9050620025558162003390565b15620025ae5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a4143532d3031303a524f4c455f414c52454144595f45584953546044820152605360f81b606482015260840162000de7565b62001cfe818362003f66565b600062000f9260008051602062006053833981519152546001600160401b031690565b600060008051602062006073833981519152600101828154811062002606576200260662005774565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b604080518082019091526001600160601b0383168152602081018290526200190860c86040516355ee627560e01b81526001600160c01b03198716600482015273__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015620026af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620026d59190620054ad565b83604051602001620026e8919062004cdd565b60405160208183030381529060405262003fcb565b60405163e14787cb60e01b815260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90620027399085906004016200588c565b602060405180830381865af415801562002757573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e7b9190620058ae565b6001600160c01b0319828116600081815260086020526040902054849260c09190911b1614620027c15760405162461bcd60e51b815260040162000de790620058ce565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200282691906200542c565b6001600160a01b0316336001600160a01b031614620028595760405162461bcd60e51b815260040162000de79062005855565b6001600160c01b031983166000818152600a602090815260408083206001600160a01b03871684528252808320805460ff19169055928252600b905220620028a2908362004001565b507fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d1698754539668483836000604051620028d99392919062005905565b60405180910390a1505050565b604080516101c08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820183905261010082018390526101208201819052610140820152610160810182905261018081018290526101a08101919091526200296260d26200191f565b80602001905181019062000e7b919062005932565b6001600160c01b0319828116600081815260086020526040902054849260c09190911b1614620029bb5760405162461bcd60e51b815260040162000de790620058ce565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015620029fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a2091906200542c565b6001600160a01b0316336001600160a01b03161462002a535760405162461bcd60e51b815260040162000de79062005855565b6001600160c01b0319831660009081526008602052604090206002015460ff1662002ac15760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4143532d3034303a524f4c455f4e4f545f414354495645000000604482015260640162000de7565b6001600160c01b031983166000818152600a602090815260408083206001600160a01b03871684528252808320805460ff19166001179055928252600b90522062002b0d908362004018565b506001600160c01b031983166000908152600a602090815260408083206001600160a01b0386168452909152908190205490517fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d1698754539668491620028d9918691869160ff9091169062005905565b6040805160608082018352600080835260208084018390528385018290526001600160c01b0319868116835260088252918590208551938401909552845460c01b9091168252600184018054939492939184019162002bd690620054e7565b80601f016020809104026020016040519081016040528092919081815260200182805462002c0490620054e7565b801562002c555780601f1062002c295761010080835404028352916020019162002c55565b820191906000526020600020905b81548152906001019060200180831162002c3757829003601f168201915b50505091835250506002919091015460ff16151560209091015292915050565b600080516020620060538339815191528054600160401b810460ff1615906001600160401b031660008115801562002caa5750825b90506000826001600160401b0316600114801562002cc75750303b155b90508115801562002cd6575080155b1562002cf55760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831562002d2057845460ff60401b1916600160401b1785555b62002d2c888862003d14565b62002d38878762003f5c565b831562001f0257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b60408051808201825260008082526020820152905163638086fd60e11b8152600481018490526024810183905273__$a23651848365a6a5ca15f07b4331037f48$__9063c7010dfa906044016040805180830381865af415801562002df1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f03919062005a9f565b6001600160c01b0319828116600081815260086020526040902054849260c09190911b161462002e5b5760405162461bcd60e51b815260040162000de790620058ce565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002e9a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002ec091906200542c565b6001600160a01b0316336001600160a01b03161462002ef35760405162461bcd60e51b815260040162000de79062005855565b6001600160c01b03198084166000908152600860209081526040808320815160608101909252805460c01b909416815260018401805493949193919284019162002f3d90620054e7565b80601f016020809104026020016040519081016040528092919081815260200182805462002f6b90620054e7565b801562002fbc5780601f1062002f905761010080835404028352916020019162002fbc565b820191906000526020600020905b81548152906001019060200180831162002f9e57829003601f168201915b50505091835250506002919091015460ff1615156020909101528315156040820152905062002feb816200402f565b604080516001600160c01b03198616815284151560208201527feaffaec948991ecc6e201ba4f67ba865fbf66aace3d2f2823dc5483cc9813fda910160405180910390a150505050565b6001600160601b038216600090815260106020526040808220905163e797d89960e01b815260048101919091526024810183905273__$0dc988b1672de335b826773df9015af2da$__9063e797d89990604401602060405180830381865af4158015620030a6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f03919062005550565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af11580156200310d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200313391906200542c565b6001600160a01b0316336001600160a01b031614620031665760405162461bcd60e51b815260040162000de790620057e9565b6001600160601b038381166000818152600e60209081526040808320948716808452948252808320869055928252600d90528190209051631461054360e31b81526004810191909152602481019190915273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af4158015620031f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001908919062005523565b6001600160c01b031982166000908152600b6020526040812062000f0390836200410d565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200327e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620032a491906200542c565b6001600160a01b0316336001600160a01b031614620032d75760405162461bcd60e51b815260040162000de790620055c5565b604080518082019091526001600160a01b03838116825282166020820152600f8054600180820183556000929092527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8026002820401805492909116600c026101000a6001600160601b038181021990931692871602919091179055620019086200335f606490565b85836040516020016200111a919081516001600160a01b039081168252602092830151169181019190915260400190565b6001600160c01b0319818116600081815260086020526040812054909260c09190911b161462000e7b565b60405163012ebd8360e21b8152815160048201526020820151602482015260448101839052600090819073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af415801562003421573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003447919062005abe565b915091509250929050565b620034f56040805161012081018252600080825260208083018290528284018290528351808501855282815280820183905260608401528351808501855282815280820183905260808401528351808501855282815280820183905260a08401528351808501855282815280820183905260c08401528351808501855282815280820183905260e084015283518085019094528184528301529061010082015290565b6200350160656200191f565b80602001905181019062000e7b919062005ae3565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562003557573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200357d91906200542c565b6001600160a01b0316336001600160a01b03161480620036145750306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620035d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620035ff91906200542c565b6001600160a01b0316336001600160a01b0316145b620036745760405162461bcd60e51b815260206004820152602960248201527f4552524f523a42444c2d3030333a4e4f545f504f4f4c5f4f525f50524f445543604482015268545f5345525649434560b81b606482015260840162000de7565b6200060a60dc838360405160200162000d38919062004af0565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620036cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620036f591906200542c565b6001600160a01b0316336001600160a01b031614620037575760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000de7565b6200060a60dc62001b1f565b600c54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b0390911690636ec3d9409073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620037da573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620038009190620054ad565b836040518363ffffffff1660e01b81526004016200382092919062005bb7565b600060405180830381600087803b1580156200383b57600080fd5b505af115801562003850573d6000803e3d6000fd5b50505050505050565b600c54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b0390911690635dee47889073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af4158015620038d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620038f69190620054ad565b85846040518463ffffffff1660e01b8152600401620038209392919062005bd2565b600c54604051630711349960e31b81526001600160601b038316600482015260ff841660248201526060916001600160a01b0316906354f6127f9073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af415801562003990573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620039b69190620054ad565b6040518263ffffffff1660e01b8152600401620039d591815260200190565b600060405180830381865afa158015620039f3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000f03919081019062005bf6565b600c54604051630711349960e31b81526001600160601b038316600482015260ff841660248201526000916001600160a01b0316906338a699a49073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af415801562003a95573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003abb9190620054ad565b6040518263ffffffff1660e01b815260040162003ada91815260200190565b602060405180830381865afa15801562003af8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f03919062005523565b600c54604051630711349960e31b81526001600160601b038416600482015260ff851660248201526001600160a01b039091169063a238accd9073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401602060405180830381865af415801562003b95573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003bbb9190620054ad565b6040516001600160e01b031960e084901b168152600481019190915260ff8416602482015260440162003820565b600062000e7b825490565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562003c5a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003c80919062005523565b1562003d0457600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa15801562003cde573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f9291906200542c565b506002546001600160a01b031690565b62003d1e6200411b565b60008051602062006073833981519152600062003d5160008051602062006053833981519152546001600160401b031690565b9050600062003d5f62000f0a565b9050816001600160401b031660010362003d8e5760028301805462ffffff191662ffffff831617905562003dde565b600283015462ffffff9081169082161162003dde5760405162461bcd60e51b815260206004820152600f60248201526e24a72b20a624a2102b22a929a4a7a760891b604482015260640162000de7565b6001808401805491820181556000908152602090819020600a808404909101805462ffffff808716600394909606939093026101000a858102930219169190911790556040805160a0810182529283526001600160a01b0380891692840192909252908616908201526060810162003e534290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602087815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517fad0a0fc10465a8dd9da3ad5f43e1a7fff4b4578551c76f0ae8deb844f0d0bf6890620023e69083908890889062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b6200045d6200411b565b604080516060810182526001600160c01b0319841681526020810183905260019181019190915262003f98816200402f565b7f34e1f82fc40bf14028ae2a3150f074e7715e20ed8e30e250f8789cee718c64858383604051620028d992919062005c2e565b600c54604051630bbdc8f160e31b81526001600160a01b0390911690635dee478890620038209085908790869060040162005bd2565b600062000f03836001600160a01b03841662004156565b600062000f03836001600160a01b0384166200425a565b80516001600160c01b0319811660009081526008602090815260409091208351815467ffffffffffffffff191660c09190911c1781559083015183919060018201906200407d908262005ca4565b50604091909101516002909101805460ff1916911515919091179055620040a48162003390565b6200060a57600980546001810182556000919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af600482040180546001600160401b0360039093166008026101000a928302191660c09390931c9190910291909117905550565b600062000f038383620042ac565b6000805160206200605383398151915254600160401b900460ff166200415457604051631afcd79f60e31b815260040160405180910390fd5b565b600081815260018301602052604081205480156200424f5760006200417d60018362005d70565b8554909150600090620041939060019062005d70565b9050818114620041ff576000866000018281548110620041b757620041b762005774565b9060005260206000200154905080876000018481548110620041dd57620041dd62005774565b6000918252602080832090910192909255918252600188019052604090208390555b855486908062004213576200421362005d92565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505062000e7b565b600091505062000e7b565b6000818152600183016020526040812054620042a35750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000e7b565b50600062000e7b565b6000826000018281548110620042c657620042c662005774565b9060005260206000200154905092915050565b6102aa8062005da983390190565b60405180610100016040528060006001600160601b0316815260200162004321604051806040016040528060008152602001600081525090565b815260200160608152602001600081526020016000815260200160008152602001600064ffffffffff168152602001600064ffffffffff1681525090565b6000602082840312156200437257600080fd5b81356001600160e01b03198116811462000f0357600080fd5b6001600160601b0381168114620043a157600080fd5b50565b803562001cfe816200438b565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715620043ec57620043ec620043b1565b60405290565b60405161012081016001600160401b0381118282101715620043ec57620043ec620043b1565b6040516101c081016001600160401b0381118282101715620043ec57620043ec620043b1565b60405161010081016001600160401b0381118282101715620043ec57620043ec620043b1565b604051601f8201601f191681016001600160401b03811182821017156200448f576200448f620043b1565b604052919050565b6001600160a01b0381168114620043a157600080fd5b803562001cfe8162004497565b600060408284031215620044cd57600080fd5b620044d7620043c7565b9050813581526020820135602082015292915050565b6000808284036102008112156200450357600080fd5b833562004510816200438b565b92506101e0601f19820112156200452657600080fd5b5062004531620043f2565b6200453f60208501620043a4565b81526200454f60408501620043a4565b60208201526200456260608501620044ad565b6040820152620045768560808601620044ba565b60608201526200458a8560c08601620044ba565b6080820152610100620045a086828701620044ba565b60a0830152620045b5866101408701620044ba565b60c0830152620045ca866101808701620044ba565b60e0830152620045df866101c08701620044ba565b90820152919491935090915050565b6001600160c01b031981168114620043a157600080fd5b803562001cfe81620045ee565b60006001600160401b038211156200462e576200462e620043b1565b50601f01601f191660200190565b6000620046536200464d8462004612565b62004464565b90508281528383830111156200466857600080fd5b828260208301376000602084830101529392505050565b600082601f8301126200469157600080fd5b62000f03838335602085016200463c565b64ffffffffff81168114620043a157600080fd5b803562001cfe81620046a2565b60008060408385031215620046d757600080fd5b8235620046e4816200438b565b915060208301356001600160401b03808211156200470157600080fd5b908401906101c082870312156200471757600080fd5b6200472162004418565b6200472c83620043a4565b81526200473c60208401620043a4565b60208201526200474f6040840162004605565b60408201526200476260608401620044ad565b6060820152620047756080840162004605565b608082015260a083013560a082015260c083013560c082015260e083013560e08201526101008084013581830152506101208084013583811115620047b957600080fd5b620047c7898287016200467f565b8284015250506101408084013583811115620047e257600080fd5b620047f0898287016200467f565b828401525050610160915062004808828401620046b6565b8282015261018091506200481e828401620046b6565b828201526101a0915062004834828401620046b6565b828201528093505050509250929050565b6000602082840312156200485857600080fd5b5035919050565b600080604083850312156200487357600080fd5b8235915060208301358060000b81146200488c57600080fd5b809150509250929050565b600080600080600080600080610100898b031215620048b557600080fd5b8835620048c2816200438b565b97506020890135620048d4816200438b565b96506040890135620048e681620045ee565b95506060890135620048f881620045ee565b94506080890135935060a0890135925060c0890135915060e08901356200491f816200438b565b809150509295985092959890939650565b60005b838110156200494d57818101518382015260200162004933565b50506000910152565b600081518084526200497081602086016020860162004930565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151620049c960a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015262004a1161012084018262004956565b9050828103602084015262004a27818562004956565b95945050505050565b60006020828403121562004a4357600080fd5b813562000f03816200438b565b6000806040838503121562004a6457600080fd5b823562004a7181620045ee565b915060208301356001600160401b038082111562004a8e57600080fd5b908401906040828703121562004aa357600080fd5b62004aad620043c7565b823562004aba816200438b565b815260208301358281111562004acf57600080fd5b62004add888286016200467f565b6020830152508093505050509250929050565b602081526001600160601b0382511660208201526000602083015162004b23604084018280518252602090810151910152565b50604083015161012080608085015262004b4261014085018362004956565b9150606085015160a0850152608085015160c085015260a085015160e085015260c085015162004b7c61010086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b62ffffff81168114620043a157600080fd5b60006020828403121562004bbe57600080fd5b813562000f038162004b99565b60ff81168114620043a157600080fd5b6000806040838503121562004bef57600080fd5b823562004bfc816200438b565b915060208301356200488c8162004bcb565b60006020828403121562004c2157600080fd5b813562000f0381620045ee565b8015158114620043a157600080fd5b600080828403606081121562004c5257600080fd5b833562004c5f816200438b565b92506040601f198201121562004c7457600080fd5b5062004c7f620043c7565b602084013562004c8f8162004c2e565b81526040939093013560208401525092909150565b6000806040838503121562004cb857600080fd5b823562004bfc81620045ee565b81518152602080830151908201526040810162000e7b565b602081526001600160601b0382511660208201526000602083015160408084015262004d0d606084018262004956565b949350505050565b600080600080600080600060e0888a03121562004d3157600080fd5b873562004d3e816200438b565b9650602088013562004d50816200438b565b955062004d618960408a01620044ba565b94506080880135935060a0880135925060c08801356001600160401b038082111562004d8c57600080fd5b818a0191508a601f83011262004da157600080fd5b81358181111562004db157600080fd5b8b602082850101111562004dc457600080fd5b60208301945080935050505092959891949750929550565b6000806040838503121562004df057600080fd5b823562004dfd816200438b565b915060208301356200488c816200438b565b60008060006060848603121562004e2557600080fd5b833562004e32816200438b565b9250602084013562004e44816200438b565b929592945050506040919091013590565b6000806040838503121562004e6957600080fd5b823562004e7681620045ee565b915060208301356200488c8162004497565b6000806040838503121562004e9c57600080fd5b8235915060208301356200488c8162004bcb565b60008060006060848603121562004ec657600080fd5b833562004ed38162004497565b9250602084013562004ee58162004497565b915060408401356001600160401b0381111562004f0157600080fd5b62004f0f868287016200467f565b9150509250925092565b60006020828403121562004f2c57600080fd5b81356001600160401b0381111562004f4357600080fd5b8201601f8101841362004f5557600080fd5b62004d0d848235602084016200463c565b60008060006060848603121562004f7c57600080fd5b833562004f8981620045ee565b9250602084013562004ee5816200438b565b6020815262004fb66020820183516001600160601b03169052565b6000602083015162004fd360408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160a01b03811660808401525060808301516001600160c01b0319811660a08401525060a083015160c083015260c083015160e083015260e08301516101008181850152808501519150506101208181850152808501519150506101c06101408181860152620050676101e086018462004956565b9250808601519050610160601f19868503018187015262005089848362004956565b935080870151915050610180620050a88187018364ffffffffff169052565b86015190506101a0620050c38682018364ffffffffff169052565b86015164ffffffffff811683870152905062004b8f565b602080825282516001600160c01b03191682820152820151606060408301526000906200510b608084018262004956565b90506040840151151560608401528091505092915050565b600080604083850312156200513757600080fd5b50508035926020909101359150565b600080604083850312156200515a57600080fd5b82356200516781620045ee565b915060208301356200488c8162004c2e565b600080604083850312156200518d57600080fd5b82356200519a816200438b565b946020939093013593505050565b60008060408385031215620051bc57600080fd5b82356200519a81620045ee565b600080600060608486031215620051df57600080fd5b8335620051ec816200438b565b92506020840135620051fe8162004497565b91506040840135620052108162004497565b809150509250925092565b600080606083850312156200522f57600080fd5b82359150620052428460208501620044ba565b90509250929050565b81516001600160601b031681526020808301516101e083019162005279908401826001600160601b03169052565b5060408301516200529560408401826001600160a01b03169052565b506060830151620052b3606084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151805161012084015260208101516101408401525060e0830151805161016084015260208101516101808401525061010083015180516101a084015260208101516101c08401526200206f565b600080604083850312156200534857600080fd5b823562005355816200438b565b915060208301356001600160401b03808211156200537257600080fd5b9084019061012082870312156200538857600080fd5b620053926200443e565b6200539d83620043a4565b8152620053ae8760208501620044ba565b6020820152606083013582811115620053c657600080fd5b620053d4888286016200467f565b6040830152506080830135606082015260a0830135608082015260c083013560a08201526200540660e08401620046b6565b60c08201526200541a6101008401620046b6565b60e08201528093505050509250929050565b6000602082840312156200543f57600080fd5b815162000f038162004497565b60208082526021908201527f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b600060208284031215620054a057600080fd5b815162000f038162004bcb565b600060208284031215620054c057600080fd5b5051919050565b600060208284031215620054da57600080fd5b815162000f038162004b99565b600181811c90821680620054fc57607f821691505b6020821081036200551d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156200553657600080fd5b815162000f038162004c2e565b805162001cfe816200438b565b6000602082840312156200556357600080fd5b815162000f03816200438b565b805162001cfe8162004497565b6000604082840312156200559057600080fd5b6200559a620043c7565b8251620055a78162004497565b81526020830151620055b98162004497565b60208201529392505050565b60208082526022908201527f4552524f523a434d502d3030313a4e4f545f52454749535452595f5345525649604082015261434560f01b606082015260800190565b6000604082840312156200561a57600080fd5b62005624620043c7565b9050815181526020820151602082015292915050565b600082601f8301126200564c57600080fd5b81516200565d6200464d8262004612565b8181528460208386010111156200567357600080fd5b62004d0d82602083016020870162004930565b805162001cfe81620046a2565b600060208284031215620056a657600080fd5b81516001600160401b0380821115620056be57600080fd5b908301906101208286031215620056d457600080fd5b620056de6200443e565b620056e98362005543565b8152620056fa866020850162005607565b60208201526060830151828111156200571257600080fd5b62005720878286016200563a565b6040830152506080830151606082015260a0830151608082015260c083015160a08201526200575260e0840162005686565b60c082015262005766610100840162005686565b60e082015295945050505050565b634e487b7160e01b600052603260045260246000fd5b6000604082840312156200579d57600080fd5b620057a7620043c7565b8251620057b48162004c2e565b81526020928301519281019290925250919050565b600060208284031215620057dc57600080fd5b815162000f0381620046a2565b60208082526021908201527f4552524f523a42444c2d3030323a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b6000602082840312156200583d57600080fd5b81516001600160401b038116811462000f0357600080fd5b60208082526017908201527f4552524f523a4143532d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b60208152600062000f03602083018462004956565b805162001cfe81620045ee565b600060208284031215620058c157600080fd5b815162000f0381620045ee565b6020808252601f908201527f4552524f523a4143532d3030323a524f4c455f4e4f545f4558495354494e4700604082015260600190565b6001600160c01b03199390931683526001600160a01b039190911660208301521515604082015260600190565b6000602082840312156200594557600080fd5b81516001600160401b03808211156200595d57600080fd5b908301906101c082860312156200597357600080fd5b6200597d62004418565b620059888362005543565b8152620059986020840162005543565b6020820152620059ab60408401620058a1565b6040820152620059be6060840162005570565b6060820152620059d160808401620058a1565b608082015260a083015160a082015260c083015160c082015260e083015160e0820152610100808401518183015250610120808401518381111562005a1557600080fd5b62005a23888287016200563a565b828401525050610140808401518381111562005a3e57600080fd5b62005a4c888287016200563a565b828401525050610160915062005a6482840162005686565b82820152610180915062005a7a82840162005686565b828201526101a0915062005a9082840162005686565b91810191909152949350505050565b60006040828403121562005ab257600080fd5b62000f03838362005607565b6000806040838503121562005ad257600080fd5b505080516020909101519092909150565b60006101e0828403121562005af757600080fd5b62005b01620043f2565b62005b0c8362005543565b815262005b1c6020840162005543565b602082015262005b2f6040840162005570565b604082015262005b43846060850162005607565b606082015262005b578460a0850162005607565b608082015262005b6b8460e0850162005607565b60a082015262005b8084610120850162005607565b60c082015262005b9584610160850162005607565b60e082015262005baa846101a0850162005607565b6101008201529392505050565b82815260406020820152600062004d0d604083018462004956565b83815260ff8316602082015260606040820152600062004a27606083018462004956565b60006020828403121562005c0957600080fd5b81516001600160401b0381111562005c2057600080fd5b62004d0d848285016200563a565b6001600160401b0360c01b8316815260406020820152600062004d0d604083018462004956565b601f82111562005c9f57600081815260208120601f850160051c8101602086101562005c7e5750805b601f850160051c820191505b818110156200225b5782815560010162005c8a565b505050565b81516001600160401b0381111562005cc05762005cc0620043b1565b62005cd88162005cd18454620054e7565b8462005c55565b602080601f83116001811462005d10576000841562005cf75750858301515b600019600386901b1c1916600185901b1785556200225b565b600085815260208120601f198616915b8281101562005d415788860151825594840194600190910190840162005d20565b508582101562005d605787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8181038181111562000e7b57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fdfe608060405234801561001057600080fd5b506040516102aa3803806102aa83398101604081905261002f9161005b565b6001600160a01b03166c01000000000000000000000000026001600160601b03909116176000556100ad565b6000806040838503121561006e57600080fd5b82516001600160601b038116811461008557600080fd5b60208401519092506001600160a01b03811681146100a257600080fd5b809150509250929050565b6101ee806100bc6000396000f3fe608060405234801561001057600080fd5b50600436106100405760003560e01c806251884a1461004557806321df0da71461006a578063beabacc814610095575b600080fd5b6000546040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b600054600160601b90046001600160a01b03166040516001600160a01b039091168152602001610061565b6100a86100a3366004610153565b6100aa565b005b6000546040516323b872dd60e01b81526001600160a01b038581166004830152848116602483015260448201849052600160601b909204909116906323b872dd906064016020604051808303816000875af115801561010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610131919061018f565b50505050565b80356001600160a01b038116811461014e57600080fd5b919050565b60008060006060848603121561016857600080fd5b61017184610137565b925061017f60208501610137565b9150604084013590509250925092565b6000602082840312156101a157600080fd5b815180151581146101b157600080fd5b939250505056fea2646970667358221220455e331420069b52ddb557c4094a8236a9cb76b6fb2388562bb6d2f594dbd6b064736f6c63430008140033f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a004f61291a8ac3d020d0a7d919a76b8592aa88385744dee3f8b4f3873b969ed900a264697066735822122093bb9b67a08862f3ed5c9a7035b32c346db4e7fbd4ef45434855ef9d289bc78864736f6c63430008140033",
|
1880
2315
|
"linkReferences": {
|
1881
2316
|
"contracts/types/Blocknumber.sol": {
|
1882
2317
|
"BlocknumberLib": [
|
1883
2318
|
{
|
1884
2319
|
"length": 20,
|
1885
|
-
"start":
|
1886
|
-
},
|
1887
|
-
{
|
1888
|
-
"length": 20,
|
1889
|
-
"start": 8651
|
2320
|
+
"start": 10534
|
1890
2321
|
}
|
1891
2322
|
]
|
1892
2323
|
},
|
@@ -1894,15 +2325,11 @@
|
|
1894
2325
|
"FeeLib": [
|
1895
2326
|
{
|
1896
2327
|
"length": 20,
|
1897
|
-
"start":
|
2328
|
+
"start": 15699
|
1898
2329
|
},
|
1899
2330
|
{
|
1900
2331
|
"length": 20,
|
1901
|
-
"start":
|
1902
|
-
},
|
1903
|
-
{
|
1904
|
-
"length": 20,
|
1905
|
-
"start": 18566
|
2332
|
+
"start": 17283
|
1906
2333
|
}
|
1907
2334
|
]
|
1908
2335
|
},
|
@@ -1910,11 +2337,11 @@
|
|
1910
2337
|
"Key32Lib": [
|
1911
2338
|
{
|
1912
2339
|
"length": 20,
|
1913
|
-
"start":
|
2340
|
+
"start": 33946
|
1914
2341
|
},
|
1915
2342
|
{
|
1916
2343
|
"length": 20,
|
1917
|
-
"start":
|
2344
|
+
"start": 35168
|
1918
2345
|
}
|
1919
2346
|
]
|
1920
2347
|
},
|
@@ -1922,19 +2349,39 @@
|
|
1922
2349
|
"NftIdLib": [
|
1923
2350
|
{
|
1924
2351
|
"length": 20,
|
1925
|
-
"start":
|
2352
|
+
"start": 8825
|
2353
|
+
},
|
2354
|
+
{
|
2355
|
+
"length": 20,
|
2356
|
+
"start": 9750
|
2357
|
+
},
|
2358
|
+
{
|
2359
|
+
"length": 20,
|
2360
|
+
"start": 9984
|
2361
|
+
},
|
2362
|
+
{
|
2363
|
+
"length": 20,
|
2364
|
+
"start": 18235
|
1926
2365
|
},
|
1927
2366
|
{
|
1928
2367
|
"length": 20,
|
1929
|
-
"start":
|
2368
|
+
"start": 18481
|
1930
2369
|
},
|
1931
2370
|
{
|
1932
2371
|
"length": 20,
|
1933
|
-
"start":
|
2372
|
+
"start": 18673
|
1934
2373
|
},
|
1935
2374
|
{
|
1936
2375
|
"length": 20,
|
1937
|
-
"start":
|
2376
|
+
"start": 18934
|
2377
|
+
},
|
2378
|
+
{
|
2379
|
+
"length": 20,
|
2380
|
+
"start": 19190
|
2381
|
+
},
|
2382
|
+
{
|
2383
|
+
"length": 20,
|
2384
|
+
"start": 19387
|
1938
2385
|
}
|
1939
2386
|
]
|
1940
2387
|
},
|
@@ -1942,27 +2389,27 @@
|
|
1942
2389
|
"LibNftIdSet": [
|
1943
2390
|
{
|
1944
2391
|
"length": 20,
|
1945
|
-
"start":
|
2392
|
+
"start": 11030
|
1946
2393
|
},
|
1947
2394
|
{
|
1948
2395
|
"length": 20,
|
1949
|
-
"start":
|
2396
|
+
"start": 12172
|
1950
2397
|
},
|
1951
2398
|
{
|
1952
2399
|
"length": 20,
|
1953
|
-
"start":
|
2400
|
+
"start": 12363
|
1954
2401
|
},
|
1955
2402
|
{
|
1956
2403
|
"length": 20,
|
1957
|
-
"start":
|
2404
|
+
"start": 12586
|
1958
2405
|
},
|
1959
2406
|
{
|
1960
2407
|
"length": 20,
|
1961
|
-
"start":
|
2408
|
+
"start": 16391
|
1962
2409
|
},
|
1963
2410
|
{
|
1964
2411
|
"length": 20,
|
1965
|
-
"start":
|
2412
|
+
"start": 16725
|
1966
2413
|
}
|
1967
2414
|
]
|
1968
2415
|
},
|
@@ -1970,7 +2417,15 @@
|
|
1970
2417
|
"ObjectTypeLib": [
|
1971
2418
|
{
|
1972
2419
|
"length": 20,
|
1973
|
-
"start":
|
2420
|
+
"start": 31864
|
2421
|
+
}
|
2422
|
+
]
|
2423
|
+
},
|
2424
|
+
"contracts/types/RiskId.sol": {
|
2425
|
+
"RiskIdLib": [
|
2426
|
+
{
|
2427
|
+
"length": 20,
|
2428
|
+
"start": 13840
|
1974
2429
|
}
|
1975
2430
|
]
|
1976
2431
|
},
|
@@ -1978,27 +2433,27 @@
|
|
1978
2433
|
"RoleIdLib": [
|
1979
2434
|
{
|
1980
2435
|
"length": 20,
|
1981
|
-
"start":
|
2436
|
+
"start": 1590
|
1982
2437
|
},
|
1983
2438
|
{
|
1984
2439
|
"length": 20,
|
1985
|
-
"start":
|
2440
|
+
"start": 1858
|
1986
2441
|
},
|
1987
2442
|
{
|
1988
2443
|
"length": 20,
|
1989
|
-
"start":
|
2444
|
+
"start": 1947
|
1990
2445
|
},
|
1991
2446
|
{
|
1992
2447
|
"length": 20,
|
1993
|
-
"start":
|
2448
|
+
"start": 2039
|
1994
2449
|
},
|
1995
2450
|
{
|
1996
2451
|
"length": 20,
|
1997
|
-
"start":
|
2452
|
+
"start": 13430
|
1998
2453
|
},
|
1999
2454
|
{
|
2000
2455
|
"length": 20,
|
2001
|
-
"start":
|
2456
|
+
"start": 13995
|
2002
2457
|
}
|
2003
2458
|
]
|
2004
2459
|
},
|
@@ -2006,39 +2461,39 @@
|
|
2006
2461
|
"StateIdLib": [
|
2007
2462
|
{
|
2008
2463
|
"length": 20,
|
2009
|
-
"start":
|
2464
|
+
"start": 31523
|
2010
2465
|
},
|
2011
2466
|
{
|
2012
2467
|
"length": 20,
|
2013
|
-
"start":
|
2468
|
+
"start": 32081
|
2014
2469
|
},
|
2015
2470
|
{
|
2016
2471
|
"length": 20,
|
2017
|
-
"start":
|
2472
|
+
"start": 32606
|
2018
2473
|
},
|
2019
2474
|
{
|
2020
2475
|
"length": 20,
|
2021
|
-
"start":
|
2476
|
+
"start": 33339
|
2022
2477
|
},
|
2023
2478
|
{
|
2024
2479
|
"length": 20,
|
2025
|
-
"start":
|
2480
|
+
"start": 33559
|
2026
2481
|
},
|
2027
2482
|
{
|
2028
2483
|
"length": 20,
|
2029
|
-
"start":
|
2484
|
+
"start": 34116
|
2030
2485
|
},
|
2031
2486
|
{
|
2032
2487
|
"length": 20,
|
2033
|
-
"start":
|
2488
|
+
"start": 34385
|
2034
2489
|
},
|
2035
2490
|
{
|
2036
2491
|
"length": 20,
|
2037
|
-
"start":
|
2492
|
+
"start": 34605
|
2038
2493
|
},
|
2039
2494
|
{
|
2040
2495
|
"length": 20,
|
2041
|
-
"start":
|
2496
|
+
"start": 35097
|
2042
2497
|
}
|
2043
2498
|
]
|
2044
2499
|
},
|
@@ -2046,7 +2501,7 @@
|
|
2046
2501
|
"TimestampLib": [
|
2047
2502
|
{
|
2048
2503
|
"length": 20,
|
2049
|
-
"start":
|
2504
|
+
"start": 11786
|
2050
2505
|
}
|
2051
2506
|
]
|
2052
2507
|
},
|
@@ -2054,11 +2509,11 @@
|
|
2054
2509
|
"UFixedMathLib": [
|
2055
2510
|
{
|
2056
2511
|
"length": 20,
|
2057
|
-
"start":
|
2512
|
+
"start": 7742
|
2058
2513
|
},
|
2059
2514
|
{
|
2060
2515
|
"length": 20,
|
2061
|
-
"start":
|
2516
|
+
"start": 13226
|
2062
2517
|
}
|
2063
2518
|
]
|
2064
2519
|
},
|
@@ -2066,15 +2521,19 @@
|
|
2066
2521
|
"VersionLib": [
|
2067
2522
|
{
|
2068
2523
|
"length": 20,
|
2069
|
-
"start":
|
2524
|
+
"start": 1060
|
2525
|
+
},
|
2526
|
+
{
|
2527
|
+
"length": 20,
|
2528
|
+
"start": 2155
|
2070
2529
|
},
|
2071
2530
|
{
|
2072
2531
|
"length": 20,
|
2073
|
-
"start":
|
2532
|
+
"start": 7885
|
2074
2533
|
},
|
2075
2534
|
{
|
2076
2535
|
"length": 20,
|
2077
|
-
"start":
|
2536
|
+
"start": 12845
|
2078
2537
|
}
|
2079
2538
|
]
|
2080
2539
|
}
|
@@ -2084,7 +2543,7 @@
|
|
2084
2543
|
"BlocknumberLib": [
|
2085
2544
|
{
|
2086
2545
|
"length": 20,
|
2087
|
-
"start":
|
2546
|
+
"start": 6538
|
2088
2547
|
}
|
2089
2548
|
]
|
2090
2549
|
},
|
@@ -2092,15 +2551,11 @@
|
|
2092
2551
|
"FeeLib": [
|
2093
2552
|
{
|
2094
2553
|
"length": 20,
|
2095
|
-
"start":
|
2096
|
-
},
|
2097
|
-
{
|
2098
|
-
"length": 20,
|
2099
|
-
"start": 12410
|
2554
|
+
"start": 11703
|
2100
2555
|
},
|
2101
2556
|
{
|
2102
2557
|
"length": 20,
|
2103
|
-
"start":
|
2558
|
+
"start": 13287
|
2104
2559
|
}
|
2105
2560
|
]
|
2106
2561
|
},
|
@@ -2108,19 +2563,39 @@
|
|
2108
2563
|
"NftIdLib": [
|
2109
2564
|
{
|
2110
2565
|
"length": 20,
|
2111
|
-
"start":
|
2566
|
+
"start": 4829
|
2567
|
+
},
|
2568
|
+
{
|
2569
|
+
"length": 20,
|
2570
|
+
"start": 5754
|
2571
|
+
},
|
2572
|
+
{
|
2573
|
+
"length": 20,
|
2574
|
+
"start": 5988
|
2575
|
+
},
|
2576
|
+
{
|
2577
|
+
"length": 20,
|
2578
|
+
"start": 14239
|
2579
|
+
},
|
2580
|
+
{
|
2581
|
+
"length": 20,
|
2582
|
+
"start": 14485
|
2583
|
+
},
|
2584
|
+
{
|
2585
|
+
"length": 20,
|
2586
|
+
"start": 14677
|
2112
2587
|
},
|
2113
2588
|
{
|
2114
2589
|
"length": 20,
|
2115
|
-
"start":
|
2590
|
+
"start": 14938
|
2116
2591
|
},
|
2117
2592
|
{
|
2118
2593
|
"length": 20,
|
2119
|
-
"start":
|
2594
|
+
"start": 15194
|
2120
2595
|
},
|
2121
2596
|
{
|
2122
2597
|
"length": 20,
|
2123
|
-
"start":
|
2598
|
+
"start": 15391
|
2124
2599
|
}
|
2125
2600
|
]
|
2126
2601
|
},
|
@@ -2128,27 +2603,35 @@
|
|
2128
2603
|
"LibNftIdSet": [
|
2129
2604
|
{
|
2130
2605
|
"length": 20,
|
2131
|
-
"start":
|
2606
|
+
"start": 7034
|
2132
2607
|
},
|
2133
2608
|
{
|
2134
2609
|
"length": 20,
|
2135
|
-
"start":
|
2610
|
+
"start": 8176
|
2136
2611
|
},
|
2137
2612
|
{
|
2138
2613
|
"length": 20,
|
2139
|
-
"start":
|
2614
|
+
"start": 8367
|
2140
2615
|
},
|
2141
2616
|
{
|
2142
2617
|
"length": 20,
|
2143
|
-
"start":
|
2618
|
+
"start": 8590
|
2144
2619
|
},
|
2145
2620
|
{
|
2146
2621
|
"length": 20,
|
2147
|
-
"start":
|
2622
|
+
"start": 12395
|
2148
2623
|
},
|
2149
2624
|
{
|
2150
2625
|
"length": 20,
|
2151
|
-
"start":
|
2626
|
+
"start": 12729
|
2627
|
+
}
|
2628
|
+
]
|
2629
|
+
},
|
2630
|
+
"contracts/types/RiskId.sol": {
|
2631
|
+
"RiskIdLib": [
|
2632
|
+
{
|
2633
|
+
"length": 20,
|
2634
|
+
"start": 9844
|
2152
2635
|
}
|
2153
2636
|
]
|
2154
2637
|
},
|
@@ -2156,11 +2639,11 @@
|
|
2156
2639
|
"RoleIdLib": [
|
2157
2640
|
{
|
2158
2641
|
"length": 20,
|
2159
|
-
"start":
|
2642
|
+
"start": 9434
|
2160
2643
|
},
|
2161
2644
|
{
|
2162
2645
|
"length": 20,
|
2163
|
-
"start":
|
2646
|
+
"start": 9999
|
2164
2647
|
}
|
2165
2648
|
]
|
2166
2649
|
},
|
@@ -2168,7 +2651,7 @@
|
|
2168
2651
|
"TimestampLib": [
|
2169
2652
|
{
|
2170
2653
|
"length": 20,
|
2171
|
-
"start":
|
2654
|
+
"start": 7790
|
2172
2655
|
}
|
2173
2656
|
]
|
2174
2657
|
},
|
@@ -2176,11 +2659,11 @@
|
|
2176
2659
|
"UFixedMathLib": [
|
2177
2660
|
{
|
2178
2661
|
"length": 20,
|
2179
|
-
"start":
|
2662
|
+
"start": 3746
|
2180
2663
|
},
|
2181
2664
|
{
|
2182
2665
|
"length": 20,
|
2183
|
-
"start":
|
2666
|
+
"start": 9230
|
2184
2667
|
}
|
2185
2668
|
]
|
2186
2669
|
},
|
@@ -2188,7 +2671,11 @@
|
|
2188
2671
|
"VersionLib": [
|
2189
2672
|
{
|
2190
2673
|
"length": 20,
|
2191
|
-
"start":
|
2674
|
+
"start": 3889
|
2675
|
+
},
|
2676
|
+
{
|
2677
|
+
"length": 20,
|
2678
|
+
"start": 8849
|
2192
2679
|
}
|
2193
2680
|
]
|
2194
2681
|
}
|