@etherisc/gif-next 0.0.2-def25d4-556 → 0.0.2-e0ff180-567
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +65 -2
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +842 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +897 -238
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → components/IComponent.sol/IComponent.json} +295 -132
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +801 -36
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +864 -49
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +682 -9
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +844 -258
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +626 -234
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +91 -2
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +2107 -184
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +321 -168
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +979 -1206
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +593 -180
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +227 -221
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +574 -246
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +360 -91
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/{ComponentServiceBase.sol/ComponentServiceBase.json → ComponentService.sol/ComponentService.json} +273 -152
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +40 -10
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +36 -11
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +71 -45
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1039 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +673 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1231 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +721 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +817 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +641 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1370 -229
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +444 -75
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +622 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +659 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IClaimService.sol/IClaimService.json} +217 -208
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +804 -160
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +606 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +437 -154
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +90 -391
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1092 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +697 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +1237 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +661 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +840 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +653 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +15 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +227 -224
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +232 -219
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +18 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +241 -330
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +233 -312
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +295 -150
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +141 -53
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +40 -29
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +129 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +21 -34
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IB.sol/IB.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +18 -20
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +86 -172
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +2 -152
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +120 -27
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +294 -61
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +129 -51
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +191 -163
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +2 -2
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +2 -152
- 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/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +129 -51
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +6 -6
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +210 -214
- 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 +8 -190
- 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/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +161 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +40 -9
- 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 +17 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- 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/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +23 -4
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- 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/Seconds.sol/SecondsLib.dbg.json +4 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +25 -7
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +2 -2
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -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/Component.sol +253 -0
- package/contracts/components/Distribution.sol +197 -83
- package/contracts/components/IComponent.sol +76 -0
- package/contracts/components/IDistributionComponent.sol +43 -18
- package/contracts/components/IPoolComponent.sol +88 -37
- package/contracts/components/IProductComponent.sol +10 -5
- package/contracts/components/Pool.sol +225 -180
- package/contracts/components/Product.sol +130 -134
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/instance/BundleManager.sol +127 -0
- package/contracts/instance/Cloneable.sol +51 -0
- package/contracts/instance/IInstance.sol +77 -11
- package/contracts/instance/IInstanceService.sol +47 -5
- package/contracts/instance/Instance.sol +152 -268
- package/contracts/instance/InstanceAccessManager.sol +414 -175
- package/contracts/instance/InstanceReader.sol +36 -35
- package/contracts/instance/InstanceService.sol +429 -104
- package/contracts/instance/InstanceServiceManager.sol +11 -13
- package/contracts/instance/ObjectManager.sol +82 -0
- package/contracts/instance/base/ComponentService.sol +121 -0
- package/contracts/instance/base/KeyValueStore.sol +13 -5
- package/contracts/instance/base/Lifecycle.sol +11 -2
- package/contracts/instance/module/IAccess.sol +36 -20
- package/contracts/instance/module/IBundle.sol +8 -4
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +2 -0
- package/contracts/instance/module/IPolicy.sol +30 -3
- package/contracts/instance/module/ISetup.sol +9 -19
- package/contracts/instance/service/ApplicationService.sol +350 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +431 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/ClaimService.sol +151 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +378 -48
- package/contracts/instance/service/DistributionServiceManager.sol +11 -13
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +93 -0
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +87 -0
- package/contracts/instance/service/IPolicyService.sol +72 -0
- package/contracts/instance/service/IPoolService.sol +79 -17
- package/contracts/instance/service/IProductService.sol +6 -73
- package/contracts/instance/service/PolicyService.sol +362 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +303 -0
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +210 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +9 -1
- package/contracts/registry/IRegistry.sol +40 -33
- package/contracts/registry/IRegistryService.sol +48 -13
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +234 -256
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +114 -231
- package/contracts/registry/RegistryServiceManager.sol +21 -39
- package/contracts/registry/ReleaseManager.sol +324 -0
- package/contracts/registry/TokenRegistry.sol +22 -17
- package/contracts/shared/ERC165.sol +14 -12
- package/contracts/shared/INftOwnable.sol +11 -10
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +4 -6
- package/contracts/shared/IRegistryLinked.sol +12 -0
- package/contracts/shared/IService.sol +5 -4
- package/contracts/shared/IVersionable.sol +4 -47
- package/contracts/shared/NftOwnable.sol +67 -83
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +100 -25
- package/contracts/shared/Registerable.sol +16 -32
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +42 -24
- package/contracts/shared/TokenHandler.sol +11 -5
- package/contracts/shared/Versionable.sol +4 -92
- package/contracts/test/TestRegisterable.sol +1 -1
- package/contracts/test/TestService.sol +4 -3
- package/contracts/types/Amount.sol +60 -0
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +52 -0
- package/contracts/types/DistributorType.sol +2 -2
- package/contracts/types/Fee.sol +13 -5
- package/contracts/types/NftId.sol +8 -0
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/ObjectType.sol +10 -5
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/Referral.sol +4 -0
- package/contracts/types/RoleId.sol +26 -17
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +1 -0
- package/contracts/types/Timestamp.sol +13 -13
- package/contracts/types/UFixed.sol +1 -0
- package/contracts/types/Version.sol +1 -0
- package/package.json +3 -3
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -327
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
- package/contracts/components/BaseComponent.sol +0 -91
- package/contracts/components/IBaseComponent.sol +0 -25
- package/contracts/experiment/cloning/Cloner.sol +0 -47
- package/contracts/experiment/errors/Require.sol +0 -38
- package/contracts/experiment/errors/Revert.sol +0 -44
- package/contracts/experiment/inheritance/A.sol +0 -53
- package/contracts/experiment/inheritance/B.sol +0 -28
- package/contracts/experiment/inheritance/C.sol +0 -34
- package/contracts/experiment/inheritance/IA.sol +0 -13
- package/contracts/experiment/inheritance/IB.sol +0 -10
- package/contracts/experiment/inheritance/IC.sol +0 -12
- package/contracts/experiment/statemachine/Dummy.sol +0 -27
- package/contracts/experiment/statemachine/ISM.sol +0 -25
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/AccessManagedSimple.sol +0 -115
- package/contracts/instance/AccessManagerSimple.sol +0 -692
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/base/ComponentServiceBase.sol +0 -41
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/service/ComponentOwnerService.sol +0 -317
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/shared/RegisterableUpgradable.sol +0 -16
@@ -3,27 +3,6 @@
|
|
3
3
|
"contractName": "Instance",
|
4
4
|
"sourceName": "contracts/instance/Instance.sol",
|
5
5
|
"abi": [
|
6
|
-
{
|
7
|
-
"inputs": [
|
8
|
-
{
|
9
|
-
"internalType": "address",
|
10
|
-
"name": "accessManagerAddress",
|
11
|
-
"type": "address"
|
12
|
-
},
|
13
|
-
{
|
14
|
-
"internalType": "address",
|
15
|
-
"name": "registryAddress",
|
16
|
-
"type": "address"
|
17
|
-
},
|
18
|
-
{
|
19
|
-
"internalType": "NftId",
|
20
|
-
"name": "registryNftId",
|
21
|
-
"type": "uint96"
|
22
|
-
}
|
23
|
-
],
|
24
|
-
"stateMutability": "nonpayable",
|
25
|
-
"type": "constructor"
|
26
|
-
},
|
27
6
|
{
|
28
7
|
"inputs": [
|
29
8
|
{
|
@@ -62,44 +41,6 @@
|
|
62
41
|
"name": "AccessManagedUnauthorized",
|
63
42
|
"type": "error"
|
64
43
|
},
|
65
|
-
{
|
66
|
-
"inputs": [
|
67
|
-
{
|
68
|
-
"internalType": "address",
|
69
|
-
"name": "registry",
|
70
|
-
"type": "address"
|
71
|
-
},
|
72
|
-
{
|
73
|
-
"internalType": "NftId",
|
74
|
-
"name": "nftId",
|
75
|
-
"type": "uint96"
|
76
|
-
}
|
77
|
-
],
|
78
|
-
"name": "ErrorAlreadyLinked",
|
79
|
-
"type": "error"
|
80
|
-
},
|
81
|
-
{
|
82
|
-
"inputs": [
|
83
|
-
{
|
84
|
-
"internalType": "address",
|
85
|
-
"name": "contractAddress",
|
86
|
-
"type": "address"
|
87
|
-
}
|
88
|
-
],
|
89
|
-
"name": "ErrorContractNotRegistered",
|
90
|
-
"type": "error"
|
91
|
-
},
|
92
|
-
{
|
93
|
-
"inputs": [
|
94
|
-
{
|
95
|
-
"internalType": "RoleId",
|
96
|
-
"name": "roleId",
|
97
|
-
"type": "uint64"
|
98
|
-
}
|
99
|
-
],
|
100
|
-
"name": "ErrorGrantNonexstentRole",
|
101
|
-
"type": "error"
|
102
|
-
},
|
103
44
|
{
|
104
45
|
"inputs": [
|
105
46
|
{
|
@@ -127,172 +68,63 @@
|
|
127
68
|
"internalType": "NftId",
|
128
69
|
"name": "nftId",
|
129
70
|
"type": "uint96"
|
130
|
-
},
|
131
|
-
{
|
132
|
-
"internalType": "ObjectType",
|
133
|
-
"name": "objectType",
|
134
|
-
"type": "uint8"
|
135
|
-
}
|
136
|
-
],
|
137
|
-
"name": "ErrorNoLifecycle",
|
138
|
-
"type": "error"
|
139
|
-
},
|
140
|
-
{
|
141
|
-
"inputs": [
|
142
|
-
{
|
143
|
-
"internalType": "address",
|
144
|
-
"name": "account",
|
145
|
-
"type": "address"
|
146
|
-
}
|
147
|
-
],
|
148
|
-
"name": "ErrorNotOwner",
|
149
|
-
"type": "error"
|
150
|
-
},
|
151
|
-
{
|
152
|
-
"inputs": [
|
153
|
-
{
|
154
|
-
"internalType": "address",
|
155
|
-
"name": "registryAddress",
|
156
|
-
"type": "address"
|
157
71
|
}
|
158
72
|
],
|
159
|
-
"name": "
|
73
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
160
74
|
"type": "error"
|
161
75
|
},
|
162
76
|
{
|
163
77
|
"inputs": [
|
164
78
|
{
|
165
79
|
"internalType": "address",
|
166
|
-
"name": "
|
80
|
+
"name": "contractAddress",
|
167
81
|
"type": "address"
|
168
82
|
}
|
169
83
|
],
|
170
|
-
"name": "
|
84
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
171
85
|
"type": "error"
|
172
86
|
},
|
173
87
|
{
|
174
88
|
"inputs": [],
|
175
|
-
"name": "
|
89
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
176
90
|
"type": "error"
|
177
91
|
},
|
178
92
|
{
|
179
93
|
"inputs": [
|
180
94
|
{
|
181
95
|
"internalType": "address",
|
182
|
-
"name": "
|
96
|
+
"name": "account",
|
183
97
|
"type": "address"
|
184
98
|
}
|
185
99
|
],
|
186
|
-
"name": "
|
187
|
-
"type": "error"
|
188
|
-
},
|
189
|
-
{
|
190
|
-
"inputs": [],
|
191
|
-
"name": "ErrorRegistryNotInitialized",
|
192
|
-
"type": "error"
|
193
|
-
},
|
194
|
-
{
|
195
|
-
"inputs": [
|
196
|
-
{
|
197
|
-
"internalType": "RoleId",
|
198
|
-
"name": "roleId",
|
199
|
-
"type": "uint64"
|
200
|
-
}
|
201
|
-
],
|
202
|
-
"name": "ErrorRenounceNonexstentRole",
|
203
|
-
"type": "error"
|
204
|
-
},
|
205
|
-
{
|
206
|
-
"inputs": [
|
207
|
-
{
|
208
|
-
"internalType": "RoleId",
|
209
|
-
"name": "roleId",
|
210
|
-
"type": "uint64"
|
211
|
-
}
|
212
|
-
],
|
213
|
-
"name": "ErrorRevokeNonexstentRole",
|
214
|
-
"type": "error"
|
215
|
-
},
|
216
|
-
{
|
217
|
-
"inputs": [
|
218
|
-
{
|
219
|
-
"internalType": "RoleId",
|
220
|
-
"name": "roleId",
|
221
|
-
"type": "uint64"
|
222
|
-
}
|
223
|
-
],
|
224
|
-
"name": "ErrorRoleIdInvalid",
|
225
|
-
"type": "error"
|
226
|
-
},
|
227
|
-
{
|
228
|
-
"inputs": [
|
229
|
-
{
|
230
|
-
"internalType": "RoleId",
|
231
|
-
"name": "roleId",
|
232
|
-
"type": "uint64"
|
233
|
-
}
|
234
|
-
],
|
235
|
-
"name": "ErrorRoleIdNotActive",
|
236
|
-
"type": "error"
|
237
|
-
},
|
238
|
-
{
|
239
|
-
"inputs": [
|
240
|
-
{
|
241
|
-
"internalType": "RoleId",
|
242
|
-
"name": "roleId",
|
243
|
-
"type": "uint64"
|
244
|
-
}
|
245
|
-
],
|
246
|
-
"name": "ErrorRoleIdTooBig",
|
247
|
-
"type": "error"
|
248
|
-
},
|
249
|
-
{
|
250
|
-
"inputs": [
|
251
|
-
{
|
252
|
-
"internalType": "RoleId",
|
253
|
-
"name": "roleId",
|
254
|
-
"type": "uint64"
|
255
|
-
}
|
256
|
-
],
|
257
|
-
"name": "ErrorRoleIdTooSmall",
|
258
|
-
"type": "error"
|
259
|
-
},
|
260
|
-
{
|
261
|
-
"inputs": [
|
262
|
-
{
|
263
|
-
"internalType": "RoleId",
|
264
|
-
"name": "roleId",
|
265
|
-
"type": "uint64"
|
266
|
-
}
|
267
|
-
],
|
268
|
-
"name": "ErrorRoleNameEmpty",
|
100
|
+
"name": "ErrorNftOwnableNotOwner",
|
269
101
|
"type": "error"
|
270
102
|
},
|
271
103
|
{
|
272
104
|
"inputs": [
|
273
105
|
{
|
274
|
-
"internalType": "
|
275
|
-
"name": "
|
276
|
-
"type": "
|
106
|
+
"internalType": "NftId",
|
107
|
+
"name": "nftId",
|
108
|
+
"type": "uint96"
|
277
109
|
},
|
278
110
|
{
|
279
|
-
"internalType": "
|
280
|
-
"name": "
|
281
|
-
"type": "
|
111
|
+
"internalType": "ObjectType",
|
112
|
+
"name": "objectType",
|
113
|
+
"type": "uint8"
|
282
114
|
}
|
283
115
|
],
|
284
|
-
"name": "
|
116
|
+
"name": "ErrorNoLifecycle",
|
285
117
|
"type": "error"
|
286
118
|
},
|
287
119
|
{
|
288
120
|
"inputs": [
|
289
121
|
{
|
290
122
|
"internalType": "address",
|
291
|
-
"name": "
|
123
|
+
"name": "registryAddress",
|
292
124
|
"type": "address"
|
293
125
|
}
|
294
126
|
],
|
295
|
-
"name": "
|
127
|
+
"name": "ErrorNotRegistry",
|
296
128
|
"type": "error"
|
297
129
|
},
|
298
130
|
{
|
@@ -300,27 +132,11 @@
|
|
300
132
|
"name": "InvalidInitialization",
|
301
133
|
"type": "error"
|
302
134
|
},
|
303
|
-
{
|
304
|
-
"inputs": [],
|
305
|
-
"name": "InvalidShortString",
|
306
|
-
"type": "error"
|
307
|
-
},
|
308
135
|
{
|
309
136
|
"inputs": [],
|
310
137
|
"name": "NotInitializing",
|
311
138
|
"type": "error"
|
312
139
|
},
|
313
|
-
{
|
314
|
-
"inputs": [
|
315
|
-
{
|
316
|
-
"internalType": "string",
|
317
|
-
"name": "str",
|
318
|
-
"type": "string"
|
319
|
-
}
|
320
|
-
],
|
321
|
-
"name": "StringTooLong",
|
322
|
-
"type": "error"
|
323
|
-
},
|
324
140
|
{
|
325
141
|
"anonymous": false,
|
326
142
|
"inputs": [
|
@@ -515,6 +331,32 @@
|
|
515
331
|
"stateMutability": "view",
|
516
332
|
"type": "function"
|
517
333
|
},
|
334
|
+
{
|
335
|
+
"inputs": [],
|
336
|
+
"name": "GIF_MAJOR_VERSION",
|
337
|
+
"outputs": [
|
338
|
+
{
|
339
|
+
"internalType": "uint256",
|
340
|
+
"name": "",
|
341
|
+
"type": "uint256"
|
342
|
+
}
|
343
|
+
],
|
344
|
+
"stateMutability": "view",
|
345
|
+
"type": "function"
|
346
|
+
},
|
347
|
+
{
|
348
|
+
"inputs": [],
|
349
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
350
|
+
"outputs": [
|
351
|
+
{
|
352
|
+
"internalType": "bytes32",
|
353
|
+
"name": "",
|
354
|
+
"type": "bytes32"
|
355
|
+
}
|
356
|
+
],
|
357
|
+
"stateMutability": "view",
|
358
|
+
"type": "function"
|
359
|
+
},
|
518
360
|
{
|
519
361
|
"inputs": [],
|
520
362
|
"name": "PUBLIC_ROLE",
|
@@ -581,64 +423,169 @@
|
|
581
423
|
"inputs": [
|
582
424
|
{
|
583
425
|
"internalType": "NftId",
|
584
|
-
"name": "
|
426
|
+
"name": "applicationNftId",
|
585
427
|
"type": "uint96"
|
586
428
|
},
|
587
429
|
{
|
588
430
|
"components": [
|
589
431
|
{
|
590
432
|
"internalType": "NftId",
|
591
|
-
"name": "
|
433
|
+
"name": "productNftId",
|
592
434
|
"type": "uint96"
|
593
435
|
},
|
594
436
|
{
|
595
|
-
"
|
596
|
-
|
597
|
-
|
598
|
-
"name": "fractionalFee",
|
599
|
-
"type": "uint256"
|
600
|
-
},
|
601
|
-
{
|
602
|
-
"internalType": "uint256",
|
603
|
-
"name": "fixedFee",
|
604
|
-
"type": "uint256"
|
605
|
-
}
|
606
|
-
],
|
607
|
-
"internalType": "struct Fee",
|
608
|
-
"name": "fee",
|
609
|
-
"type": "tuple"
|
437
|
+
"internalType": "NftId",
|
438
|
+
"name": "bundleNftId",
|
439
|
+
"type": "uint96"
|
610
440
|
},
|
611
441
|
{
|
612
|
-
"internalType": "
|
613
|
-
"name": "
|
614
|
-
"type": "
|
442
|
+
"internalType": "ReferralId",
|
443
|
+
"name": "referralId",
|
444
|
+
"type": "bytes8"
|
445
|
+
},
|
446
|
+
{
|
447
|
+
"internalType": "RiskId",
|
448
|
+
"name": "riskId",
|
449
|
+
"type": "bytes8"
|
615
450
|
},
|
616
451
|
{
|
617
452
|
"internalType": "uint256",
|
618
|
-
"name": "
|
453
|
+
"name": "sumInsuredAmount",
|
619
454
|
"type": "uint256"
|
620
455
|
},
|
621
456
|
{
|
622
457
|
"internalType": "uint256",
|
623
|
-
"name": "
|
458
|
+
"name": "premiumAmount",
|
624
459
|
"type": "uint256"
|
625
460
|
},
|
626
461
|
{
|
627
462
|
"internalType": "uint256",
|
628
|
-
"name": "
|
463
|
+
"name": "premiumPaidAmount",
|
629
464
|
"type": "uint256"
|
630
465
|
},
|
631
466
|
{
|
632
|
-
"internalType": "
|
633
|
-
"name": "
|
467
|
+
"internalType": "Seconds",
|
468
|
+
"name": "lifetime",
|
634
469
|
"type": "uint40"
|
635
470
|
},
|
471
|
+
{
|
472
|
+
"internalType": "bytes",
|
473
|
+
"name": "applicationData",
|
474
|
+
"type": "bytes"
|
475
|
+
},
|
476
|
+
{
|
477
|
+
"internalType": "bytes",
|
478
|
+
"name": "policyData",
|
479
|
+
"type": "bytes"
|
480
|
+
},
|
481
|
+
{
|
482
|
+
"internalType": "uint16",
|
483
|
+
"name": "claimsCount",
|
484
|
+
"type": "uint16"
|
485
|
+
},
|
486
|
+
{
|
487
|
+
"internalType": "uint16",
|
488
|
+
"name": "openClaimsCount",
|
489
|
+
"type": "uint16"
|
490
|
+
},
|
491
|
+
{
|
492
|
+
"internalType": "uint256",
|
493
|
+
"name": "payoutAmount",
|
494
|
+
"type": "uint256"
|
495
|
+
},
|
636
496
|
{
|
637
497
|
"internalType": "Timestamp",
|
638
|
-
"name": "
|
498
|
+
"name": "activatedAt",
|
639
499
|
"type": "uint40"
|
640
|
-
}
|
641
|
-
|
500
|
+
},
|
501
|
+
{
|
502
|
+
"internalType": "Timestamp",
|
503
|
+
"name": "expiredAt",
|
504
|
+
"type": "uint40"
|
505
|
+
},
|
506
|
+
{
|
507
|
+
"internalType": "Timestamp",
|
508
|
+
"name": "closedAt",
|
509
|
+
"type": "uint40"
|
510
|
+
}
|
511
|
+
],
|
512
|
+
"internalType": "struct IPolicy.PolicyInfo",
|
513
|
+
"name": "policy",
|
514
|
+
"type": "tuple"
|
515
|
+
}
|
516
|
+
],
|
517
|
+
"name": "createApplication",
|
518
|
+
"outputs": [],
|
519
|
+
"stateMutability": "nonpayable",
|
520
|
+
"type": "function"
|
521
|
+
},
|
522
|
+
{
|
523
|
+
"inputs": [
|
524
|
+
{
|
525
|
+
"internalType": "NftId",
|
526
|
+
"name": "bundleNftId",
|
527
|
+
"type": "uint96"
|
528
|
+
},
|
529
|
+
{
|
530
|
+
"components": [
|
531
|
+
{
|
532
|
+
"internalType": "NftId",
|
533
|
+
"name": "poolNftId",
|
534
|
+
"type": "uint96"
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"components": [
|
538
|
+
{
|
539
|
+
"internalType": "UFixed",
|
540
|
+
"name": "fractionalFee",
|
541
|
+
"type": "uint256"
|
542
|
+
},
|
543
|
+
{
|
544
|
+
"internalType": "uint256",
|
545
|
+
"name": "fixedFee",
|
546
|
+
"type": "uint256"
|
547
|
+
}
|
548
|
+
],
|
549
|
+
"internalType": "struct Fee",
|
550
|
+
"name": "fee",
|
551
|
+
"type": "tuple"
|
552
|
+
},
|
553
|
+
{
|
554
|
+
"internalType": "bytes",
|
555
|
+
"name": "filter",
|
556
|
+
"type": "bytes"
|
557
|
+
},
|
558
|
+
{
|
559
|
+
"internalType": "Amount",
|
560
|
+
"name": "capitalAmount",
|
561
|
+
"type": "uint96"
|
562
|
+
},
|
563
|
+
{
|
564
|
+
"internalType": "Amount",
|
565
|
+
"name": "lockedAmount",
|
566
|
+
"type": "uint96"
|
567
|
+
},
|
568
|
+
{
|
569
|
+
"internalType": "Amount",
|
570
|
+
"name": "feeAmount",
|
571
|
+
"type": "uint96"
|
572
|
+
},
|
573
|
+
{
|
574
|
+
"internalType": "Seconds",
|
575
|
+
"name": "lifetime",
|
576
|
+
"type": "uint40"
|
577
|
+
},
|
578
|
+
{
|
579
|
+
"internalType": "Timestamp",
|
580
|
+
"name": "expiredAt",
|
581
|
+
"type": "uint40"
|
582
|
+
},
|
583
|
+
{
|
584
|
+
"internalType": "Timestamp",
|
585
|
+
"name": "closedAt",
|
586
|
+
"type": "uint40"
|
587
|
+
}
|
588
|
+
],
|
642
589
|
"internalType": "struct IBundle.BundleInfo",
|
643
590
|
"name": "bundle",
|
644
591
|
"type": "tuple"
|
@@ -657,9 +604,9 @@
|
|
657
604
|
"type": "uint96"
|
658
605
|
},
|
659
606
|
{
|
660
|
-
"internalType": "
|
607
|
+
"internalType": "ClaimId",
|
661
608
|
"name": "claimId",
|
662
|
-
"type": "
|
609
|
+
"type": "uint16"
|
663
610
|
},
|
664
611
|
{
|
665
612
|
"components": [
|
@@ -694,24 +641,6 @@
|
|
694
641
|
"stateMutability": "nonpayable",
|
695
642
|
"type": "function"
|
696
643
|
},
|
697
|
-
{
|
698
|
-
"inputs": [
|
699
|
-
{
|
700
|
-
"internalType": "RoleId",
|
701
|
-
"name": "roleId",
|
702
|
-
"type": "uint64"
|
703
|
-
},
|
704
|
-
{
|
705
|
-
"internalType": "string",
|
706
|
-
"name": "name",
|
707
|
-
"type": "string"
|
708
|
-
}
|
709
|
-
],
|
710
|
-
"name": "createCustomRole",
|
711
|
-
"outputs": [],
|
712
|
-
"stateMutability": "nonpayable",
|
713
|
-
"type": "function"
|
714
|
-
},
|
715
644
|
{
|
716
645
|
"inputs": [
|
717
646
|
{
|
@@ -745,18 +674,35 @@
|
|
745
674
|
}
|
746
675
|
],
|
747
676
|
"internalType": "struct Fee",
|
748
|
-
"name": "
|
677
|
+
"name": "minDistributionOwnerFee",
|
749
678
|
"type": "tuple"
|
750
679
|
},
|
751
680
|
{
|
752
|
-
"
|
753
|
-
|
754
|
-
|
681
|
+
"components": [
|
682
|
+
{
|
683
|
+
"internalType": "UFixed",
|
684
|
+
"name": "fractionalFee",
|
685
|
+
"type": "uint256"
|
686
|
+
},
|
687
|
+
{
|
688
|
+
"internalType": "uint256",
|
689
|
+
"name": "fixedFee",
|
690
|
+
"type": "uint256"
|
691
|
+
}
|
692
|
+
],
|
693
|
+
"internalType": "struct Fee",
|
694
|
+
"name": "distributionFee",
|
695
|
+
"type": "tuple"
|
755
696
|
},
|
756
697
|
{
|
757
698
|
"internalType": "address",
|
758
699
|
"name": "wallet",
|
759
700
|
"type": "address"
|
701
|
+
},
|
702
|
+
{
|
703
|
+
"internalType": "uint256",
|
704
|
+
"name": "sumDistributionOwnerFees",
|
705
|
+
"type": "uint256"
|
760
706
|
}
|
761
707
|
],
|
762
708
|
"internalType": "struct ISetup.DistributionSetupInfo",
|
@@ -773,25 +719,20 @@
|
|
773
719
|
"inputs": [
|
774
720
|
{
|
775
721
|
"internalType": "NftId",
|
776
|
-
"name": "
|
722
|
+
"name": "nftId",
|
777
723
|
"type": "uint96"
|
778
724
|
},
|
779
|
-
{
|
780
|
-
"internalType": "NumberId",
|
781
|
-
"name": "payoutId",
|
782
|
-
"type": "uint32"
|
783
|
-
},
|
784
725
|
{
|
785
726
|
"components": [
|
786
727
|
{
|
787
|
-
"internalType": "
|
788
|
-
"name": "
|
789
|
-
"type": "
|
728
|
+
"internalType": "DistributorType",
|
729
|
+
"name": "distributorType",
|
730
|
+
"type": "bytes8"
|
790
731
|
},
|
791
732
|
{
|
792
|
-
"internalType": "
|
793
|
-
"name": "
|
794
|
-
"type": "
|
733
|
+
"internalType": "bool",
|
734
|
+
"name": "active",
|
735
|
+
"type": "bool"
|
795
736
|
},
|
796
737
|
{
|
797
738
|
"internalType": "bytes",
|
@@ -799,13 +740,18 @@
|
|
799
740
|
"type": "bytes"
|
800
741
|
},
|
801
742
|
{
|
802
|
-
"internalType": "
|
803
|
-
"name": "
|
804
|
-
"type": "
|
743
|
+
"internalType": "uint256",
|
744
|
+
"name": "sumCommisions",
|
745
|
+
"type": "uint256"
|
746
|
+
},
|
747
|
+
{
|
748
|
+
"internalType": "uint256",
|
749
|
+
"name": "numPoliciesSold",
|
750
|
+
"type": "uint256"
|
805
751
|
}
|
806
752
|
],
|
807
|
-
"internalType": "struct
|
808
|
-
"name": "
|
753
|
+
"internalType": "struct IDistribution.DistributorInfo",
|
754
|
+
"name": "info",
|
809
755
|
"type": "tuple"
|
810
756
|
}
|
811
757
|
],
|
@@ -817,40 +763,60 @@
|
|
817
763
|
{
|
818
764
|
"inputs": [
|
819
765
|
{
|
820
|
-
"internalType": "
|
821
|
-
"name": "
|
822
|
-
"type": "
|
823
|
-
},
|
824
|
-
{
|
825
|
-
"internalType": "NumberId",
|
826
|
-
"name": "payoutId",
|
827
|
-
"type": "uint32"
|
766
|
+
"internalType": "Key32",
|
767
|
+
"name": "distributorKey",
|
768
|
+
"type": "bytes32"
|
828
769
|
},
|
829
770
|
{
|
830
771
|
"components": [
|
831
772
|
{
|
832
|
-
"internalType": "
|
833
|
-
"name": "
|
834
|
-
"type": "
|
773
|
+
"internalType": "string",
|
774
|
+
"name": "name",
|
775
|
+
"type": "string"
|
835
776
|
},
|
836
777
|
{
|
837
|
-
"internalType": "
|
838
|
-
"name": "
|
778
|
+
"internalType": "UFixed",
|
779
|
+
"name": "minDiscountPercentage",
|
839
780
|
"type": "uint256"
|
840
781
|
},
|
782
|
+
{
|
783
|
+
"internalType": "UFixed",
|
784
|
+
"name": "maxDiscountPercentage",
|
785
|
+
"type": "uint256"
|
786
|
+
},
|
787
|
+
{
|
788
|
+
"internalType": "UFixed",
|
789
|
+
"name": "commissionPercentage",
|
790
|
+
"type": "uint256"
|
791
|
+
},
|
792
|
+
{
|
793
|
+
"internalType": "uint32",
|
794
|
+
"name": "maxReferralCount",
|
795
|
+
"type": "uint32"
|
796
|
+
},
|
797
|
+
{
|
798
|
+
"internalType": "uint32",
|
799
|
+
"name": "maxReferralLifetime",
|
800
|
+
"type": "uint32"
|
801
|
+
},
|
802
|
+
{
|
803
|
+
"internalType": "bool",
|
804
|
+
"name": "allowSelfReferrals",
|
805
|
+
"type": "bool"
|
806
|
+
},
|
807
|
+
{
|
808
|
+
"internalType": "bool",
|
809
|
+
"name": "allowRenewals",
|
810
|
+
"type": "bool"
|
811
|
+
},
|
841
812
|
{
|
842
813
|
"internalType": "bytes",
|
843
814
|
"name": "data",
|
844
815
|
"type": "bytes"
|
845
|
-
},
|
846
|
-
{
|
847
|
-
"internalType": "Timestamp",
|
848
|
-
"name": "paidAt",
|
849
|
-
"type": "uint40"
|
850
816
|
}
|
851
817
|
],
|
852
|
-
"internalType": "struct
|
853
|
-
"name": "
|
818
|
+
"internalType": "struct IDistribution.DistributorTypeInfo",
|
819
|
+
"name": "info",
|
854
820
|
"type": "tuple"
|
855
821
|
}
|
856
822
|
],
|
@@ -874,9 +840,9 @@
|
|
874
840
|
{
|
875
841
|
"components": [
|
876
842
|
{
|
877
|
-
"internalType": "
|
843
|
+
"internalType": "ClaimId",
|
878
844
|
"name": "claimId",
|
879
|
-
"type": "
|
845
|
+
"type": "uint16"
|
880
846
|
},
|
881
847
|
{
|
882
848
|
"internalType": "uint256",
|
@@ -908,115 +874,20 @@
|
|
908
874
|
"inputs": [
|
909
875
|
{
|
910
876
|
"internalType": "NftId",
|
911
|
-
"name": "
|
877
|
+
"name": "poolNftId",
|
912
878
|
"type": "uint96"
|
913
879
|
},
|
914
880
|
{
|
915
881
|
"components": [
|
916
882
|
{
|
917
|
-
"internalType": "
|
918
|
-
"name": "
|
919
|
-
"type": "
|
920
|
-
},
|
921
|
-
{
|
922
|
-
"internalType": "NftId",
|
923
|
-
"name": "bundleNftId",
|
924
|
-
"type": "uint96"
|
925
|
-
},
|
926
|
-
{
|
927
|
-
"internalType": "ReferralId",
|
928
|
-
"name": "referralId",
|
929
|
-
"type": "bytes8"
|
930
|
-
},
|
931
|
-
{
|
932
|
-
"internalType": "RiskId",
|
933
|
-
"name": "riskId",
|
934
|
-
"type": "bytes8"
|
935
|
-
},
|
936
|
-
{
|
937
|
-
"internalType": "uint256",
|
938
|
-
"name": "sumInsuredAmount",
|
939
|
-
"type": "uint256"
|
940
|
-
},
|
941
|
-
{
|
942
|
-
"internalType": "uint256",
|
943
|
-
"name": "premiumAmount",
|
944
|
-
"type": "uint256"
|
945
|
-
},
|
946
|
-
{
|
947
|
-
"internalType": "uint256",
|
948
|
-
"name": "premiumPaidAmount",
|
949
|
-
"type": "uint256"
|
950
|
-
},
|
951
|
-
{
|
952
|
-
"internalType": "uint256",
|
953
|
-
"name": "lifetime",
|
954
|
-
"type": "uint256"
|
955
|
-
},
|
956
|
-
{
|
957
|
-
"internalType": "bytes",
|
958
|
-
"name": "applicationData",
|
959
|
-
"type": "bytes"
|
960
|
-
},
|
961
|
-
{
|
962
|
-
"internalType": "bytes",
|
963
|
-
"name": "policyData",
|
964
|
-
"type": "bytes"
|
965
|
-
},
|
966
|
-
{
|
967
|
-
"internalType": "uint16",
|
968
|
-
"name": "claimsCount",
|
969
|
-
"type": "uint16"
|
970
|
-
},
|
971
|
-
{
|
972
|
-
"internalType": "uint16",
|
973
|
-
"name": "openClaimsCount",
|
974
|
-
"type": "uint16"
|
975
|
-
},
|
976
|
-
{
|
977
|
-
"internalType": "uint256",
|
978
|
-
"name": "payoutAmount",
|
979
|
-
"type": "uint256"
|
980
|
-
},
|
981
|
-
{
|
982
|
-
"internalType": "Timestamp",
|
983
|
-
"name": "activatedAt",
|
984
|
-
"type": "uint40"
|
985
|
-
},
|
986
|
-
{
|
987
|
-
"internalType": "Timestamp",
|
988
|
-
"name": "expiredAt",
|
989
|
-
"type": "uint40"
|
883
|
+
"internalType": "string",
|
884
|
+
"name": "name",
|
885
|
+
"type": "string"
|
990
886
|
},
|
991
887
|
{
|
992
|
-
"internalType": "
|
993
|
-
"name": "
|
994
|
-
"type": "
|
995
|
-
}
|
996
|
-
],
|
997
|
-
"internalType": "struct IPolicy.PolicyInfo",
|
998
|
-
"name": "policy",
|
999
|
-
"type": "tuple"
|
1000
|
-
}
|
1001
|
-
],
|
1002
|
-
"name": "createPolicy",
|
1003
|
-
"outputs": [],
|
1004
|
-
"stateMutability": "nonpayable",
|
1005
|
-
"type": "function"
|
1006
|
-
},
|
1007
|
-
{
|
1008
|
-
"inputs": [
|
1009
|
-
{
|
1010
|
-
"internalType": "NftId",
|
1011
|
-
"name": "distributionNftId",
|
1012
|
-
"type": "uint96"
|
1013
|
-
},
|
1014
|
-
{
|
1015
|
-
"components": [
|
1016
|
-
{
|
1017
|
-
"internalType": "NftId",
|
1018
|
-
"name": "productNftId",
|
1019
|
-
"type": "uint96"
|
888
|
+
"internalType": "contract IERC20Metadata",
|
889
|
+
"name": "token",
|
890
|
+
"type": "address"
|
1020
891
|
},
|
1021
892
|
{
|
1022
893
|
"internalType": "contract TokenHandler",
|
@@ -1024,74 +895,28 @@
|
|
1024
895
|
"type": "address"
|
1025
896
|
},
|
1026
897
|
{
|
1027
|
-
"internalType": "
|
1028
|
-
"name": "
|
1029
|
-
"type": "
|
1030
|
-
},
|
1031
|
-
{
|
1032
|
-
"components": [
|
1033
|
-
{
|
1034
|
-
"internalType": "UFixed",
|
1035
|
-
"name": "fractionalFee",
|
1036
|
-
"type": "uint256"
|
1037
|
-
},
|
1038
|
-
{
|
1039
|
-
"internalType": "uint256",
|
1040
|
-
"name": "fixedFee",
|
1041
|
-
"type": "uint256"
|
1042
|
-
}
|
1043
|
-
],
|
1044
|
-
"internalType": "struct Fee",
|
1045
|
-
"name": "poolFee",
|
1046
|
-
"type": "tuple"
|
1047
|
-
},
|
1048
|
-
{
|
1049
|
-
"components": [
|
1050
|
-
{
|
1051
|
-
"internalType": "UFixed",
|
1052
|
-
"name": "fractionalFee",
|
1053
|
-
"type": "uint256"
|
1054
|
-
},
|
1055
|
-
{
|
1056
|
-
"internalType": "uint256",
|
1057
|
-
"name": "fixedFee",
|
1058
|
-
"type": "uint256"
|
1059
|
-
}
|
1060
|
-
],
|
1061
|
-
"internalType": "struct Fee",
|
1062
|
-
"name": "stakingFee",
|
1063
|
-
"type": "tuple"
|
898
|
+
"internalType": "address",
|
899
|
+
"name": "wallet",
|
900
|
+
"type": "address"
|
1064
901
|
},
|
1065
902
|
{
|
1066
|
-
"
|
1067
|
-
|
1068
|
-
|
1069
|
-
"name": "fractionalFee",
|
1070
|
-
"type": "uint256"
|
1071
|
-
},
|
1072
|
-
{
|
1073
|
-
"internalType": "uint256",
|
1074
|
-
"name": "fixedFee",
|
1075
|
-
"type": "uint256"
|
1076
|
-
}
|
1077
|
-
],
|
1078
|
-
"internalType": "struct Fee",
|
1079
|
-
"name": "performanceFee",
|
1080
|
-
"type": "tuple"
|
903
|
+
"internalType": "Amount",
|
904
|
+
"name": "balanceAmount",
|
905
|
+
"type": "uint96"
|
1081
906
|
},
|
1082
907
|
{
|
1083
|
-
"internalType": "
|
1084
|
-
"name": "
|
1085
|
-
"type": "
|
908
|
+
"internalType": "Amount",
|
909
|
+
"name": "feeAmount",
|
910
|
+
"type": "uint96"
|
1086
911
|
},
|
1087
912
|
{
|
1088
|
-
"internalType": "
|
1089
|
-
"name": "
|
1090
|
-
"type": "
|
913
|
+
"internalType": "bytes",
|
914
|
+
"name": "data",
|
915
|
+
"type": "bytes"
|
1091
916
|
}
|
1092
917
|
],
|
1093
|
-
"internalType": "struct
|
1094
|
-
"name": "
|
918
|
+
"internalType": "struct IComponents.ComponentInfo",
|
919
|
+
"name": "info",
|
1095
920
|
"type": "tuple"
|
1096
921
|
}
|
1097
922
|
],
|
@@ -1125,77 +950,9 @@
|
|
1125
950
|
"type": "uint96"
|
1126
951
|
},
|
1127
952
|
{
|
1128
|
-
"internalType": "NftId",
|
1129
|
-
"name": "poolNftId",
|
1130
|
-
"type": "uint96"
|
1131
|
-
},
|
1132
|
-
{
|
1133
|
-
"components": [
|
1134
|
-
{
|
1135
|
-
"internalType": "UFixed",
|
1136
|
-
"name": "fractionalFee",
|
1137
|
-
"type": "uint256"
|
1138
|
-
},
|
1139
|
-
{
|
1140
|
-
"internalType": "uint256",
|
1141
|
-
"name": "fixedFee",
|
1142
|
-
"type": "uint256"
|
1143
|
-
}
|
1144
|
-
],
|
1145
|
-
"internalType": "struct Fee",
|
1146
|
-
"name": "distributionFee",
|
1147
|
-
"type": "tuple"
|
1148
|
-
},
|
1149
|
-
{
|
1150
|
-
"components": [
|
1151
|
-
{
|
1152
|
-
"internalType": "UFixed",
|
1153
|
-
"name": "fractionalFee",
|
1154
|
-
"type": "uint256"
|
1155
|
-
},
|
1156
|
-
{
|
1157
|
-
"internalType": "uint256",
|
1158
|
-
"name": "fixedFee",
|
1159
|
-
"type": "uint256"
|
1160
|
-
}
|
1161
|
-
],
|
1162
|
-
"internalType": "struct Fee",
|
1163
|
-
"name": "productFee",
|
1164
|
-
"type": "tuple"
|
1165
|
-
},
|
1166
|
-
{
|
1167
|
-
"components": [
|
1168
|
-
{
|
1169
|
-
"internalType": "UFixed",
|
1170
|
-
"name": "fractionalFee",
|
1171
|
-
"type": "uint256"
|
1172
|
-
},
|
1173
|
-
{
|
1174
|
-
"internalType": "uint256",
|
1175
|
-
"name": "fixedFee",
|
1176
|
-
"type": "uint256"
|
1177
|
-
}
|
1178
|
-
],
|
1179
|
-
"internalType": "struct Fee",
|
1180
|
-
"name": "processingFee",
|
1181
|
-
"type": "tuple"
|
1182
|
-
},
|
1183
|
-
{
|
1184
|
-
"components": [
|
1185
|
-
{
|
1186
|
-
"internalType": "UFixed",
|
1187
|
-
"name": "fractionalFee",
|
1188
|
-
"type": "uint256"
|
1189
|
-
},
|
1190
|
-
{
|
1191
|
-
"internalType": "uint256",
|
1192
|
-
"name": "fixedFee",
|
1193
|
-
"type": "uint256"
|
1194
|
-
}
|
1195
|
-
],
|
1196
|
-
"internalType": "struct Fee",
|
1197
|
-
"name": "poolFee",
|
1198
|
-
"type": "tuple"
|
953
|
+
"internalType": "NftId",
|
954
|
+
"name": "poolNftId",
|
955
|
+
"type": "uint96"
|
1199
956
|
},
|
1200
957
|
{
|
1201
958
|
"components": [
|
@@ -1211,7 +968,7 @@
|
|
1211
968
|
}
|
1212
969
|
],
|
1213
970
|
"internalType": "struct Fee",
|
1214
|
-
"name": "
|
971
|
+
"name": "productFee",
|
1215
972
|
"type": "tuple"
|
1216
973
|
},
|
1217
974
|
{
|
@@ -1228,8 +985,18 @@
|
|
1228
985
|
}
|
1229
986
|
],
|
1230
987
|
"internalType": "struct Fee",
|
1231
|
-
"name": "
|
988
|
+
"name": "processingFee",
|
1232
989
|
"type": "tuple"
|
990
|
+
},
|
991
|
+
{
|
992
|
+
"internalType": "bool",
|
993
|
+
"name": "isIntercepting",
|
994
|
+
"type": "bool"
|
995
|
+
},
|
996
|
+
{
|
997
|
+
"internalType": "address",
|
998
|
+
"name": "wallet",
|
999
|
+
"type": "address"
|
1233
1000
|
}
|
1234
1001
|
],
|
1235
1002
|
"internalType": "struct ISetup.ProductSetupInfo",
|
@@ -1245,40 +1012,50 @@
|
|
1245
1012
|
{
|
1246
1013
|
"inputs": [
|
1247
1014
|
{
|
1248
|
-
"internalType": "
|
1249
|
-
"name": "
|
1250
|
-
"type": "
|
1251
|
-
},
|
1252
|
-
{
|
1253
|
-
"internalType": "NumberId",
|
1254
|
-
"name": "payoutId",
|
1255
|
-
"type": "uint32"
|
1015
|
+
"internalType": "Key32",
|
1016
|
+
"name": "referralKey",
|
1017
|
+
"type": "bytes32"
|
1256
1018
|
},
|
1257
1019
|
{
|
1258
1020
|
"components": [
|
1259
1021
|
{
|
1260
|
-
"internalType": "
|
1261
|
-
"name": "
|
1262
|
-
"type": "
|
1022
|
+
"internalType": "NftId",
|
1023
|
+
"name": "distributorNftId",
|
1024
|
+
"type": "uint96"
|
1263
1025
|
},
|
1264
1026
|
{
|
1265
|
-
"internalType": "
|
1266
|
-
"name": "
|
1027
|
+
"internalType": "string",
|
1028
|
+
"name": "referralCode",
|
1029
|
+
"type": "string"
|
1030
|
+
},
|
1031
|
+
{
|
1032
|
+
"internalType": "UFixed",
|
1033
|
+
"name": "discountPercentage",
|
1267
1034
|
"type": "uint256"
|
1268
1035
|
},
|
1269
1036
|
{
|
1270
|
-
"internalType": "
|
1271
|
-
"name": "
|
1272
|
-
"type": "
|
1037
|
+
"internalType": "uint32",
|
1038
|
+
"name": "maxReferrals",
|
1039
|
+
"type": "uint32"
|
1040
|
+
},
|
1041
|
+
{
|
1042
|
+
"internalType": "uint32",
|
1043
|
+
"name": "usedReferrals",
|
1044
|
+
"type": "uint32"
|
1273
1045
|
},
|
1274
1046
|
{
|
1275
1047
|
"internalType": "Timestamp",
|
1276
|
-
"name": "
|
1048
|
+
"name": "expiryAt",
|
1277
1049
|
"type": "uint40"
|
1050
|
+
},
|
1051
|
+
{
|
1052
|
+
"internalType": "bytes",
|
1053
|
+
"name": "data",
|
1054
|
+
"type": "bytes"
|
1278
1055
|
}
|
1279
1056
|
],
|
1280
|
-
"internalType": "struct
|
1281
|
-
"name": "
|
1057
|
+
"internalType": "struct IDistribution.ReferralInfo",
|
1058
|
+
"name": "referralInfo",
|
1282
1059
|
"type": "tuple"
|
1283
1060
|
}
|
1284
1061
|
],
|
@@ -1317,54 +1094,6 @@
|
|
1317
1094
|
"stateMutability": "nonpayable",
|
1318
1095
|
"type": "function"
|
1319
1096
|
},
|
1320
|
-
{
|
1321
|
-
"inputs": [
|
1322
|
-
{
|
1323
|
-
"internalType": "RoleId",
|
1324
|
-
"name": "roleId",
|
1325
|
-
"type": "uint64"
|
1326
|
-
},
|
1327
|
-
{
|
1328
|
-
"internalType": "string",
|
1329
|
-
"name": "name",
|
1330
|
-
"type": "string"
|
1331
|
-
}
|
1332
|
-
],
|
1333
|
-
"name": "createStandardRole",
|
1334
|
-
"outputs": [],
|
1335
|
-
"stateMutability": "nonpayable",
|
1336
|
-
"type": "function"
|
1337
|
-
},
|
1338
|
-
{
|
1339
|
-
"inputs": [
|
1340
|
-
{
|
1341
|
-
"internalType": "address",
|
1342
|
-
"name": "target",
|
1343
|
-
"type": "address"
|
1344
|
-
},
|
1345
|
-
{
|
1346
|
-
"components": [
|
1347
|
-
{
|
1348
|
-
"internalType": "ShortString",
|
1349
|
-
"name": "name",
|
1350
|
-
"type": "bytes32"
|
1351
|
-
},
|
1352
|
-
{
|
1353
|
-
"internalType": "bool",
|
1354
|
-
"name": "isCustom",
|
1355
|
-
"type": "bool"
|
1356
|
-
}
|
1357
|
-
],
|
1358
|
-
"internalType": "struct IAccess.TargetInfo",
|
1359
|
-
"name": "targetInfo",
|
1360
|
-
"type": "tuple"
|
1361
|
-
}
|
1362
|
-
],
|
1363
|
-
"name": "createTarget",
|
1364
|
-
"outputs": [],
|
1365
|
-
"stateMutability": "nonpayable",
|
1366
|
-
"type": "function"
|
1367
|
-
},
|
1368
1097
|
{
|
1369
1098
|
"inputs": [
|
1370
1099
|
{
|
@@ -1444,10 +1173,23 @@
|
|
1444
1173
|
},
|
1445
1174
|
{
|
1446
1175
|
"inputs": [],
|
1447
|
-
"name": "
|
1176
|
+
"name": "getBundleManager",
|
1177
|
+
"outputs": [
|
1178
|
+
{
|
1179
|
+
"internalType": "contract BundleManager",
|
1180
|
+
"name": "",
|
1181
|
+
"type": "address"
|
1182
|
+
}
|
1183
|
+
],
|
1184
|
+
"stateMutability": "view",
|
1185
|
+
"type": "function"
|
1186
|
+
},
|
1187
|
+
{
|
1188
|
+
"inputs": [],
|
1189
|
+
"name": "getBundleService",
|
1448
1190
|
"outputs": [
|
1449
1191
|
{
|
1450
|
-
"internalType": "contract
|
1192
|
+
"internalType": "contract IBundleService",
|
1451
1193
|
"name": "",
|
1452
1194
|
"type": "address"
|
1453
1195
|
}
|
@@ -1530,13 +1272,8 @@
|
|
1530
1272
|
}
|
1531
1273
|
],
|
1532
1274
|
"internalType": "struct IRegistry.ObjectInfo",
|
1533
|
-
"name": "",
|
1275
|
+
"name": "info",
|
1534
1276
|
"type": "tuple"
|
1535
|
-
},
|
1536
|
-
{
|
1537
|
-
"internalType": "bytes",
|
1538
|
-
"name": "data",
|
1539
|
-
"type": "bytes"
|
1540
1277
|
}
|
1541
1278
|
],
|
1542
1279
|
"stateMutability": "view",
|
@@ -1561,6 +1298,19 @@
|
|
1561
1298
|
"stateMutability": "view",
|
1562
1299
|
"type": "function"
|
1563
1300
|
},
|
1301
|
+
{
|
1302
|
+
"inputs": [],
|
1303
|
+
"name": "getInstanceAccessManager",
|
1304
|
+
"outputs": [
|
1305
|
+
{
|
1306
|
+
"internalType": "contract InstanceAccessManager",
|
1307
|
+
"name": "",
|
1308
|
+
"type": "address"
|
1309
|
+
}
|
1310
|
+
],
|
1311
|
+
"stateMutability": "view",
|
1312
|
+
"type": "function"
|
1313
|
+
},
|
1564
1314
|
{
|
1565
1315
|
"inputs": [],
|
1566
1316
|
"name": "getInstanceReader",
|
@@ -1574,6 +1324,19 @@
|
|
1574
1324
|
"stateMutability": "view",
|
1575
1325
|
"type": "function"
|
1576
1326
|
},
|
1327
|
+
{
|
1328
|
+
"inputs": [],
|
1329
|
+
"name": "getMajorVersion",
|
1330
|
+
"outputs": [
|
1331
|
+
{
|
1332
|
+
"internalType": "VersionPart",
|
1333
|
+
"name": "majorVersion",
|
1334
|
+
"type": "uint8"
|
1335
|
+
}
|
1336
|
+
],
|
1337
|
+
"stateMutability": "pure",
|
1338
|
+
"type": "function"
|
1339
|
+
},
|
1577
1340
|
{
|
1578
1341
|
"inputs": [
|
1579
1342
|
{
|
@@ -1648,10 +1411,10 @@
|
|
1648
1411
|
},
|
1649
1412
|
{
|
1650
1413
|
"inputs": [],
|
1651
|
-
"name": "
|
1414
|
+
"name": "getPolicyService",
|
1652
1415
|
"outputs": [
|
1653
1416
|
{
|
1654
|
-
"internalType": "contract
|
1417
|
+
"internalType": "contract IPolicyService",
|
1655
1418
|
"name": "",
|
1656
1419
|
"type": "address"
|
1657
1420
|
}
|
@@ -1660,73 +1423,51 @@
|
|
1660
1423
|
"type": "function"
|
1661
1424
|
},
|
1662
1425
|
{
|
1663
|
-
"inputs": [
|
1664
|
-
|
1665
|
-
"internalType": "RoleId",
|
1666
|
-
"name": "roleId",
|
1667
|
-
"type": "uint64"
|
1668
|
-
}
|
1669
|
-
],
|
1670
|
-
"name": "getRole",
|
1426
|
+
"inputs": [],
|
1427
|
+
"name": "getPoolService",
|
1671
1428
|
"outputs": [
|
1672
1429
|
{
|
1673
|
-
"
|
1674
|
-
|
1675
|
-
|
1676
|
-
"name": "name",
|
1677
|
-
"type": "bytes32"
|
1678
|
-
},
|
1679
|
-
{
|
1680
|
-
"internalType": "bool",
|
1681
|
-
"name": "isCustom",
|
1682
|
-
"type": "bool"
|
1683
|
-
}
|
1684
|
-
],
|
1685
|
-
"internalType": "struct IAccess.RoleInfo",
|
1686
|
-
"name": "role",
|
1687
|
-
"type": "tuple"
|
1430
|
+
"internalType": "contract IPoolService",
|
1431
|
+
"name": "",
|
1432
|
+
"type": "address"
|
1688
1433
|
}
|
1689
1434
|
],
|
1690
1435
|
"stateMutability": "view",
|
1691
1436
|
"type": "function"
|
1692
1437
|
},
|
1693
1438
|
{
|
1694
|
-
"inputs": [
|
1695
|
-
|
1696
|
-
"internalType": "uint256",
|
1697
|
-
"name": "idx",
|
1698
|
-
"type": "uint256"
|
1699
|
-
}
|
1700
|
-
],
|
1701
|
-
"name": "getRoleId",
|
1439
|
+
"inputs": [],
|
1440
|
+
"name": "getProductService",
|
1702
1441
|
"outputs": [
|
1703
1442
|
{
|
1704
|
-
"internalType": "
|
1705
|
-
"name": "
|
1706
|
-
"type": "
|
1443
|
+
"internalType": "contract IProductService",
|
1444
|
+
"name": "",
|
1445
|
+
"type": "address"
|
1707
1446
|
}
|
1708
1447
|
],
|
1709
1448
|
"stateMutability": "view",
|
1710
1449
|
"type": "function"
|
1711
1450
|
},
|
1712
1451
|
{
|
1713
|
-
"inputs": [
|
1714
|
-
|
1715
|
-
|
1716
|
-
"name": "roleId",
|
1717
|
-
"type": "uint64"
|
1718
|
-
},
|
1452
|
+
"inputs": [],
|
1453
|
+
"name": "getRegistry",
|
1454
|
+
"outputs": [
|
1719
1455
|
{
|
1720
|
-
"internalType": "
|
1721
|
-
"name": "
|
1722
|
-
"type": "
|
1456
|
+
"internalType": "contract IRegistry",
|
1457
|
+
"name": "",
|
1458
|
+
"type": "address"
|
1723
1459
|
}
|
1724
1460
|
],
|
1725
|
-
"
|
1461
|
+
"stateMutability": "view",
|
1462
|
+
"type": "function"
|
1463
|
+
},
|
1464
|
+
{
|
1465
|
+
"inputs": [],
|
1466
|
+
"name": "getRegistryAddress",
|
1726
1467
|
"outputs": [
|
1727
1468
|
{
|
1728
1469
|
"internalType": "address",
|
1729
|
-
"name": "
|
1470
|
+
"name": "",
|
1730
1471
|
"type": "address"
|
1731
1472
|
}
|
1732
1473
|
],
|
@@ -1755,70 +1496,124 @@
|
|
1755
1496
|
{
|
1756
1497
|
"inputs": [
|
1757
1498
|
{
|
1758
|
-
"internalType": "
|
1759
|
-
"name": "
|
1760
|
-
"type": "
|
1499
|
+
"internalType": "ObjectType",
|
1500
|
+
"name": "objectType",
|
1501
|
+
"type": "uint8"
|
1502
|
+
}
|
1503
|
+
],
|
1504
|
+
"name": "hasLifecycle",
|
1505
|
+
"outputs": [
|
1506
|
+
{
|
1507
|
+
"internalType": "bool",
|
1508
|
+
"name": "",
|
1509
|
+
"type": "bool"
|
1510
|
+
}
|
1511
|
+
],
|
1512
|
+
"stateMutability": "view",
|
1513
|
+
"type": "function"
|
1514
|
+
},
|
1515
|
+
{
|
1516
|
+
"inputs": [
|
1517
|
+
{
|
1518
|
+
"internalType": "address",
|
1519
|
+
"name": "authority",
|
1520
|
+
"type": "address"
|
1521
|
+
},
|
1522
|
+
{
|
1523
|
+
"internalType": "address",
|
1524
|
+
"name": "registryAddress",
|
1525
|
+
"type": "address"
|
1761
1526
|
},
|
1762
1527
|
{
|
1763
1528
|
"internalType": "address",
|
1764
|
-
"name": "
|
1529
|
+
"name": "initialOwner",
|
1765
1530
|
"type": "address"
|
1766
1531
|
}
|
1767
1532
|
],
|
1768
|
-
"name": "
|
1769
|
-
"outputs": [
|
1533
|
+
"name": "initialize",
|
1534
|
+
"outputs": [],
|
1535
|
+
"stateMutability": "nonpayable",
|
1536
|
+
"type": "function"
|
1537
|
+
},
|
1538
|
+
{
|
1539
|
+
"inputs": [],
|
1540
|
+
"name": "initializeERC165",
|
1541
|
+
"outputs": [],
|
1542
|
+
"stateMutability": "nonpayable",
|
1543
|
+
"type": "function"
|
1544
|
+
},
|
1545
|
+
{
|
1546
|
+
"inputs": [],
|
1547
|
+
"name": "initializeLifecycle",
|
1548
|
+
"outputs": [],
|
1549
|
+
"stateMutability": "nonpayable",
|
1550
|
+
"type": "function"
|
1551
|
+
},
|
1552
|
+
{
|
1553
|
+
"inputs": [
|
1770
1554
|
{
|
1771
|
-
"internalType": "
|
1772
|
-
"name": "
|
1773
|
-
"type": "
|
1555
|
+
"internalType": "address",
|
1556
|
+
"name": "initialOwner",
|
1557
|
+
"type": "address"
|
1558
|
+
},
|
1559
|
+
{
|
1560
|
+
"internalType": "address",
|
1561
|
+
"name": "registryAddress",
|
1562
|
+
"type": "address"
|
1774
1563
|
}
|
1775
1564
|
],
|
1565
|
+
"name": "initializeNftOwnable",
|
1566
|
+
"outputs": [],
|
1776
1567
|
"stateMutability": "nonpayable",
|
1777
1568
|
"type": "function"
|
1778
1569
|
},
|
1779
1570
|
{
|
1780
1571
|
"inputs": [
|
1572
|
+
{
|
1573
|
+
"internalType": "address",
|
1574
|
+
"name": "registryAddress",
|
1575
|
+
"type": "address"
|
1576
|
+
},
|
1577
|
+
{
|
1578
|
+
"internalType": "NftId",
|
1579
|
+
"name": "parentNftId",
|
1580
|
+
"type": "uint96"
|
1581
|
+
},
|
1781
1582
|
{
|
1782
1583
|
"internalType": "ObjectType",
|
1783
1584
|
"name": "objectType",
|
1784
1585
|
"type": "uint8"
|
1785
|
-
}
|
1786
|
-
],
|
1787
|
-
"name": "hasLifecycle",
|
1788
|
-
"outputs": [
|
1586
|
+
},
|
1789
1587
|
{
|
1790
1588
|
"internalType": "bool",
|
1791
|
-
"name": "",
|
1589
|
+
"name": "isInterceptor",
|
1792
1590
|
"type": "bool"
|
1591
|
+
},
|
1592
|
+
{
|
1593
|
+
"internalType": "address",
|
1594
|
+
"name": "initialOwner",
|
1595
|
+
"type": "address"
|
1596
|
+
},
|
1597
|
+
{
|
1598
|
+
"internalType": "bytes",
|
1599
|
+
"name": "registryData",
|
1600
|
+
"type": "bytes"
|
1793
1601
|
}
|
1794
1602
|
],
|
1795
|
-
"
|
1603
|
+
"name": "initializeRegisterable",
|
1604
|
+
"outputs": [],
|
1605
|
+
"stateMutability": "nonpayable",
|
1796
1606
|
"type": "function"
|
1797
1607
|
},
|
1798
1608
|
{
|
1799
1609
|
"inputs": [
|
1800
|
-
{
|
1801
|
-
"internalType": "address",
|
1802
|
-
"name": "accessManagerAddress",
|
1803
|
-
"type": "address"
|
1804
|
-
},
|
1805
1610
|
{
|
1806
1611
|
"internalType": "address",
|
1807
1612
|
"name": "registryAddress",
|
1808
1613
|
"type": "address"
|
1809
|
-
},
|
1810
|
-
{
|
1811
|
-
"internalType": "NftId",
|
1812
|
-
"name": "registryNftId",
|
1813
|
-
"type": "uint96"
|
1814
|
-
},
|
1815
|
-
{
|
1816
|
-
"internalType": "address",
|
1817
|
-
"name": "initialOwner",
|
1818
|
-
"type": "address"
|
1819
1614
|
}
|
1820
1615
|
],
|
1821
|
-
"name": "
|
1616
|
+
"name": "initializeRegistryLinked",
|
1822
1617
|
"outputs": [],
|
1823
1618
|
"stateMutability": "nonpayable",
|
1824
1619
|
"type": "function"
|
@@ -1875,87 +1670,79 @@
|
|
1875
1670
|
{
|
1876
1671
|
"inputs": [
|
1877
1672
|
{
|
1878
|
-
"internalType": "
|
1879
|
-
"name": "
|
1880
|
-
"type": "
|
1881
|
-
}
|
1882
|
-
],
|
1883
|
-
"name": "renounceRole",
|
1884
|
-
"outputs": [
|
1673
|
+
"internalType": "address",
|
1674
|
+
"name": "to",
|
1675
|
+
"type": "address"
|
1676
|
+
},
|
1885
1677
|
{
|
1886
|
-
"internalType": "
|
1887
|
-
"name": "
|
1888
|
-
"type": "
|
1678
|
+
"internalType": "uint256",
|
1679
|
+
"name": "tokenId",
|
1680
|
+
"type": "uint256"
|
1889
1681
|
}
|
1890
1682
|
],
|
1683
|
+
"name": "nftMint",
|
1684
|
+
"outputs": [],
|
1891
1685
|
"stateMutability": "nonpayable",
|
1892
1686
|
"type": "function"
|
1893
1687
|
},
|
1894
1688
|
{
|
1895
1689
|
"inputs": [
|
1896
1690
|
{
|
1897
|
-
"internalType": "
|
1898
|
-
"name": "
|
1899
|
-
"type": "
|
1691
|
+
"internalType": "address",
|
1692
|
+
"name": "from",
|
1693
|
+
"type": "address"
|
1900
1694
|
},
|
1901
1695
|
{
|
1902
1696
|
"internalType": "address",
|
1903
|
-
"name": "
|
1697
|
+
"name": "to",
|
1904
1698
|
"type": "address"
|
1905
|
-
}
|
1906
|
-
],
|
1907
|
-
"name": "revokeRole",
|
1908
|
-
"outputs": [
|
1699
|
+
},
|
1909
1700
|
{
|
1910
|
-
"internalType": "
|
1911
|
-
"name": "
|
1912
|
-
"type": "
|
1701
|
+
"internalType": "uint256",
|
1702
|
+
"name": "tokenId",
|
1703
|
+
"type": "uint256"
|
1913
1704
|
}
|
1914
1705
|
],
|
1706
|
+
"name": "nftTransferFrom",
|
1707
|
+
"outputs": [],
|
1915
1708
|
"stateMutability": "nonpayable",
|
1916
1709
|
"type": "function"
|
1917
1710
|
},
|
1918
1711
|
{
|
1919
1712
|
"inputs": [
|
1920
1713
|
{
|
1921
|
-
"internalType": "
|
1922
|
-
"name": "
|
1923
|
-
"type": "
|
1924
|
-
}
|
1925
|
-
],
|
1926
|
-
"name": "roleMembers",
|
1927
|
-
"outputs": [
|
1928
|
-
{
|
1929
|
-
"internalType": "uint256",
|
1930
|
-
"name": "numberOfMembers",
|
1931
|
-
"type": "uint256"
|
1714
|
+
"internalType": "bytes4",
|
1715
|
+
"name": "interfaceId",
|
1716
|
+
"type": "bytes4"
|
1932
1717
|
}
|
1933
1718
|
],
|
1934
|
-
"
|
1719
|
+
"name": "registerInterface",
|
1720
|
+
"outputs": [],
|
1721
|
+
"stateMutability": "nonpayable",
|
1935
1722
|
"type": "function"
|
1936
1723
|
},
|
1937
1724
|
{
|
1938
|
-
"inputs": [
|
1939
|
-
"name": "roles",
|
1940
|
-
"outputs": [
|
1725
|
+
"inputs": [
|
1941
1726
|
{
|
1942
|
-
"internalType": "
|
1943
|
-
"name": "
|
1944
|
-
"type": "
|
1727
|
+
"internalType": "address",
|
1728
|
+
"name": "newAuthority",
|
1729
|
+
"type": "address"
|
1945
1730
|
}
|
1946
1731
|
],
|
1947
|
-
"
|
1732
|
+
"name": "setAuthority",
|
1733
|
+
"outputs": [],
|
1734
|
+
"stateMutability": "nonpayable",
|
1948
1735
|
"type": "function"
|
1949
1736
|
},
|
1950
1737
|
{
|
1951
1738
|
"inputs": [
|
1952
1739
|
{
|
1953
|
-
"internalType": "
|
1954
|
-
"name": "
|
1740
|
+
"internalType": "contract BundleManager",
|
1741
|
+
"name": "bundleManager",
|
1955
1742
|
"type": "address"
|
1956
1743
|
}
|
1957
1744
|
],
|
1958
|
-
"name": "
|
1745
|
+
"name": "setBundleManager",
|
1959
1746
|
"outputs": [],
|
1960
1747
|
"stateMutability": "nonpayable",
|
1961
1748
|
"type": "function"
|
@@ -1963,12 +1750,12 @@
|
|
1963
1750
|
{
|
1964
1751
|
"inputs": [
|
1965
1752
|
{
|
1966
|
-
"internalType": "contract
|
1967
|
-
"name": "
|
1753
|
+
"internalType": "contract InstanceAccessManager",
|
1754
|
+
"name": "accessManager",
|
1968
1755
|
"type": "address"
|
1969
1756
|
}
|
1970
1757
|
],
|
1971
|
-
"name": "
|
1758
|
+
"name": "setInstanceAccessManager",
|
1972
1759
|
"outputs": [],
|
1973
1760
|
"stateMutability": "nonpayable",
|
1974
1761
|
"type": "function"
|
@@ -1976,17 +1763,12 @@
|
|
1976
1763
|
{
|
1977
1764
|
"inputs": [
|
1978
1765
|
{
|
1979
|
-
"internalType": "
|
1980
|
-
"name": "
|
1766
|
+
"internalType": "contract InstanceReader",
|
1767
|
+
"name": "instanceReader",
|
1981
1768
|
"type": "address"
|
1982
|
-
},
|
1983
|
-
{
|
1984
|
-
"internalType": "bool",
|
1985
|
-
"name": "closed",
|
1986
|
-
"type": "bool"
|
1987
1769
|
}
|
1988
1770
|
],
|
1989
|
-
"name": "
|
1771
|
+
"name": "setInstanceReader",
|
1990
1772
|
"outputs": [],
|
1991
1773
|
"stateMutability": "nonpayable",
|
1992
1774
|
"type": "function"
|
@@ -2032,17 +1814,31 @@
|
|
2032
1814
|
{
|
2033
1815
|
"inputs": [
|
2034
1816
|
{
|
2035
|
-
"internalType": "
|
2036
|
-
"name": "
|
2037
|
-
"type": "
|
2038
|
-
}
|
1817
|
+
"internalType": "NftId",
|
1818
|
+
"name": "distNftId",
|
1819
|
+
"type": "uint96"
|
1820
|
+
}
|
1821
|
+
],
|
1822
|
+
"name": "toDistributionKey32",
|
1823
|
+
"outputs": [
|
2039
1824
|
{
|
2040
|
-
"internalType": "
|
2041
|
-
"name": "
|
2042
|
-
"type": "
|
1825
|
+
"internalType": "Key32",
|
1826
|
+
"name": "",
|
1827
|
+
"type": "bytes32"
|
2043
1828
|
}
|
2044
1829
|
],
|
2045
|
-
"
|
1830
|
+
"stateMutability": "pure",
|
1831
|
+
"type": "function"
|
1832
|
+
},
|
1833
|
+
{
|
1834
|
+
"inputs": [
|
1835
|
+
{
|
1836
|
+
"internalType": "NftId",
|
1837
|
+
"name": "distNftId",
|
1838
|
+
"type": "uint96"
|
1839
|
+
}
|
1840
|
+
],
|
1841
|
+
"name": "toDistributorKey32",
|
2046
1842
|
"outputs": [
|
2047
1843
|
{
|
2048
1844
|
"internalType": "Key32",
|
@@ -2057,11 +1853,11 @@
|
|
2057
1853
|
"inputs": [
|
2058
1854
|
{
|
2059
1855
|
"internalType": "NftId",
|
2060
|
-
"name": "
|
1856
|
+
"name": "distNftId",
|
2061
1857
|
"type": "uint96"
|
2062
1858
|
}
|
2063
1859
|
],
|
2064
|
-
"name": "
|
1860
|
+
"name": "toDistributorTypeKey32",
|
2065
1861
|
"outputs": [
|
2066
1862
|
{
|
2067
1863
|
"internalType": "Key32",
|
@@ -2075,12 +1871,17 @@
|
|
2075
1871
|
{
|
2076
1872
|
"inputs": [
|
2077
1873
|
{
|
2078
|
-
"internalType": "
|
2079
|
-
"name": "
|
2080
|
-
"type": "
|
1874
|
+
"internalType": "ObjectType",
|
1875
|
+
"name": "objectType",
|
1876
|
+
"type": "uint8"
|
1877
|
+
},
|
1878
|
+
{
|
1879
|
+
"internalType": "KeyId",
|
1880
|
+
"name": "id",
|
1881
|
+
"type": "bytes31"
|
2081
1882
|
}
|
2082
1883
|
],
|
2083
|
-
"name": "
|
1884
|
+
"name": "toKey32",
|
2084
1885
|
"outputs": [
|
2085
1886
|
{
|
2086
1887
|
"internalType": "Key32",
|
@@ -2094,12 +1895,12 @@
|
|
2094
1895
|
{
|
2095
1896
|
"inputs": [
|
2096
1897
|
{
|
2097
|
-
"internalType": "
|
2098
|
-
"name": "
|
2099
|
-
"type": "
|
1898
|
+
"internalType": "NftId",
|
1899
|
+
"name": "policyNftId",
|
1900
|
+
"type": "uint96"
|
2100
1901
|
}
|
2101
1902
|
],
|
2102
|
-
"name": "
|
1903
|
+
"name": "toPolicyKey32",
|
2103
1904
|
"outputs": [
|
2104
1905
|
{
|
2105
1906
|
"internalType": "Key32",
|
@@ -2114,53 +1915,81 @@
|
|
2114
1915
|
"inputs": [
|
2115
1916
|
{
|
2116
1917
|
"internalType": "NftId",
|
2117
|
-
"name": "
|
1918
|
+
"name": "applicationNftId",
|
2118
1919
|
"type": "uint96"
|
2119
1920
|
},
|
2120
1921
|
{
|
2121
1922
|
"components": [
|
2122
1923
|
{
|
2123
1924
|
"internalType": "NftId",
|
2124
|
-
"name": "
|
1925
|
+
"name": "productNftId",
|
2125
1926
|
"type": "uint96"
|
2126
1927
|
},
|
2127
1928
|
{
|
2128
|
-
"
|
2129
|
-
|
2130
|
-
|
2131
|
-
"name": "fractionalFee",
|
2132
|
-
"type": "uint256"
|
2133
|
-
},
|
2134
|
-
{
|
2135
|
-
"internalType": "uint256",
|
2136
|
-
"name": "fixedFee",
|
2137
|
-
"type": "uint256"
|
2138
|
-
}
|
2139
|
-
],
|
2140
|
-
"internalType": "struct Fee",
|
2141
|
-
"name": "fee",
|
2142
|
-
"type": "tuple"
|
1929
|
+
"internalType": "NftId",
|
1930
|
+
"name": "bundleNftId",
|
1931
|
+
"type": "uint96"
|
2143
1932
|
},
|
2144
1933
|
{
|
2145
|
-
"internalType": "
|
2146
|
-
"name": "
|
2147
|
-
"type": "
|
1934
|
+
"internalType": "ReferralId",
|
1935
|
+
"name": "referralId",
|
1936
|
+
"type": "bytes8"
|
1937
|
+
},
|
1938
|
+
{
|
1939
|
+
"internalType": "RiskId",
|
1940
|
+
"name": "riskId",
|
1941
|
+
"type": "bytes8"
|
2148
1942
|
},
|
2149
1943
|
{
|
2150
1944
|
"internalType": "uint256",
|
2151
|
-
"name": "
|
1945
|
+
"name": "sumInsuredAmount",
|
2152
1946
|
"type": "uint256"
|
2153
1947
|
},
|
2154
1948
|
{
|
2155
1949
|
"internalType": "uint256",
|
2156
|
-
"name": "
|
1950
|
+
"name": "premiumAmount",
|
2157
1951
|
"type": "uint256"
|
2158
1952
|
},
|
2159
1953
|
{
|
2160
1954
|
"internalType": "uint256",
|
2161
|
-
"name": "
|
1955
|
+
"name": "premiumPaidAmount",
|
2162
1956
|
"type": "uint256"
|
2163
1957
|
},
|
1958
|
+
{
|
1959
|
+
"internalType": "Seconds",
|
1960
|
+
"name": "lifetime",
|
1961
|
+
"type": "uint40"
|
1962
|
+
},
|
1963
|
+
{
|
1964
|
+
"internalType": "bytes",
|
1965
|
+
"name": "applicationData",
|
1966
|
+
"type": "bytes"
|
1967
|
+
},
|
1968
|
+
{
|
1969
|
+
"internalType": "bytes",
|
1970
|
+
"name": "policyData",
|
1971
|
+
"type": "bytes"
|
1972
|
+
},
|
1973
|
+
{
|
1974
|
+
"internalType": "uint16",
|
1975
|
+
"name": "claimsCount",
|
1976
|
+
"type": "uint16"
|
1977
|
+
},
|
1978
|
+
{
|
1979
|
+
"internalType": "uint16",
|
1980
|
+
"name": "openClaimsCount",
|
1981
|
+
"type": "uint16"
|
1982
|
+
},
|
1983
|
+
{
|
1984
|
+
"internalType": "uint256",
|
1985
|
+
"name": "payoutAmount",
|
1986
|
+
"type": "uint256"
|
1987
|
+
},
|
1988
|
+
{
|
1989
|
+
"internalType": "Timestamp",
|
1990
|
+
"name": "activatedAt",
|
1991
|
+
"type": "uint40"
|
1992
|
+
},
|
2164
1993
|
{
|
2165
1994
|
"internalType": "Timestamp",
|
2166
1995
|
"name": "expiredAt",
|
@@ -2172,8 +2001,8 @@
|
|
2172
2001
|
"type": "uint40"
|
2173
2002
|
}
|
2174
2003
|
],
|
2175
|
-
"internalType": "struct
|
2176
|
-
"name": "
|
2004
|
+
"internalType": "struct IPolicy.PolicyInfo",
|
2005
|
+
"name": "policy",
|
2177
2006
|
"type": "tuple"
|
2178
2007
|
},
|
2179
2008
|
{
|
@@ -2182,7 +2011,7 @@
|
|
2182
2011
|
"type": "uint8"
|
2183
2012
|
}
|
2184
2013
|
],
|
2185
|
-
"name": "
|
2014
|
+
"name": "updateApplication",
|
2186
2015
|
"outputs": [],
|
2187
2016
|
"stateMutability": "nonpayable",
|
2188
2017
|
"type": "function"
|
@@ -2191,7 +2020,7 @@
|
|
2191
2020
|
"inputs": [
|
2192
2021
|
{
|
2193
2022
|
"internalType": "NftId",
|
2194
|
-
"name": "
|
2023
|
+
"name": "applicationNftId",
|
2195
2024
|
"type": "uint96"
|
2196
2025
|
},
|
2197
2026
|
{
|
@@ -2200,7 +2029,7 @@
|
|
2200
2029
|
"type": "uint8"
|
2201
2030
|
}
|
2202
2031
|
],
|
2203
|
-
"name": "
|
2032
|
+
"name": "updateApplicationState",
|
2204
2033
|
"outputs": [],
|
2205
2034
|
"stateMutability": "nonpayable",
|
2206
2035
|
"type": "function"
|
@@ -2209,39 +2038,71 @@
|
|
2209
2038
|
"inputs": [
|
2210
2039
|
{
|
2211
2040
|
"internalType": "NftId",
|
2212
|
-
"name": "
|
2041
|
+
"name": "bundleNftId",
|
2213
2042
|
"type": "uint96"
|
2214
2043
|
},
|
2215
|
-
{
|
2216
|
-
"internalType": "NumberId",
|
2217
|
-
"name": "claimId",
|
2218
|
-
"type": "uint32"
|
2219
|
-
},
|
2220
2044
|
{
|
2221
2045
|
"components": [
|
2222
2046
|
{
|
2223
|
-
"internalType": "
|
2224
|
-
"name": "
|
2225
|
-
"type": "
|
2047
|
+
"internalType": "NftId",
|
2048
|
+
"name": "poolNftId",
|
2049
|
+
"type": "uint96"
|
2226
2050
|
},
|
2227
2051
|
{
|
2228
|
-
"
|
2229
|
-
|
2230
|
-
|
2052
|
+
"components": [
|
2053
|
+
{
|
2054
|
+
"internalType": "UFixed",
|
2055
|
+
"name": "fractionalFee",
|
2056
|
+
"type": "uint256"
|
2057
|
+
},
|
2058
|
+
{
|
2059
|
+
"internalType": "uint256",
|
2060
|
+
"name": "fixedFee",
|
2061
|
+
"type": "uint256"
|
2062
|
+
}
|
2063
|
+
],
|
2064
|
+
"internalType": "struct Fee",
|
2065
|
+
"name": "fee",
|
2066
|
+
"type": "tuple"
|
2231
2067
|
},
|
2232
2068
|
{
|
2233
2069
|
"internalType": "bytes",
|
2234
|
-
"name": "
|
2070
|
+
"name": "filter",
|
2235
2071
|
"type": "bytes"
|
2236
2072
|
},
|
2073
|
+
{
|
2074
|
+
"internalType": "Amount",
|
2075
|
+
"name": "capitalAmount",
|
2076
|
+
"type": "uint96"
|
2077
|
+
},
|
2078
|
+
{
|
2079
|
+
"internalType": "Amount",
|
2080
|
+
"name": "lockedAmount",
|
2081
|
+
"type": "uint96"
|
2082
|
+
},
|
2083
|
+
{
|
2084
|
+
"internalType": "Amount",
|
2085
|
+
"name": "feeAmount",
|
2086
|
+
"type": "uint96"
|
2087
|
+
},
|
2088
|
+
{
|
2089
|
+
"internalType": "Seconds",
|
2090
|
+
"name": "lifetime",
|
2091
|
+
"type": "uint40"
|
2092
|
+
},
|
2093
|
+
{
|
2094
|
+
"internalType": "Timestamp",
|
2095
|
+
"name": "expiredAt",
|
2096
|
+
"type": "uint40"
|
2097
|
+
},
|
2237
2098
|
{
|
2238
2099
|
"internalType": "Timestamp",
|
2239
2100
|
"name": "closedAt",
|
2240
2101
|
"type": "uint40"
|
2241
2102
|
}
|
2242
2103
|
],
|
2243
|
-
"internalType": "struct
|
2244
|
-
"name": "
|
2104
|
+
"internalType": "struct IBundle.BundleInfo",
|
2105
|
+
"name": "bundle",
|
2245
2106
|
"type": "tuple"
|
2246
2107
|
},
|
2247
2108
|
{
|
@@ -2250,7 +2111,25 @@
|
|
2250
2111
|
"type": "uint8"
|
2251
2112
|
}
|
2252
2113
|
],
|
2253
|
-
"name": "
|
2114
|
+
"name": "updateBundle",
|
2115
|
+
"outputs": [],
|
2116
|
+
"stateMutability": "nonpayable",
|
2117
|
+
"type": "function"
|
2118
|
+
},
|
2119
|
+
{
|
2120
|
+
"inputs": [
|
2121
|
+
{
|
2122
|
+
"internalType": "NftId",
|
2123
|
+
"name": "bundleNftId",
|
2124
|
+
"type": "uint96"
|
2125
|
+
},
|
2126
|
+
{
|
2127
|
+
"internalType": "StateId",
|
2128
|
+
"name": "newState",
|
2129
|
+
"type": "uint8"
|
2130
|
+
}
|
2131
|
+
],
|
2132
|
+
"name": "updateBundleState",
|
2254
2133
|
"outputs": [],
|
2255
2134
|
"stateMutability": "nonpayable",
|
2256
2135
|
"type": "function"
|
@@ -2263,20 +2142,20 @@
|
|
2263
2142
|
"type": "uint96"
|
2264
2143
|
},
|
2265
2144
|
{
|
2266
|
-
"internalType": "
|
2267
|
-
"name": "
|
2268
|
-
"type": "
|
2145
|
+
"internalType": "ClaimId",
|
2146
|
+
"name": "claimId",
|
2147
|
+
"type": "uint16"
|
2269
2148
|
},
|
2270
2149
|
{
|
2271
2150
|
"components": [
|
2272
2151
|
{
|
2273
|
-
"internalType": "
|
2274
|
-
"name": "
|
2275
|
-
"type": "
|
2152
|
+
"internalType": "uint256",
|
2153
|
+
"name": "claimAmount",
|
2154
|
+
"type": "uint256"
|
2276
2155
|
},
|
2277
2156
|
{
|
2278
2157
|
"internalType": "uint256",
|
2279
|
-
"name": "
|
2158
|
+
"name": "paidAmount",
|
2280
2159
|
"type": "uint256"
|
2281
2160
|
},
|
2282
2161
|
{
|
@@ -2286,12 +2165,12 @@
|
|
2286
2165
|
},
|
2287
2166
|
{
|
2288
2167
|
"internalType": "Timestamp",
|
2289
|
-
"name": "
|
2168
|
+
"name": "closedAt",
|
2290
2169
|
"type": "uint40"
|
2291
2170
|
}
|
2292
2171
|
],
|
2293
|
-
"internalType": "struct IPolicy.
|
2294
|
-
"name": "
|
2172
|
+
"internalType": "struct IPolicy.ClaimInfo",
|
2173
|
+
"name": "claim",
|
2295
2174
|
"type": "tuple"
|
2296
2175
|
},
|
2297
2176
|
{
|
@@ -2312,6 +2191,11 @@
|
|
2312
2191
|
"name": "policyNftId",
|
2313
2192
|
"type": "uint96"
|
2314
2193
|
},
|
2194
|
+
{
|
2195
|
+
"internalType": "ClaimId",
|
2196
|
+
"name": "claimId",
|
2197
|
+
"type": "uint16"
|
2198
|
+
},
|
2315
2199
|
{
|
2316
2200
|
"internalType": "StateId",
|
2317
2201
|
"name": "newState",
|
@@ -2356,18 +2240,35 @@
|
|
2356
2240
|
}
|
2357
2241
|
],
|
2358
2242
|
"internalType": "struct Fee",
|
2359
|
-
"name": "
|
2243
|
+
"name": "minDistributionOwnerFee",
|
2360
2244
|
"type": "tuple"
|
2361
2245
|
},
|
2362
2246
|
{
|
2363
|
-
"
|
2364
|
-
|
2365
|
-
|
2247
|
+
"components": [
|
2248
|
+
{
|
2249
|
+
"internalType": "UFixed",
|
2250
|
+
"name": "fractionalFee",
|
2251
|
+
"type": "uint256"
|
2252
|
+
},
|
2253
|
+
{
|
2254
|
+
"internalType": "uint256",
|
2255
|
+
"name": "fixedFee",
|
2256
|
+
"type": "uint256"
|
2257
|
+
}
|
2258
|
+
],
|
2259
|
+
"internalType": "struct Fee",
|
2260
|
+
"name": "distributionFee",
|
2261
|
+
"type": "tuple"
|
2366
2262
|
},
|
2367
2263
|
{
|
2368
2264
|
"internalType": "address",
|
2369
2265
|
"name": "wallet",
|
2370
2266
|
"type": "address"
|
2267
|
+
},
|
2268
|
+
{
|
2269
|
+
"internalType": "uint256",
|
2270
|
+
"name": "sumDistributionOwnerFees",
|
2271
|
+
"type": "uint256"
|
2371
2272
|
}
|
2372
2273
|
],
|
2373
2274
|
"internalType": "struct ISetup.DistributionSetupInfo",
|
@@ -2407,25 +2308,20 @@
|
|
2407
2308
|
"inputs": [
|
2408
2309
|
{
|
2409
2310
|
"internalType": "NftId",
|
2410
|
-
"name": "
|
2311
|
+
"name": "nftId",
|
2411
2312
|
"type": "uint96"
|
2412
2313
|
},
|
2413
|
-
{
|
2414
|
-
"internalType": "NumberId",
|
2415
|
-
"name": "payoutId",
|
2416
|
-
"type": "uint32"
|
2417
|
-
},
|
2418
2314
|
{
|
2419
2315
|
"components": [
|
2420
2316
|
{
|
2421
|
-
"internalType": "
|
2422
|
-
"name": "
|
2423
|
-
"type": "
|
2317
|
+
"internalType": "DistributorType",
|
2318
|
+
"name": "distributorType",
|
2319
|
+
"type": "bytes8"
|
2424
2320
|
},
|
2425
2321
|
{
|
2426
|
-
"internalType": "
|
2427
|
-
"name": "
|
2428
|
-
"type": "
|
2322
|
+
"internalType": "bool",
|
2323
|
+
"name": "active",
|
2324
|
+
"type": "bool"
|
2429
2325
|
},
|
2430
2326
|
{
|
2431
2327
|
"internalType": "bytes",
|
@@ -2433,13 +2329,18 @@
|
|
2433
2329
|
"type": "bytes"
|
2434
2330
|
},
|
2435
2331
|
{
|
2436
|
-
"internalType": "
|
2437
|
-
"name": "
|
2438
|
-
"type": "
|
2332
|
+
"internalType": "uint256",
|
2333
|
+
"name": "sumCommisions",
|
2334
|
+
"type": "uint256"
|
2335
|
+
},
|
2336
|
+
{
|
2337
|
+
"internalType": "uint256",
|
2338
|
+
"name": "numPoliciesSold",
|
2339
|
+
"type": "uint256"
|
2439
2340
|
}
|
2440
2341
|
],
|
2441
|
-
"internalType": "struct
|
2442
|
-
"name": "
|
2342
|
+
"internalType": "struct IDistribution.DistributorInfo",
|
2343
|
+
"name": "info",
|
2443
2344
|
"type": "tuple"
|
2444
2345
|
},
|
2445
2346
|
{
|
@@ -2457,7 +2358,7 @@
|
|
2457
2358
|
"inputs": [
|
2458
2359
|
{
|
2459
2360
|
"internalType": "NftId",
|
2460
|
-
"name": "
|
2361
|
+
"name": "nftId",
|
2461
2362
|
"type": "uint96"
|
2462
2363
|
},
|
2463
2364
|
{
|
@@ -2474,40 +2375,60 @@
|
|
2474
2375
|
{
|
2475
2376
|
"inputs": [
|
2476
2377
|
{
|
2477
|
-
"internalType": "
|
2478
|
-
"name": "
|
2479
|
-
"type": "
|
2480
|
-
},
|
2481
|
-
{
|
2482
|
-
"internalType": "NumberId",
|
2483
|
-
"name": "payoutId",
|
2484
|
-
"type": "uint32"
|
2378
|
+
"internalType": "Key32",
|
2379
|
+
"name": "distributorKey",
|
2380
|
+
"type": "bytes32"
|
2485
2381
|
},
|
2486
2382
|
{
|
2487
2383
|
"components": [
|
2488
2384
|
{
|
2489
|
-
"internalType": "
|
2490
|
-
"name": "
|
2491
|
-
"type": "
|
2385
|
+
"internalType": "string",
|
2386
|
+
"name": "name",
|
2387
|
+
"type": "string"
|
2492
2388
|
},
|
2493
2389
|
{
|
2494
|
-
"internalType": "
|
2495
|
-
"name": "
|
2390
|
+
"internalType": "UFixed",
|
2391
|
+
"name": "minDiscountPercentage",
|
2392
|
+
"type": "uint256"
|
2393
|
+
},
|
2394
|
+
{
|
2395
|
+
"internalType": "UFixed",
|
2396
|
+
"name": "maxDiscountPercentage",
|
2397
|
+
"type": "uint256"
|
2398
|
+
},
|
2399
|
+
{
|
2400
|
+
"internalType": "UFixed",
|
2401
|
+
"name": "commissionPercentage",
|
2496
2402
|
"type": "uint256"
|
2497
2403
|
},
|
2404
|
+
{
|
2405
|
+
"internalType": "uint32",
|
2406
|
+
"name": "maxReferralCount",
|
2407
|
+
"type": "uint32"
|
2408
|
+
},
|
2409
|
+
{
|
2410
|
+
"internalType": "uint32",
|
2411
|
+
"name": "maxReferralLifetime",
|
2412
|
+
"type": "uint32"
|
2413
|
+
},
|
2414
|
+
{
|
2415
|
+
"internalType": "bool",
|
2416
|
+
"name": "allowSelfReferrals",
|
2417
|
+
"type": "bool"
|
2418
|
+
},
|
2419
|
+
{
|
2420
|
+
"internalType": "bool",
|
2421
|
+
"name": "allowRenewals",
|
2422
|
+
"type": "bool"
|
2423
|
+
},
|
2498
2424
|
{
|
2499
2425
|
"internalType": "bytes",
|
2500
2426
|
"name": "data",
|
2501
2427
|
"type": "bytes"
|
2502
|
-
},
|
2503
|
-
{
|
2504
|
-
"internalType": "Timestamp",
|
2505
|
-
"name": "paidAt",
|
2506
|
-
"type": "uint40"
|
2507
2428
|
}
|
2508
2429
|
],
|
2509
|
-
"internalType": "struct
|
2510
|
-
"name": "
|
2430
|
+
"internalType": "struct IDistribution.DistributorTypeInfo",
|
2431
|
+
"name": "info",
|
2511
2432
|
"type": "tuple"
|
2512
2433
|
},
|
2513
2434
|
{
|
@@ -2521,6 +2442,24 @@
|
|
2521
2442
|
"stateMutability": "nonpayable",
|
2522
2443
|
"type": "function"
|
2523
2444
|
},
|
2445
|
+
{
|
2446
|
+
"inputs": [
|
2447
|
+
{
|
2448
|
+
"internalType": "Key32",
|
2449
|
+
"name": "distributorKey",
|
2450
|
+
"type": "bytes32"
|
2451
|
+
},
|
2452
|
+
{
|
2453
|
+
"internalType": "StateId",
|
2454
|
+
"name": "newState",
|
2455
|
+
"type": "uint8"
|
2456
|
+
}
|
2457
|
+
],
|
2458
|
+
"name": "updateDistributorTypeState",
|
2459
|
+
"outputs": [],
|
2460
|
+
"stateMutability": "nonpayable",
|
2461
|
+
"type": "function"
|
2462
|
+
},
|
2524
2463
|
{
|
2525
2464
|
"inputs": [
|
2526
2465
|
{
|
@@ -2528,13 +2467,45 @@
|
|
2528
2467
|
"name": "policyNftId",
|
2529
2468
|
"type": "uint96"
|
2530
2469
|
},
|
2470
|
+
{
|
2471
|
+
"internalType": "NumberId",
|
2472
|
+
"name": "payoutId",
|
2473
|
+
"type": "uint32"
|
2474
|
+
},
|
2475
|
+
{
|
2476
|
+
"components": [
|
2477
|
+
{
|
2478
|
+
"internalType": "ClaimId",
|
2479
|
+
"name": "claimId",
|
2480
|
+
"type": "uint16"
|
2481
|
+
},
|
2482
|
+
{
|
2483
|
+
"internalType": "uint256",
|
2484
|
+
"name": "amount",
|
2485
|
+
"type": "uint256"
|
2486
|
+
},
|
2487
|
+
{
|
2488
|
+
"internalType": "bytes",
|
2489
|
+
"name": "data",
|
2490
|
+
"type": "bytes"
|
2491
|
+
},
|
2492
|
+
{
|
2493
|
+
"internalType": "Timestamp",
|
2494
|
+
"name": "paidAt",
|
2495
|
+
"type": "uint40"
|
2496
|
+
}
|
2497
|
+
],
|
2498
|
+
"internalType": "struct IPolicy.PayoutInfo",
|
2499
|
+
"name": "payout",
|
2500
|
+
"type": "tuple"
|
2501
|
+
},
|
2531
2502
|
{
|
2532
2503
|
"internalType": "StateId",
|
2533
2504
|
"name": "newState",
|
2534
2505
|
"type": "uint8"
|
2535
2506
|
}
|
2536
2507
|
],
|
2537
|
-
"name": "
|
2508
|
+
"name": "updatePayout",
|
2538
2509
|
"outputs": [],
|
2539
2510
|
"stateMutability": "nonpayable",
|
2540
2511
|
"type": "function"
|
@@ -2602,9 +2573,9 @@
|
|
2602
2573
|
"type": "uint256"
|
2603
2574
|
},
|
2604
2575
|
{
|
2605
|
-
"internalType": "
|
2576
|
+
"internalType": "Seconds",
|
2606
2577
|
"name": "lifetime",
|
2607
|
-
"type": "
|
2578
|
+
"type": "uint40"
|
2608
2579
|
},
|
2609
2580
|
{
|
2610
2581
|
"internalType": "bytes",
|
@@ -2684,90 +2655,49 @@
|
|
2684
2655
|
"inputs": [
|
2685
2656
|
{
|
2686
2657
|
"internalType": "NftId",
|
2687
|
-
"name": "
|
2658
|
+
"name": "poolNftId",
|
2688
2659
|
"type": "uint96"
|
2689
2660
|
},
|
2690
2661
|
{
|
2691
2662
|
"components": [
|
2692
2663
|
{
|
2693
|
-
"internalType": "
|
2694
|
-
"name": "
|
2695
|
-
"type": "
|
2664
|
+
"internalType": "string",
|
2665
|
+
"name": "name",
|
2666
|
+
"type": "string"
|
2696
2667
|
},
|
2697
2668
|
{
|
2698
|
-
"internalType": "contract
|
2699
|
-
"name": "
|
2669
|
+
"internalType": "contract IERC20Metadata",
|
2670
|
+
"name": "token",
|
2671
|
+
"type": "address"
|
2672
|
+
},
|
2673
|
+
{
|
2674
|
+
"internalType": "contract TokenHandler",
|
2675
|
+
"name": "tokenHandler",
|
2700
2676
|
"type": "address"
|
2701
2677
|
},
|
2702
2678
|
{
|
2703
|
-
"internalType": "UFixed",
|
2704
|
-
"name": "collateralizationLevel",
|
2705
|
-
"type": "uint256"
|
2706
|
-
},
|
2707
|
-
{
|
2708
|
-
"components": [
|
2709
|
-
{
|
2710
|
-
"internalType": "UFixed",
|
2711
|
-
"name": "fractionalFee",
|
2712
|
-
"type": "uint256"
|
2713
|
-
},
|
2714
|
-
{
|
2715
|
-
"internalType": "uint256",
|
2716
|
-
"name": "fixedFee",
|
2717
|
-
"type": "uint256"
|
2718
|
-
}
|
2719
|
-
],
|
2720
|
-
"internalType": "struct Fee",
|
2721
|
-
"name": "poolFee",
|
2722
|
-
"type": "tuple"
|
2723
|
-
},
|
2724
|
-
{
|
2725
|
-
"components": [
|
2726
|
-
{
|
2727
|
-
"internalType": "UFixed",
|
2728
|
-
"name": "fractionalFee",
|
2729
|
-
"type": "uint256"
|
2730
|
-
},
|
2731
|
-
{
|
2732
|
-
"internalType": "uint256",
|
2733
|
-
"name": "fixedFee",
|
2734
|
-
"type": "uint256"
|
2735
|
-
}
|
2736
|
-
],
|
2737
|
-
"internalType": "struct Fee",
|
2738
|
-
"name": "stakingFee",
|
2739
|
-
"type": "tuple"
|
2740
|
-
},
|
2741
|
-
{
|
2742
|
-
"components": [
|
2743
|
-
{
|
2744
|
-
"internalType": "UFixed",
|
2745
|
-
"name": "fractionalFee",
|
2746
|
-
"type": "uint256"
|
2747
|
-
},
|
2748
|
-
{
|
2749
|
-
"internalType": "uint256",
|
2750
|
-
"name": "fixedFee",
|
2751
|
-
"type": "uint256"
|
2752
|
-
}
|
2753
|
-
],
|
2754
|
-
"internalType": "struct Fee",
|
2755
|
-
"name": "performanceFee",
|
2756
|
-
"type": "tuple"
|
2757
|
-
},
|
2758
|
-
{
|
2759
|
-
"internalType": "bool",
|
2760
|
-
"name": "isIntercepting",
|
2761
|
-
"type": "bool"
|
2762
|
-
},
|
2763
|
-
{
|
2764
2679
|
"internalType": "address",
|
2765
2680
|
"name": "wallet",
|
2766
2681
|
"type": "address"
|
2682
|
+
},
|
2683
|
+
{
|
2684
|
+
"internalType": "Amount",
|
2685
|
+
"name": "balanceAmount",
|
2686
|
+
"type": "uint96"
|
2687
|
+
},
|
2688
|
+
{
|
2689
|
+
"internalType": "Amount",
|
2690
|
+
"name": "feeAmount",
|
2691
|
+
"type": "uint96"
|
2692
|
+
},
|
2693
|
+
{
|
2694
|
+
"internalType": "bytes",
|
2695
|
+
"name": "data",
|
2696
|
+
"type": "bytes"
|
2767
2697
|
}
|
2768
2698
|
],
|
2769
|
-
"internalType": "struct
|
2770
|
-
"name": "
|
2699
|
+
"internalType": "struct IComponents.ComponentInfo",
|
2700
|
+
"name": "info",
|
2771
2701
|
"type": "tuple"
|
2772
2702
|
},
|
2773
2703
|
{
|
@@ -2785,7 +2715,7 @@
|
|
2785
2715
|
"inputs": [
|
2786
2716
|
{
|
2787
2717
|
"internalType": "NftId",
|
2788
|
-
"name": "
|
2718
|
+
"name": "poolNftId",
|
2789
2719
|
"type": "uint96"
|
2790
2720
|
},
|
2791
2721
|
{
|
@@ -2828,23 +2758,6 @@
|
|
2828
2758
|
"name": "poolNftId",
|
2829
2759
|
"type": "uint96"
|
2830
2760
|
},
|
2831
|
-
{
|
2832
|
-
"components": [
|
2833
|
-
{
|
2834
|
-
"internalType": "UFixed",
|
2835
|
-
"name": "fractionalFee",
|
2836
|
-
"type": "uint256"
|
2837
|
-
},
|
2838
|
-
{
|
2839
|
-
"internalType": "uint256",
|
2840
|
-
"name": "fixedFee",
|
2841
|
-
"type": "uint256"
|
2842
|
-
}
|
2843
|
-
],
|
2844
|
-
"internalType": "struct Fee",
|
2845
|
-
"name": "distributionFee",
|
2846
|
-
"type": "tuple"
|
2847
|
-
},
|
2848
2761
|
{
|
2849
2762
|
"components": [
|
2850
2763
|
{
|
@@ -2880,55 +2793,14 @@
|
|
2880
2793
|
"type": "tuple"
|
2881
2794
|
},
|
2882
2795
|
{
|
2883
|
-
"
|
2884
|
-
|
2885
|
-
|
2886
|
-
"name": "fractionalFee",
|
2887
|
-
"type": "uint256"
|
2888
|
-
},
|
2889
|
-
{
|
2890
|
-
"internalType": "uint256",
|
2891
|
-
"name": "fixedFee",
|
2892
|
-
"type": "uint256"
|
2893
|
-
}
|
2894
|
-
],
|
2895
|
-
"internalType": "struct Fee",
|
2896
|
-
"name": "poolFee",
|
2897
|
-
"type": "tuple"
|
2898
|
-
},
|
2899
|
-
{
|
2900
|
-
"components": [
|
2901
|
-
{
|
2902
|
-
"internalType": "UFixed",
|
2903
|
-
"name": "fractionalFee",
|
2904
|
-
"type": "uint256"
|
2905
|
-
},
|
2906
|
-
{
|
2907
|
-
"internalType": "uint256",
|
2908
|
-
"name": "fixedFee",
|
2909
|
-
"type": "uint256"
|
2910
|
-
}
|
2911
|
-
],
|
2912
|
-
"internalType": "struct Fee",
|
2913
|
-
"name": "stakingFee",
|
2914
|
-
"type": "tuple"
|
2796
|
+
"internalType": "bool",
|
2797
|
+
"name": "isIntercepting",
|
2798
|
+
"type": "bool"
|
2915
2799
|
},
|
2916
2800
|
{
|
2917
|
-
"
|
2918
|
-
|
2919
|
-
|
2920
|
-
"name": "fractionalFee",
|
2921
|
-
"type": "uint256"
|
2922
|
-
},
|
2923
|
-
{
|
2924
|
-
"internalType": "uint256",
|
2925
|
-
"name": "fixedFee",
|
2926
|
-
"type": "uint256"
|
2927
|
-
}
|
2928
|
-
],
|
2929
|
-
"internalType": "struct Fee",
|
2930
|
-
"name": "performanceFee",
|
2931
|
-
"type": "tuple"
|
2801
|
+
"internalType": "address",
|
2802
|
+
"name": "wallet",
|
2803
|
+
"type": "address"
|
2932
2804
|
}
|
2933
2805
|
],
|
2934
2806
|
"internalType": "struct ISetup.ProductSetupInfo",
|
@@ -2967,40 +2839,50 @@
|
|
2967
2839
|
{
|
2968
2840
|
"inputs": [
|
2969
2841
|
{
|
2970
|
-
"internalType": "
|
2971
|
-
"name": "
|
2972
|
-
"type": "
|
2973
|
-
},
|
2974
|
-
{
|
2975
|
-
"internalType": "NumberId",
|
2976
|
-
"name": "payoutId",
|
2977
|
-
"type": "uint32"
|
2842
|
+
"internalType": "Key32",
|
2843
|
+
"name": "referralKey",
|
2844
|
+
"type": "bytes32"
|
2978
2845
|
},
|
2979
2846
|
{
|
2980
2847
|
"components": [
|
2981
2848
|
{
|
2982
|
-
"internalType": "
|
2983
|
-
"name": "
|
2984
|
-
"type": "
|
2849
|
+
"internalType": "NftId",
|
2850
|
+
"name": "distributorNftId",
|
2851
|
+
"type": "uint96"
|
2985
2852
|
},
|
2986
2853
|
{
|
2987
|
-
"internalType": "
|
2988
|
-
"name": "
|
2854
|
+
"internalType": "string",
|
2855
|
+
"name": "referralCode",
|
2856
|
+
"type": "string"
|
2857
|
+
},
|
2858
|
+
{
|
2859
|
+
"internalType": "UFixed",
|
2860
|
+
"name": "discountPercentage",
|
2989
2861
|
"type": "uint256"
|
2990
2862
|
},
|
2991
2863
|
{
|
2992
|
-
"internalType": "
|
2993
|
-
"name": "
|
2994
|
-
"type": "
|
2864
|
+
"internalType": "uint32",
|
2865
|
+
"name": "maxReferrals",
|
2866
|
+
"type": "uint32"
|
2867
|
+
},
|
2868
|
+
{
|
2869
|
+
"internalType": "uint32",
|
2870
|
+
"name": "usedReferrals",
|
2871
|
+
"type": "uint32"
|
2995
2872
|
},
|
2996
2873
|
{
|
2997
2874
|
"internalType": "Timestamp",
|
2998
|
-
"name": "
|
2875
|
+
"name": "expiryAt",
|
2999
2876
|
"type": "uint40"
|
2877
|
+
},
|
2878
|
+
{
|
2879
|
+
"internalType": "bytes",
|
2880
|
+
"name": "data",
|
2881
|
+
"type": "bytes"
|
3000
2882
|
}
|
3001
2883
|
],
|
3002
|
-
"internalType": "struct
|
3003
|
-
"name": "
|
2884
|
+
"internalType": "struct IDistribution.ReferralInfo",
|
2885
|
+
"name": "referralInfo",
|
3004
2886
|
"type": "tuple"
|
3005
2887
|
},
|
3006
2888
|
{
|
@@ -3017,9 +2899,9 @@
|
|
3017
2899
|
{
|
3018
2900
|
"inputs": [
|
3019
2901
|
{
|
3020
|
-
"internalType": "
|
3021
|
-
"name": "
|
3022
|
-
"type": "
|
2902
|
+
"internalType": "Key32",
|
2903
|
+
"name": "referralKey",
|
2904
|
+
"type": "bytes32"
|
3023
2905
|
},
|
3024
2906
|
{
|
3025
2907
|
"internalType": "StateId",
|
@@ -3084,133 +2966,88 @@
|
|
3084
2966
|
"outputs": [],
|
3085
2967
|
"stateMutability": "nonpayable",
|
3086
2968
|
"type": "function"
|
3087
|
-
},
|
3088
|
-
{
|
3089
|
-
"inputs": [
|
3090
|
-
{
|
3091
|
-
"internalType": "RoleId",
|
3092
|
-
"name": "roleId",
|
3093
|
-
"type": "uint64"
|
3094
|
-
},
|
3095
|
-
{
|
3096
|
-
"internalType": "string",
|
3097
|
-
"name": "name",
|
3098
|
-
"type": "string"
|
3099
|
-
},
|
3100
|
-
{
|
3101
|
-
"internalType": "StateId",
|
3102
|
-
"name": "newState",
|
3103
|
-
"type": "uint8"
|
3104
|
-
}
|
3105
|
-
],
|
3106
|
-
"name": "updateRole",
|
3107
|
-
"outputs": [],
|
3108
|
-
"stateMutability": "nonpayable",
|
3109
|
-
"type": "function"
|
3110
|
-
},
|
3111
|
-
{
|
3112
|
-
"inputs": [
|
3113
|
-
{
|
3114
|
-
"internalType": "RoleId",
|
3115
|
-
"name": "roleId",
|
3116
|
-
"type": "uint64"
|
3117
|
-
},
|
3118
|
-
{
|
3119
|
-
"internalType": "StateId",
|
3120
|
-
"name": "newState",
|
3121
|
-
"type": "uint8"
|
3122
|
-
}
|
3123
|
-
],
|
3124
|
-
"name": "updateRoleState",
|
3125
|
-
"outputs": [],
|
3126
|
-
"stateMutability": "nonpayable",
|
3127
|
-
"type": "function"
|
3128
2969
|
}
|
3129
2970
|
],
|
3130
|
-
"bytecode": "0x60806040523480156200001157600080fd5b50604051620072a3380380620072a383398101604081905262000034916200180f565b6200003e620000cd565b6200004862000284565b62000052620003be565b6200005c6200062b565b6200009e6301ffc9a760e01b60005260046020527f9fe05126d2d9ecf60592e254dead906a4b2e492f36cca727682c38e9008c6ac1805460ff19166001179055565b600680546001600160a01b03191633908117909155620000c49084908490849062000772565b50505062001b6e565b60dc6000908152600160208190527f81c2bf9f7c6e8ac9bd8bcd9d323e94b867d2f5054aff8759d884773c680ec1ec805460ff19166064179055906002906200011460dc90565b60ff1660ff16815260200190815260200160002060006200013a620009dc60201b60201c565b60ff1660ff168152602001908152602001600020600062000160620009e160201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200019460dc90565b60ff1660ff1681526020019081526020016000206000620001ba620009e160201b60201c565b60ff1660ff1681526020019081526020016000206000620001e0620009dc60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200021460dc90565b60ff1660ff16815260200190815260200160002060006200023a620009e160201b60201c565b60ff1660ff168152602001908152602001600020600062000260620009e660201b60201c565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f1bd07f61ef326b4de236f5b68f225f46ff76ee2c375ae31a06da201c49c70c128054606460ff1991821681179092557f879b65b464eb639409179c76c21acf6fbada740970e2300d47ea857d08cacd3c8054909116600190811790915560009182526002602052907f7673bcbb3401a7cbae68f81d40eea2cf35afdaf7ecd016ebf3f02857fcc1260a9062000318606e90565b60ff1660ff16815260200190815260200160002060006200033e620009dc60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019060029062000372606490565b60ff1660ff168152602001908152602001600020600062000398620009e160201b60201c565b60ff1660ff168152602001908152602001600020600062000260620009eb60201b60201c565b60d26000908152600160208190527fcfa08e49dd9e66a4af3cdf0c2ef56f411154768307cac6dc23ee77c0386825be805460ff1916600a179055906002906200040560d290565b60ff1660ff16815260200190815260200160002060006200042b620009f060201b60201c565b60ff1660ff168152602001908152602001600020600062000451620009f560201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200048560d290565b60ff1660ff1681526020019081526020016000206000620004ab620009f060201b60201c565b60ff1660ff1681526020019081526020016000206000620004d1620009fa60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200050560d290565b60ff1660ff16815260200190815260200160002060006200052b620009f060201b60201c565b60ff1660ff168152602001908152602001600020600062000551620009ff60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200058560d290565b60ff1660ff1681526020019081526020016000206000620005ab620009ff60201b60201c565b60ff1660ff1681526020019081526020016000206000620005d1620009dc60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200060560d290565b60ff1660ff16815260200190815260200160002060006200023a620009dc60201b60201c565b60c86000908152600160208190527f345f7c6c888721344af4147de0834159e0b302300ba13c4e7b6c0b60d8f2314e805460ff19166064179055906002906200067260c890565b60ff1660ff168152602001908152602001600020600062000698620009dc60201b60201c565b60ff1660ff1681526020019081526020016000206000620006be620009e160201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190600290620006f260c890565b60ff1660ff168152602001908152602001600020600062000718620009e160201b60201c565b60ff1660ff16815260200190815260200160002060006200073e620009dc60201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906002906200037260c890565b600654600160a01b900460ff1615620007e95760405162461bcd60e51b815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201526d195b881a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b620007f48462000a04565b600b80546001600160a01b0319166001600160a01b0386161790556040516368aebf7b60e01b815260006004820152620008b49073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af415801562000865573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200088b919062001869565b60408051808201909152600981526841646d696e526f6c6560b81b602082015260008062000a7f565b6040516368aebf7b60e01b81526001600160401b036004820152620009609073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af415801562000910573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000936919062001869565b60408051808201909152600a8152695075626c6963526f6c6560b01b602082015260008062000a7f565b62000987838360466000856040518060200160405280600081525062000b6560201b60201c565b63e72ac88960e01b60005260046020527f9a696e39c9271247de89f527594f54a86ad167890e17fcc25dba8d6ec797a1c9805460ff1916600117905550506006805460ff60a01b1916600160a01b1790555050565b606490565b606e90565b60c890565b60d290565b600a90565b601490565b601e90565b602890565b60005460ff161562000a645760405162461bcd60e51b815260206004820152602260248201527f4163636573734d616e616765643a20616c726561647920696e697469616c697a604482015261195960f21b6064820152608401620007e0565b62000a6f8162000c78565b506000805460ff19166001179055565b801562000a965762000a9384848462000cd4565b50505b600062000aa585858562000f5e565b8051600090815260076020526040812080546001600160401b0319166001600160401b038981169182179092556009805460018101825593527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af6004840401805460039094166008026101000a928302199093169102179055905062000b5e62000b2f8662000f9a565b604080518451602080830191909152850151151581830152815180820383018152606090910190915262001022565b5050505050565b62000ba76301ffc9a760e01b60005260046020527f9fe05126d2d9ecf60592e254dead906a4b2e492f36cca727682c38e9008c6ac1805460ff19166001179055565b62000bb3828762001032565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d01000000000000000000000000008615150217815590506001810162000c32838262001940565b506303fb044760e21b60005260046020527f91a409085efa2cad9dad64790cb14ef1d9b61e9173e901d74242d27ef0ced4a1805460ff1916600117905550505050505050565b60008054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b6000808062000ce38662000f9a565b905062000cf08162001058565b9250821562000d255762000d0481620010e6565b80602001905181019062000d19919062001a1d565b60200151915062000d29565b8391505b856001600160401b038116158062000d4957506001600160401b03818116145b1562000d745760405163981bf42160e01b81526001600160401b0388166004820152602401620007e0565b82801562000d8c57506127106001600160401b038216105b1562000db757604051633119b9df60e21b81526001600160401b0388166004820152602401620007e0565b82801562000dd057506127106001600160401b03821610155b1562000dfb5760405163094fb39160e01b81526001600160401b0388166004820152602401620007e0565b600062000e088762001193565b905062000e1581620011d6565b60000362000e42576040516321ab17ab60e01b81526001600160401b0389166004820152602401620007e0565b60008181526007602090815260409182902054825163bc1b392d60e01b8152925162000ee9936001600160401b039092169273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9263bc1b392d92600480830193928290030181865af415801562000eb1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ed7919062001869565b6001600160401b039081169116141590565b801562000f1057506000818152600760205260409020546001600160401b03898116911614155b1562000f535760008181526007602052604090819020549051631660fb9360e21b81526001600160401b03909116600482015260248101829052604401620007e0565b505050935093915050565b604080518082018252600080825260208201528151808301909252908062000f868562001193565b815260200183151581525090509392505050565b604051630f37f38f60e41b81526001600160401b038216600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063f37f38f090602401602060405180830381865af415801562000ff6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200101c919062001a76565b92915050565b6200102e8282620011ff565b5050565b600680546001600160a01b0319166001600160a01b0384161790556200102e8162001637565b60008181526003602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af4158015620010c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200101c919062001a90565b60008181526003602052604090206001018054606091906200110890620018b1565b80601f01602080910402602001604051908101604052809291908181526020018280546200113690620018b1565b8015620011875780601f106200115b5761010080835404028352916020019162001187565b820191906000526020600020905b8154815290600101906020018083116200116957829003601f168201915b50505050509050919050565b600080829050601f81511115620011c1578260405163305a27a960e01b8152600401620007e0919062001aae565b8051620011ce8262001afe565b179392505050565b600060ff8216601f8111156200101c57604051632cd44ac360e21b815260040160405180910390fd5b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801562001253573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001279919062001b23565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015620012cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620012f5919062001a90565b620013435760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401620007e0565b600083815260036020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015620013ad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620013d3919062001a90565b620014215760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401620007e0565b334360006200143085620017a4565b6200143d57606462001453565b60ff808616600090815260016020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b919091021785556000888152600360205260409020909150600101620014df878262001940565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801562001553573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001579919062001b23565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015620015ca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620015f0919062001b48565b6040805160ff938416815260ff19929092166020830152918416818301526001600160a01b038616606082015232608082015290519081900360a00190a150505050505050565b6005546001600160a01b031615620016725760055460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401620007e0565b6001600160a01b0381166200169a5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003620016d25760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620007e0565b600580546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e14a543960e01b60048201526301ffc9a790602401602060405180830381865afa9250505080156200174f575060408051601f3d908101601f191682019092526200174c9181019062001a90565b60015b620017795760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620007e0565b806200102e5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401620007e0565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401620010a2565b80516001600160a01b03811681146200180a57600080fd5b919050565b6000806000606084860312156200182557600080fd5b6200183084620017f2565b92506200184060208501620017f2565b60408501519092506001600160601b03811681146200185e57600080fd5b809150509250925092565b6000602082840312156200187c57600080fd5b81516001600160401b03811681146200189457600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620018c657607f821691505b602082108103620018e757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200193b57600081815260208120601f850160051c81016020861015620019165750805b601f850160051c820191505b81811015620019375782815560010162001922565b5050505b505050565b81516001600160401b038111156200195c576200195c6200189b565b62001974816200196d8454620018b1565b84620018ed565b602080601f831160018114620019ac5760008415620019935750858301515b600019600386901b1c1916600185901b17855562001937565b600085815260208120601f198616915b82811015620019dd57888601518255948401946001909101908401620019bc565b5085821015620019fc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b805180151581146200180a57600080fd5b60006040828403121562001a3057600080fd5b604080519081016001600160401b038111828210171562001a555762001a556200189b565b6040528251815262001a6a6020840162001a0c565b60208201529392505050565b60006020828403121562001a8957600080fd5b5051919050565b60006020828403121562001aa357600080fd5b620018948262001a0c565b600060208083528351808285015260005b8181101562001add5785810183015185820160400152820162001abf565b506000604082860101526040601f19601f8301168501019250505092915050565b80516020808301519190811015620018e75760001960209190910360031b1b16919050565b60006020828403121562001b3657600080fd5b815160ff811681146200189457600080fd5b60006020828403121562001b5b57600080fd5b815160ff19811681146200189457600080fd5b6157258062001b7e6000396000f3fe608060405234801561001057600080fd5b50600436106104805760003560e01c806382f65adb11610257578063b68ec14611610146578063d2f21a29116100c3578063e9e96c7011610087578063e9e96c7014610ab7578063f48016ce14610af5578063f7bc431c14610b08578063f8b648ac1461065f578063fe1f18d614610b1b57600080fd5b8063d2f21a2914610a7e578063d5b221bd146105d9578063d78a83b114610a91578063dee3262314610aa4578063e8951ee6146105ab57600080fd5b8063bf1db3f91161010a578063bf1db3f914610a3a578063bf7e214f14610a4d578063c2f1a2d2146105d9578063ca600b1c14610a63578063cd50b97e14610a6b57600080fd5b8063b68ec1461461065f578063b7d2b162146109ee578063bc8d400014610a01578063bd4fe04e14610a14578063bd5947e314610a2757600080fd5b8063954fab2c116101d4578063a13df2ab11610198578063a13df2ab146108f1578063a5961b4c14610904578063a76ee018146109b5578063a8989675146109c8578063b428b0b0146109db57600080fd5b8063954fab2c146108a5578063976b0a77146108b85780639a960d52146108cb5780639d7421f4146108de5780639df0280b146105ab57600080fd5b80638d4eae9d1161021b5780638d4eae9d1461083e5780638dc77f42146105ab5780638eaa6ac0146108515780638fb3603714610871578063950ad70b1461089257600080fd5b806382f65adb1461065f578063835933c9146107f057806386f0c47b146108035780638793a9ac14610823578063893d20e81461083657600080fd5b806338a699a4116103735780635dfa73db116102f057806375b238fc116102b457806375b238fc146107af57806375c82776146107b75780637a415802146105d95780637a9e5e4b146107ca5780637cef4842146107dd57600080fd5b80635dfa73db1461074d578063644c45e01461075657806364c55d9c146107815780636fa2985314610794578063735391271461079c57600080fd5b8063468a186711610337578063468a1867146106f657806354f6127f1461070957806357f96805146107295780635ab1bd531461073c5780635d4345cc146105ab57600080fd5b806338a699a4146106a2578063392f5f64146106b55780633ca7c02a146106bd5780633fd85561146106e357806340529b0f146105ab57600080fd5b8063167bd395116104015780632f61088a116103c55780632f61088a1461063957806331d311a71461064c57806333bb0a971461065f57806337f135d714610672578063384c9a571461068f57600080fd5b8063167bd395146105c65780631c45fe7a146105d95780631e23a2f5146105ec5780631eff4b22146105ff57806322f46b841461062657600080fd5b80630d358181116104485780630d3581811461055c5780630f526f7d146105825780630fec111c1461059557806310203d2c146105ab578063138461e0146105be57600080fd5b806301ffc9a71461048557806302cd3071146104c757806303014974146104ec57806309648a9d1461050d5780630b24cf5f14610547575b600080fd5b6104b2610493366004613d30565b6001600160e01b03191660009081526004602052604090205460ff1690565b60405190151581526020015b60405180910390f35b600c546001600160a01b03165b6040516001600160a01b0390911681526020016104be565b6104ff6104fa366004613d6f565b610b2e565b6040519081526020016104be565b61053561051b366004613d8c565b600090815260036020526040902054610100900460ff1690565b60405160ff90911681526020016104be565b61055a610555366004613f96565b610b55565b005b61053561056a366004613fdb565b60ff9081166000908152600160205260409020541690565b61055a610590366004613ff8565b610b99565b61059d610bb6565b6040516104be929190614081565b61055a6105b9366004613ff8565b610d38565b61055a610d4d565b61055a6105d4366004614128565b610f6f565b61055a6105e736600461427e565b611017565b61055a6105fa3660046142f2565b611058565b6104ff7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b61055a610634366004614353565b61107e565b61055a61064736600461441d565b611094565b6104ff61065a366004614462565b61112f565b61055a61066d36600461447f565b6111c0565b61067a600081565b60405163ffffffff90911681526020016104be565b6104b261069d366004613d6f565b6111eb565b6104b26106b0366004613d8c565b611381565b6009546104ff565b6106cb6001600160401b0381565b6040516001600160401b0390911681526020016104be565b6106cb6106f1366004613d8c565b61140c565b6104ff6107043660046144e0565b611451565b61071c610717366004613d8c565b6114ae565b6040516104be91906144fd565b61055a6107373660046145b3565b611553565b6005546001600160a01b03166104d4565b6106cb61271081565b600554600160a01b90046001600160601b03166040516001600160601b0390911681526020016104be565b61055a61078f3660046146b3565b61157b565b6104d46115a3565b61055a6107aa3660046146ff565b611645565b6106cb600081565b61055a6107c5366004614770565b61166d565b61055a6107d8366004614462565b611693565b61055a6107eb3660046147c8565b61170e565b6104ff6107fe366004613d6f565b611798565b610816610811366004613d6f565b6117db565b6040516104be91906147e6565b61055a6108313660046147ff565b611880565b6104d4611895565b61055a61084c3660046148be565b611972565b61086461085f366004613d8c565b611998565b6040516104be919061494d565b610879611ad9565b6040516001600160e01b031990911681526020016104be565b61055a6108a0366004614981565b611afd565b61055a6108b33660046149d9565b611b5f565b61055a6108c6366004614a20565b611b85565b61055a6108d9366004614bc8565b611dad565b61055a6108ec366004614c0f565b611dd3565b6104ff6108ff3660046144e0565b611df9565b6109a8610912366004613d8c565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260036020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516104be9190614c66565b61055a6109c3366004614c74565b611e26565b61055a6109d6366004614cbb565b611ec1565b6104b26109e9366004614cfb565b611fb2565b6104b26109fc366004614cfb565b6121a6565b61055a610a0f366004614d29565b612331565b61055a610a22366004614d6e565b612357565b61055a610a35366004614daf565b61237f565b6104b2610a48366004613fdb565b6123a7565b60005461010090046001600160a01b03166104d4565b6104d46123f4565b61055a610a79366004614353565b612452565b61055a610a8c366004613ff8565b612469565b6104d4610a9f366004614def565b612480565b61055a610ab2366004613ff8565b6124a9565b6104b2610ac5366004614cbb565b60ff9283166000908152600260209081526040808320948616835293815283822092851682529190915220541690565b6104ff610b03366004614e2b565b6124c0565b61055a610b16366004614462565b612544565b61055a610b29366004613ff8565b6125c0565b6001600160401b0381166000908152600860205260408120610b4f906125d5565b92915050565b610b62335b6000366125df565b610b95610b708360786126f2565b82604051602001610b819190614e59565b60405160208183030381529060405261273e565b5050565b610ba233610b5a565b610b95610bb083608c6126f2565b82612748565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610c396005546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610c81611895565b6001600160a01b03168152602001826001018054610c9e90614eb9565b80601f0160208091040260200160405190810160405280929190818152602001828054610cca90614eb9565b8015610d175780601f10610cec57610100808354040283529160200191610d17565b820191906000526020600020905b815481529060010190602001808311610cfa57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b610d4133610b5a565b610b95610bb083611451565b6005546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610daf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd39190614ef3565b15610e1a576005546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6005546001600160a01b0316610e435760405163cf29926160e01b815260040160405180910390fd5b60055460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610e8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb09190614ef3565b610ed8576040516372657a5160e01b81526001600160a01b0382166004820152602401610e11565b600554604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610f22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f469190614f10565b600560146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b610f7833610b5a565b610f846106b08361112f565b610fac576040516325b6f39560e21b81526001600160a01b0383166004820152602401610e11565b600b5460405163167bd39560e01b81526001600160a01b03848116600483015283151560248301529091169063167bd39590604401600060405180830381600087803b158015610ffb57600080fd5b505af115801561100f573d6000803e3d6000fd5b505050505050565b61102033610b5a565b61105261102c85611451565b8360405160200161103d9190614f2d565b60405160208183030381529060405283612752565b50505050565b61106133610b5a565b610b9561106d8361112f565b82604051602001610b8191906147e6565b61108733610b5a565b610b95828260018061275d565b61109d33610b5a565b6040516355ee627560e01b81526001600160c01b031983166004820152610b959073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af41580156110fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111e9190614f80565b82604051602001610b819190614f99565b604051637a400b6760e11b8152601e6004820152606082901b6bffffffffffffffffffffffff1916602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af415801561119c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4f9190614f80565b6111c933610b5a565b6111e66111d584611451565b82604051602001610b819190614f2d565b505050565b600033816111f884611798565b905061120381611381565b61122a57604051627a416f60e01b81526001600160401b0385166004820152602401610e11565b6001600160401b038416600090815260086020526040902061124c9083612806565b1561137757600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b039091169063fe0776f59073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156112be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e29190614fc7565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b0385166024820152604401600060405180830381600087803b15801561133257600080fd5b505af1158015611346573d6000803e3d6000fd5b5050506001600160401b038516600090815260086020526040902061136c915083612828565b506001949350505050565b5060009392505050565b60008181526003602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156113e8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4f9190614ef3565b60006009828154811061142157611421614fe4565b90600052602060002090600491828204019190066008029054906101000a90046001600160401b03169050919050565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660d25b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff16602482015260440161117f565b60008181526003602052604090206001018054606091906114ce90614eb9565b80601f01602080910402602001604051908101604052809291908181526020018280546114fa90614eb9565b80156115475780601f1061151c57610100808354040283529160200191611547565b820191906000526020600020905b81548152906001019060200180831161152a57829003601f168201915b50505050509050919050565b61155c33610b5a565b610b9561156a83608c6126f2565b82604051602001610b819190614ffa565b61158433610b5a565b6111e661159284606e6126f2565b8360405160200161103d919061509d565b6005546040805163a3bcd81d60e01b815260048101919091526015604482015274436f6d706f6e656e744f776e65725365727669636560581b6064820152600360248201526000916001600160a01b03169063a3bcd81d906084015b602060405180830381865afa15801561161c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611640919061519f565b905090565b61164e33610b5a565b610b9561165c83606e6126f2565b82604051602001610b81919061509d565b61167633610b5a565b61105261168285611451565b8360405160200161103d91906151bc565b600054339061010090046001600160a01b031681146116cf5760405162d1953b60e31b81526001600160a01b0382166004820152602401610e11565b816001600160a01b03163b600003611705576040516361798f2f60e11b81526001600160a01b0383166004820152602401610e11565b610b958261283d565b61171733610b5a565b6040516355ee627560e01b81526001600160c01b031983166004820152610b959073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611774573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb09190614f80565b604051630f37f38f60e41b81526001600160401b038216600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063f37f38f09060240161117f565b604080518082018252600080825260208201529051630f37f38f60e41b81526001600160401b038316600482015261186d9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063f37f38f090602401602060405180830381865af4158015611849573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107179190614f80565b806020019051810190610b4f91906151ec565b61188933610b5a565b610b95610bb083611798565b6005546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156118fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191e9190614ef3565b1561196257600554604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a906024016115ff565b506006546001600160a01b031690565b61197b33610b5a565b610b9561198783611df9565b82604051602001610b819190615224565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260036020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c08201529283526001810180549192840191611a5090614eb9565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7c90614eb9565b8015611ac95780601f10611a9e57610100808354040283529160200191611ac9565b820191906000526020600020905b815481529060010190602001808311611aac57829003601f168201915b5050505050815250509050919050565b60008054600160a81b900460ff16611af15750600090565b50638fb3603760e01b90565b611b0633610b5a565b6000611b1484846000612899565b5090506000611b24858584612b04565b9050611b58611b3286611798565b82604051602001611b4391906147e6565b60405160208183030381529060405285612752565b5050505050565b611b6833610b5a565b6111e6611b7484611df9565b8360405160200161103d9190615224565b600654600160a01b900460ff1615611bf65760405162461bcd60e51b815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201526d195b881a5b9a5d1a585b1a5e995960921b6064820152608401610e11565b611bff84612b40565b600b80546001600160a01b0319166001600160a01b0386161790556040516368aebf7b60e01b815260006004820152611cbc9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611c6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c929190614fc7565b6040518060400160405280600981526020016841646d696e526f6c6560b81b81525060008061275d565b6040516368aebf7b60e01b81526001600160401b036004820152611d659073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611d16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d3a9190614fc7565b6040518060400160405280600a8152602001695075626c6963526f6c6560b01b81525060008061275d565b611d848383604660008560405180602001604052806000815250612bb7565b611d9463e72ac88960e01b612c8c565b50506006805460ff60a01b1916600160a01b1790555050565b611db633610b5a565b6111e6611dc284611451565b8360405160200161103d91906152c9565b611ddc33610b5a565b6111e6611de884611451565b82604051602001610b8191906151bc565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660dc61147a565b611e2f33610b5a565b6040516355ee627560e01b81526001600160c01b0319841660048201526111e69073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611e8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb09190614f80565b8360405160200161103d9190614f99565b60ff8381166000908152600160205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015611f26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f4a9190614ef3565b15611f5457505050565b60ff8084166000908152600260209081526040808320868516845282528083208585168452909152902054166111e657604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610e11565b6000611fbd33610b5a565b6000611fc884611798565b9050611fd381611381565b611ffb57604051636777365b60e01b81526001600160401b0385166004820152602401610e11565b60008181526003602052604090205461202a90610100900460ff1661201e606490565b60ff9081169116141590565b156120535760405163fe229d5d60e01b81526001600160401b0385166004820152602401610e11565b6001600160401b03841660009081526008602052604090206120759084612806565b61137757600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b03909116906325c471a09073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156120e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061210a9190614fc7565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038616602482015260006044820152606401600060405180830381600087803b15801561216157600080fd5b505af1158015612175573d6000803e3d6000fd5b5050506001600160401b038516600090815260086020526040902061219b915084612cb1565b506001915050610b4f565b60006121b133610b5a565b60006121bc84611798565b90506121c781611381565b6121ef57604051634cee277360e11b81526001600160401b0385166004820152602401610e11565b6001600160401b03841660009081526008602052604090206122119084612806565b1561137757600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b039091169063b7d2b1629073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015612283573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a79190614fc7565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b0386166024820152604401600060405180830381600087803b1580156122f757600080fd5b505af115801561230b573d6000803e3d6000fd5b5050506001600160401b038516600090815260086020526040902061219b915084612828565b61233a33610b5a565b610b9561234683611451565b82604051602001610b8191906152c9565b61236033610b5a565b6111e661236e84608c6126f2565b8360405160200161103d9190614ffa565b61238833610b5a565b6111e66123968460786126f2565b8360405160200161103d9190614e59565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016113cb565b6005546040805163a3bcd81d60e01b815260048101919091526013604482015272446973747269627574696f6e5365727669636560681b6064820152600360248201526000916001600160a01b03169063a3bcd81d906084016115ff565b61245b33610b5a565b610b9582826000600161275d565b61247233610b5a565b610b95610bb08360786126f2565b6001600160401b03821660009081526008602052604081206124a29083612cc6565b9392505050565b6124b233610b5a565b610b95610bb083606e6126f2565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af4158015612520573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124a29190614f80565b61254d33610b5a565b600c546001600160a01b03161561259e5760405162461bcd60e51b8152602060048201526015602482015274125b9cdd185b98d954995859195c881a5cc81cd95d605a1b6044820152606401610e11565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6125c933610b5a565b610b95610bb083611df9565b6000610b4f825490565b60008061261b6125fd6000546001600160a01b036101009091041690565b863061260d60046000898b615420565b6126169161544a565b612cd2565b9150915081611b585763ffffffff8116156126cf576000805460ff60a81b1916600160a81b17905561265b6000546001600160a01b036101009091041690565b6001600160a01b03166394c7d7ee8686866040518463ffffffff1660e01b815260040161268a9392919061547a565b600060405180830381600087803b1580156126a457600080fd5b505af11580156126b8573d6000803e3d6000fd5b50506000805460ff60a81b1916905550611b589050565b60405162d1953b60e31b81526001600160a01b0386166004820152602401610e11565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401612503565b610b958282612dde565b610b958282613200565b6111e6838383613534565b80156127715761276e848484612899565b50505b600061277e858585612b04565b80516000908152600760205260408120805467ffffffffffffffff19166001600160401b038981169182179092556009805460018101825593527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af6004840401805460039094166008026101000a9283021990931691021790559050611b5861106d86611798565b6001600160a01b038116600090815260018301602052604081205415156124a2565b60006124a2836001600160a01b0384166139cf565b60008054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b60008060006128a786611798565b90506128b281611381565b925082156128e1576128c3816114ae565b8060200190518101906128d691906151ec565b6020015191506128e5565b8391505b856001600160401b038116158061290457506001600160401b03818116145b1561292d5760405163981bf42160e01b81526001600160401b0388166004820152602401610e11565b82801561294457506127106001600160401b038216105b1561296d57604051633119b9df60e21b81526001600160401b0388166004820152602401610e11565b82801561298557506127106001600160401b03821610155b156129ae5760405163094fb39160e01b81526001600160401b0388166004820152602401610e11565b60006129b987613ac9565b90506129c481613b07565b6000036129ef576040516321ab17ab60e01b81526001600160401b0389166004820152602401610e11565b60008181526007602090815260409182902054825163bc1b392d60e01b81529251612a92936001600160401b039092169273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9263bc1b392d92600480830193928290030181865af4158015612a5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a809190614fc7565b6001600160401b039081169116141590565b8015612ab857506000818152600760205260409020546001600160401b03898116911614155b15612af95760008181526007602052604090819020549051631660fb9360e21b81526001600160401b03909116600482015260248101829052604401610e11565b505050935093915050565b60408051808201909152600080825260208201526040518060400160405280612b2c85613ac9565b815260200183151581525090509392505050565b60005460ff1615612b9e5760405162461bcd60e51b815260206004820152602260248201527f4163636573734d616e616765643a20616c726561647920696e697469616c697a604482015261195960f21b6064820152608401610e11565b612ba78161283d565b506000805460ff19166001179055565b612bf86301ffc9a760e01b60005260046020527f9fe05126d2d9ecf60592e254dead906a4b2e492f36cca727682c38e9008c6ac1805460ff19166001179055565b612c028287613b2f565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101612c728382615500565b50612c836303fb044760e21b612c8c565b50505050505050565b6001600160e01b0319166000908152600460205260409020805460ff19166001179055565b60006124a2836001600160a01b038416613b53565b60006124a28383613ba2565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612d4191906155bf565b600060405180830381855afa9150503d8060008114612d7c576040519150601f19603f3d011682016040523d82523d6000602084013e612d81565b606091505b50915091508115612dd3576040815110612db35780806020019051810190612da991906155db565b9094509250612dd3565b6020815110612dd35780806020019051810190612dd09190614ef3565b93505b505094509492505050565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612e31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e55919061560a565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015612eaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ece9190614ef3565b612f1a5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610e11565b600083815260036020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015612f83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fa79190614ef3565b612ff35760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610e11565b33436000613000856123a7565b61300b576064613021565b60ff808616600090815260016020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b9190910217855560008881526003602052604090209091506001016130ab8782615500565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801561311e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613142919061560a565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613192573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131b69190615627565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a0015b60405180910390a150505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613252573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132769190614ef3565b6132c25760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610e11565b600082815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af415801561332e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133529190614ef3565b61339e5760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610e11565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166133e24390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613474573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613498919061560a565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156134e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061350c9190615627565b87868632876040516135249796959493929190615644565b60405180910390a1505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613586573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135aa9190614ef3565b6135f65760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610e11565b600083815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613662573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136869190614ef3565b6136d25760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610e11565b60008581526003602052604090206001016136ed8582615500565b508154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166137324390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156137c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137e8919061560a565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613838573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061385c9190615627565b87868632876040516138749796959493929190615644565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156138ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613912919061560a565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613962573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139869190615627565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c0016131ef565b60008181526001830160205260408120548015613ab85760006139f3600183615694565b8554909150600090613a0790600190615694565b9050808214613a6c576000866000018281548110613a2757613a27614fe4565b9060005260206000200154905080876000018481548110613a4a57613a4a614fe4565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080613a7d57613a7d6156b5565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610b4f565b6000915050610b4f565b5092915050565b600080829050601f81511115613af4578260405163305a27a960e01b8152600401610e1191906144fd565b8051613aff826156cb565b179392505050565b600060ff8216601f811115610b4f57604051632cd44ac360e21b815260040160405180910390fd5b600680546001600160a01b0319166001600160a01b038416179055610b9581613bcc565b6000818152600183016020526040812054613b9a57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b4f565b506000610b4f565b6000826000018281548110613bb957613bb9614fe4565b9060005260206000200154905092915050565b6005546001600160a01b031615613c055760055460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610e11565b6001600160a01b038116613c2c5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003613c625760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610e11565b600580546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e14a543960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015613cdc575060408051601f3d908101601f19168201909252613cd991810190614ef3565b60015b613d045760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610e11565b80610b955760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610e11565b50565b600060208284031215613d4257600080fd5b81356001600160e01b0319811681146124a257600080fd5b6001600160401b0381168114613d2d57600080fd5b600060208284031215613d8157600080fd5b81356124a281613d5a565b600060208284031215613d9e57600080fd5b5035919050565b6001600160601b0381168114613d2d57600080fd5b8035613dc581613da5565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613e0257613e02613dca565b60405290565b604051608081016001600160401b0381118282101715613e0257613e02613dca565b60405161010081016001600160401b0381118282101715613e0257613e02613dca565b60405161014081016001600160401b0381118282101715613e0257613e02613dca565b60405161020081016001600160401b0381118282101715613e0257613e02613dca565b6001600160a01b0381168114613d2d57600080fd5b8035613dc581613e93565b600060408284031215613ec557600080fd5b613ecd613de0565b9050813581526020820135602082015292915050565b8015158114613d2d57600080fd5b8035613dc581613ee3565b600060c08284031215613f0e57600080fd5b60405160a081018181106001600160401b0382111715613f3057613f30613dca565b6040529050808235613f4181613da5565b81526020830135613f5181613e93565b6020820152613f638460408501613eb3565b60408201526080830135613f7681613ee3565b606082015260a0830135613f8981613e93565b6080919091015292915050565b60008060e08385031215613fa957600080fd5b8235613fb481613da5565b9150613fc38460208501613efc565b90509250929050565b60ff81168114613d2d57600080fd5b600060208284031215613fed57600080fd5b81356124a281613fcc565b6000806040838503121561400b57600080fd5b823561401681613da5565b9150602083013561402681613fcc565b809150509250929050565b60005b8381101561404c578181015183820152602001614034565b50506000910152565b6000815180845261406d816020860160208601614031565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516140c560a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261410b610120840182614055565b9050828103602084015261411f8185614055565b95945050505050565b6000806040838503121561413b57600080fd5b823561414681613e93565b9150602083013561402681613ee3565b63ffffffff81168114613d2d57600080fd5b600082601f83011261417957600080fd5b81356001600160401b038082111561419357614193613dca565b604051601f8301601f19908116603f011681019082821181831017156141bb576141bb613dca565b816040528381528660208588010111156141d457600080fd5b836020870160208301376000602085830101528094505050505092915050565b803564ffffffffff81168114613dc557600080fd5b60006080828403121561421b57600080fd5b614223613e08565b9050813561423081614156565b81526020828101359082015260408201356001600160401b0381111561425557600080fd5b61426184828501614168565b604083015250614273606083016141f4565b606082015292915050565b6000806000806080858703121561429457600080fd5b843561429f81613da5565b935060208501356142af81614156565b925060408501356001600160401b038111156142ca57600080fd5b6142d687828801614209565b92505060608501356142e781613fcc565b939692955090935050565b600080828403606081121561430657600080fd5b833561431181613e93565b92506040601f198201121561432557600080fd5b5061432e613de0565b60208401358152604084013561434381613ee3565b6020820152919491935090915050565b6000806040838503121561436657600080fd5b823561437181613d5a565b915060208301356001600160401b0381111561438c57600080fd5b61439885828601614168565b9150509250929050565b6001600160c01b031981168114613d2d57600080fd5b8035613dc5816143a2565b6000604082840312156143d557600080fd5b6143dd613de0565b905081356143ea81613da5565b815260208201356001600160401b0381111561440557600080fd5b61441184828501614168565b60208301525092915050565b6000806040838503121561443057600080fd5b823561443b816143a2565b915060208301356001600160401b0381111561445657600080fd5b614398858286016143c3565b60006020828403121561447457600080fd5b81356124a281613e93565b60008060006060848603121561449457600080fd5b833561449f81613da5565b925060208401356144af81614156565b915060408401356001600160401b038111156144ca57600080fd5b6144d686828701614209565b9150509250925092565b6000602082840312156144f257600080fd5b81356124a281613da5565b6020815260006124a26020830184614055565b6000610160828403121561452357600080fd5b61452b613e2a565b905061453682613dba565b815261454460208301613ea8565b6020820152604082013560408201526145608360608401613eb3565b60608201526145728360a08401613eb3565b60808201526145848360e08401613eb3565b60a08201526145966101208301613ef1565b60c08201526145a86101408301613ea8565b60e082015292915050565b60008061018083850312156145c757600080fd5b82356145d281613da5565b9150613fc38460208501614510565b600061020082840312156145f457600080fd5b6145fc613e4d565b905061460782613ea8565b815261461560208301613ea8565b602082015261462660408301613dba565b604082015261463760608301613dba565b60608201526146498360808401613eb3565b608082015261465b8360c08401613eb3565b60a082015261010061466f84828501613eb3565b60c0830152614682846101408501613eb3565b60e0830152614695846101808501613eb3565b908201526146a7836101c08401613eb3565b61012082015292915050565b600080600061024084860312156146c957600080fd5b83356146d481613da5565b92506146e385602086016145e1565b91506102208401356146f481613fcc565b809150509250925092565b600080610220838503121561471357600080fd5b823561471e81613da5565b9150613fc384602085016145e1565b60006080828403121561473f57600080fd5b614747613e08565b9050813581526020820135602082015260408201356001600160401b0381111561425557600080fd5b6000806000806080858703121561478657600080fd5b843561479181613da5565b935060208501356147a181614156565b925060408501356001600160401b038111156147bc57600080fd5b6142d68782880161472d565b600080604083850312156147db57600080fd5b8235614016816143a2565b8151815260208083015115159082015260408101610b4f565b6000806040838503121561481257600080fd5b823561401681613d5a565b6000610120828403121561483057600080fd5b614838613e2a565b905061484382613dba565b81526148528360208401613eb3565b602082015260608201356001600160401b0381111561487057600080fd5b61487c84828501614168565b6040830152506080820135606082015260a0820135608082015260c082013560a08201526148ac60e083016141f4565b60c08201526145a861010083016141f4565b600080604083850312156148d157600080fd5b82356148dc81613da5565b915060208301356001600160401b038111156148f757600080fd5b6143988582860161481d565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b6020815261495f602082018351614903565b6000602083015160c08084015261497960e0840182614055565b949350505050565b60008060006060848603121561499657600080fd5b83356149a181613d5a565b925060208401356001600160401b038111156149bc57600080fd5b6149c886828701614168565b92505060408401356146f481613fcc565b6000806000606084860312156149ee57600080fd5b83356149f981613da5565b925060208401356001600160401b03811115614a1457600080fd5b6149c88682870161481d565b60008060008060808587031215614a3657600080fd5b8435614a4181613e93565b93506020850135614a5181613e93565b92506040850135614a6181613da5565b915060608501356142e781613e93565b803561ffff81168114613dc557600080fd5b60006102008284031215614a9657600080fd5b614a9e613e70565b9050614aa982613dba565b8152614ab760208301613dba565b6020820152614ac8604083016143b8565b6040820152614ad9606083016143b8565b60608201526080820135608082015260a082013560a082015260c082013560c082015260e082013560e0820152610100808301356001600160401b0380821115614b2257600080fd5b614b2e86838701614168565b83850152610120925082850135915080821115614b4a57600080fd5b50614b5785828601614168565b828401525050610140614b6b818401614a71565b90820152610160614b7d838201614a71565b9082015261018082810135908201526101a0614b9a8184016141f4565b908201526101c0614bac8382016141f4565b908201526101e0614bbe8382016141f4565b9082015292915050565b600080600060608486031215614bdd57600080fd5b8335614be881613da5565b925060208401356001600160401b03811115614c0357600080fd5b6149c886828701614a83565b600080600060608486031215614c2457600080fd5b8335614c2f81613da5565b92506020840135614c3f81614156565b915060408401356001600160401b03811115614c5a57600080fd5b6144d68682870161472d565b60a08101610b4f8284614903565b600080600060608486031215614c8957600080fd5b8335614c94816143a2565b925060208401356001600160401b03811115614caf57600080fd5b6149c8868287016143c3565b600080600060608486031215614cd057600080fd5b8335614cdb81613fcc565b92506020840135614ceb81613fcc565b915060408401356146f481613fcc565b60008060408385031215614d0e57600080fd5b8235614d1981613d5a565b9150602083013561402681613e93565b60008060408385031215614d3c57600080fd5b8235614d4781613da5565b915060208301356001600160401b03811115614d6257600080fd5b61439885828601614a83565b60008060006101a08486031215614d8457600080fd5b8335614d8f81613da5565b9250614d9e8560208601614510565b91506101808401356146f481613fcc565b60008060006101008486031215614dc557600080fd5b8335614dd081613da5565b9250614ddf8560208601613efc565b915060e08401356146f481613fcc565b60008060408385031215614e0257600080fd5b8235614e0d81613d5a565b946020939093013593505050565b60ff1981168114613d2d57600080fd5b60008060408385031215614e3e57600080fd5b8235614e4981613fcc565b9150602083013561402681614e1b565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015260c0830191906060850151151560808501528060808601511660a0850152505092915050565b600181811c90821680614ecd57607f821691505b602082108103614eed57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215614f0557600080fd5b81516124a281613ee3565b600060208284031215614f2257600080fd5b81516124a281613da5565b6020815263ffffffff8251166020820152602082015160408201526000604083015160806060840152614f6360a0840182614055565b905064ffffffffff60608501511660808401528091505092915050565b600060208284031215614f9257600080fd5b5051919050565b602081526001600160601b038251166020820152600060208301516040808401526149796060840182614055565b600060208284031215614fd957600080fd5b81516124a281613d5a565b634e487b7160e01b600052603260045260246000fd5b81516001600160601b031681526020808301516001600160a01b031690820152604080830151908201526060808301516101608301916150469084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151151561012083015260e08301516001600160a01b038116610140840152613ac2565b81516001600160a01b03168152610200810160208301516150c960208401826001600160a01b03169052565b5060408301516150e460408401826001600160601b03169052565b5060608301516150ff60608401826001600160601b03169052565b50608083015161511c608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301516101006151528185018380518252602090810151910152565b60e085015180516101408601526020908101516101608601529085015180516101808601528101516101a085015261012085015180516101c0860152908101516101e08501529050613ac2565b6000602082840312156151b157600080fd5b81516124a281613e93565b6020815281516020820152602082015160408201526000604083015160806060840152614f6360a0840182614055565b6000604082840312156151fe57600080fd5b615206613de0565b82518152602083015161521881613ee3565b60208201529392505050565b602081526001600160601b03825116602082015260006020830151615256604084018280518252602090810151910152565b506040830151610120806080850152615273610140850183614055565b9150606085015160a0850152608085015160c085015260a085015160e085015260c08501516152ac61010086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b602081526152e36020820183516001600160601b03169052565b600060208301516152ff60408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e08301516101008181850152808501519150506102006101208181860152615377610220860184614055565b9250808601519050610140601f1986850301818701526153978483614055565b9350808701519150506101606153b28187018361ffff169052565b86015190506101806153c98682018361ffff169052565b8601516101a08681019190915286015190506101c06153f08187018364ffffffffff169052565b86015190506101e061540a8682018364ffffffffff169052565b86015164ffffffffff81168387015290506152bf565b6000808585111561543057600080fd5b8386111561543d57600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156154725780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b601f8211156111e657600081815260208120601f850160051c810160208610156154e15750805b601f850160051c820191505b8181101561100f578281556001016154ed565b81516001600160401b0381111561551957615519613dca565b61552d816155278454614eb9565b846154ba565b602080601f831160018114615562576000841561554a5750858301515b600019600386901b1c1916600185901b17855561100f565b600085815260208120601f198616915b8281101561559157888601518255948401946001909101908401615572565b50858210156155af5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082516155d1818460208701614031565b9190910192915050565b600080604083850312156155ee57600080fd5b82516155f981613ee3565b602084015190925061402681614156565b60006020828403121561561c57600080fd5b81516124a281613fcc565b60006020828403121561563957600080fd5b81516124a281614e1b565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e00190565b81810381811115610b4f57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b80516020808301519190811015614eed5760001960209190910360031b1b1691905056fea26469706673582212206aca59bcda13f1ffb2ec12b475dd9ad08918b0a38498be830f7d2e0431cc665664736f6c63430008140033",
|
3131
|
-
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106104805760003560e01c806382f65adb11610257578063b68ec14611610146578063d2f21a29116100c3578063e9e96c7011610087578063e9e96c7014610ab7578063f48016ce14610af5578063f7bc431c14610b08578063f8b648ac1461065f578063fe1f18d614610b1b57600080fd5b8063d2f21a2914610a7e578063d5b221bd146105d9578063d78a83b114610a91578063dee3262314610aa4578063e8951ee6146105ab57600080fd5b8063bf1db3f91161010a578063bf1db3f914610a3a578063bf7e214f14610a4d578063c2f1a2d2146105d9578063ca600b1c14610a63578063cd50b97e14610a6b57600080fd5b8063b68ec1461461065f578063b7d2b162146109ee578063bc8d400014610a01578063bd4fe04e14610a14578063bd5947e314610a2757600080fd5b8063954fab2c116101d4578063a13df2ab11610198578063a13df2ab146108f1578063a5961b4c14610904578063a76ee018146109b5578063a8989675146109c8578063b428b0b0146109db57600080fd5b8063954fab2c146108a5578063976b0a77146108b85780639a960d52146108cb5780639d7421f4146108de5780639df0280b146105ab57600080fd5b80638d4eae9d1161021b5780638d4eae9d1461083e5780638dc77f42146105ab5780638eaa6ac0146108515780638fb3603714610871578063950ad70b1461089257600080fd5b806382f65adb1461065f578063835933c9146107f057806386f0c47b146108035780638793a9ac14610823578063893d20e81461083657600080fd5b806338a699a4116103735780635dfa73db116102f057806375b238fc116102b457806375b238fc146107af57806375c82776146107b75780637a415802146105d95780637a9e5e4b146107ca5780637cef4842146107dd57600080fd5b80635dfa73db1461074d578063644c45e01461075657806364c55d9c146107815780636fa2985314610794578063735391271461079c57600080fd5b8063468a186711610337578063468a1867146106f657806354f6127f1461070957806357f96805146107295780635ab1bd531461073c5780635d4345cc146105ab57600080fd5b806338a699a4146106a2578063392f5f64146106b55780633ca7c02a146106bd5780633fd85561146106e357806340529b0f146105ab57600080fd5b8063167bd395116104015780632f61088a116103c55780632f61088a1461063957806331d311a71461064c57806333bb0a971461065f57806337f135d714610672578063384c9a571461068f57600080fd5b8063167bd395146105c65780631c45fe7a146105d95780631e23a2f5146105ec5780631eff4b22146105ff57806322f46b841461062657600080fd5b80630d358181116104485780630d3581811461055c5780630f526f7d146105825780630fec111c1461059557806310203d2c146105ab578063138461e0146105be57600080fd5b806301ffc9a71461048557806302cd3071146104c757806303014974146104ec57806309648a9d1461050d5780630b24cf5f14610547575b600080fd5b6104b2610493366004613d30565b6001600160e01b03191660009081526004602052604090205460ff1690565b60405190151581526020015b60405180910390f35b600c546001600160a01b03165b6040516001600160a01b0390911681526020016104be565b6104ff6104fa366004613d6f565b610b2e565b6040519081526020016104be565b61053561051b366004613d8c565b600090815260036020526040902054610100900460ff1690565b60405160ff90911681526020016104be565b61055a610555366004613f96565b610b55565b005b61053561056a366004613fdb565b60ff9081166000908152600160205260409020541690565b61055a610590366004613ff8565b610b99565b61059d610bb6565b6040516104be929190614081565b61055a6105b9366004613ff8565b610d38565b61055a610d4d565b61055a6105d4366004614128565b610f6f565b61055a6105e736600461427e565b611017565b61055a6105fa3660046142f2565b611058565b6104ff7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b61055a610634366004614353565b61107e565b61055a61064736600461441d565b611094565b6104ff61065a366004614462565b61112f565b61055a61066d36600461447f565b6111c0565b61067a600081565b60405163ffffffff90911681526020016104be565b6104b261069d366004613d6f565b6111eb565b6104b26106b0366004613d8c565b611381565b6009546104ff565b6106cb6001600160401b0381565b6040516001600160401b0390911681526020016104be565b6106cb6106f1366004613d8c565b61140c565b6104ff6107043660046144e0565b611451565b61071c610717366004613d8c565b6114ae565b6040516104be91906144fd565b61055a6107373660046145b3565b611553565b6005546001600160a01b03166104d4565b6106cb61271081565b600554600160a01b90046001600160601b03166040516001600160601b0390911681526020016104be565b61055a61078f3660046146b3565b61157b565b6104d46115a3565b61055a6107aa3660046146ff565b611645565b6106cb600081565b61055a6107c5366004614770565b61166d565b61055a6107d8366004614462565b611693565b61055a6107eb3660046147c8565b61170e565b6104ff6107fe366004613d6f565b611798565b610816610811366004613d6f565b6117db565b6040516104be91906147e6565b61055a6108313660046147ff565b611880565b6104d4611895565b61055a61084c3660046148be565b611972565b61086461085f366004613d8c565b611998565b6040516104be919061494d565b610879611ad9565b6040516001600160e01b031990911681526020016104be565b61055a6108a0366004614981565b611afd565b61055a6108b33660046149d9565b611b5f565b61055a6108c6366004614a20565b611b85565b61055a6108d9366004614bc8565b611dad565b61055a6108ec366004614c0f565b611dd3565b6104ff6108ff3660046144e0565b611df9565b6109a8610912366004613d8c565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260036020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516104be9190614c66565b61055a6109c3366004614c74565b611e26565b61055a6109d6366004614cbb565b611ec1565b6104b26109e9366004614cfb565b611fb2565b6104b26109fc366004614cfb565b6121a6565b61055a610a0f366004614d29565b612331565b61055a610a22366004614d6e565b612357565b61055a610a35366004614daf565b61237f565b6104b2610a48366004613fdb565b6123a7565b60005461010090046001600160a01b03166104d4565b6104d46123f4565b61055a610a79366004614353565b612452565b61055a610a8c366004613ff8565b612469565b6104d4610a9f366004614def565b612480565b61055a610ab2366004613ff8565b6124a9565b6104b2610ac5366004614cbb565b60ff9283166000908152600260209081526040808320948616835293815283822092851682529190915220541690565b6104ff610b03366004614e2b565b6124c0565b61055a610b16366004614462565b612544565b61055a610b29366004613ff8565b6125c0565b6001600160401b0381166000908152600860205260408120610b4f906125d5565b92915050565b610b62335b6000366125df565b610b95610b708360786126f2565b82604051602001610b819190614e59565b60405160208183030381529060405261273e565b5050565b610ba233610b5a565b610b95610bb083608c6126f2565b82612748565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820181905290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610c396005546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610c81611895565b6001600160a01b03168152602001826001018054610c9e90614eb9565b80601f0160208091040260200160405190810160405280929190818152602001828054610cca90614eb9565b8015610d175780601f10610cec57610100808354040283529160200191610d17565b820191906000526020600020905b815481529060010190602001808311610cfa57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b610d4133610b5a565b610b95610bb083611451565b6005546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610daf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd39190614ef3565b15610e1a576005546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6005546001600160a01b0316610e435760405163cf29926160e01b815260040160405180910390fd5b60055460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610e8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb09190614ef3565b610ed8576040516372657a5160e01b81526001600160a01b0382166004820152602401610e11565b600554604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610f22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f469190614f10565b600560146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b610f7833610b5a565b610f846106b08361112f565b610fac576040516325b6f39560e21b81526001600160a01b0383166004820152602401610e11565b600b5460405163167bd39560e01b81526001600160a01b03848116600483015283151560248301529091169063167bd39590604401600060405180830381600087803b158015610ffb57600080fd5b505af115801561100f573d6000803e3d6000fd5b505050505050565b61102033610b5a565b61105261102c85611451565b8360405160200161103d9190614f2d565b60405160208183030381529060405283612752565b50505050565b61106133610b5a565b610b9561106d8361112f565b82604051602001610b8191906147e6565b61108733610b5a565b610b95828260018061275d565b61109d33610b5a565b6040516355ee627560e01b81526001600160c01b031983166004820152610b959073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af41580156110fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111e9190614f80565b82604051602001610b819190614f99565b604051637a400b6760e11b8152601e6004820152606082901b6bffffffffffffffffffffffff1916602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af415801561119c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4f9190614f80565b6111c933610b5a565b6111e66111d584611451565b82604051602001610b819190614f2d565b505050565b600033816111f884611798565b905061120381611381565b61122a57604051627a416f60e01b81526001600160401b0385166004820152602401610e11565b6001600160401b038416600090815260086020526040902061124c9083612806565b1561137757600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b039091169063fe0776f59073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156112be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e29190614fc7565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b0385166024820152604401600060405180830381600087803b15801561133257600080fd5b505af1158015611346573d6000803e3d6000fd5b5050506001600160401b038516600090815260086020526040902061136c915083612828565b506001949350505050565b5060009392505050565b60008181526003602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156113e8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4f9190614ef3565b60006009828154811061142157611421614fe4565b90600052602060002090600491828204019190066008029054906101000a90046001600160401b03169050919050565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660d25b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff16602482015260440161117f565b60008181526003602052604090206001018054606091906114ce90614eb9565b80601f01602080910402602001604051908101604052809291908181526020018280546114fa90614eb9565b80156115475780601f1061151c57610100808354040283529160200191611547565b820191906000526020600020905b81548152906001019060200180831161152a57829003601f168201915b50505050509050919050565b61155c33610b5a565b610b9561156a83608c6126f2565b82604051602001610b819190614ffa565b61158433610b5a565b6111e661159284606e6126f2565b8360405160200161103d919061509d565b6005546040805163a3bcd81d60e01b815260048101919091526015604482015274436f6d706f6e656e744f776e65725365727669636560581b6064820152600360248201526000916001600160a01b03169063a3bcd81d906084015b602060405180830381865afa15801561161c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611640919061519f565b905090565b61164e33610b5a565b610b9561165c83606e6126f2565b82604051602001610b81919061509d565b61167633610b5a565b61105261168285611451565b8360405160200161103d91906151bc565b600054339061010090046001600160a01b031681146116cf5760405162d1953b60e31b81526001600160a01b0382166004820152602401610e11565b816001600160a01b03163b600003611705576040516361798f2f60e11b81526001600160a01b0383166004820152602401610e11565b610b958261283d565b61171733610b5a565b6040516355ee627560e01b81526001600160c01b031983166004820152610b959073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611774573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb09190614f80565b604051630f37f38f60e41b81526001600160401b038216600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063f37f38f09060240161117f565b604080518082018252600080825260208201529051630f37f38f60e41b81526001600160401b038316600482015261186d9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063f37f38f090602401602060405180830381865af4158015611849573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107179190614f80565b806020019051810190610b4f91906151ec565b61188933610b5a565b610b95610bb083611798565b6005546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156118fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191e9190614ef3565b1561196257600554604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a906024016115ff565b506006546001600160a01b031690565b61197b33610b5a565b610b9561198783611df9565b82604051602001610b819190615224565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260036020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c08201529283526001810180549192840191611a5090614eb9565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7c90614eb9565b8015611ac95780601f10611a9e57610100808354040283529160200191611ac9565b820191906000526020600020905b815481529060010190602001808311611aac57829003601f168201915b5050505050815250509050919050565b60008054600160a81b900460ff16611af15750600090565b50638fb3603760e01b90565b611b0633610b5a565b6000611b1484846000612899565b5090506000611b24858584612b04565b9050611b58611b3286611798565b82604051602001611b4391906147e6565b60405160208183030381529060405285612752565b5050505050565b611b6833610b5a565b6111e6611b7484611df9565b8360405160200161103d9190615224565b600654600160a01b900460ff1615611bf65760405162461bcd60e51b815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201526d195b881a5b9a5d1a585b1a5e995960921b6064820152608401610e11565b611bff84612b40565b600b80546001600160a01b0319166001600160a01b0386161790556040516368aebf7b60e01b815260006004820152611cbc9073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611c6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c929190614fc7565b6040518060400160405280600981526020016841646d696e526f6c6560b81b81525060008061275d565b6040516368aebf7b60e01b81526001600160401b036004820152611d659073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611d16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d3a9190614fc7565b6040518060400160405280600a8152602001695075626c6963526f6c6560b01b81525060008061275d565b611d848383604660008560405180602001604052806000815250612bb7565b611d9463e72ac88960e01b612c8c565b50506006805460ff60a01b1916600160a01b1790555050565b611db633610b5a565b6111e6611dc284611451565b8360405160200161103d91906152c9565b611ddc33610b5a565b6111e6611de884611451565b82604051602001610b8191906151bc565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660dc61147a565b611e2f33610b5a565b6040516355ee627560e01b81526001600160c01b0319841660048201526111e69073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611e8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb09190614f80565b8360405160200161103d9190614f99565b60ff8381166000908152600160205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015611f26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f4a9190614ef3565b15611f5457505050565b60ff8084166000908152600260209081526040808320868516845282528083208585168452909152902054166111e657604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610e11565b6000611fbd33610b5a565b6000611fc884611798565b9050611fd381611381565b611ffb57604051636777365b60e01b81526001600160401b0385166004820152602401610e11565b60008181526003602052604090205461202a90610100900460ff1661201e606490565b60ff9081169116141590565b156120535760405163fe229d5d60e01b81526001600160401b0385166004820152602401610e11565b6001600160401b03841660009081526008602052604090206120759084612806565b61137757600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b03909116906325c471a09073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af41580156120e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061210a9190614fc7565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b038616602482015260006044820152606401600060405180830381600087803b15801561216157600080fd5b505af1158015612175573d6000803e3d6000fd5b5050506001600160401b038516600090815260086020526040902061219b915084612cb1565b506001915050610b4f565b60006121b133610b5a565b60006121bc84611798565b90506121c781611381565b6121ef57604051634cee277360e11b81526001600160401b0385166004820152602401610e11565b6001600160401b03841660009081526008602052604090206122119084612806565b1561137757600b54604051631517388760e21b81526001600160401b03861660048201526001600160a01b039091169063b7d2b1629073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063545ce21c90602401602060405180830381865af4158015612283573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122a79190614fc7565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b0386166024820152604401600060405180830381600087803b1580156122f757600080fd5b505af115801561230b573d6000803e3d6000fd5b5050506001600160401b038516600090815260086020526040902061219b915084612828565b61233a33610b5a565b610b9561234683611451565b82604051602001610b8191906152c9565b61236033610b5a565b6111e661236e84608c6126f2565b8360405160200161103d9190614ffa565b61238833610b5a565b6111e66123968460786126f2565b8360405160200161103d9190614e59565b60ff81811660009081526001602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016113cb565b6005546040805163a3bcd81d60e01b815260048101919091526013604482015272446973747269627574696f6e5365727669636560681b6064820152600360248201526000916001600160a01b03169063a3bcd81d906084016115ff565b61245b33610b5a565b610b9582826000600161275d565b61247233610b5a565b610b95610bb08360786126f2565b6001600160401b03821660009081526008602052604081206124a29083612cc6565b9392505050565b6124b233610b5a565b610b95610bb083606e6126f2565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af4158015612520573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124a29190614f80565b61254d33610b5a565b600c546001600160a01b03161561259e5760405162461bcd60e51b8152602060048201526015602482015274125b9cdd185b98d954995859195c881a5cc81cd95d605a1b6044820152606401610e11565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6125c933610b5a565b610b95610bb083611df9565b6000610b4f825490565b60008061261b6125fd6000546001600160a01b036101009091041690565b863061260d60046000898b615420565b6126169161544a565b612cd2565b9150915081611b585763ffffffff8116156126cf576000805460ff60a81b1916600160a81b17905561265b6000546001600160a01b036101009091041690565b6001600160a01b03166394c7d7ee8686866040518463ffffffff1660e01b815260040161268a9392919061547a565b600060405180830381600087803b1580156126a457600080fd5b505af11580156126b8573d6000803e3d6000fd5b50506000805460ff60a81b1916905550611b589050565b60405162d1953b60e31b81526001600160a01b0386166004820152602401610e11565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401612503565b610b958282612dde565b610b958282613200565b6111e6838383613534565b80156127715761276e848484612899565b50505b600061277e858585612b04565b80516000908152600760205260408120805467ffffffffffffffff19166001600160401b038981169182179092556009805460018101825593527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af6004840401805460039094166008026101000a9283021990931691021790559050611b5861106d86611798565b6001600160a01b038116600090815260018301602052604081205415156124a2565b60006124a2836001600160a01b0384166139cf565b60008054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519081527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b60008060006128a786611798565b90506128b281611381565b925082156128e1576128c3816114ae565b8060200190518101906128d691906151ec565b6020015191506128e5565b8391505b856001600160401b038116158061290457506001600160401b03818116145b1561292d5760405163981bf42160e01b81526001600160401b0388166004820152602401610e11565b82801561294457506127106001600160401b038216105b1561296d57604051633119b9df60e21b81526001600160401b0388166004820152602401610e11565b82801561298557506127106001600160401b03821610155b156129ae5760405163094fb39160e01b81526001600160401b0388166004820152602401610e11565b60006129b987613ac9565b90506129c481613b07565b6000036129ef576040516321ab17ab60e01b81526001600160401b0389166004820152602401610e11565b60008181526007602090815260409182902054825163bc1b392d60e01b81529251612a92936001600160401b039092169273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9263bc1b392d92600480830193928290030181865af4158015612a5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a809190614fc7565b6001600160401b039081169116141590565b8015612ab857506000818152600760205260409020546001600160401b03898116911614155b15612af95760008181526007602052604090819020549051631660fb9360e21b81526001600160401b03909116600482015260248101829052604401610e11565b505050935093915050565b60408051808201909152600080825260208201526040518060400160405280612b2c85613ac9565b815260200183151581525090509392505050565b60005460ff1615612b9e5760405162461bcd60e51b815260206004820152602260248201527f4163636573734d616e616765643a20616c726561647920696e697469616c697a604482015261195960f21b6064820152608401610e11565b612ba78161283d565b506000805460ff19166001179055565b612bf86301ffc9a760e01b60005260046020527f9fe05126d2d9ecf60592e254dead906a4b2e492f36cca727682c38e9008c6ac1805460ff19166001179055565b612c028287613b2f565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101612c728382615500565b50612c836303fb044760e21b612c8c565b50505050505050565b6001600160e01b0319166000908152600460205260409020805460ff19166001179055565b60006124a2836001600160a01b038416613b53565b60006124a28383613ba2565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251612d4191906155bf565b600060405180830381855afa9150503d8060008114612d7c576040519150601f19603f3d011682016040523d82523d6000602084013e612d81565b606091505b50915091508115612dd3576040815110612db35780806020019051810190612da991906155db565b9094509250612dd3565b6020815110612dd35780806020019051810190612dd09190614ef3565b93505b505094509492505050565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612e31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e55919061560a565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015612eaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ece9190614ef3565b612f1a5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610e11565b600083815260036020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015612f83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fa79190614ef3565b612ff35760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610e11565b33436000613000856123a7565b61300b576064613021565b60ff808616600090815260016020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b9190910217855560008881526003602052604090209091506001016130ab8782615500565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801561311e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613142919061560a565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613192573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131b69190615627565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a0015b60405180910390a150505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613252573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132769190614ef3565b6132c25760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610e11565b600082815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af415801561332e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133529190614ef3565b61339e5760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610e11565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166133e24390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613474573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613498919061560a565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156134e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061350c9190615627565b87868632876040516135249796959493929190615644565b60405180910390a1505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613586573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135aa9190614ef3565b6135f65760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610e11565b600083815260036020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613662573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136869190614ef3565b6136d25760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610e11565b60008581526003602052604090206001016136ed8582615500565b508154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166137324390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156137c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137e8919061560a565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613838573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061385c9190615627565b87868632876040516138749796959493929190615644565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156138ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613912919061560a565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613962573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139869190615627565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c0016131ef565b60008181526001830160205260408120548015613ab85760006139f3600183615694565b8554909150600090613a0790600190615694565b9050808214613a6c576000866000018281548110613a2757613a27614fe4565b9060005260206000200154905080876000018481548110613a4a57613a4a614fe4565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080613a7d57613a7d6156b5565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610b4f565b6000915050610b4f565b5092915050565b600080829050601f81511115613af4578260405163305a27a960e01b8152600401610e1191906144fd565b8051613aff826156cb565b179392505050565b600060ff8216601f811115610b4f57604051632cd44ac360e21b815260040160405180910390fd5b600680546001600160a01b0319166001600160a01b038416179055610b9581613bcc565b6000818152600183016020526040812054613b9a57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b4f565b506000610b4f565b6000826000018281548110613bb957613bb9614fe4565b9060005260206000200154905092915050565b6005546001600160a01b031615613c055760055460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610e11565b6001600160a01b038116613c2c5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003613c625760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610e11565b600580546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e14a543960e01b60048201526301ffc9a790602401602060405180830381865afa925050508015613cdc575060408051601f3d908101601f19168201909252613cd991810190614ef3565b60015b613d045760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610e11565b80610b955760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610e11565b50565b600060208284031215613d4257600080fd5b81356001600160e01b0319811681146124a257600080fd5b6001600160401b0381168114613d2d57600080fd5b600060208284031215613d8157600080fd5b81356124a281613d5a565b600060208284031215613d9e57600080fd5b5035919050565b6001600160601b0381168114613d2d57600080fd5b8035613dc581613da5565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613e0257613e02613dca565b60405290565b604051608081016001600160401b0381118282101715613e0257613e02613dca565b60405161010081016001600160401b0381118282101715613e0257613e02613dca565b60405161014081016001600160401b0381118282101715613e0257613e02613dca565b60405161020081016001600160401b0381118282101715613e0257613e02613dca565b6001600160a01b0381168114613d2d57600080fd5b8035613dc581613e93565b600060408284031215613ec557600080fd5b613ecd613de0565b9050813581526020820135602082015292915050565b8015158114613d2d57600080fd5b8035613dc581613ee3565b600060c08284031215613f0e57600080fd5b60405160a081018181106001600160401b0382111715613f3057613f30613dca565b6040529050808235613f4181613da5565b81526020830135613f5181613e93565b6020820152613f638460408501613eb3565b60408201526080830135613f7681613ee3565b606082015260a0830135613f8981613e93565b6080919091015292915050565b60008060e08385031215613fa957600080fd5b8235613fb481613da5565b9150613fc38460208501613efc565b90509250929050565b60ff81168114613d2d57600080fd5b600060208284031215613fed57600080fd5b81356124a281613fcc565b6000806040838503121561400b57600080fd5b823561401681613da5565b9150602083013561402681613fcc565b809150509250929050565b60005b8381101561404c578181015183820152602001614034565b50506000910152565b6000815180845261406d816020860160208601614031565b601f01601f19169290920160200192915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff604085015116608083015260608401516140c560a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e061010084015261410b610120840182614055565b9050828103602084015261411f8185614055565b95945050505050565b6000806040838503121561413b57600080fd5b823561414681613e93565b9150602083013561402681613ee3565b63ffffffff81168114613d2d57600080fd5b600082601f83011261417957600080fd5b81356001600160401b038082111561419357614193613dca565b604051601f8301601f19908116603f011681019082821181831017156141bb576141bb613dca565b816040528381528660208588010111156141d457600080fd5b836020870160208301376000602085830101528094505050505092915050565b803564ffffffffff81168114613dc557600080fd5b60006080828403121561421b57600080fd5b614223613e08565b9050813561423081614156565b81526020828101359082015260408201356001600160401b0381111561425557600080fd5b61426184828501614168565b604083015250614273606083016141f4565b606082015292915050565b6000806000806080858703121561429457600080fd5b843561429f81613da5565b935060208501356142af81614156565b925060408501356001600160401b038111156142ca57600080fd5b6142d687828801614209565b92505060608501356142e781613fcc565b939692955090935050565b600080828403606081121561430657600080fd5b833561431181613e93565b92506040601f198201121561432557600080fd5b5061432e613de0565b60208401358152604084013561434381613ee3565b6020820152919491935090915050565b6000806040838503121561436657600080fd5b823561437181613d5a565b915060208301356001600160401b0381111561438c57600080fd5b61439885828601614168565b9150509250929050565b6001600160c01b031981168114613d2d57600080fd5b8035613dc5816143a2565b6000604082840312156143d557600080fd5b6143dd613de0565b905081356143ea81613da5565b815260208201356001600160401b0381111561440557600080fd5b61441184828501614168565b60208301525092915050565b6000806040838503121561443057600080fd5b823561443b816143a2565b915060208301356001600160401b0381111561445657600080fd5b614398858286016143c3565b60006020828403121561447457600080fd5b81356124a281613e93565b60008060006060848603121561449457600080fd5b833561449f81613da5565b925060208401356144af81614156565b915060408401356001600160401b038111156144ca57600080fd5b6144d686828701614209565b9150509250925092565b6000602082840312156144f257600080fd5b81356124a281613da5565b6020815260006124a26020830184614055565b6000610160828403121561452357600080fd5b61452b613e2a565b905061453682613dba565b815261454460208301613ea8565b6020820152604082013560408201526145608360608401613eb3565b60608201526145728360a08401613eb3565b60808201526145848360e08401613eb3565b60a08201526145966101208301613ef1565b60c08201526145a86101408301613ea8565b60e082015292915050565b60008061018083850312156145c757600080fd5b82356145d281613da5565b9150613fc38460208501614510565b600061020082840312156145f457600080fd5b6145fc613e4d565b905061460782613ea8565b815261461560208301613ea8565b602082015261462660408301613dba565b604082015261463760608301613dba565b60608201526146498360808401613eb3565b608082015261465b8360c08401613eb3565b60a082015261010061466f84828501613eb3565b60c0830152614682846101408501613eb3565b60e0830152614695846101808501613eb3565b908201526146a7836101c08401613eb3565b61012082015292915050565b600080600061024084860312156146c957600080fd5b83356146d481613da5565b92506146e385602086016145e1565b91506102208401356146f481613fcc565b809150509250925092565b600080610220838503121561471357600080fd5b823561471e81613da5565b9150613fc384602085016145e1565b60006080828403121561473f57600080fd5b614747613e08565b9050813581526020820135602082015260408201356001600160401b0381111561425557600080fd5b6000806000806080858703121561478657600080fd5b843561479181613da5565b935060208501356147a181614156565b925060408501356001600160401b038111156147bc57600080fd5b6142d68782880161472d565b600080604083850312156147db57600080fd5b8235614016816143a2565b8151815260208083015115159082015260408101610b4f565b6000806040838503121561481257600080fd5b823561401681613d5a565b6000610120828403121561483057600080fd5b614838613e2a565b905061484382613dba565b81526148528360208401613eb3565b602082015260608201356001600160401b0381111561487057600080fd5b61487c84828501614168565b6040830152506080820135606082015260a0820135608082015260c082013560a08201526148ac60e083016141f4565b60c08201526145a861010083016141f4565b600080604083850312156148d157600080fd5b82356148dc81613da5565b915060208301356001600160401b038111156148f757600080fd5b6143988582860161481d565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b6020815261495f602082018351614903565b6000602083015160c08084015261497960e0840182614055565b949350505050565b60008060006060848603121561499657600080fd5b83356149a181613d5a565b925060208401356001600160401b038111156149bc57600080fd5b6149c886828701614168565b92505060408401356146f481613fcc565b6000806000606084860312156149ee57600080fd5b83356149f981613da5565b925060208401356001600160401b03811115614a1457600080fd5b6149c88682870161481d565b60008060008060808587031215614a3657600080fd5b8435614a4181613e93565b93506020850135614a5181613e93565b92506040850135614a6181613da5565b915060608501356142e781613e93565b803561ffff81168114613dc557600080fd5b60006102008284031215614a9657600080fd5b614a9e613e70565b9050614aa982613dba565b8152614ab760208301613dba565b6020820152614ac8604083016143b8565b6040820152614ad9606083016143b8565b60608201526080820135608082015260a082013560a082015260c082013560c082015260e082013560e0820152610100808301356001600160401b0380821115614b2257600080fd5b614b2e86838701614168565b83850152610120925082850135915080821115614b4a57600080fd5b50614b5785828601614168565b828401525050610140614b6b818401614a71565b90820152610160614b7d838201614a71565b9082015261018082810135908201526101a0614b9a8184016141f4565b908201526101c0614bac8382016141f4565b908201526101e0614bbe8382016141f4565b9082015292915050565b600080600060608486031215614bdd57600080fd5b8335614be881613da5565b925060208401356001600160401b03811115614c0357600080fd5b6149c886828701614a83565b600080600060608486031215614c2457600080fd5b8335614c2f81613da5565b92506020840135614c3f81614156565b915060408401356001600160401b03811115614c5a57600080fd5b6144d68682870161472d565b60a08101610b4f8284614903565b600080600060608486031215614c8957600080fd5b8335614c94816143a2565b925060208401356001600160401b03811115614caf57600080fd5b6149c8868287016143c3565b600080600060608486031215614cd057600080fd5b8335614cdb81613fcc565b92506020840135614ceb81613fcc565b915060408401356146f481613fcc565b60008060408385031215614d0e57600080fd5b8235614d1981613d5a565b9150602083013561402681613e93565b60008060408385031215614d3c57600080fd5b8235614d4781613da5565b915060208301356001600160401b03811115614d6257600080fd5b61439885828601614a83565b60008060006101a08486031215614d8457600080fd5b8335614d8f81613da5565b9250614d9e8560208601614510565b91506101808401356146f481613fcc565b60008060006101008486031215614dc557600080fd5b8335614dd081613da5565b9250614ddf8560208601613efc565b915060e08401356146f481613fcc565b60008060408385031215614e0257600080fd5b8235614e0d81613d5a565b946020939093013593505050565b60ff1981168114613d2d57600080fd5b60008060408385031215614e3e57600080fd5b8235614e4981613fcc565b9150602083013561402681614e1b565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015260c0830191906060850151151560808501528060808601511660a0850152505092915050565b600181811c90821680614ecd57607f821691505b602082108103614eed57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215614f0557600080fd5b81516124a281613ee3565b600060208284031215614f2257600080fd5b81516124a281613da5565b6020815263ffffffff8251166020820152602082015160408201526000604083015160806060840152614f6360a0840182614055565b905064ffffffffff60608501511660808401528091505092915050565b600060208284031215614f9257600080fd5b5051919050565b602081526001600160601b038251166020820152600060208301516040808401526149796060840182614055565b600060208284031215614fd957600080fd5b81516124a281613d5a565b634e487b7160e01b600052603260045260246000fd5b81516001600160601b031681526020808301516001600160a01b031690820152604080830151908201526060808301516101608301916150469084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151151561012083015260e08301516001600160a01b038116610140840152613ac2565b81516001600160a01b03168152610200810160208301516150c960208401826001600160a01b03169052565b5060408301516150e460408401826001600160601b03169052565b5060608301516150ff60608401826001600160601b03169052565b50608083015161511c608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301516101006151528185018380518252602090810151910152565b60e085015180516101408601526020908101516101608601529085015180516101808601528101516101a085015261012085015180516101c0860152908101516101e08501529050613ac2565b6000602082840312156151b157600080fd5b81516124a281613e93565b6020815281516020820152602082015160408201526000604083015160806060840152614f6360a0840182614055565b6000604082840312156151fe57600080fd5b615206613de0565b82518152602083015161521881613ee3565b60208201529392505050565b602081526001600160601b03825116602082015260006020830151615256604084018280518252602090810151910152565b506040830151610120806080850152615273610140850183614055565b9150606085015160a0850152608085015160c085015260a085015160e085015260c08501516152ac61010086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b602081526152e36020820183516001600160601b03169052565b600060208301516152ff60408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e08301516101008181850152808501519150506102006101208181860152615377610220860184614055565b9250808601519050610140601f1986850301818701526153978483614055565b9350808701519150506101606153b28187018361ffff169052565b86015190506101806153c98682018361ffff169052565b8601516101a08681019190915286015190506101c06153f08187018364ffffffffff169052565b86015190506101e061540a8682018364ffffffffff169052565b86015164ffffffffff81168387015290506152bf565b6000808585111561543057600080fd5b8386111561543d57600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156154725780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b601f8211156111e657600081815260208120601f850160051c810160208610156154e15750805b601f850160051c820191505b8181101561100f578281556001016154ed565b81516001600160401b0381111561551957615519613dca565b61552d816155278454614eb9565b846154ba565b602080601f831160018114615562576000841561554a5750858301515b600019600386901b1c1916600185901b17855561100f565b600085815260208120601f198616915b8281101561559157888601518255948401946001909101908401615572565b50858210156155af5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082516155d1818460208701614031565b9190910192915050565b600080604083850312156155ee57600080fd5b82516155f981613ee3565b602084015190925061402681614156565b60006020828403121561561c57600080fd5b81516124a281613fcc565b60006020828403121561563957600080fd5b81516124a281614e1b565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e00190565b81810381811115610b4f57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b80516020808301519190811015614eed5760001960209190910360031b1b1691905056fea26469706673582212206aca59bcda13f1ffb2ec12b475dd9ad08918b0a38498be830f7d2e0431cc665664736f6c63430008140033",
|
2971
|
+
"bytecode": "0x608060405234801561001057600080fd5b50615d7e80620000216000396000f3fe608060405234801561001057600080fd5b50600436106104d85760003560e01c80637b8c388f11610283578063c0c53b8b1161015c578063e9e96c70116100ce578063f7c34ee011610092578063f7c34ee014610bcb578063fa145b6d14610bde578063fb4a8e3414610bf1578063fbc1a3a014610c04578063fe1f18d614610c17578063fed3d63f14610c2a57600080fd5b8063e9e96c7014610b54578063f21de1e81461080a578063f48016ce14610b92578063f7b442d114610ba5578063f7bc431c14610bb857600080fd5b8063d2f21a2911610120578063d2f21a2914610aea578063d5c9d77d14610afd578063dee3262314610b10578063e1033e7d14610b23578063e5f6cd2714610b2b578063e7f7fb8614610b4157600080fd5b8063c0c53b8b14610ab4578063c29948fc1461060f578063ca600b1c14610ac7578063cde749f414610acf578063cf947d2014610ad757600080fd5b8063a671495e116101f5578063afcc7439116101b9578063afcc743914610a4d578063b3260e9314610a60578063b6d7cd6214610a73578063bb1e0e5914610a86578063bf1db3f914610a99578063bf7e214f14610aac57600080fd5b8063a671495e146109ff578063a76ee01814610a12578063a898967514610a25578063ada9652e14610a38578063afa5e1301461079e57600080fd5b806397affbf51161024757806397affbf5146109025780639df0280b146105df5780639e90178c14610915578063a13df2ab14610928578063a4eeee591461093b578063a5961b4c1461094e57600080fd5b80637b8c388f146108935780637cef4842146108a6578063893d20e8146108b95780638eaa6ac0146108c15780638fb36037146108e157600080fd5b80633ca7c02a116103b55780635772b1011161032757806361f5f420116102eb57806361f5f42014610824578063644c45e014610835578063675393bf1461085d5780636b9bf08b1461087057806375b238fc146108785780637a9e5e4b1461088057600080fd5b80635772b101146107e457806359852426146107f75780635ab1bd531461080a5780635d4345cc146105df5780635dfa73db1461081b57600080fd5b8063447fc48f11610379578063447fc48f14610770578063468a186714610783578063468bce06146107965780635378cd3c1461079e57806354d747a8146107b157806354f6127f146107c457600080fd5b80633ca7c02a146107095780633e35aba81461072f57806340529b0f14610742578063422c9d00146107555780634288121d1461076857600080fd5b80631b38d5f41161044e57806327bb7a331161041257806327bb7a33146106985780632f61088a146106ab57806336fc697e146106be57806337f135d7146106c657806338a699a4146106e35780633c0d6a41146106f657600080fd5b80631b38d5f4146106225780631eff4b2214610643578063214cdb801461066a5780632781d4431461067d57806327953f481461068557600080fd5b80630f526f7d116104a05780630f526f7d146105b95780630f749a89146105cc5780630fad0eb1146105df5780630fec111c146105f2578063138461e0146106075780631518afb91461060f57600080fd5b806301ffc9a7146104dd57806302cd30711461051f57806309648a9d146105445780630cbc6b891461057e5780630d35818114610593575b600080fd5b61050a6104eb366004613eca565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6006546001600160a01b03165b6040516001600160a01b039091168152602001610516565b61056c610552366004613ef4565b600090815260046020526040902054610100900460ff1690565b60405160ff9091168152602001610516565b61059161058c36600461413e565b610c32565b005b61056c6105a136600461418a565b60ff9081166000908152600260205260409020541690565b6105916105c73660046141a7565b610c78565b6105916105da3660046141e0565b610c99565b6105916105ed3660046141a7565b610e07565b6105fa610e1c565b604051610516919061424d565b610591610fcb565b61059161061d36600461450a565b6111cd565b610635610630366004614562565b6111f3565b604051908152602001610516565b6106357f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b610591610678366004613eca565b611292565b610635600381565b61059161069336600461466f565b6112bf565b6105916106a63660046146b5565b6112f1565b6105916106b93660046147a7565b61137d565b610591611418565b6106ce600081565b60405163ffffffff9091168152602001610516565b61050a6106f1366004613ef4565b61145e565b610591610704366004614863565b6114ed565b6107176001600160401b0381565b6040516001600160401b039091168152602001610516565b61063561073d366004614562565b611513565b6105916107503660046141a7565b611540565b6105916107633660046141e0565b611555565b61052c61175b565b61059161077e3660046148c4565b6117ee565b610635610791366004614562565b61181a565b610591611847565b6105916107ac366004614938565b611871565b6105916107bf366004614a19565b611884565b6107d76107d2366004613ef4565b6118a2565b6040516105169190614a55565b6105916107f2366004614aab565b611947565b610591610805366004614bcc565b61196d565b6001546001600160a01b031661052c565b61071761271081565b6007546001600160a01b031661052c565b600080516020615d09833981519152546040516001600160601b039091168152602001610516565b61059161086b3660046141e0565b611993565b61052c611a9f565b610717600081565b61059161088e3660046141e0565b611ac8565b6106356108a1366004614562565b611b4b565b6105916108b4366004614c13565b611b78565b61052c611c02565b6108d46108cf366004613ef4565b611d39565b6040516105169190614c7b565b6108e9611e7a565b6040516001600160e01b03199091168152602001610516565b610591610910366004614ca7565b611eb2565b610591610923366004614d91565b611ed8565b610635610936366004614562565b611f00565b610591610949366004614e59565b611f2d565b6109f261095c366004613ef4565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260046020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516105169190614ea0565b610591610a0d366004614f51565b611f55565b610591610a20366004614f96565b611f7b565b610591610a33366004614fdd565b612016565b610635600080516020615d0983398151915281565b610591610a5b36600461501d565b612107565b610591610a6e366004615062565b61212d565b610591610a813660046150a0565b61214b565b610591610a943660046150d0565b612160565b61050a610aa736600461418a565b612325565b61052c612372565b610591610ac23660046150fc565b61238e565b61052c61253b565b61056c612564565b610591610ae536600461513c565b6125db565b610591610af83660046141a7565b6125f9565b610591610b0b36600461517a565b612610565b610591610b1e3660046141a7565b612638565b61052c61264f565b60055461010090046001600160a01b031661052c565b610591610b4f3660046151bf565b612678565b61050a610b62366004614fdd565b60ff9283166000908152600360209081526040808320948616835293815283822092851682529190915220541690565b610635610ba0366004615210565b612852565b610591610bb336600461523e565b6128dd565b610591610bc63660046141e0565b612905565b610591610bd936600461527f565b6129f2565b610591610bec3660046152ad565b612a69565b610591610bff366004615304565b612a8f565b610591610c1236600461534b565b612ab5565b610591610c253660046141a7565b612add565b61052c612af2565b610c3f335b600036612b1b565b610c73610c4d84606e612c21565b83604051602001610c5e9190615379565b60405160208183030381529060405283612c6d565b505050565b610c8133610c37565b610c95610c8f83608c612c21565b82612c78565b5050565b610ca233610c37565b60055461010090046001600160a01b031615610d055760405162461bcd60e51b815260206004820152601c60248201527f496e7374616e63654163636573734d616e61676572206973207365740000000060448201526064015b60405180910390fd5b610d0d612372565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d789190615428565b6001600160a01b031614610ddf5760405162461bcd60e51b815260206004820152602860248201527f496e7374616e63654163636573734d616e6167657220617574686f72697479206044820152670dad2e6dac2e8c6d60c31b6064820152608401610cfc565b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610e1033610c37565b610c95610c8f8361181a565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b90910416151591810191909152600182018054919291606084019190610ec790615445565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef390615445565b8015610f405780601f10610f1557610100808354040283529160200191610f40565b820191906000526020600020905b815481529060010190602001808311610f2357829003601f168201915b50505050508152505090506040518060e00160405280610f5e600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b03168152602001610faf611c02565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020615d0983398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561103a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105e919061547f565b1561108a5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610cfc565b3061109d6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156110e5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611109919061547f565b6111315760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610cfc565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015611185573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a9919061549c565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6111d633610c37565b610c736111e28461181a565b83604051602001610c5e91906154b9565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660795b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015611268573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c919061561e565b92915050565b61129a612c82565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6112c833610c37565b610c9582826040516020016112dd9190615637565b604051602081830303815290604052612ccb565b6112f9612c82565b61130382876129f2565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101611373838261572d565b5050505050505050565b61138633610c37565b6040516355ee627560e01b81526001600160c01b031983166004820152610c959073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af41580156113e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611407919061561e565b826040516020016112dd91906157ec565b611420612c82565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600081815260046020819052604080832054905163b2466acf60e01b815261010090910460ff169181019190915273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156114c9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c919061547f565b6114f633610c37565b610c736115028461181a565b826040516020016112dd919061581a565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b038416607861121c565b61154933610c37565b610c95610c8f83611b4b565b61155e33610c37565b6007546001600160a01b0316156115ae5760405162461bcd60e51b8152602060048201526014602482015273109d5b991b1953585b9859d95c881a5cc81cd95d60621b6044820152606401610cfc565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161a9190615428565b6001600160a01b0316146116705760405162461bcd60e51b815260206004820152601f60248201527f42756e646c654d616e6167657220696e7374616e6365206d69736d61746368006044820152606401610cfc565b611678612372565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116e39190615428565b6001600160a01b0316146117395760405162461bcd60e51b815260206004820181905260248201527f42756e646c654d616e6167657220617574686f72697479206d69736d617463686044820152606401610cfc565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b600061176f6001546001600160a01b031690565b6001600160a01b031663d39e6043606e5b6040516001600160e01b031960e084901b16815260ff909116600482015260036024820152604401602060405180830381865afa1580156117c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e99190615428565b905090565b6117f733610c37565b6118146118038561181a565b83604051602001610c5e919061581a565b50505050565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660d361121c565b61184f612c82565b611857612cd5565b61185f612df8565b611867612eeb565b61186f612ff9565b565b61187a33610c37565b610c958282612c78565b61188d33610c37565b610c9582826040516020016112dd919061586b565b60008181526004602052604090206001018054606091906118c290615445565b80601f01602080910402602001604051908101604052809291908181526020018280546118ee90615445565b801561193b5780601f106119105761010080835404028352916020019161193b565b820191906000526020600020905b81548152906001019060200180831161191e57829003601f168201915b50505050509050919050565b61195033610c37565b61181461195c8561181a565b83604051602001610c5e9190615907565b61197633610c37565b610c7361198284611f00565b83604051602001610c5e9190615937565b61199b612c82565b806001600160a01b03163b6000036119d15760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610cfc565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015611a4b575060408051601f3d908101601f19168201909252611a489181019061547f565b60015b611a735760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610cfc565b80610c955760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610cfc565b50565b6000611ab36001546001600160a01b031690565b6001600160a01b031663d39e6043608c611780565b33611ad1612372565b6001600160a01b0316816001600160a01b031614611b0c5760405162d1953b60e31b81526001600160a01b0382166004820152602401610cfc565b816001600160a01b03163b600003611b42576040516361798f2f60e11b81526001600160a01b0383166004820152602401610cfc565b610c95826130b5565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b038416607a61121c565b611b8133610c37565b6040516355ee627560e01b81526001600160c01b031983166004820152610c959073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611bde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8f919061561e565b600080600080516020615d0983398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611c72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c96919061547f565b15611d23576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611cf9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1d9190615428565b91505090565b54600160601b90046001600160a01b0316919050565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260046020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c08201529283526001810180549192840191611df190615445565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1d90615445565b8015611e6a5780601f10611e3f57610100808354040283529160200191611e6a565b820191906000526020600020905b815481529060010190602001808311611e4d57829003601f168201915b5050505050815250509050919050565b600080516020615d29833981519152805460009190600160a01b900460ff16611ea4576000611d1d565b638fb3603760e01b91505090565b611ebb33610c37565b610c95611ec783611f00565b826040516020016112dd9190615937565b611ee133610c37565b610c95611eef836078612c21565b826040516020016112dd9190615a07565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660dc61121c565b611f3633610c37565b610c73611f4484608c612c21565b83604051602001610c5e9190615a7b565b611f5e33610c37565b610c95611f6a83611b4b565b826040516020016112dd9190615afc565b611f8433610c37565b6040516355ee627560e01b81526001600160c01b031984166004820152610c739073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611fe1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612005919061561e565b83604051602001610c5e91906157ec565b60ff8381166000908152600260205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af415801561207b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061209f919061547f565b156120a957505050565b60ff808416600090815260036020908152604080832086851684528252808320858516845290915290205416610c7357604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610cfc565b61211033610c37565b610c9561211c8361181a565b826040516020016112dd91906154b9565b61213633610c37565b610c738383604051602001610c5e9190615637565b61215433610c37565b610c73610c8f8461181a565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121cd9190615428565b6001600160a01b0316336001600160a01b0316146121ea57600080fd5b60055461010090046001600160a01b03166303014974612208613116565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865afa15801561224c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612270919061561e565b1561227d5761227d615b5a565b60055461010090046001600160a01b031663b428b0b061229b613116565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af11580156122f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612314919061547f565b1515600114610c9557610c95615b5a565b60ff81811660009081526002602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016114ac565b600080516020615d29833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156123d35750825b90506000826001600160401b031660011480156123ef5750303b155b9050811580156123fd575080155b1561241b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561244557845460ff60401b1916600160401b1785555b61244e8861318e565b60008790506124d388826001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612495573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124b9919061549c565b604660018b604051806020016040528060008152506112f1565b6124db611847565b6124eb632a78f40560e11b611292565b50831561137357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b600061254f6001546001600160a01b031690565b6001600160a01b031663d39e60436078611780565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af41580156125b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e99190615b70565b6125e433610c37565b610c738383604051602001610c5e919061586b565b61260233610c37565b610c95610c8f836078612c21565b61261933610c37565b610c9561262783608c612c21565b826040516020016112dd9190615a7b565b61264133610c37565b610c95610c8f83606e612c21565b60006126636001546001600160a01b031690565b6001600160a01b031663d39e604360d3611780565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126e59190615428565b6001600160a01b0316336001600160a01b03161461270257600080fd5b60055461010090046001600160a01b031663b7d2b162612720613116565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03861660248201526044016020604051808303816000875af1158015612775573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612799919061547f565b15156001146127aa576127aa615b5a565b60055461010090046001600160a01b031663b428b0b06127c8613116565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af115801561281d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612841919061547f565b1515600114610c7357610c73615b5a565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af41580156128b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128d6919061561e565b9392505050565b6128e633610c37565b610c736128f4846078612c21565b83604051602001610c5e9190615a07565b61290e33610c37565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015612956573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297a9190615428565b6001600160a01b0316146129d05760405162461bcd60e51b815260206004820181905260248201527f496e7374616e636552656164657220696e7374616e6365206d69736d617463686044820152606401610cfc565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6129fa612c82565b612a0381611993565b612a0b611418565b6001600160a01b038216612a325760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020615d0983398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b612a7233610c37565b610c73612a7e8461181a565b826040516020016112dd9190615907565b612a9833610c37565b610c73612aa484611b4b565b83604051602001610c5e9190615afc565b612abe33610c37565b610c95612acc83606e612c21565b826040516020016112dd9190615379565b612ae633610c37565b610c95610c8f83611f00565b6000612b066001546001600160a01b031690565b6001600160a01b031663d39e604360dc611780565b600080516020615d29833981519152600080612b56612b38612372565b8730612b48600460008a8c615b8d565b612b5191615bb7565b61319f565b9150915081612c195763ffffffff811615612bf657825460ff60a01b1916600160a01b178355612b84612372565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612bb393929190615be7565b600060405180830381600087803b158015612bcd57600080fd5b505af1158015612be1573d6000803e3d6000fd5b5050845460ff60a01b1916855550612c199050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610cfc565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401612895565b610c738383836132ab565b610c95828261375c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661186f57604051631afcd79f60e31b815260040160405180910390fd5b610c958282613aa0565b7f4bee8dc518469fb8c73831886b94afa96b3ef3e3ee55b9076720259192220ef08054606460ff19918216179091557ffb39f406c8d3ff86a211d5f8c6729c90fce2fed80808bb47b6dc39e975a7d4d68054821660019081179091557fe59968928be831d9cd5403370c74d9f1dac318690d88a2efef2b29079332ee4f80548316821790557fe78520cf30689bb50fce16ae1e25040217df710de55e9ed38f2b2722b2a984688054909216811790915560dc600090815260036020527fa093975c0a88af8b2bf4799c5b4be14d42fc326c2a331b9f3fb3caecbaa5104f90606e5b60ff1660ff1681526020019081526020016000206000612dd460c890565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f7673bcbb3401a7cbae68f81d40eea2cf35afdaf7ecd016ebf3f02857fcc1260a8054606460ff1991821681179092557fa1c69de77e78d12e062170d002ba111ba52c8f452f3b0ca326991b7298fd7aaf80548216600190811790915560008381527f6dcc58afd04aec67a07f8168234edce351865815e87e6f9a62e977830ebfce226020527f5267f8fb4089eaca6dac10383f9a063927ca0092f9c59d7ca3b3d61812638b028054909316821790925591600391905b60ff1660ff1681526020019081526020016000206000612ecd606e90565b60ff1660ff1681526020019081526020016000206000612dd460d290565b7feb6856e0ae0d71a8a9e0bc42aca98fe96c3be13699c5c2d551c94a190e39043d8054600a60ff19918216179091557f4b5a0a5953a753e51be29e6e2b638995162612852ea3b46cff09cbac61f9cb568054821660019081179091557fb7939d1e06f7236b22c8e9bf344ab29b7c87eec9f53e55d389378ef7585ffd7e80548316821790557f158b1af96972c14cb1a5e39cbdbd793a3bc4f7c57c85ef22cf298bf517d6e0b380548316821790557f6160f9e22b3793ed435de7ac6b8dd0ee9d3110d626fe8135ffbb7d38470f229a8054909216811790915560d3600090815260036020527fb0b6d2d73fcb69de4c434c711239319c2c669ebf6407f36fc258ff9f98f803fa906064612db6565b7fec56eb74d500f9b1bf8f0c5cc42ff5ed51e8d9e3a2ebb6e83a26383f297e0f1e8054606460ff1991821681179092557fe63626ccd25c67b6e53c3bd622e9c77c962be121e55eb3904854ac631eb8f9f080548216600190811790915560009283527fa74711c3b0f698a9dde85849aefdd2d454c235a4c161e6f019356c5ec8490c816020527fbed2f4a35dfbfdf2c5294831261529ea73fa5b94705484f5af8ba1bc3cb59362805490921681179091559060039060c8612eaf565b600080516020615d2983398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516368aebf7b60e01b815261076c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af415801561316a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e99190615c27565b613196612c82565b611a9c81613eb9565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161320e9190615c50565b600060405180830381855afa9150503d8060008114613249576040519150601f19603f3d011682016040523d82523d6000602084013e61324e565b606091505b509150915081156132a057604081511061328057808060200190518101906132769190615c6c565b90945092506132a0565b60208151106132a0578080602001905181019061329d919061547f565b93505b505094509492505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156132fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613321919061547f565b61336d5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610cfc565b6000838152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156133d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133fd919061547f565b6134495760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610cfc565b6000858152600460205260409020600101613464858261572d565b5060ff8084161461348257815461ff00191661010060ff8516021782555b8154620100003390810262010000600160b01b031983161784559063ffffffff600160b01b909104166134b24390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613544573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135689190615b70565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156135b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135dc9190615c9b565b85888632876040516135f49796959493929190615cb8565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801561366e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136929190615b70565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156136e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137069190615c9b565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c0015b60405180910390a150505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156137ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137d2919061547f565b61381e5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610cfc565b6000828152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af415801561388a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138ae919061547f565b6138fa5760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610cfc565b815461390a9060ff168285612016565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b9091041661394e4390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156139e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a049190615b70565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613a54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a789190615c9b565b8588863287604051613a909796959493929190615cb8565b60405180910390a1505050505050565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613af3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b179190615b70565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015613b6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b90919061547f565b613bdc5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610cfc565b6000838152600460208190526040918290208054925163037c8cb160e51b815261010090930460ff16918301919091529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015613c49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c6d919061547f565b613cb95760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610cfc565b33436000613cc685612325565b613cd1576064613ce7565b60ff808616600090815260026020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b919091021785556000888152600460205260409020909150600101613d71878261572d565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613de4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e089190615b70565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613e58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e7c9190615c9b565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a00161374b565b613ec1612c82565b611a9c816130b5565b600060208284031215613edc57600080fd5b81356001600160e01b0319811681146128d657600080fd5b600060208284031215613f0657600080fd5b5035919050565b6001600160601b0381168114611a9c57600080fd5b8035613f2d81613f0d565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613f6a57613f6a613f32565b60405290565b60405161010081016001600160401b0381118282101715613f6a57613f6a613f32565b60405161020081016001600160401b0381118282101715613f6a57613f6a613f32565b60405161012081016001600160401b0381118282101715613f6a57613f6a613f32565b604051608081016001600160401b0381118282101715613f6a57613f6a613f32565b60405160e081016001600160401b0381118282101715613f6a57613f6a613f32565b6001600160a01b0381168114611a9c57600080fd5b8035613f2d8161401d565b60006040828403121561404f57600080fd5b614057613f48565b9050813581526020820135602082015292915050565b8015158114611a9c57600080fd5b8035613f2d8161406d565b6000610140828403121561409957600080fd5b6140a1613f70565b90506140ac82614032565b81526140ba60208301614032565b60208201526140cb60408301613f22565b60408201526140dc60608301613f22565b60608201526140ee836080840161403d565b60808201526141008360c0840161403d565b60a0820152614112610100830161407b565b60c08201526141246101208301614032565b60e082015292915050565b60ff81168114611a9c57600080fd5b6000806000610180848603121561415457600080fd5b833561415f81613f0d565b925061416e8560208601614086565b915061016084013561417f8161412f565b809150509250925092565b60006020828403121561419c57600080fd5b81356128d68161412f565b600080604083850312156141ba57600080fd5b82356141c581613f0d565b915060208301356141d58161412f565b809150509250929050565b6000602082840312156141f257600080fd5b81356128d68161401d565b60005b83811015614218578181015183820152602001614200565b50506000910152565b600081518084526142398160208601602086016141fd565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516142b660c08401826001600160a01b03169052565b5060c083015160e0808401526142d0610100840182614221565b949350505050565b6001600160c01b031981168114611a9c57600080fd5b8035613f2d816142d8565b64ffffffffff81168114611a9c57600080fd5b8035613f2d816142f9565b600082601f83011261432857600080fd5b81356001600160401b038082111561434257614342613f32565b604051601f8301601f19908116603f0116810190828211818310171561436a5761436a613f32565b8160405283815286602085880101111561438357600080fd5b836020870160208301376000602085830101528094505050505092915050565b61ffff81168114611a9c57600080fd5b8035613f2d816143a3565b600061020082840312156143d157600080fd5b6143d9613f93565b90506143e482613f22565b81526143f260208301613f22565b6020820152614403604083016142ee565b6040820152614414606083016142ee565b60608201526080820135608082015260a082013560a082015260c082013560c082015261444360e0830161430c565b60e0820152610100808301356001600160401b038082111561446457600080fd5b61447086838701614317565b8385015261012092508285013591508082111561448c57600080fd5b5061449985828601614317565b8284015250506101406144ad8184016143b3565b908201526101606144bf8382016143b3565b9082015261018082810135908201526101a06144dc81840161430c565b908201526101c06144ee83820161430c565b908201526101e061450083820161430c565b9082015292915050565b60008060006060848603121561451f57600080fd5b833561452a81613f0d565b925060208401356001600160401b0381111561454557600080fd5b614551868287016143be565b925050604084013561417f8161412f565b60006020828403121561457457600080fd5b81356128d681613f0d565b63ffffffff81168114611a9c57600080fd5b8035613f2d8161457f565b600061012082840312156145af57600080fd5b6145b7613fb6565b905081356001600160401b03808211156145d057600080fd5b6145dc85838601614317565b835260208401356020840152604084013560408401526060840135606084015261460860808501614591565b608084015261461960a08501614591565b60a084015261462a60c0850161407b565b60c084015261463b60e0850161407b565b60e08401526101009150818401358181111561465657600080fd5b61466286828701614317565b8385015250505092915050565b6000806040838503121561468257600080fd5b8235915060208301356001600160401b0381111561469f57600080fd5b6146ab8582860161459c565b9150509250929050565b60008060008060008060c087890312156146ce57600080fd5b86356146d98161401d565b955060208701356146e981613f0d565b945060408701356146f98161412f565b935060608701356147098161406d565b925060808701356147198161401d565b915060a08701356001600160401b0381111561473457600080fd5b61474089828a01614317565b9150509295509295509295565b60006040828403121561475f57600080fd5b614767613f48565b9050813561477481613f0d565b815260208201356001600160401b0381111561478f57600080fd5b61479b84828501614317565b60208301525092915050565b600080604083850312156147ba57600080fd5b82356147c5816142d8565b915060208301356001600160401b038111156147e057600080fd5b6146ab8582860161474d565b6000608082840312156147fe57600080fd5b614806613fd9565b90508135614813816143a3565b81526020828101359082015260408201356001600160401b0381111561483857600080fd5b61484484828501614317565b6040830152506060820135614858816142f9565b606082015292915050565b60008060006060848603121561487857600080fd5b833561488381613f0d565b925060208401356148938161457f565b915060408401356001600160401b038111156148ae57600080fd5b6148ba868287016147ec565b9150509250925092565b600080600080608085870312156148da57600080fd5b84356148e581613f0d565b935060208501356148f58161457f565b925060408501356001600160401b0381111561491057600080fd5b61491c878288016147ec565b925050606085013561492d8161412f565b939692955090935050565b6000806040838503121561494b57600080fd5b8235915060208301356141d58161412f565b600060e0828403121561496f57600080fd5b614977613ffb565b905061498282613f22565b815260208201356001600160401b038082111561499e57600080fd5b6149aa85838601614317565b6020840152604084013560408401526149c560608501614591565b60608401526149d660808501614591565b60808401526149e760a0850161430c565b60a084015260c0840135915080821115614a0057600080fd5b50614a0d84828501614317565b60c08301525092915050565b60008060408385031215614a2c57600080fd5b8235915060208301356001600160401b03811115614a4957600080fd5b6146ab8582860161495d565b6020815260006128d66020830184614221565b600060808284031215614a7a57600080fd5b614a82613fd9565b9050813581526020820135602082015260408201356001600160401b0381111561483857600080fd5b60008060008060808587031215614ac157600080fd5b8435614acc81613f0d565b93506020850135614adc816143a3565b925060408501356001600160401b03811115614af757600080fd5b61491c87828801614a68565b60006101408284031215614b1657600080fd5b614b1e613fb6565b9050614b2982613f22565b8152614b38836020840161403d565b602082015260608201356001600160401b03811115614b5657600080fd5b614b6284828501614317565b604083015250614b7460808301613f22565b6060820152614b8560a08301613f22565b6080820152614b9660c08301613f22565b60a0820152614ba760e0830161430c565b60c0820152610100614bba81840161430c565b60e0830152614500610120840161430c565b600080600060608486031215614be157600080fd5b8335614bec81613f0d565b925060208401356001600160401b03811115614c0757600080fd5b61455186828701614b03565b60008060408385031215614c2657600080fd5b82356141c5816142d8565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b60208152614c8d602082018351614c31565b6000602083015160c0808401526142d060e0840182614221565b60008060408385031215614cba57600080fd5b8235614cc581613f0d565b915060208301356001600160401b03811115614ce057600080fd5b6146ab85828601614b03565b60006101008284031215614cff57600080fd5b60405160c081018181106001600160401b0382111715614d2157614d21613f32565b6040529050808235614d3281613f0d565b81526020830135614d428161401d565b6020820152614d54846040850161403d565b6040820152614d66846080850161403d565b606082015260c0830135614d798161401d565b8060808301525060e083013560a08201525092915050565b6000806101208385031215614da557600080fd5b8235614db081613f0d565b9150614dbf8460208501614cec565b90509250929050565b600060e08284031215614dda57600080fd5b614de2613ffb565b905081356001600160401b0380821115614dfb57600080fd5b614e0785838601614317565b8352614e1560208501614032565b6020840152614e2660408501614032565b6040840152614e3760608501614032565b6060840152614e4860808501613f22565b60808401526149e760a08501613f22565b600080600060608486031215614e6e57600080fd5b8335614e7981613f0d565b925060208401356001600160401b03811115614e9457600080fd5b61455186828701614dc8565b60a0810161128c8284614c31565b600060a08284031215614ec057600080fd5b60405160a081016001600160401b038282108183111715614ee357614ee3613f32565b8160405282935084359150614ef7826142d8565b908252602084013590614f098261406d565b8160208401526040850135915080821115614f2357600080fd5b50614f3085828601614317565b60408301525060608301356060820152608083013560808201525092915050565b60008060408385031215614f6457600080fd5b8235614f6f81613f0d565b915060208301356001600160401b03811115614f8a57600080fd5b6146ab85828601614eae565b600080600060608486031215614fab57600080fd5b8335614fb6816142d8565b925060208401356001600160401b03811115614fd157600080fd5b6145518682870161474d565b600080600060608486031215614ff257600080fd5b8335614ffd8161412f565b9250602084013561500d8161412f565b9150604084013561417f8161412f565b6000806040838503121561503057600080fd5b823561503b81613f0d565b915060208301356001600160401b0381111561505657600080fd5b6146ab858286016143be565b60008060006060848603121561507757600080fd5b8335925060208401356001600160401b0381111561509457600080fd5b6145518682870161459c565b6000806000606084860312156150b557600080fd5b83356150c081613f0d565b9250602084013561500d816143a3565b600080604083850312156150e357600080fd5b82356150ee8161401d565b946020939093013593505050565b60008060006060848603121561511157600080fd5b833561511c8161401d565b9250602084013561512c8161401d565b9150604084013561417f8161401d565b60008060006060848603121561515157600080fd5b8335925060208401356001600160401b0381111561516e57600080fd5b6145518682870161495d565b6000806040838503121561518d57600080fd5b823561519881613f0d565b915060208301356001600160401b038111156151b357600080fd5b6146ab85828601614dc8565b6000806000606084860312156151d457600080fd5b83356151df8161401d565b925060208401356151ef8161401d565b929592945050506040919091013590565b60ff1981168114611a9c57600080fd5b6000806040838503121561522357600080fd5b823561522e8161412f565b915060208301356141d581615200565b6000806000610140848603121561525457600080fd5b833561525f81613f0d565b925061526e8560208601614cec565b915061012084013561417f8161412f565b6000806040838503121561529257600080fd5b823561529d8161401d565b915060208301356141d58161401d565b6000806000606084860312156152c257600080fd5b83356152cd81613f0d565b925060208401356152dd816143a3565b915060408401356001600160401b038111156152f857600080fd5b6148ba86828701614a68565b60008060006060848603121561531957600080fd5b833561532481613f0d565b925060208401356001600160401b0381111561533f57600080fd5b61455186828701614eae565b600080610160838503121561535f57600080fd5b823561536a81613f0d565b9150614dbf8460208501614086565b81516001600160a01b039081168252602080840151909116908201526040808301516001600160601b0316908201526060808301516101408301916153c8908401826001600160601b03169052565b5060808301516153e5608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301518015156101008401525060e08301516001600160a01b0381166101208401525092915050565b60006020828403121561543a57600080fd5b81516128d68161401d565b600181811c9082168061545957607f821691505b60208210810361547957634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561549157600080fd5b81516128d68161406d565b6000602082840312156154ae57600080fd5b81516128d681613f0d565b602081526154d36020820183516001600160601b03169052565b600060208301516154ef60408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e08301516101006155548185018364ffffffffff169052565b808501519150506102006101208181860152615574610220860184614221565b9250808601519050610140601f1986850301818701526155948483614221565b9350808701519150506101606155af8187018361ffff169052565b86015190506101806155c68682018361ffff169052565b8601516101a08681019190915286015190506101c06155ed8187018364ffffffffff169052565b86015190506101e06156078682018364ffffffffff169052565b9095015164ffffffffff1693019290925250919050565b60006020828403121561563057600080fd5b5051919050565b6020815260008251610120806020850152615656610140850183614221565b9150602085015160408501526040850151606085015260608501516080850152608085015161568d60a086018263ffffffff169052565b5060a085015163ffffffff811660c08601525060c085015180151560e08601525060e08501516101006156c38187018315159052565b860151858403601f19018387015290506156dd8382614221565b9695505050505050565b601f821115610c7357600081815260208120601f850160051c8101602086101561570e5750805b601f850160051c820191505b81811015612c195782815560010161571a565b81516001600160401b0381111561574657615746613f32565b61575a816157548454615445565b846156e7565b602080601f83116001811461578f57600084156157775750858301515b600019600386901b1c1916600185901b178555612c19565b600085815260208120601f198616915b828110156157be5788860151825594840194600190910190840161579f565b50858210156157dc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b602081526001600160601b038251166020820152600060208301516040808401526142d06060840182614221565b6020815261ffff825116602082015260208201516040820152600060408301516080606084015261584e60a0840182614221565b905064ffffffffff60608501511660808401528091505092915050565b602081526001600160601b0382511660208201526000602083015160e0604084015261589b610100840182614221565b90506040840151606084015263ffffffff606085015116608084015260808401516158ce60a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525b5060c0840151838203601f190160e08501526158fe8282614221565b95945050505050565b602081528151602082015260208201516040820152600060408301516080606084015261584e60a0840182614221565b602081526159516020820183516001600160601b03169052565b6000602083015161596f604084018280518252602090810151910152565b50604083015161014080608085015261598c610160850183614221565b915060608501516159a860a08601826001600160601b03169052565b5060808501516001600160601b03811660c08601525060a08501516001600160601b03811660e08601525060c08501516101006159ed8187018364ffffffffff169052565b60e087015164ffffffffff81166101208801529150615607565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015261010083019190606085015180516080860152602081015160a0860152915060808501511660c08401525060a09092015160e09091015290565b602081526000825160e06020840152615a98610100840182614221565b9050602084015160018060a01b03808216604086015280604087015116606086015280606087015116608086015250506080840151615ae260a08501826001600160601b03169052565b5060a08401516001600160601b03811660c08501526158e2565b602081526001600160401b0360c01b82511660208201526020820151151560408201526000604083015160a06060840152615b3a60c0840182614221565b905060608401516080840152608084015160a08401528091505092915050565b634e487b7160e01b600052600160045260246000fd5b600060208284031215615b8257600080fd5b81516128d68161412f565b60008085851115615b9d57600080fd5b83861115615baa57600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015615bdf5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600060208284031215615c3957600080fd5b81516001600160401b03811681146128d657600080fd5b60008251615c628184602087016141fd565b9190910192915050565b60008060408385031215615c7f57600080fd5b8251615c8a8161406d565b60208401519092506141d58161457f565b600060208284031215615cad57600080fd5b81516128d681615200565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e0019056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a26469706673582212200d4192ff06f401c8cdda2d35764c94f68ea69ec91d6f1b49388ac28af3a4326b64736f6c63430008140033",
|
2972
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106104d85760003560e01c80637b8c388f11610283578063c0c53b8b1161015c578063e9e96c70116100ce578063f7c34ee011610092578063f7c34ee014610bcb578063fa145b6d14610bde578063fb4a8e3414610bf1578063fbc1a3a014610c04578063fe1f18d614610c17578063fed3d63f14610c2a57600080fd5b8063e9e96c7014610b54578063f21de1e81461080a578063f48016ce14610b92578063f7b442d114610ba5578063f7bc431c14610bb857600080fd5b8063d2f21a2911610120578063d2f21a2914610aea578063d5c9d77d14610afd578063dee3262314610b10578063e1033e7d14610b23578063e5f6cd2714610b2b578063e7f7fb8614610b4157600080fd5b8063c0c53b8b14610ab4578063c29948fc1461060f578063ca600b1c14610ac7578063cde749f414610acf578063cf947d2014610ad757600080fd5b8063a671495e116101f5578063afcc7439116101b9578063afcc743914610a4d578063b3260e9314610a60578063b6d7cd6214610a73578063bb1e0e5914610a86578063bf1db3f914610a99578063bf7e214f14610aac57600080fd5b8063a671495e146109ff578063a76ee01814610a12578063a898967514610a25578063ada9652e14610a38578063afa5e1301461079e57600080fd5b806397affbf51161024757806397affbf5146109025780639df0280b146105df5780639e90178c14610915578063a13df2ab14610928578063a4eeee591461093b578063a5961b4c1461094e57600080fd5b80637b8c388f146108935780637cef4842146108a6578063893d20e8146108b95780638eaa6ac0146108c15780638fb36037146108e157600080fd5b80633ca7c02a116103b55780635772b1011161032757806361f5f420116102eb57806361f5f42014610824578063644c45e014610835578063675393bf1461085d5780636b9bf08b1461087057806375b238fc146108785780637a9e5e4b1461088057600080fd5b80635772b101146107e457806359852426146107f75780635ab1bd531461080a5780635d4345cc146105df5780635dfa73db1461081b57600080fd5b8063447fc48f11610379578063447fc48f14610770578063468a186714610783578063468bce06146107965780635378cd3c1461079e57806354d747a8146107b157806354f6127f146107c457600080fd5b80633ca7c02a146107095780633e35aba81461072f57806340529b0f14610742578063422c9d00146107555780634288121d1461076857600080fd5b80631b38d5f41161044e57806327bb7a331161041257806327bb7a33146106985780632f61088a146106ab57806336fc697e146106be57806337f135d7146106c657806338a699a4146106e35780633c0d6a41146106f657600080fd5b80631b38d5f4146106225780631eff4b2214610643578063214cdb801461066a5780632781d4431461067d57806327953f481461068557600080fd5b80630f526f7d116104a05780630f526f7d146105b95780630f749a89146105cc5780630fad0eb1146105df5780630fec111c146105f2578063138461e0146106075780631518afb91461060f57600080fd5b806301ffc9a7146104dd57806302cd30711461051f57806309648a9d146105445780630cbc6b891461057e5780630d35818114610593575b600080fd5b61050a6104eb366004613eca565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6006546001600160a01b03165b6040516001600160a01b039091168152602001610516565b61056c610552366004613ef4565b600090815260046020526040902054610100900460ff1690565b60405160ff9091168152602001610516565b61059161058c36600461413e565b610c32565b005b61056c6105a136600461418a565b60ff9081166000908152600260205260409020541690565b6105916105c73660046141a7565b610c78565b6105916105da3660046141e0565b610c99565b6105916105ed3660046141a7565b610e07565b6105fa610e1c565b604051610516919061424d565b610591610fcb565b61059161061d36600461450a565b6111cd565b610635610630366004614562565b6111f3565b604051908152602001610516565b6106357f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b610591610678366004613eca565b611292565b610635600381565b61059161069336600461466f565b6112bf565b6105916106a63660046146b5565b6112f1565b6105916106b93660046147a7565b61137d565b610591611418565b6106ce600081565b60405163ffffffff9091168152602001610516565b61050a6106f1366004613ef4565b61145e565b610591610704366004614863565b6114ed565b6107176001600160401b0381565b6040516001600160401b039091168152602001610516565b61063561073d366004614562565b611513565b6105916107503660046141a7565b611540565b6105916107633660046141e0565b611555565b61052c61175b565b61059161077e3660046148c4565b6117ee565b610635610791366004614562565b61181a565b610591611847565b6105916107ac366004614938565b611871565b6105916107bf366004614a19565b611884565b6107d76107d2366004613ef4565b6118a2565b6040516105169190614a55565b6105916107f2366004614aab565b611947565b610591610805366004614bcc565b61196d565b6001546001600160a01b031661052c565b61071761271081565b6007546001600160a01b031661052c565b600080516020615d09833981519152546040516001600160601b039091168152602001610516565b61059161086b3660046141e0565b611993565b61052c611a9f565b610717600081565b61059161088e3660046141e0565b611ac8565b6106356108a1366004614562565b611b4b565b6105916108b4366004614c13565b611b78565b61052c611c02565b6108d46108cf366004613ef4565b611d39565b6040516105169190614c7b565b6108e9611e7a565b6040516001600160e01b03199091168152602001610516565b610591610910366004614ca7565b611eb2565b610591610923366004614d91565b611ed8565b610635610936366004614562565b611f00565b610591610949366004614e59565b611f2d565b6109f261095c366004613ef4565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260046020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516105169190614ea0565b610591610a0d366004614f51565b611f55565b610591610a20366004614f96565b611f7b565b610591610a33366004614fdd565b612016565b610635600080516020615d0983398151915281565b610591610a5b36600461501d565b612107565b610591610a6e366004615062565b61212d565b610591610a813660046150a0565b61214b565b610591610a943660046150d0565b612160565b61050a610aa736600461418a565b612325565b61052c612372565b610591610ac23660046150fc565b61238e565b61052c61253b565b61056c612564565b610591610ae536600461513c565b6125db565b610591610af83660046141a7565b6125f9565b610591610b0b36600461517a565b612610565b610591610b1e3660046141a7565b612638565b61052c61264f565b60055461010090046001600160a01b031661052c565b610591610b4f3660046151bf565b612678565b61050a610b62366004614fdd565b60ff9283166000908152600360209081526040808320948616835293815283822092851682529190915220541690565b610635610ba0366004615210565b612852565b610591610bb336600461523e565b6128dd565b610591610bc63660046141e0565b612905565b610591610bd936600461527f565b6129f2565b610591610bec3660046152ad565b612a69565b610591610bff366004615304565b612a8f565b610591610c1236600461534b565b612ab5565b610591610c253660046141a7565b612add565b61052c612af2565b610c3f335b600036612b1b565b610c73610c4d84606e612c21565b83604051602001610c5e9190615379565b60405160208183030381529060405283612c6d565b505050565b610c8133610c37565b610c95610c8f83608c612c21565b82612c78565b5050565b610ca233610c37565b60055461010090046001600160a01b031615610d055760405162461bcd60e51b815260206004820152601c60248201527f496e7374616e63654163636573734d616e61676572206973207365740000000060448201526064015b60405180910390fd5b610d0d612372565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d789190615428565b6001600160a01b031614610ddf5760405162461bcd60e51b815260206004820152602860248201527f496e7374616e63654163636573734d616e6167657220617574686f72697479206044820152670dad2e6dac2e8c6d60c31b6064820152608401610cfc565b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610e1033610c37565b610c95610c8f8361181a565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b90910416151591810191909152600182018054919291606084019190610ec790615445565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef390615445565b8015610f405780601f10610f1557610100808354040283529160200191610f40565b820191906000526020600020905b815481529060010190602001808311610f2357829003601f168201915b50505050508152505090506040518060e00160405280610f5e600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b03168152602001610faf611c02565b6001600160a01b03168152602001826060015181525091505090565b6000600080516020615d0983398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561103a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105e919061547f565b1561108a5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610cfc565b3061109d6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156110e5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611109919061547f565b6111315760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610cfc565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015611185573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a9919061549c565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6111d633610c37565b610c736111e28461181a565b83604051602001610c5e91906154b9565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660795b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015611268573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c919061561e565b92915050565b61129a612c82565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6112c833610c37565b610c9582826040516020016112dd9190615637565b604051602081830303815290604052612ccb565b6112f9612c82565b61130382876129f2565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101611373838261572d565b5050505050505050565b61138633610c37565b6040516355ee627560e01b81526001600160c01b031983166004820152610c959073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af41580156113e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611407919061561e565b826040516020016112dd91906157ec565b611420612c82565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600081815260046020819052604080832054905163b2466acf60e01b815261010090910460ff169181019190915273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156114c9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c919061547f565b6114f633610c37565b610c736115028461181a565b826040516020016112dd919061581a565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b038416607861121c565b61154933610c37565b610c95610c8f83611b4b565b61155e33610c37565b6007546001600160a01b0316156115ae5760405162461bcd60e51b8152602060048201526014602482015273109d5b991b1953585b9859d95c881a5cc81cd95d60621b6044820152606401610cfc565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161a9190615428565b6001600160a01b0316146116705760405162461bcd60e51b815260206004820152601f60248201527f42756e646c654d616e6167657220696e7374616e6365206d69736d61746368006044820152606401610cfc565b611678612372565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116e39190615428565b6001600160a01b0316146117395760405162461bcd60e51b815260206004820181905260248201527f42756e646c654d616e6167657220617574686f72697479206d69736d617463686044820152606401610cfc565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b600061176f6001546001600160a01b031690565b6001600160a01b031663d39e6043606e5b6040516001600160e01b031960e084901b16815260ff909116600482015260036024820152604401602060405180830381865afa1580156117c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e99190615428565b905090565b6117f733610c37565b6118146118038561181a565b83604051602001610c5e919061581a565b50505050565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660d361121c565b61184f612c82565b611857612cd5565b61185f612df8565b611867612eeb565b61186f612ff9565b565b61187a33610c37565b610c958282612c78565b61188d33610c37565b610c9582826040516020016112dd919061586b565b60008181526004602052604090206001018054606091906118c290615445565b80601f01602080910402602001604051908101604052809291908181526020018280546118ee90615445565b801561193b5780601f106119105761010080835404028352916020019161193b565b820191906000526020600020905b81548152906001019060200180831161191e57829003601f168201915b50505050509050919050565b61195033610c37565b61181461195c8561181a565b83604051602001610c5e9190615907565b61197633610c37565b610c7361198284611f00565b83604051602001610c5e9190615937565b61199b612c82565b806001600160a01b03163b6000036119d15760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610cfc565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015611a4b575060408051601f3d908101601f19168201909252611a489181019061547f565b60015b611a735760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610cfc565b80610c955760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610cfc565b50565b6000611ab36001546001600160a01b031690565b6001600160a01b031663d39e6043608c611780565b33611ad1612372565b6001600160a01b0316816001600160a01b031614611b0c5760405162d1953b60e31b81526001600160a01b0382166004820152602401610cfc565b816001600160a01b03163b600003611b42576040516361798f2f60e11b81526001600160a01b0383166004820152602401610cfc565b610c95826130b5565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b038416607a61121c565b611b8133610c37565b6040516355ee627560e01b81526001600160c01b031983166004820152610c959073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611bde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8f919061561e565b600080600080516020615d0983398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611c72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c96919061547f565b15611d23576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611cf9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1d9190615428565b91505090565b54600160601b90046001600160a01b0316919050565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260046020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c08201529283526001810180549192840191611df190615445565b80601f0160208091040260200160405190810160405280929190818152602001828054611e1d90615445565b8015611e6a5780601f10611e3f57610100808354040283529160200191611e6a565b820191906000526020600020905b815481529060010190602001808311611e4d57829003601f168201915b5050505050815250509050919050565b600080516020615d29833981519152805460009190600160a01b900460ff16611ea4576000611d1d565b638fb3603760e01b91505090565b611ebb33610c37565b610c95611ec783611f00565b826040516020016112dd9190615937565b611ee133610c37565b610c95611eef836078612c21565b826040516020016112dd9190615a07565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660dc61121c565b611f3633610c37565b610c73611f4484608c612c21565b83604051602001610c5e9190615a7b565b611f5e33610c37565b610c95611f6a83611b4b565b826040516020016112dd9190615afc565b611f8433610c37565b6040516355ee627560e01b81526001600160c01b031984166004820152610c739073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611fe1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612005919061561e565b83604051602001610c5e91906157ec565b60ff8381166000908152600260205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af415801561207b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061209f919061547f565b156120a957505050565b60ff808416600090815260036020908152604080832086851684528252808320858516845290915290205416610c7357604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610cfc565b61211033610c37565b610c9561211c8361181a565b826040516020016112dd91906154b9565b61213633610c37565b610c738383604051602001610c5e9190615637565b61215433610c37565b610c73610c8f8461181a565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121cd9190615428565b6001600160a01b0316336001600160a01b0316146121ea57600080fd5b60055461010090046001600160a01b03166303014974612208613116565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865afa15801561224c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612270919061561e565b1561227d5761227d615b5a565b60055461010090046001600160a01b031663b428b0b061229b613116565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af11580156122f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612314919061547f565b1515600114610c9557610c95615b5a565b60ff81811660009081526002602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016114ac565b600080516020615d29833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156123d35750825b90506000826001600160401b031660011480156123ef5750303b155b9050811580156123fd575080155b1561241b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561244557845460ff60401b1916600160401b1785555b61244e8861318e565b60008790506124d388826001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612495573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124b9919061549c565b604660018b604051806020016040528060008152506112f1565b6124db611847565b6124eb632a78f40560e11b611292565b50831561137357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b600061254f6001546001600160a01b031690565b6001600160a01b031663d39e60436078611780565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af41580156125b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e99190615b70565b6125e433610c37565b610c738383604051602001610c5e919061586b565b61260233610c37565b610c95610c8f836078612c21565b61261933610c37565b610c9561262783608c612c21565b826040516020016112dd9190615a7b565b61264133610c37565b610c95610c8f83606e612c21565b60006126636001546001600160a01b031690565b6001600160a01b031663d39e604360d3611780565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126e59190615428565b6001600160a01b0316336001600160a01b03161461270257600080fd5b60055461010090046001600160a01b031663b7d2b162612720613116565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03861660248201526044016020604051808303816000875af1158015612775573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612799919061547f565b15156001146127aa576127aa615b5a565b60055461010090046001600160a01b031663b428b0b06127c8613116565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af115801561281d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612841919061547f565b1515600114610c7357610c73615b5a565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af41580156128b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128d6919061561e565b9392505050565b6128e633610c37565b610c736128f4846078612c21565b83604051602001610c5e9190615a07565b61290e33610c37565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015612956573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297a9190615428565b6001600160a01b0316146129d05760405162461bcd60e51b815260206004820181905260248201527f496e7374616e636552656164657220696e7374616e6365206d69736d617463686044820152606401610cfc565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6129fa612c82565b612a0381611993565b612a0b611418565b6001600160a01b038216612a325760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020615d0983398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b612a7233610c37565b610c73612a7e8461181a565b826040516020016112dd9190615907565b612a9833610c37565b610c73612aa484611b4b565b83604051602001610c5e9190615afc565b612abe33610c37565b610c95612acc83606e612c21565b826040516020016112dd9190615379565b612ae633610c37565b610c95610c8f83611f00565b6000612b066001546001600160a01b031690565b6001600160a01b031663d39e604360dc611780565b600080516020615d29833981519152600080612b56612b38612372565b8730612b48600460008a8c615b8d565b612b5191615bb7565b61319f565b9150915081612c195763ffffffff811615612bf657825460ff60a01b1916600160a01b178355612b84612372565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612bb393929190615be7565b600060405180830381600087803b158015612bcd57600080fd5b505af1158015612be1573d6000803e3d6000fd5b5050845460ff60a01b1916855550612c199050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610cfc565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401612895565b610c738383836132ab565b610c95828261375c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661186f57604051631afcd79f60e31b815260040160405180910390fd5b610c958282613aa0565b7f4bee8dc518469fb8c73831886b94afa96b3ef3e3ee55b9076720259192220ef08054606460ff19918216179091557ffb39f406c8d3ff86a211d5f8c6729c90fce2fed80808bb47b6dc39e975a7d4d68054821660019081179091557fe59968928be831d9cd5403370c74d9f1dac318690d88a2efef2b29079332ee4f80548316821790557fe78520cf30689bb50fce16ae1e25040217df710de55e9ed38f2b2722b2a984688054909216811790915560dc600090815260036020527fa093975c0a88af8b2bf4799c5b4be14d42fc326c2a331b9f3fb3caecbaa5104f90606e5b60ff1660ff1681526020019081526020016000206000612dd460c890565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f7673bcbb3401a7cbae68f81d40eea2cf35afdaf7ecd016ebf3f02857fcc1260a8054606460ff1991821681179092557fa1c69de77e78d12e062170d002ba111ba52c8f452f3b0ca326991b7298fd7aaf80548216600190811790915560008381527f6dcc58afd04aec67a07f8168234edce351865815e87e6f9a62e977830ebfce226020527f5267f8fb4089eaca6dac10383f9a063927ca0092f9c59d7ca3b3d61812638b028054909316821790925591600391905b60ff1660ff1681526020019081526020016000206000612ecd606e90565b60ff1660ff1681526020019081526020016000206000612dd460d290565b7feb6856e0ae0d71a8a9e0bc42aca98fe96c3be13699c5c2d551c94a190e39043d8054600a60ff19918216179091557f4b5a0a5953a753e51be29e6e2b638995162612852ea3b46cff09cbac61f9cb568054821660019081179091557fb7939d1e06f7236b22c8e9bf344ab29b7c87eec9f53e55d389378ef7585ffd7e80548316821790557f158b1af96972c14cb1a5e39cbdbd793a3bc4f7c57c85ef22cf298bf517d6e0b380548316821790557f6160f9e22b3793ed435de7ac6b8dd0ee9d3110d626fe8135ffbb7d38470f229a8054909216811790915560d3600090815260036020527fb0b6d2d73fcb69de4c434c711239319c2c669ebf6407f36fc258ff9f98f803fa906064612db6565b7fec56eb74d500f9b1bf8f0c5cc42ff5ed51e8d9e3a2ebb6e83a26383f297e0f1e8054606460ff1991821681179092557fe63626ccd25c67b6e53c3bd622e9c77c962be121e55eb3904854ac631eb8f9f080548216600190811790915560009283527fa74711c3b0f698a9dde85849aefdd2d454c235a4c161e6f019356c5ec8490c816020527fbed2f4a35dfbfdf2c5294831261529ea73fa5b94705484f5af8ba1bc3cb59362805490921681179091559060039060c8612eaf565b600080516020615d2983398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516368aebf7b60e01b815261076c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af415801561316a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e99190615c27565b613196612c82565b611a9c81613eb9565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161320e9190615c50565b600060405180830381855afa9150503d8060008114613249576040519150601f19603f3d011682016040523d82523d6000602084013e61324e565b606091505b509150915081156132a057604081511061328057808060200190518101906132769190615c6c565b90945092506132a0565b60208151106132a0578080602001905181019061329d919061547f565b93505b505094509492505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156132fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613321919061547f565b61336d5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610cfc565b6000838152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156133d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133fd919061547f565b6134495760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610cfc565b6000858152600460205260409020600101613464858261572d565b5060ff8084161461348257815461ff00191661010060ff8516021782555b8154620100003390810262010000600160b01b031983161784559063ffffffff600160b01b909104166134b24390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613544573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135689190615b70565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156135b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135dc9190615c9b565b85888632876040516135f49796959493929190615cb8565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801561366e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136929190615b70565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156136e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137069190615c9b565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c0015b60405180910390a150505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156137ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137d2919061547f565b61381e5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610cfc565b6000828152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af415801561388a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138ae919061547f565b6138fa5760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610cfc565b815461390a9060ff168285612016565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b9091041661394e4390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156139e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a049190615b70565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613a54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a789190615c9b565b8588863287604051613a909796959493929190615cb8565b60405180910390a1505050505050565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613af3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b179190615b70565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015613b6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b90919061547f565b613bdc5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610cfc565b6000838152600460208190526040918290208054925163037c8cb160e51b815261010090930460ff16918301919091529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015613c49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c6d919061547f565b613cb95760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610cfc565b33436000613cc685612325565b613cd1576064613ce7565b60ff808616600090815260026020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b919091021785556000888152600460205260409020909150600101613d71878261572d565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613de4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e089190615b70565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613e58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e7c9190615c9b565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a00161374b565b613ec1612c82565b611a9c816130b5565b600060208284031215613edc57600080fd5b81356001600160e01b0319811681146128d657600080fd5b600060208284031215613f0657600080fd5b5035919050565b6001600160601b0381168114611a9c57600080fd5b8035613f2d81613f0d565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613f6a57613f6a613f32565b60405290565b60405161010081016001600160401b0381118282101715613f6a57613f6a613f32565b60405161020081016001600160401b0381118282101715613f6a57613f6a613f32565b60405161012081016001600160401b0381118282101715613f6a57613f6a613f32565b604051608081016001600160401b0381118282101715613f6a57613f6a613f32565b60405160e081016001600160401b0381118282101715613f6a57613f6a613f32565b6001600160a01b0381168114611a9c57600080fd5b8035613f2d8161401d565b60006040828403121561404f57600080fd5b614057613f48565b9050813581526020820135602082015292915050565b8015158114611a9c57600080fd5b8035613f2d8161406d565b6000610140828403121561409957600080fd5b6140a1613f70565b90506140ac82614032565b81526140ba60208301614032565b60208201526140cb60408301613f22565b60408201526140dc60608301613f22565b60608201526140ee836080840161403d565b60808201526141008360c0840161403d565b60a0820152614112610100830161407b565b60c08201526141246101208301614032565b60e082015292915050565b60ff81168114611a9c57600080fd5b6000806000610180848603121561415457600080fd5b833561415f81613f0d565b925061416e8560208601614086565b915061016084013561417f8161412f565b809150509250925092565b60006020828403121561419c57600080fd5b81356128d68161412f565b600080604083850312156141ba57600080fd5b82356141c581613f0d565b915060208301356141d58161412f565b809150509250929050565b6000602082840312156141f257600080fd5b81356128d68161401d565b60005b83811015614218578181015183820152602001614200565b50506000910152565b600081518084526142398160208601602086016141fd565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516142b660c08401826001600160a01b03169052565b5060c083015160e0808401526142d0610100840182614221565b949350505050565b6001600160c01b031981168114611a9c57600080fd5b8035613f2d816142d8565b64ffffffffff81168114611a9c57600080fd5b8035613f2d816142f9565b600082601f83011261432857600080fd5b81356001600160401b038082111561434257614342613f32565b604051601f8301601f19908116603f0116810190828211818310171561436a5761436a613f32565b8160405283815286602085880101111561438357600080fd5b836020870160208301376000602085830101528094505050505092915050565b61ffff81168114611a9c57600080fd5b8035613f2d816143a3565b600061020082840312156143d157600080fd5b6143d9613f93565b90506143e482613f22565b81526143f260208301613f22565b6020820152614403604083016142ee565b6040820152614414606083016142ee565b60608201526080820135608082015260a082013560a082015260c082013560c082015261444360e0830161430c565b60e0820152610100808301356001600160401b038082111561446457600080fd5b61447086838701614317565b8385015261012092508285013591508082111561448c57600080fd5b5061449985828601614317565b8284015250506101406144ad8184016143b3565b908201526101606144bf8382016143b3565b9082015261018082810135908201526101a06144dc81840161430c565b908201526101c06144ee83820161430c565b908201526101e061450083820161430c565b9082015292915050565b60008060006060848603121561451f57600080fd5b833561452a81613f0d565b925060208401356001600160401b0381111561454557600080fd5b614551868287016143be565b925050604084013561417f8161412f565b60006020828403121561457457600080fd5b81356128d681613f0d565b63ffffffff81168114611a9c57600080fd5b8035613f2d8161457f565b600061012082840312156145af57600080fd5b6145b7613fb6565b905081356001600160401b03808211156145d057600080fd5b6145dc85838601614317565b835260208401356020840152604084013560408401526060840135606084015261460860808501614591565b608084015261461960a08501614591565b60a084015261462a60c0850161407b565b60c084015261463b60e0850161407b565b60e08401526101009150818401358181111561465657600080fd5b61466286828701614317565b8385015250505092915050565b6000806040838503121561468257600080fd5b8235915060208301356001600160401b0381111561469f57600080fd5b6146ab8582860161459c565b9150509250929050565b60008060008060008060c087890312156146ce57600080fd5b86356146d98161401d565b955060208701356146e981613f0d565b945060408701356146f98161412f565b935060608701356147098161406d565b925060808701356147198161401d565b915060a08701356001600160401b0381111561473457600080fd5b61474089828a01614317565b9150509295509295509295565b60006040828403121561475f57600080fd5b614767613f48565b9050813561477481613f0d565b815260208201356001600160401b0381111561478f57600080fd5b61479b84828501614317565b60208301525092915050565b600080604083850312156147ba57600080fd5b82356147c5816142d8565b915060208301356001600160401b038111156147e057600080fd5b6146ab8582860161474d565b6000608082840312156147fe57600080fd5b614806613fd9565b90508135614813816143a3565b81526020828101359082015260408201356001600160401b0381111561483857600080fd5b61484484828501614317565b6040830152506060820135614858816142f9565b606082015292915050565b60008060006060848603121561487857600080fd5b833561488381613f0d565b925060208401356148938161457f565b915060408401356001600160401b038111156148ae57600080fd5b6148ba868287016147ec565b9150509250925092565b600080600080608085870312156148da57600080fd5b84356148e581613f0d565b935060208501356148f58161457f565b925060408501356001600160401b0381111561491057600080fd5b61491c878288016147ec565b925050606085013561492d8161412f565b939692955090935050565b6000806040838503121561494b57600080fd5b8235915060208301356141d58161412f565b600060e0828403121561496f57600080fd5b614977613ffb565b905061498282613f22565b815260208201356001600160401b038082111561499e57600080fd5b6149aa85838601614317565b6020840152604084013560408401526149c560608501614591565b60608401526149d660808501614591565b60808401526149e760a0850161430c565b60a084015260c0840135915080821115614a0057600080fd5b50614a0d84828501614317565b60c08301525092915050565b60008060408385031215614a2c57600080fd5b8235915060208301356001600160401b03811115614a4957600080fd5b6146ab8582860161495d565b6020815260006128d66020830184614221565b600060808284031215614a7a57600080fd5b614a82613fd9565b9050813581526020820135602082015260408201356001600160401b0381111561483857600080fd5b60008060008060808587031215614ac157600080fd5b8435614acc81613f0d565b93506020850135614adc816143a3565b925060408501356001600160401b03811115614af757600080fd5b61491c87828801614a68565b60006101408284031215614b1657600080fd5b614b1e613fb6565b9050614b2982613f22565b8152614b38836020840161403d565b602082015260608201356001600160401b03811115614b5657600080fd5b614b6284828501614317565b604083015250614b7460808301613f22565b6060820152614b8560a08301613f22565b6080820152614b9660c08301613f22565b60a0820152614ba760e0830161430c565b60c0820152610100614bba81840161430c565b60e0830152614500610120840161430c565b600080600060608486031215614be157600080fd5b8335614bec81613f0d565b925060208401356001600160401b03811115614c0757600080fd5b61455186828701614b03565b60008060408385031215614c2657600080fd5b82356141c5816142d8565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b60208152614c8d602082018351614c31565b6000602083015160c0808401526142d060e0840182614221565b60008060408385031215614cba57600080fd5b8235614cc581613f0d565b915060208301356001600160401b03811115614ce057600080fd5b6146ab85828601614b03565b60006101008284031215614cff57600080fd5b60405160c081018181106001600160401b0382111715614d2157614d21613f32565b6040529050808235614d3281613f0d565b81526020830135614d428161401d565b6020820152614d54846040850161403d565b6040820152614d66846080850161403d565b606082015260c0830135614d798161401d565b8060808301525060e083013560a08201525092915050565b6000806101208385031215614da557600080fd5b8235614db081613f0d565b9150614dbf8460208501614cec565b90509250929050565b600060e08284031215614dda57600080fd5b614de2613ffb565b905081356001600160401b0380821115614dfb57600080fd5b614e0785838601614317565b8352614e1560208501614032565b6020840152614e2660408501614032565b6040840152614e3760608501614032565b6060840152614e4860808501613f22565b60808401526149e760a08501613f22565b600080600060608486031215614e6e57600080fd5b8335614e7981613f0d565b925060208401356001600160401b03811115614e9457600080fd5b61455186828701614dc8565b60a0810161128c8284614c31565b600060a08284031215614ec057600080fd5b60405160a081016001600160401b038282108183111715614ee357614ee3613f32565b8160405282935084359150614ef7826142d8565b908252602084013590614f098261406d565b8160208401526040850135915080821115614f2357600080fd5b50614f3085828601614317565b60408301525060608301356060820152608083013560808201525092915050565b60008060408385031215614f6457600080fd5b8235614f6f81613f0d565b915060208301356001600160401b03811115614f8a57600080fd5b6146ab85828601614eae565b600080600060608486031215614fab57600080fd5b8335614fb6816142d8565b925060208401356001600160401b03811115614fd157600080fd5b6145518682870161474d565b600080600060608486031215614ff257600080fd5b8335614ffd8161412f565b9250602084013561500d8161412f565b9150604084013561417f8161412f565b6000806040838503121561503057600080fd5b823561503b81613f0d565b915060208301356001600160401b0381111561505657600080fd5b6146ab858286016143be565b60008060006060848603121561507757600080fd5b8335925060208401356001600160401b0381111561509457600080fd5b6145518682870161459c565b6000806000606084860312156150b557600080fd5b83356150c081613f0d565b9250602084013561500d816143a3565b600080604083850312156150e357600080fd5b82356150ee8161401d565b946020939093013593505050565b60008060006060848603121561511157600080fd5b833561511c8161401d565b9250602084013561512c8161401d565b9150604084013561417f8161401d565b60008060006060848603121561515157600080fd5b8335925060208401356001600160401b0381111561516e57600080fd5b6145518682870161495d565b6000806040838503121561518d57600080fd5b823561519881613f0d565b915060208301356001600160401b038111156151b357600080fd5b6146ab85828601614dc8565b6000806000606084860312156151d457600080fd5b83356151df8161401d565b925060208401356151ef8161401d565b929592945050506040919091013590565b60ff1981168114611a9c57600080fd5b6000806040838503121561522357600080fd5b823561522e8161412f565b915060208301356141d581615200565b6000806000610140848603121561525457600080fd5b833561525f81613f0d565b925061526e8560208601614cec565b915061012084013561417f8161412f565b6000806040838503121561529257600080fd5b823561529d8161401d565b915060208301356141d58161401d565b6000806000606084860312156152c257600080fd5b83356152cd81613f0d565b925060208401356152dd816143a3565b915060408401356001600160401b038111156152f857600080fd5b6148ba86828701614a68565b60008060006060848603121561531957600080fd5b833561532481613f0d565b925060208401356001600160401b0381111561533f57600080fd5b61455186828701614eae565b600080610160838503121561535f57600080fd5b823561536a81613f0d565b9150614dbf8460208501614086565b81516001600160a01b039081168252602080840151909116908201526040808301516001600160601b0316908201526060808301516101408301916153c8908401826001600160601b03169052565b5060808301516153e5608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301518015156101008401525060e08301516001600160a01b0381166101208401525092915050565b60006020828403121561543a57600080fd5b81516128d68161401d565b600181811c9082168061545957607f821691505b60208210810361547957634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561549157600080fd5b81516128d68161406d565b6000602082840312156154ae57600080fd5b81516128d681613f0d565b602081526154d36020820183516001600160601b03169052565b600060208301516154ef60408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e08301516101006155548185018364ffffffffff169052565b808501519150506102006101208181860152615574610220860184614221565b9250808601519050610140601f1986850301818701526155948483614221565b9350808701519150506101606155af8187018361ffff169052565b86015190506101806155c68682018361ffff169052565b8601516101a08681019190915286015190506101c06155ed8187018364ffffffffff169052565b86015190506101e06156078682018364ffffffffff169052565b9095015164ffffffffff1693019290925250919050565b60006020828403121561563057600080fd5b5051919050565b6020815260008251610120806020850152615656610140850183614221565b9150602085015160408501526040850151606085015260608501516080850152608085015161568d60a086018263ffffffff169052565b5060a085015163ffffffff811660c08601525060c085015180151560e08601525060e08501516101006156c38187018315159052565b860151858403601f19018387015290506156dd8382614221565b9695505050505050565b601f821115610c7357600081815260208120601f850160051c8101602086101561570e5750805b601f850160051c820191505b81811015612c195782815560010161571a565b81516001600160401b0381111561574657615746613f32565b61575a816157548454615445565b846156e7565b602080601f83116001811461578f57600084156157775750858301515b600019600386901b1c1916600185901b178555612c19565b600085815260208120601f198616915b828110156157be5788860151825594840194600190910190840161579f565b50858210156157dc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b602081526001600160601b038251166020820152600060208301516040808401526142d06060840182614221565b6020815261ffff825116602082015260208201516040820152600060408301516080606084015261584e60a0840182614221565b905064ffffffffff60608501511660808401528091505092915050565b602081526001600160601b0382511660208201526000602083015160e0604084015261589b610100840182614221565b90506040840151606084015263ffffffff606085015116608084015260808401516158ce60a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525b5060c0840151838203601f190160e08501526158fe8282614221565b95945050505050565b602081528151602082015260208201516040820152600060408301516080606084015261584e60a0840182614221565b602081526159516020820183516001600160601b03169052565b6000602083015161596f604084018280518252602090810151910152565b50604083015161014080608085015261598c610160850183614221565b915060608501516159a860a08601826001600160601b03169052565b5060808501516001600160601b03811660c08601525060a08501516001600160601b03811660e08601525060c08501516101006159ed8187018364ffffffffff169052565b60e087015164ffffffffff81166101208801529150615607565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015261010083019190606085015180516080860152602081015160a0860152915060808501511660c08401525060a09092015160e09091015290565b602081526000825160e06020840152615a98610100840182614221565b9050602084015160018060a01b03808216604086015280604087015116606086015280606087015116608086015250506080840151615ae260a08501826001600160601b03169052565b5060a08401516001600160601b03811660c08501526158e2565b602081526001600160401b0360c01b82511660208201526020820151151560408201526000604083015160a06060840152615b3a60c0840182614221565b905060608401516080840152608084015160a08401528091505092915050565b634e487b7160e01b600052600160045260246000fd5b600060208284031215615b8257600080fd5b81516128d68161412f565b60008085851115615b9d57600080fd5b83861115615baa57600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015615bdf5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600060208284031215615c3957600080fd5b81516001600160401b03811681146128d657600080fd5b60008251615c628184602087016141fd565b9190910192915050565b60008060408385031215615c7f57600080fd5b8251615c8a8161406d565b60208401519092506141d58161457f565b600060208284031215615cad57600080fd5b81516128d681615200565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e0019056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a26469706673582212200d4192ff06f401c8cdda2d35764c94f68ea69ec91d6f1b49388ac28af3a4326b64736f6c63430008140033",
|
3132
2973
|
"linkReferences": {
|
3133
2974
|
"contracts/types/Key32.sol": {
|
3134
2975
|
"Key32Lib": [
|
3135
2976
|
{
|
3136
2977
|
"length": 20,
|
3137
|
-
"start":
|
2978
|
+
"start": 10392
|
3138
2979
|
},
|
3139
2980
|
{
|
3140
2981
|
"length": 20,
|
3141
|
-
"start":
|
2982
|
+
"start": 13611
|
3142
2983
|
},
|
3143
2984
|
{
|
3144
2985
|
"length": 20,
|
3145
|
-
"start":
|
2986
|
+
"start": 13727
|
3146
2987
|
},
|
3147
2988
|
{
|
3148
2989
|
"length": 20,
|
3149
|
-
"start":
|
2990
|
+
"start": 13909
|
3150
2991
|
},
|
3151
2992
|
{
|
3152
2993
|
"length": 20,
|
3153
|
-
"start":
|
2994
|
+
"start": 14025
|
3154
2995
|
},
|
3155
2996
|
{
|
3156
2997
|
"length": 20,
|
3157
|
-
"start":
|
2998
|
+
"start": 14791
|
3158
2999
|
},
|
3159
3000
|
{
|
3160
3001
|
"length": 20,
|
3161
|
-
"start":
|
3002
|
+
"start": 14907
|
3162
3003
|
},
|
3163
3004
|
{
|
3164
3005
|
"length": 20,
|
3165
|
-
"start":
|
3006
|
+
"start": 15066
|
3166
3007
|
},
|
3167
3008
|
{
|
3168
3009
|
"length": 20,
|
3169
|
-
"start":
|
3010
|
+
"start": 15819
|
3170
3011
|
},
|
3171
3012
|
{
|
3172
3013
|
"length": 20,
|
3173
|
-
"start":
|
3174
|
-
}
|
3014
|
+
"start": 15935
|
3015
|
+
}
|
3016
|
+
]
|
3017
|
+
},
|
3018
|
+
"contracts/types/NftId.sol": {
|
3019
|
+
"NftIdLib": [
|
3175
3020
|
{
|
3176
3021
|
"length": 20,
|
3177
|
-
"start":
|
3022
|
+
"start": 4129
|
3178
3023
|
},
|
3179
3024
|
{
|
3180
3025
|
"length": 20,
|
3181
|
-
"start":
|
3026
|
+
"start": 4632
|
3182
3027
|
},
|
3183
3028
|
{
|
3184
3029
|
"length": 20,
|
3185
|
-
"start":
|
3030
|
+
"start": 5432
|
3186
3031
|
},
|
3187
3032
|
{
|
3188
3033
|
"length": 20,
|
3189
|
-
"start":
|
3190
|
-
}
|
3191
|
-
]
|
3192
|
-
},
|
3193
|
-
"contracts/types/NftId.sol": {
|
3194
|
-
"NftIdLib": [
|
3195
|
-
{
|
3196
|
-
"length": 20,
|
3197
|
-
"start": 10483
|
3034
|
+
"start": 6207
|
3198
3035
|
},
|
3199
3036
|
{
|
3200
3037
|
"length": 20,
|
3201
|
-
"start":
|
3038
|
+
"start": 7024
|
3202
3039
|
},
|
3203
3040
|
{
|
3204
3041
|
"length": 20,
|
3205
|
-
"start":
|
3042
|
+
"start": 7257
|
3206
3043
|
},
|
3207
3044
|
{
|
3208
3045
|
"length": 20,
|
3209
|
-
"start":
|
3046
|
+
"start": 7973
|
3210
3047
|
},
|
3211
3048
|
{
|
3212
3049
|
"length": 20,
|
3213
|
-
"start":
|
3050
|
+
"start": 11372
|
3214
3051
|
}
|
3215
3052
|
]
|
3216
3053
|
},
|
@@ -3218,11 +3055,7 @@
|
|
3218
3055
|
"ObjectTypeLib": [
|
3219
3056
|
{
|
3220
3057
|
"length": 20,
|
3221
|
-
"start":
|
3222
|
-
},
|
3223
|
-
{
|
3224
|
-
"length": 20,
|
3225
|
-
"start": 18926
|
3058
|
+
"start": 15187
|
3226
3059
|
}
|
3227
3060
|
]
|
3228
3061
|
},
|
@@ -3230,15 +3063,15 @@
|
|
3230
3063
|
"RiskIdLib": [
|
3231
3064
|
{
|
3232
3065
|
"length": 20,
|
3233
|
-
"start":
|
3066
|
+
"start": 5066
|
3234
3067
|
},
|
3235
3068
|
{
|
3236
3069
|
"length": 20,
|
3237
|
-
"start":
|
3070
|
+
"start": 7109
|
3238
3071
|
},
|
3239
3072
|
{
|
3240
3073
|
"length": 20,
|
3241
|
-
"start":
|
3074
|
+
"start": 8136
|
3242
3075
|
}
|
3243
3076
|
]
|
3244
3077
|
},
|
@@ -3246,51 +3079,7 @@
|
|
3246
3079
|
"RoleIdLib": [
|
3247
3080
|
{
|
3248
3081
|
"length": 20,
|
3249
|
-
"start":
|
3250
|
-
},
|
3251
|
-
{
|
3252
|
-
"length": 20,
|
3253
|
-
"start": 2261
|
3254
|
-
},
|
3255
|
-
{
|
3256
|
-
"length": 20,
|
3257
|
-
"start": 3702
|
3258
|
-
},
|
3259
|
-
{
|
3260
|
-
"length": 20,
|
3261
|
-
"start": 4027
|
3262
|
-
},
|
3263
|
-
{
|
3264
|
-
"length": 20,
|
3265
|
-
"start": 11778
|
3266
|
-
},
|
3267
|
-
{
|
3268
|
-
"length": 20,
|
3269
|
-
"start": 13111
|
3270
|
-
},
|
3271
|
-
{
|
3272
|
-
"length": 20,
|
3273
|
-
"start": 13197
|
3274
|
-
},
|
3275
|
-
{
|
3276
|
-
"length": 20,
|
3277
|
-
"start": 14258
|
3278
|
-
},
|
3279
|
-
{
|
3280
|
-
"length": 20,
|
3281
|
-
"start": 14426
|
3282
|
-
},
|
3283
|
-
{
|
3284
|
-
"length": 20,
|
3285
|
-
"start": 15402
|
3286
|
-
},
|
3287
|
-
{
|
3288
|
-
"length": 20,
|
3289
|
-
"start": 15815
|
3290
|
-
},
|
3291
|
-
{
|
3292
|
-
"length": 20,
|
3293
|
-
"start": 17824
|
3082
|
+
"start": 12625
|
3294
3083
|
}
|
3295
3084
|
]
|
3296
3085
|
},
|
@@ -3298,47 +3087,43 @@
|
|
3298
3087
|
"StateIdLib": [
|
3299
3088
|
{
|
3300
3089
|
"length": 20,
|
3301
|
-
"start":
|
3090
|
+
"start": 5295
|
3302
3091
|
},
|
3303
3092
|
{
|
3304
3093
|
"length": 20,
|
3305
|
-
"start":
|
3094
|
+
"start": 8290
|
3306
3095
|
},
|
3307
3096
|
{
|
3308
3097
|
"length": 20,
|
3309
|
-
"start":
|
3098
|
+
"start": 9073
|
3310
3099
|
},
|
3311
3100
|
{
|
3312
3101
|
"length": 20,
|
3313
|
-
"start":
|
3102
|
+
"start": 13028
|
3314
3103
|
},
|
3315
3104
|
{
|
3316
3105
|
"length": 20,
|
3317
|
-
"start":
|
3106
|
+
"start": 13248
|
3318
3107
|
},
|
3319
3108
|
{
|
3320
3109
|
"length": 20,
|
3321
|
-
"start":
|
3110
|
+
"start": 14229
|
3322
3111
|
},
|
3323
3112
|
{
|
3324
3113
|
"length": 20,
|
3325
|
-
"start":
|
3114
|
+
"start": 14449
|
3326
3115
|
},
|
3327
3116
|
{
|
3328
3117
|
"length": 20,
|
3329
|
-
"start":
|
3330
|
-
}
|
3331
|
-
|
3332
|
-
|
3333
|
-
|
3334
|
-
|
3335
|
-
{
|
3336
|
-
"length": 20,
|
3337
|
-
"start": 20682
|
3338
|
-
},
|
3118
|
+
"start": 15408
|
3119
|
+
}
|
3120
|
+
]
|
3121
|
+
},
|
3122
|
+
"contracts/types/Version.sol": {
|
3123
|
+
"VersionPartLib": [
|
3339
3124
|
{
|
3340
3125
|
"length": 20,
|
3341
|
-
"start":
|
3126
|
+
"start": 9630
|
3342
3127
|
}
|
3343
3128
|
]
|
3344
3129
|
}
|
@@ -3348,47 +3133,43 @@
|
|
3348
3133
|
"Key32Lib": [
|
3349
3134
|
{
|
3350
3135
|
"length": 20,
|
3351
|
-
"start":
|
3352
|
-
},
|
3353
|
-
{
|
3354
|
-
"length": 20,
|
3355
|
-
"start": 9445
|
3136
|
+
"start": 10359
|
3356
3137
|
},
|
3357
3138
|
{
|
3358
3139
|
"length": 20,
|
3359
|
-
"start":
|
3140
|
+
"start": 13578
|
3360
3141
|
},
|
3361
3142
|
{
|
3362
3143
|
"length": 20,
|
3363
|
-
"start":
|
3144
|
+
"start": 13694
|
3364
3145
|
},
|
3365
3146
|
{
|
3366
3147
|
"length": 20,
|
3367
|
-
"start":
|
3148
|
+
"start": 13876
|
3368
3149
|
},
|
3369
3150
|
{
|
3370
3151
|
"length": 20,
|
3371
|
-
"start":
|
3152
|
+
"start": 13992
|
3372
3153
|
},
|
3373
3154
|
{
|
3374
3155
|
"length": 20,
|
3375
|
-
"start":
|
3156
|
+
"start": 14758
|
3376
3157
|
},
|
3377
3158
|
{
|
3378
3159
|
"length": 20,
|
3379
|
-
"start":
|
3160
|
+
"start": 14874
|
3380
3161
|
},
|
3381
3162
|
{
|
3382
3163
|
"length": 20,
|
3383
|
-
"start":
|
3164
|
+
"start": 15033
|
3384
3165
|
},
|
3385
3166
|
{
|
3386
3167
|
"length": 20,
|
3387
|
-
"start":
|
3168
|
+
"start": 15786
|
3388
3169
|
},
|
3389
3170
|
{
|
3390
3171
|
"length": 20,
|
3391
|
-
"start":
|
3172
|
+
"start": 15902
|
3392
3173
|
}
|
3393
3174
|
]
|
3394
3175
|
},
|
@@ -3396,23 +3177,35 @@
|
|
3396
3177
|
"NftIdLib": [
|
3397
3178
|
{
|
3398
3179
|
"length": 20,
|
3399
|
-
"start":
|
3180
|
+
"start": 4096
|
3181
|
+
},
|
3182
|
+
{
|
3183
|
+
"length": 20,
|
3184
|
+
"start": 4599
|
3400
3185
|
},
|
3401
3186
|
{
|
3402
3187
|
"length": 20,
|
3403
|
-
"start":
|
3188
|
+
"start": 5399
|
3404
3189
|
},
|
3405
3190
|
{
|
3406
3191
|
"length": 20,
|
3407
|
-
"start":
|
3192
|
+
"start": 6174
|
3408
3193
|
},
|
3409
3194
|
{
|
3410
3195
|
"length": 20,
|
3411
|
-
"start":
|
3196
|
+
"start": 6991
|
3412
3197
|
},
|
3413
3198
|
{
|
3414
3199
|
"length": 20,
|
3415
|
-
"start":
|
3200
|
+
"start": 7224
|
3201
|
+
},
|
3202
|
+
{
|
3203
|
+
"length": 20,
|
3204
|
+
"start": 7940
|
3205
|
+
},
|
3206
|
+
{
|
3207
|
+
"length": 20,
|
3208
|
+
"start": 11339
|
3416
3209
|
}
|
3417
3210
|
]
|
3418
3211
|
},
|
@@ -3420,7 +3213,7 @@
|
|
3420
3213
|
"ObjectTypeLib": [
|
3421
3214
|
{
|
3422
3215
|
"length": 20,
|
3423
|
-
"start":
|
3216
|
+
"start": 15154
|
3424
3217
|
}
|
3425
3218
|
]
|
3426
3219
|
},
|
@@ -3428,15 +3221,15 @@
|
|
3428
3221
|
"RiskIdLib": [
|
3429
3222
|
{
|
3430
3223
|
"length": 20,
|
3431
|
-
"start":
|
3224
|
+
"start": 5033
|
3432
3225
|
},
|
3433
3226
|
{
|
3434
3227
|
"length": 20,
|
3435
|
-
"start":
|
3228
|
+
"start": 7076
|
3436
3229
|
},
|
3437
3230
|
{
|
3438
3231
|
"length": 20,
|
3439
|
-
"start":
|
3232
|
+
"start": 8103
|
3440
3233
|
}
|
3441
3234
|
]
|
3442
3235
|
},
|
@@ -3444,35 +3237,7 @@
|
|
3444
3237
|
"RoleIdLib": [
|
3445
3238
|
{
|
3446
3239
|
"length": 20,
|
3447
|
-
"start":
|
3448
|
-
},
|
3449
|
-
{
|
3450
|
-
"length": 20,
|
3451
|
-
"start": 6073
|
3452
|
-
},
|
3453
|
-
{
|
3454
|
-
"length": 20,
|
3455
|
-
"start": 6159
|
3456
|
-
},
|
3457
|
-
{
|
3458
|
-
"length": 20,
|
3459
|
-
"start": 7220
|
3460
|
-
},
|
3461
|
-
{
|
3462
|
-
"length": 20,
|
3463
|
-
"start": 7388
|
3464
|
-
},
|
3465
|
-
{
|
3466
|
-
"length": 20,
|
3467
|
-
"start": 8364
|
3468
|
-
},
|
3469
|
-
{
|
3470
|
-
"length": 20,
|
3471
|
-
"start": 8777
|
3472
|
-
},
|
3473
|
-
{
|
3474
|
-
"length": 20,
|
3475
|
-
"start": 10786
|
3240
|
+
"start": 12592
|
3476
3241
|
}
|
3477
3242
|
]
|
3478
3243
|
},
|
@@ -3480,35 +3245,43 @@
|
|
3480
3245
|
"StateIdLib": [
|
3481
3246
|
{
|
3482
3247
|
"length": 20,
|
3483
|
-
"start":
|
3248
|
+
"start": 5262
|
3484
3249
|
},
|
3485
3250
|
{
|
3486
3251
|
"length": 20,
|
3487
|
-
"start":
|
3252
|
+
"start": 8257
|
3488
3253
|
},
|
3489
3254
|
{
|
3490
3255
|
"length": 20,
|
3491
|
-
"start":
|
3256
|
+
"start": 9040
|
3492
3257
|
},
|
3493
3258
|
{
|
3494
3259
|
"length": 20,
|
3495
|
-
"start":
|
3260
|
+
"start": 12995
|
3496
3261
|
},
|
3497
3262
|
{
|
3498
3263
|
"length": 20,
|
3499
|
-
"start":
|
3264
|
+
"start": 13215
|
3500
3265
|
},
|
3501
3266
|
{
|
3502
3267
|
"length": 20,
|
3503
|
-
"start":
|
3268
|
+
"start": 14196
|
3504
3269
|
},
|
3505
3270
|
{
|
3506
3271
|
"length": 20,
|
3507
|
-
"start":
|
3272
|
+
"start": 14416
|
3508
3273
|
},
|
3509
3274
|
{
|
3510
3275
|
"length": 20,
|
3511
|
-
"start":
|
3276
|
+
"start": 15375
|
3277
|
+
}
|
3278
|
+
]
|
3279
|
+
},
|
3280
|
+
"contracts/types/Version.sol": {
|
3281
|
+
"VersionPartLib": [
|
3282
|
+
{
|
3283
|
+
"length": 20,
|
3284
|
+
"start": 9597
|
3512
3285
|
}
|
3513
3286
|
]
|
3514
3287
|
}
|