@etherisc/gif-next 0.0.2-7b86057-523 → 0.0.2-7bdebe2-893
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -13
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +315 -98
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +668 -141
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +241 -60
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +438 -86
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +489 -163
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +250 -137
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +626 -189
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +427 -178
- 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 +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +64 -50
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +5 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1562 -814
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +227 -213
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +1119 -785
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +463 -167
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +418 -230
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +439 -379
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +355 -104
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +8 -13
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +197 -169
- 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 +58 -75
- 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 +1092 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +672 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +527 -338
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +344 -93
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +1400 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +760 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1282 -256
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +430 -87
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +619 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +279 -264
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +743 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +800 -159
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +159 -274
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +701 -118
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +71 -160
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +338 -412
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +299 -128
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +1062 -198
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +384 -89
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +231 -223
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +298 -95
- 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 +34 -2
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +70 -193
- 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 +47 -15
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +2 -2
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +182 -232
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +287 -94
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +23 -11
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +128 -37
- 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 +27 -29
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +189 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +8 -29
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +71 -160
- 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 +100 -33
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +302 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +283 -76
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +115 -58
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +172 -160
- 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 +115 -58
- 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 +190 -210
- 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 +209 -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 +179 -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 +2 -2
- 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 +209 -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 +38 -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 +134 -78
- package/contracts/components/Distribution.sol +190 -57
- package/contracts/components/IComponent.sol +62 -15
- package/contracts/components/IDistributionComponent.sol +39 -15
- package/contracts/components/IPoolComponent.sol +84 -31
- package/contracts/components/IProductComponent.sol +3 -2
- package/contracts/components/Pool.sol +223 -148
- package/contracts/components/Product.sol +221 -115
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/instance/BundleManager.sol +10 -9
- package/contracts/instance/Cloneable.sol +7 -2
- package/contracts/instance/IInstance.sol +51 -19
- package/contracts/instance/IInstanceService.sol +33 -11
- package/contracts/instance/Instance.sol +143 -94
- package/contracts/instance/InstanceAccessManager.sol +389 -160
- package/contracts/instance/InstanceReader.sol +85 -12
- package/contracts/instance/InstanceService.sol +273 -224
- package/contracts/instance/InstanceServiceManager.sol +1 -1
- package/contracts/instance/ObjectManager.sol +6 -8
- package/contracts/instance/base/ComponentService.sol +28 -32
- package/contracts/instance/base/KeyValueStore.sol +13 -36
- package/contracts/instance/base/Lifecycle.sol +26 -6
- package/contracts/instance/module/IAccess.sol +22 -16
- package/contracts/instance/module/IBundle.sol +8 -5
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +2 -0
- package/contracts/instance/module/IPolicy.sol +41 -9
- package/contracts/instance/module/ISetup.sol +7 -20
- package/contracts/instance/service/ApplicationService.sol +356 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +224 -132
- package/contracts/instance/service/BundleServiceManager.sol +1 -1
- package/contracts/instance/service/ClaimService.sol +444 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +344 -19
- package/contracts/instance/service/DistributionServiceManager.sol +1 -1
- package/contracts/instance/service/IApplicationService.sol +78 -0
- package/contracts/instance/service/IBundleService.sol +93 -22
- package/contracts/instance/service/IClaimService.sol +90 -0
- package/contracts/instance/service/IDistributionService.sol +87 -0
- package/contracts/instance/service/IPolicyService.sol +36 -50
- package/contracts/instance/service/IPoolService.sol +106 -3
- package/contracts/instance/service/PolicyService.sol +166 -346
- package/contracts/instance/service/PolicyServiceManager.sol +2 -2
- package/contracts/instance/service/PoolService.sol +312 -19
- package/contracts/instance/service/PoolServiceManager.sol +1 -1
- package/contracts/instance/service/ProductService.sol +35 -58
- package/contracts/instance/service/ProductServiceManager.sol +2 -2
- package/contracts/registry/ChainNft.sol +8 -0
- package/contracts/registry/IRegistry.sol +5 -2
- package/contracts/registry/IRegistryService.sol +12 -11
- package/contracts/registry/ITransferInterceptor.sol +1 -0
- package/contracts/registry/Registry.sol +43 -28
- package/contracts/registry/RegistryService.sol +70 -50
- package/contracts/registry/RegistryServiceManager.sol +13 -13
- package/contracts/registry/ReleaseManager.sol +32 -40
- package/contracts/registry/TokenRegistry.sol +16 -12
- package/contracts/shared/ERC165.sol +14 -12
- package/contracts/shared/INftOwnable.sol +11 -10
- package/contracts/shared/IPolicyHolder.sol +40 -0
- package/contracts/shared/IRegisterable.sol +3 -3
- package/contracts/shared/IRegistryLinked.sol +11 -0
- package/contracts/shared/IService.sol +6 -4
- package/contracts/shared/IVersionable.sol +4 -47
- package/contracts/shared/NftOwnable.sol +64 -85
- package/contracts/shared/PolicyHolder.sol +94 -0
- package/contracts/shared/ProxyManager.sol +100 -25
- package/contracts/shared/Registerable.sol +16 -27
- package/contracts/shared/RegistryLinked.sol +43 -0
- package/contracts/shared/Service.sol +32 -20
- 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 +1 -1
- package/contracts/types/Amount.sol +80 -0
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +75 -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/ObjectType.sol +11 -6
- package/contracts/types/PayoutId.sol +82 -0
- package/contracts/types/Referral.sol +4 -0
- package/contracts/types/RoleId.sol +16 -9
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +7 -2
- package/contracts/types/Timestamp.sol +18 -13
- package/contracts/types/UFixed.sol +1 -0
- package/contracts/types/Version.sol +1 -0
- package/package.json +3 -3
- 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/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
- package/artifacts/contracts/experiment/statemachine/ISM.sol/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/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
@@ -45,27 +45,71 @@
|
|
45
45
|
"inputs": [
|
46
46
|
{
|
47
47
|
"internalType": "address",
|
48
|
-
"name": "
|
48
|
+
"name": "instanceBundleManager",
|
49
49
|
"type": "address"
|
50
|
-
}
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "ErrorInstanceBundleManagerAlreadySet",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
51
57
|
{
|
52
|
-
"internalType": "
|
53
|
-
"name": "
|
54
|
-
"type": "
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "instanceAuthority",
|
60
|
+
"type": "address"
|
55
61
|
}
|
56
62
|
],
|
57
|
-
"name": "
|
63
|
+
"name": "ErrorInstanceBundleManagerAuthorityMismatch",
|
58
64
|
"type": "error"
|
59
65
|
},
|
60
66
|
{
|
61
67
|
"inputs": [
|
62
68
|
{
|
63
69
|
"internalType": "address",
|
64
|
-
"name": "
|
70
|
+
"name": "instance",
|
71
|
+
"type": "address"
|
72
|
+
}
|
73
|
+
],
|
74
|
+
"name": "ErrorInstanceBundleManagerInstanceMismatch",
|
75
|
+
"type": "error"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"inputs": [
|
79
|
+
{
|
80
|
+
"internalType": "address",
|
81
|
+
"name": "instanceAccessManager",
|
82
|
+
"type": "address"
|
83
|
+
}
|
84
|
+
],
|
85
|
+
"name": "ErrorInstanceInstanceAccessManagerAlreadySet",
|
86
|
+
"type": "error"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"inputs": [
|
90
|
+
{
|
91
|
+
"internalType": "address",
|
92
|
+
"name": "instanceAuthority",
|
93
|
+
"type": "address"
|
94
|
+
}
|
95
|
+
],
|
96
|
+
"name": "ErrorInstanceInstanceAccessManagerAuthorityMismatch",
|
97
|
+
"type": "error"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"inputs": [],
|
101
|
+
"name": "ErrorInstanceInstanceAccessManagerZero",
|
102
|
+
"type": "error"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"inputs": [
|
106
|
+
{
|
107
|
+
"internalType": "address",
|
108
|
+
"name": "instanceAuthority",
|
65
109
|
"type": "address"
|
66
110
|
}
|
67
111
|
],
|
68
|
-
"name": "
|
112
|
+
"name": "ErrorInstanceInstanceReaderInstanceMismatch",
|
69
113
|
"type": "error"
|
70
114
|
},
|
71
115
|
{
|
@@ -95,68 +139,63 @@
|
|
95
139
|
"internalType": "NftId",
|
96
140
|
"name": "nftId",
|
97
141
|
"type": "uint96"
|
98
|
-
},
|
99
|
-
{
|
100
|
-
"internalType": "ObjectType",
|
101
|
-
"name": "objectType",
|
102
|
-
"type": "uint8"
|
103
142
|
}
|
104
143
|
],
|
105
|
-
"name": "
|
144
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
106
145
|
"type": "error"
|
107
146
|
},
|
108
147
|
{
|
109
148
|
"inputs": [
|
110
149
|
{
|
111
150
|
"internalType": "address",
|
112
|
-
"name": "
|
151
|
+
"name": "contractAddress",
|
113
152
|
"type": "address"
|
114
153
|
}
|
115
154
|
],
|
116
|
-
"name": "
|
155
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
156
|
+
"type": "error"
|
157
|
+
},
|
158
|
+
{
|
159
|
+
"inputs": [],
|
160
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
117
161
|
"type": "error"
|
118
162
|
},
|
119
163
|
{
|
120
164
|
"inputs": [
|
121
165
|
{
|
122
166
|
"internalType": "address",
|
123
|
-
"name": "
|
167
|
+
"name": "account",
|
124
168
|
"type": "address"
|
125
169
|
}
|
126
170
|
],
|
127
|
-
"name": "
|
171
|
+
"name": "ErrorNftOwnableNotOwner",
|
128
172
|
"type": "error"
|
129
173
|
},
|
130
174
|
{
|
131
175
|
"inputs": [
|
132
176
|
{
|
133
|
-
"internalType": "
|
134
|
-
"name": "
|
135
|
-
"type": "
|
177
|
+
"internalType": "NftId",
|
178
|
+
"name": "nftId",
|
179
|
+
"type": "uint96"
|
180
|
+
},
|
181
|
+
{
|
182
|
+
"internalType": "ObjectType",
|
183
|
+
"name": "objectType",
|
184
|
+
"type": "uint8"
|
136
185
|
}
|
137
186
|
],
|
138
|
-
"name": "
|
139
|
-
"type": "error"
|
140
|
-
},
|
141
|
-
{
|
142
|
-
"inputs": [],
|
143
|
-
"name": "ErrorRegistryAddressZero",
|
187
|
+
"name": "ErrorNoLifecycle",
|
144
188
|
"type": "error"
|
145
189
|
},
|
146
190
|
{
|
147
191
|
"inputs": [
|
148
192
|
{
|
149
193
|
"internalType": "address",
|
150
|
-
"name": "
|
194
|
+
"name": "registryAddress",
|
151
195
|
"type": "address"
|
152
196
|
}
|
153
197
|
],
|
154
|
-
"name": "
|
155
|
-
"type": "error"
|
156
|
-
},
|
157
|
-
{
|
158
|
-
"inputs": [],
|
159
|
-
"name": "ErrorRegistryNotInitialized",
|
198
|
+
"name": "ErrorNotRegistry",
|
160
199
|
"type": "error"
|
161
200
|
},
|
162
201
|
{
|
@@ -376,6 +415,19 @@
|
|
376
415
|
"stateMutability": "view",
|
377
416
|
"type": "function"
|
378
417
|
},
|
418
|
+
{
|
419
|
+
"inputs": [],
|
420
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
421
|
+
"outputs": [
|
422
|
+
{
|
423
|
+
"internalType": "bytes32",
|
424
|
+
"name": "",
|
425
|
+
"type": "bytes32"
|
426
|
+
}
|
427
|
+
],
|
428
|
+
"stateMutability": "view",
|
429
|
+
"type": "function"
|
430
|
+
},
|
379
431
|
{
|
380
432
|
"inputs": [],
|
381
433
|
"name": "PUBLIC_ROLE",
|
@@ -438,6 +490,111 @@
|
|
438
490
|
"stateMutability": "view",
|
439
491
|
"type": "function"
|
440
492
|
},
|
493
|
+
{
|
494
|
+
"inputs": [
|
495
|
+
{
|
496
|
+
"internalType": "NftId",
|
497
|
+
"name": "applicationNftId",
|
498
|
+
"type": "uint96"
|
499
|
+
},
|
500
|
+
{
|
501
|
+
"components": [
|
502
|
+
{
|
503
|
+
"internalType": "NftId",
|
504
|
+
"name": "productNftId",
|
505
|
+
"type": "uint96"
|
506
|
+
},
|
507
|
+
{
|
508
|
+
"internalType": "NftId",
|
509
|
+
"name": "bundleNftId",
|
510
|
+
"type": "uint96"
|
511
|
+
},
|
512
|
+
{
|
513
|
+
"internalType": "ReferralId",
|
514
|
+
"name": "referralId",
|
515
|
+
"type": "bytes8"
|
516
|
+
},
|
517
|
+
{
|
518
|
+
"internalType": "RiskId",
|
519
|
+
"name": "riskId",
|
520
|
+
"type": "bytes8"
|
521
|
+
},
|
522
|
+
{
|
523
|
+
"internalType": "uint256",
|
524
|
+
"name": "sumInsuredAmount",
|
525
|
+
"type": "uint256"
|
526
|
+
},
|
527
|
+
{
|
528
|
+
"internalType": "uint256",
|
529
|
+
"name": "premiumAmount",
|
530
|
+
"type": "uint256"
|
531
|
+
},
|
532
|
+
{
|
533
|
+
"internalType": "uint256",
|
534
|
+
"name": "premiumPaidAmount",
|
535
|
+
"type": "uint256"
|
536
|
+
},
|
537
|
+
{
|
538
|
+
"internalType": "Seconds",
|
539
|
+
"name": "lifetime",
|
540
|
+
"type": "uint40"
|
541
|
+
},
|
542
|
+
{
|
543
|
+
"internalType": "bytes",
|
544
|
+
"name": "applicationData",
|
545
|
+
"type": "bytes"
|
546
|
+
},
|
547
|
+
{
|
548
|
+
"internalType": "bytes",
|
549
|
+
"name": "policyData",
|
550
|
+
"type": "bytes"
|
551
|
+
},
|
552
|
+
{
|
553
|
+
"internalType": "uint16",
|
554
|
+
"name": "claimsCount",
|
555
|
+
"type": "uint16"
|
556
|
+
},
|
557
|
+
{
|
558
|
+
"internalType": "uint16",
|
559
|
+
"name": "openClaimsCount",
|
560
|
+
"type": "uint16"
|
561
|
+
},
|
562
|
+
{
|
563
|
+
"internalType": "Amount",
|
564
|
+
"name": "claimAmount",
|
565
|
+
"type": "uint96"
|
566
|
+
},
|
567
|
+
{
|
568
|
+
"internalType": "Amount",
|
569
|
+
"name": "payoutAmount",
|
570
|
+
"type": "uint96"
|
571
|
+
},
|
572
|
+
{
|
573
|
+
"internalType": "Timestamp",
|
574
|
+
"name": "activatedAt",
|
575
|
+
"type": "uint40"
|
576
|
+
},
|
577
|
+
{
|
578
|
+
"internalType": "Timestamp",
|
579
|
+
"name": "expiredAt",
|
580
|
+
"type": "uint40"
|
581
|
+
},
|
582
|
+
{
|
583
|
+
"internalType": "Timestamp",
|
584
|
+
"name": "closedAt",
|
585
|
+
"type": "uint40"
|
586
|
+
}
|
587
|
+
],
|
588
|
+
"internalType": "struct IPolicy.PolicyInfo",
|
589
|
+
"name": "policy",
|
590
|
+
"type": "tuple"
|
591
|
+
}
|
592
|
+
],
|
593
|
+
"name": "createApplication",
|
594
|
+
"outputs": [],
|
595
|
+
"stateMutability": "nonpayable",
|
596
|
+
"type": "function"
|
597
|
+
},
|
441
598
|
{
|
442
599
|
"inputs": [
|
443
600
|
{
|
@@ -475,24 +632,24 @@
|
|
475
632
|
"type": "bytes"
|
476
633
|
},
|
477
634
|
{
|
478
|
-
"internalType": "
|
635
|
+
"internalType": "Amount",
|
479
636
|
"name": "capitalAmount",
|
480
|
-
"type": "
|
637
|
+
"type": "uint96"
|
481
638
|
},
|
482
639
|
{
|
483
|
-
"internalType": "
|
640
|
+
"internalType": "Amount",
|
484
641
|
"name": "lockedAmount",
|
485
|
-
"type": "
|
642
|
+
"type": "uint96"
|
486
643
|
},
|
487
644
|
{
|
488
|
-
"internalType": "
|
489
|
-
"name": "
|
490
|
-
"type": "
|
645
|
+
"internalType": "Amount",
|
646
|
+
"name": "feeAmount",
|
647
|
+
"type": "uint96"
|
491
648
|
},
|
492
649
|
{
|
493
|
-
"internalType": "
|
650
|
+
"internalType": "Seconds",
|
494
651
|
"name": "lifetime",
|
495
|
-
"type": "
|
652
|
+
"type": "uint40"
|
496
653
|
},
|
497
654
|
{
|
498
655
|
"internalType": "Timestamp",
|
@@ -523,21 +680,31 @@
|
|
523
680
|
"type": "uint96"
|
524
681
|
},
|
525
682
|
{
|
526
|
-
"internalType": "
|
683
|
+
"internalType": "ClaimId",
|
527
684
|
"name": "claimId",
|
528
|
-
"type": "
|
685
|
+
"type": "uint16"
|
529
686
|
},
|
530
687
|
{
|
531
688
|
"components": [
|
532
689
|
{
|
533
|
-
"internalType": "
|
690
|
+
"internalType": "Amount",
|
534
691
|
"name": "claimAmount",
|
535
|
-
"type": "
|
692
|
+
"type": "uint96"
|
536
693
|
},
|
537
694
|
{
|
538
|
-
"internalType": "
|
695
|
+
"internalType": "Amount",
|
539
696
|
"name": "paidAmount",
|
540
|
-
"type": "
|
697
|
+
"type": "uint96"
|
698
|
+
},
|
699
|
+
{
|
700
|
+
"internalType": "uint8",
|
701
|
+
"name": "payoutsCount",
|
702
|
+
"type": "uint8"
|
703
|
+
},
|
704
|
+
{
|
705
|
+
"internalType": "uint8",
|
706
|
+
"name": "openPayoutsCount",
|
707
|
+
"type": "uint8"
|
541
708
|
},
|
542
709
|
{
|
543
710
|
"internalType": "bytes",
|
@@ -593,18 +760,35 @@
|
|
593
760
|
}
|
594
761
|
],
|
595
762
|
"internalType": "struct Fee",
|
596
|
-
"name": "
|
763
|
+
"name": "minDistributionOwnerFee",
|
597
764
|
"type": "tuple"
|
598
765
|
},
|
599
766
|
{
|
600
|
-
"
|
601
|
-
|
602
|
-
|
767
|
+
"components": [
|
768
|
+
{
|
769
|
+
"internalType": "UFixed",
|
770
|
+
"name": "fractionalFee",
|
771
|
+
"type": "uint256"
|
772
|
+
},
|
773
|
+
{
|
774
|
+
"internalType": "uint256",
|
775
|
+
"name": "fixedFee",
|
776
|
+
"type": "uint256"
|
777
|
+
}
|
778
|
+
],
|
779
|
+
"internalType": "struct Fee",
|
780
|
+
"name": "distributionFee",
|
781
|
+
"type": "tuple"
|
603
782
|
},
|
604
783
|
{
|
605
784
|
"internalType": "address",
|
606
785
|
"name": "wallet",
|
607
786
|
"type": "address"
|
787
|
+
},
|
788
|
+
{
|
789
|
+
"internalType": "uint256",
|
790
|
+
"name": "sumDistributionOwnerFees",
|
791
|
+
"type": "uint256"
|
608
792
|
}
|
609
793
|
],
|
610
794
|
"internalType": "struct ISetup.DistributionSetupInfo",
|
@@ -621,25 +805,20 @@
|
|
621
805
|
"inputs": [
|
622
806
|
{
|
623
807
|
"internalType": "NftId",
|
624
|
-
"name": "
|
808
|
+
"name": "distributorNftId",
|
625
809
|
"type": "uint96"
|
626
810
|
},
|
627
|
-
{
|
628
|
-
"internalType": "NumberId",
|
629
|
-
"name": "payoutId",
|
630
|
-
"type": "uint32"
|
631
|
-
},
|
632
811
|
{
|
633
812
|
"components": [
|
634
813
|
{
|
635
|
-
"internalType": "
|
636
|
-
"name": "
|
637
|
-
"type": "
|
814
|
+
"internalType": "DistributorType",
|
815
|
+
"name": "distributorType",
|
816
|
+
"type": "bytes8"
|
638
817
|
},
|
639
818
|
{
|
640
|
-
"internalType": "
|
641
|
-
"name": "
|
642
|
-
"type": "
|
819
|
+
"internalType": "bool",
|
820
|
+
"name": "active",
|
821
|
+
"type": "bool"
|
643
822
|
},
|
644
823
|
{
|
645
824
|
"internalType": "bytes",
|
@@ -647,13 +826,18 @@
|
|
647
826
|
"type": "bytes"
|
648
827
|
},
|
649
828
|
{
|
650
|
-
"internalType": "
|
651
|
-
"name": "
|
652
|
-
"type": "
|
829
|
+
"internalType": "uint256",
|
830
|
+
"name": "sumCommisions",
|
831
|
+
"type": "uint256"
|
832
|
+
},
|
833
|
+
{
|
834
|
+
"internalType": "uint256",
|
835
|
+
"name": "numPoliciesSold",
|
836
|
+
"type": "uint256"
|
653
837
|
}
|
654
838
|
],
|
655
|
-
"internalType": "struct
|
656
|
-
"name": "
|
839
|
+
"internalType": "struct IDistribution.DistributorInfo",
|
840
|
+
"name": "info",
|
657
841
|
"type": "tuple"
|
658
842
|
}
|
659
843
|
],
|
@@ -665,40 +849,60 @@
|
|
665
849
|
{
|
666
850
|
"inputs": [
|
667
851
|
{
|
668
|
-
"internalType": "
|
669
|
-
"name": "
|
670
|
-
"type": "
|
671
|
-
},
|
672
|
-
{
|
673
|
-
"internalType": "NumberId",
|
674
|
-
"name": "payoutId",
|
675
|
-
"type": "uint32"
|
852
|
+
"internalType": "DistributorType",
|
853
|
+
"name": "distributorType",
|
854
|
+
"type": "bytes8"
|
676
855
|
},
|
677
856
|
{
|
678
857
|
"components": [
|
679
858
|
{
|
680
|
-
"internalType": "
|
681
|
-
"name": "
|
682
|
-
"type": "
|
859
|
+
"internalType": "string",
|
860
|
+
"name": "name",
|
861
|
+
"type": "string"
|
683
862
|
},
|
684
863
|
{
|
685
|
-
"internalType": "
|
686
|
-
"name": "
|
864
|
+
"internalType": "UFixed",
|
865
|
+
"name": "minDiscountPercentage",
|
866
|
+
"type": "uint256"
|
867
|
+
},
|
868
|
+
{
|
869
|
+
"internalType": "UFixed",
|
870
|
+
"name": "maxDiscountPercentage",
|
871
|
+
"type": "uint256"
|
872
|
+
},
|
873
|
+
{
|
874
|
+
"internalType": "UFixed",
|
875
|
+
"name": "commissionPercentage",
|
687
876
|
"type": "uint256"
|
688
877
|
},
|
878
|
+
{
|
879
|
+
"internalType": "uint32",
|
880
|
+
"name": "maxReferralCount",
|
881
|
+
"type": "uint32"
|
882
|
+
},
|
883
|
+
{
|
884
|
+
"internalType": "uint32",
|
885
|
+
"name": "maxReferralLifetime",
|
886
|
+
"type": "uint32"
|
887
|
+
},
|
888
|
+
{
|
889
|
+
"internalType": "bool",
|
890
|
+
"name": "allowSelfReferrals",
|
891
|
+
"type": "bool"
|
892
|
+
},
|
893
|
+
{
|
894
|
+
"internalType": "bool",
|
895
|
+
"name": "allowRenewals",
|
896
|
+
"type": "bool"
|
897
|
+
},
|
689
898
|
{
|
690
899
|
"internalType": "bytes",
|
691
900
|
"name": "data",
|
692
901
|
"type": "bytes"
|
693
|
-
},
|
694
|
-
{
|
695
|
-
"internalType": "Timestamp",
|
696
|
-
"name": "paidAt",
|
697
|
-
"type": "uint40"
|
698
902
|
}
|
699
903
|
],
|
700
|
-
"internalType": "struct
|
701
|
-
"name": "
|
904
|
+
"internalType": "struct IDistribution.DistributorTypeInfo",
|
905
|
+
"name": "info",
|
702
906
|
"type": "tuple"
|
703
907
|
}
|
704
908
|
],
|
@@ -715,21 +919,21 @@
|
|
715
919
|
"type": "uint96"
|
716
920
|
},
|
717
921
|
{
|
718
|
-
"internalType": "
|
922
|
+
"internalType": "PayoutId",
|
719
923
|
"name": "payoutId",
|
720
|
-
"type": "
|
924
|
+
"type": "uint24"
|
721
925
|
},
|
722
926
|
{
|
723
927
|
"components": [
|
724
928
|
{
|
725
|
-
"internalType": "
|
929
|
+
"internalType": "ClaimId",
|
726
930
|
"name": "claimId",
|
727
|
-
"type": "
|
931
|
+
"type": "uint16"
|
728
932
|
},
|
729
933
|
{
|
730
|
-
"internalType": "
|
934
|
+
"internalType": "Amount",
|
731
935
|
"name": "amount",
|
732
|
-
"type": "
|
936
|
+
"type": "uint96"
|
733
937
|
},
|
734
938
|
{
|
735
939
|
"internalType": "bytes",
|
@@ -756,115 +960,20 @@
|
|
756
960
|
"inputs": [
|
757
961
|
{
|
758
962
|
"internalType": "NftId",
|
759
|
-
"name": "
|
963
|
+
"name": "poolNftId",
|
760
964
|
"type": "uint96"
|
761
965
|
},
|
762
966
|
{
|
763
967
|
"components": [
|
764
968
|
{
|
765
|
-
"internalType": "
|
766
|
-
"name": "
|
767
|
-
"type": "
|
768
|
-
},
|
769
|
-
{
|
770
|
-
"internalType": "NftId",
|
771
|
-
"name": "bundleNftId",
|
772
|
-
"type": "uint96"
|
773
|
-
},
|
774
|
-
{
|
775
|
-
"internalType": "ReferralId",
|
776
|
-
"name": "referralId",
|
777
|
-
"type": "bytes8"
|
778
|
-
},
|
779
|
-
{
|
780
|
-
"internalType": "RiskId",
|
781
|
-
"name": "riskId",
|
782
|
-
"type": "bytes8"
|
783
|
-
},
|
784
|
-
{
|
785
|
-
"internalType": "uint256",
|
786
|
-
"name": "sumInsuredAmount",
|
787
|
-
"type": "uint256"
|
788
|
-
},
|
789
|
-
{
|
790
|
-
"internalType": "uint256",
|
791
|
-
"name": "premiumAmount",
|
792
|
-
"type": "uint256"
|
793
|
-
},
|
794
|
-
{
|
795
|
-
"internalType": "uint256",
|
796
|
-
"name": "premiumPaidAmount",
|
797
|
-
"type": "uint256"
|
798
|
-
},
|
799
|
-
{
|
800
|
-
"internalType": "uint256",
|
801
|
-
"name": "lifetime",
|
802
|
-
"type": "uint256"
|
803
|
-
},
|
804
|
-
{
|
805
|
-
"internalType": "bytes",
|
806
|
-
"name": "applicationData",
|
807
|
-
"type": "bytes"
|
808
|
-
},
|
809
|
-
{
|
810
|
-
"internalType": "bytes",
|
811
|
-
"name": "policyData",
|
812
|
-
"type": "bytes"
|
813
|
-
},
|
814
|
-
{
|
815
|
-
"internalType": "uint16",
|
816
|
-
"name": "claimsCount",
|
817
|
-
"type": "uint16"
|
818
|
-
},
|
819
|
-
{
|
820
|
-
"internalType": "uint16",
|
821
|
-
"name": "openClaimsCount",
|
822
|
-
"type": "uint16"
|
823
|
-
},
|
824
|
-
{
|
825
|
-
"internalType": "uint256",
|
826
|
-
"name": "payoutAmount",
|
827
|
-
"type": "uint256"
|
828
|
-
},
|
829
|
-
{
|
830
|
-
"internalType": "Timestamp",
|
831
|
-
"name": "activatedAt",
|
832
|
-
"type": "uint40"
|
833
|
-
},
|
834
|
-
{
|
835
|
-
"internalType": "Timestamp",
|
836
|
-
"name": "expiredAt",
|
837
|
-
"type": "uint40"
|
969
|
+
"internalType": "string",
|
970
|
+
"name": "name",
|
971
|
+
"type": "string"
|
838
972
|
},
|
839
973
|
{
|
840
|
-
"internalType": "
|
841
|
-
"name": "
|
842
|
-
"type": "
|
843
|
-
}
|
844
|
-
],
|
845
|
-
"internalType": "struct IPolicy.PolicyInfo",
|
846
|
-
"name": "policy",
|
847
|
-
"type": "tuple"
|
848
|
-
}
|
849
|
-
],
|
850
|
-
"name": "createPolicy",
|
851
|
-
"outputs": [],
|
852
|
-
"stateMutability": "nonpayable",
|
853
|
-
"type": "function"
|
854
|
-
},
|
855
|
-
{
|
856
|
-
"inputs": [
|
857
|
-
{
|
858
|
-
"internalType": "NftId",
|
859
|
-
"name": "poolNftId",
|
860
|
-
"type": "uint96"
|
861
|
-
},
|
862
|
-
{
|
863
|
-
"components": [
|
864
|
-
{
|
865
|
-
"internalType": "NftId",
|
866
|
-
"name": "productNftId",
|
867
|
-
"type": "uint96"
|
974
|
+
"internalType": "contract IERC20Metadata",
|
975
|
+
"name": "token",
|
976
|
+
"type": "address"
|
868
977
|
},
|
869
978
|
{
|
870
979
|
"internalType": "contract TokenHandler",
|
@@ -872,79 +981,28 @@
|
|
872
981
|
"type": "address"
|
873
982
|
},
|
874
983
|
{
|
875
|
-
"internalType": "
|
876
|
-
"name": "
|
877
|
-
"type": "
|
878
|
-
},
|
879
|
-
{
|
880
|
-
"components": [
|
881
|
-
{
|
882
|
-
"internalType": "UFixed",
|
883
|
-
"name": "fractionalFee",
|
884
|
-
"type": "uint256"
|
885
|
-
},
|
886
|
-
{
|
887
|
-
"internalType": "uint256",
|
888
|
-
"name": "fixedFee",
|
889
|
-
"type": "uint256"
|
890
|
-
}
|
891
|
-
],
|
892
|
-
"internalType": "struct Fee",
|
893
|
-
"name": "poolFee",
|
894
|
-
"type": "tuple"
|
895
|
-
},
|
896
|
-
{
|
897
|
-
"components": [
|
898
|
-
{
|
899
|
-
"internalType": "UFixed",
|
900
|
-
"name": "fractionalFee",
|
901
|
-
"type": "uint256"
|
902
|
-
},
|
903
|
-
{
|
904
|
-
"internalType": "uint256",
|
905
|
-
"name": "fixedFee",
|
906
|
-
"type": "uint256"
|
907
|
-
}
|
908
|
-
],
|
909
|
-
"internalType": "struct Fee",
|
910
|
-
"name": "stakingFee",
|
911
|
-
"type": "tuple"
|
912
|
-
},
|
913
|
-
{
|
914
|
-
"components": [
|
915
|
-
{
|
916
|
-
"internalType": "UFixed",
|
917
|
-
"name": "fractionalFee",
|
918
|
-
"type": "uint256"
|
919
|
-
},
|
920
|
-
{
|
921
|
-
"internalType": "uint256",
|
922
|
-
"name": "fixedFee",
|
923
|
-
"type": "uint256"
|
924
|
-
}
|
925
|
-
],
|
926
|
-
"internalType": "struct Fee",
|
927
|
-
"name": "performanceFee",
|
928
|
-
"type": "tuple"
|
984
|
+
"internalType": "address",
|
985
|
+
"name": "wallet",
|
986
|
+
"type": "address"
|
929
987
|
},
|
930
988
|
{
|
931
|
-
"internalType": "
|
932
|
-
"name": "
|
933
|
-
"type": "
|
989
|
+
"internalType": "Amount",
|
990
|
+
"name": "balanceAmount",
|
991
|
+
"type": "uint96"
|
934
992
|
},
|
935
993
|
{
|
936
|
-
"internalType": "
|
937
|
-
"name": "
|
938
|
-
"type": "
|
994
|
+
"internalType": "Amount",
|
995
|
+
"name": "feeAmount",
|
996
|
+
"type": "uint96"
|
939
997
|
},
|
940
998
|
{
|
941
|
-
"internalType": "
|
942
|
-
"name": "
|
943
|
-
"type": "
|
999
|
+
"internalType": "bytes",
|
1000
|
+
"name": "data",
|
1001
|
+
"type": "bytes"
|
944
1002
|
}
|
945
1003
|
],
|
946
|
-
"internalType": "struct
|
947
|
-
"name": "
|
1004
|
+
"internalType": "struct IComponents.ComponentInfo",
|
1005
|
+
"name": "info",
|
948
1006
|
"type": "tuple"
|
949
1007
|
}
|
950
1008
|
],
|
@@ -982,23 +1040,6 @@
|
|
982
1040
|
"name": "poolNftId",
|
983
1041
|
"type": "uint96"
|
984
1042
|
},
|
985
|
-
{
|
986
|
-
"components": [
|
987
|
-
{
|
988
|
-
"internalType": "UFixed",
|
989
|
-
"name": "fractionalFee",
|
990
|
-
"type": "uint256"
|
991
|
-
},
|
992
|
-
{
|
993
|
-
"internalType": "uint256",
|
994
|
-
"name": "fixedFee",
|
995
|
-
"type": "uint256"
|
996
|
-
}
|
997
|
-
],
|
998
|
-
"internalType": "struct Fee",
|
999
|
-
"name": "distributionFee",
|
1000
|
-
"type": "tuple"
|
1001
|
-
},
|
1002
1043
|
{
|
1003
1044
|
"components": [
|
1004
1045
|
{
|
@@ -1033,57 +1074,6 @@
|
|
1033
1074
|
"name": "processingFee",
|
1034
1075
|
"type": "tuple"
|
1035
1076
|
},
|
1036
|
-
{
|
1037
|
-
"components": [
|
1038
|
-
{
|
1039
|
-
"internalType": "UFixed",
|
1040
|
-
"name": "fractionalFee",
|
1041
|
-
"type": "uint256"
|
1042
|
-
},
|
1043
|
-
{
|
1044
|
-
"internalType": "uint256",
|
1045
|
-
"name": "fixedFee",
|
1046
|
-
"type": "uint256"
|
1047
|
-
}
|
1048
|
-
],
|
1049
|
-
"internalType": "struct Fee",
|
1050
|
-
"name": "poolFee",
|
1051
|
-
"type": "tuple"
|
1052
|
-
},
|
1053
|
-
{
|
1054
|
-
"components": [
|
1055
|
-
{
|
1056
|
-
"internalType": "UFixed",
|
1057
|
-
"name": "fractionalFee",
|
1058
|
-
"type": "uint256"
|
1059
|
-
},
|
1060
|
-
{
|
1061
|
-
"internalType": "uint256",
|
1062
|
-
"name": "fixedFee",
|
1063
|
-
"type": "uint256"
|
1064
|
-
}
|
1065
|
-
],
|
1066
|
-
"internalType": "struct Fee",
|
1067
|
-
"name": "stakingFee",
|
1068
|
-
"type": "tuple"
|
1069
|
-
},
|
1070
|
-
{
|
1071
|
-
"components": [
|
1072
|
-
{
|
1073
|
-
"internalType": "UFixed",
|
1074
|
-
"name": "fractionalFee",
|
1075
|
-
"type": "uint256"
|
1076
|
-
},
|
1077
|
-
{
|
1078
|
-
"internalType": "uint256",
|
1079
|
-
"name": "fixedFee",
|
1080
|
-
"type": "uint256"
|
1081
|
-
}
|
1082
|
-
],
|
1083
|
-
"internalType": "struct Fee",
|
1084
|
-
"name": "performanceFee",
|
1085
|
-
"type": "tuple"
|
1086
|
-
},
|
1087
1077
|
{
|
1088
1078
|
"internalType": "bool",
|
1089
1079
|
"name": "isIntercepting",
|
@@ -1108,40 +1098,50 @@
|
|
1108
1098
|
{
|
1109
1099
|
"inputs": [
|
1110
1100
|
{
|
1111
|
-
"internalType": "
|
1112
|
-
"name": "
|
1113
|
-
"type": "
|
1114
|
-
},
|
1115
|
-
{
|
1116
|
-
"internalType": "NumberId",
|
1117
|
-
"name": "payoutId",
|
1118
|
-
"type": "uint32"
|
1101
|
+
"internalType": "ReferralId",
|
1102
|
+
"name": "referralId",
|
1103
|
+
"type": "bytes8"
|
1119
1104
|
},
|
1120
1105
|
{
|
1121
1106
|
"components": [
|
1122
1107
|
{
|
1123
|
-
"internalType": "
|
1124
|
-
"name": "
|
1125
|
-
"type": "
|
1108
|
+
"internalType": "NftId",
|
1109
|
+
"name": "distributorNftId",
|
1110
|
+
"type": "uint96"
|
1126
1111
|
},
|
1127
1112
|
{
|
1128
|
-
"internalType": "
|
1129
|
-
"name": "
|
1113
|
+
"internalType": "string",
|
1114
|
+
"name": "referralCode",
|
1115
|
+
"type": "string"
|
1116
|
+
},
|
1117
|
+
{
|
1118
|
+
"internalType": "UFixed",
|
1119
|
+
"name": "discountPercentage",
|
1130
1120
|
"type": "uint256"
|
1131
1121
|
},
|
1132
1122
|
{
|
1133
|
-
"internalType": "
|
1134
|
-
"name": "
|
1135
|
-
"type": "
|
1123
|
+
"internalType": "uint32",
|
1124
|
+
"name": "maxReferrals",
|
1125
|
+
"type": "uint32"
|
1126
|
+
},
|
1127
|
+
{
|
1128
|
+
"internalType": "uint32",
|
1129
|
+
"name": "usedReferrals",
|
1130
|
+
"type": "uint32"
|
1136
1131
|
},
|
1137
1132
|
{
|
1138
1133
|
"internalType": "Timestamp",
|
1139
|
-
"name": "
|
1134
|
+
"name": "expiryAt",
|
1140
1135
|
"type": "uint40"
|
1136
|
+
},
|
1137
|
+
{
|
1138
|
+
"internalType": "bytes",
|
1139
|
+
"name": "data",
|
1140
|
+
"type": "bytes"
|
1141
1141
|
}
|
1142
1142
|
],
|
1143
|
-
"internalType": "struct
|
1144
|
-
"name": "
|
1143
|
+
"internalType": "struct IDistribution.ReferralInfo",
|
1144
|
+
"name": "referralInfo",
|
1145
1145
|
"type": "tuple"
|
1146
1146
|
}
|
1147
1147
|
],
|
@@ -1270,19 +1270,6 @@
|
|
1270
1270
|
"stateMutability": "view",
|
1271
1271
|
"type": "function"
|
1272
1272
|
},
|
1273
|
-
{
|
1274
|
-
"inputs": [],
|
1275
|
-
"name": "getBundleService",
|
1276
|
-
"outputs": [
|
1277
|
-
{
|
1278
|
-
"internalType": "contract IBundleService",
|
1279
|
-
"name": "",
|
1280
|
-
"type": "address"
|
1281
|
-
}
|
1282
|
-
],
|
1283
|
-
"stateMutability": "view",
|
1284
|
-
"type": "function"
|
1285
|
-
},
|
1286
1273
|
{
|
1287
1274
|
"inputs": [
|
1288
1275
|
{
|
@@ -1302,19 +1289,6 @@
|
|
1302
1289
|
"stateMutability": "view",
|
1303
1290
|
"type": "function"
|
1304
1291
|
},
|
1305
|
-
{
|
1306
|
-
"inputs": [],
|
1307
|
-
"name": "getDistributionService",
|
1308
|
-
"outputs": [
|
1309
|
-
{
|
1310
|
-
"internalType": "contract IDistributionService",
|
1311
|
-
"name": "",
|
1312
|
-
"type": "address"
|
1313
|
-
}
|
1314
|
-
],
|
1315
|
-
"stateMutability": "view",
|
1316
|
-
"type": "function"
|
1317
|
-
},
|
1318
1292
|
{
|
1319
1293
|
"inputs": [],
|
1320
1294
|
"name": "getInitialInfo",
|
@@ -1365,19 +1339,6 @@
|
|
1365
1339
|
"stateMutability": "view",
|
1366
1340
|
"type": "function"
|
1367
1341
|
},
|
1368
|
-
{
|
1369
|
-
"inputs": [],
|
1370
|
-
"name": "getInitialOwner",
|
1371
|
-
"outputs": [
|
1372
|
-
{
|
1373
|
-
"internalType": "address",
|
1374
|
-
"name": "",
|
1375
|
-
"type": "address"
|
1376
|
-
}
|
1377
|
-
],
|
1378
|
-
"stateMutability": "view",
|
1379
|
-
"type": "function"
|
1380
|
-
},
|
1381
1342
|
{
|
1382
1343
|
"inputs": [
|
1383
1344
|
{
|
@@ -1397,6 +1358,19 @@
|
|
1397
1358
|
"stateMutability": "view",
|
1398
1359
|
"type": "function"
|
1399
1360
|
},
|
1361
|
+
{
|
1362
|
+
"inputs": [],
|
1363
|
+
"name": "getInstanceAccessManager",
|
1364
|
+
"outputs": [
|
1365
|
+
{
|
1366
|
+
"internalType": "contract InstanceAccessManager",
|
1367
|
+
"name": "",
|
1368
|
+
"type": "address"
|
1369
|
+
}
|
1370
|
+
],
|
1371
|
+
"stateMutability": "view",
|
1372
|
+
"type": "function"
|
1373
|
+
},
|
1400
1374
|
{
|
1401
1375
|
"inputs": [],
|
1402
1376
|
"name": "getInstanceReader",
|
@@ -1495,45 +1469,6 @@
|
|
1495
1469
|
"stateMutability": "view",
|
1496
1470
|
"type": "function"
|
1497
1471
|
},
|
1498
|
-
{
|
1499
|
-
"inputs": [],
|
1500
|
-
"name": "getPolicyService",
|
1501
|
-
"outputs": [
|
1502
|
-
{
|
1503
|
-
"internalType": "contract IPolicyService",
|
1504
|
-
"name": "",
|
1505
|
-
"type": "address"
|
1506
|
-
}
|
1507
|
-
],
|
1508
|
-
"stateMutability": "view",
|
1509
|
-
"type": "function"
|
1510
|
-
},
|
1511
|
-
{
|
1512
|
-
"inputs": [],
|
1513
|
-
"name": "getPoolService",
|
1514
|
-
"outputs": [
|
1515
|
-
{
|
1516
|
-
"internalType": "contract IPoolService",
|
1517
|
-
"name": "",
|
1518
|
-
"type": "address"
|
1519
|
-
}
|
1520
|
-
],
|
1521
|
-
"stateMutability": "view",
|
1522
|
-
"type": "function"
|
1523
|
-
},
|
1524
|
-
{
|
1525
|
-
"inputs": [],
|
1526
|
-
"name": "getProductService",
|
1527
|
-
"outputs": [
|
1528
|
-
{
|
1529
|
-
"internalType": "contract IProductService",
|
1530
|
-
"name": "",
|
1531
|
-
"type": "address"
|
1532
|
-
}
|
1533
|
-
],
|
1534
|
-
"stateMutability": "view",
|
1535
|
-
"type": "function"
|
1536
|
-
},
|
1537
1472
|
{
|
1538
1473
|
"inputs": [],
|
1539
1474
|
"name": "getRegistry",
|
@@ -1589,9 +1524,59 @@
|
|
1589
1524
|
"inputs": [
|
1590
1525
|
{
|
1591
1526
|
"internalType": "address",
|
1592
|
-
"name": "
|
1527
|
+
"name": "authority",
|
1593
1528
|
"type": "address"
|
1594
1529
|
},
|
1530
|
+
{
|
1531
|
+
"internalType": "address",
|
1532
|
+
"name": "registryAddress",
|
1533
|
+
"type": "address"
|
1534
|
+
},
|
1535
|
+
{
|
1536
|
+
"internalType": "address",
|
1537
|
+
"name": "initialOwner",
|
1538
|
+
"type": "address"
|
1539
|
+
}
|
1540
|
+
],
|
1541
|
+
"name": "initialize",
|
1542
|
+
"outputs": [],
|
1543
|
+
"stateMutability": "nonpayable",
|
1544
|
+
"type": "function"
|
1545
|
+
},
|
1546
|
+
{
|
1547
|
+
"inputs": [],
|
1548
|
+
"name": "initializeERC165",
|
1549
|
+
"outputs": [],
|
1550
|
+
"stateMutability": "nonpayable",
|
1551
|
+
"type": "function"
|
1552
|
+
},
|
1553
|
+
{
|
1554
|
+
"inputs": [],
|
1555
|
+
"name": "initializeLifecycle",
|
1556
|
+
"outputs": [],
|
1557
|
+
"stateMutability": "nonpayable",
|
1558
|
+
"type": "function"
|
1559
|
+
},
|
1560
|
+
{
|
1561
|
+
"inputs": [
|
1562
|
+
{
|
1563
|
+
"internalType": "address",
|
1564
|
+
"name": "initialOwner",
|
1565
|
+
"type": "address"
|
1566
|
+
},
|
1567
|
+
{
|
1568
|
+
"internalType": "address",
|
1569
|
+
"name": "registryAddress",
|
1570
|
+
"type": "address"
|
1571
|
+
}
|
1572
|
+
],
|
1573
|
+
"name": "initializeNftOwnable",
|
1574
|
+
"outputs": [],
|
1575
|
+
"stateMutability": "nonpayable",
|
1576
|
+
"type": "function"
|
1577
|
+
},
|
1578
|
+
{
|
1579
|
+
"inputs": [
|
1595
1580
|
{
|
1596
1581
|
"internalType": "address",
|
1597
1582
|
"name": "registryAddress",
|
@@ -1599,16 +1584,44 @@
|
|
1599
1584
|
},
|
1600
1585
|
{
|
1601
1586
|
"internalType": "NftId",
|
1602
|
-
"name": "
|
1587
|
+
"name": "parentNftId",
|
1603
1588
|
"type": "uint96"
|
1604
1589
|
},
|
1590
|
+
{
|
1591
|
+
"internalType": "ObjectType",
|
1592
|
+
"name": "objectType",
|
1593
|
+
"type": "uint8"
|
1594
|
+
},
|
1595
|
+
{
|
1596
|
+
"internalType": "bool",
|
1597
|
+
"name": "isInterceptor",
|
1598
|
+
"type": "bool"
|
1599
|
+
},
|
1600
|
+
{
|
1601
|
+
"internalType": "address",
|
1602
|
+
"name": "initialOwner",
|
1603
|
+
"type": "address"
|
1604
|
+
},
|
1605
|
+
{
|
1606
|
+
"internalType": "bytes",
|
1607
|
+
"name": "registryData",
|
1608
|
+
"type": "bytes"
|
1609
|
+
}
|
1610
|
+
],
|
1611
|
+
"name": "initializeRegisterable",
|
1612
|
+
"outputs": [],
|
1613
|
+
"stateMutability": "nonpayable",
|
1614
|
+
"type": "function"
|
1615
|
+
},
|
1616
|
+
{
|
1617
|
+
"inputs": [
|
1605
1618
|
{
|
1606
1619
|
"internalType": "address",
|
1607
|
-
"name": "
|
1620
|
+
"name": "registryAddress",
|
1608
1621
|
"type": "address"
|
1609
1622
|
}
|
1610
1623
|
],
|
1611
|
-
"name": "
|
1624
|
+
"name": "initializeRegistryLinked",
|
1612
1625
|
"outputs": [],
|
1613
1626
|
"stateMutability": "nonpayable",
|
1614
1627
|
"type": "function"
|
@@ -1662,6 +1675,60 @@
|
|
1662
1675
|
"stateMutability": "nonpayable",
|
1663
1676
|
"type": "function"
|
1664
1677
|
},
|
1678
|
+
{
|
1679
|
+
"inputs": [
|
1680
|
+
{
|
1681
|
+
"internalType": "address",
|
1682
|
+
"name": "to",
|
1683
|
+
"type": "address"
|
1684
|
+
},
|
1685
|
+
{
|
1686
|
+
"internalType": "uint256",
|
1687
|
+
"name": "tokenId",
|
1688
|
+
"type": "uint256"
|
1689
|
+
}
|
1690
|
+
],
|
1691
|
+
"name": "nftMint",
|
1692
|
+
"outputs": [],
|
1693
|
+
"stateMutability": "nonpayable",
|
1694
|
+
"type": "function"
|
1695
|
+
},
|
1696
|
+
{
|
1697
|
+
"inputs": [
|
1698
|
+
{
|
1699
|
+
"internalType": "address",
|
1700
|
+
"name": "from",
|
1701
|
+
"type": "address"
|
1702
|
+
},
|
1703
|
+
{
|
1704
|
+
"internalType": "address",
|
1705
|
+
"name": "to",
|
1706
|
+
"type": "address"
|
1707
|
+
},
|
1708
|
+
{
|
1709
|
+
"internalType": "uint256",
|
1710
|
+
"name": "tokenId",
|
1711
|
+
"type": "uint256"
|
1712
|
+
}
|
1713
|
+
],
|
1714
|
+
"name": "nftTransferFrom",
|
1715
|
+
"outputs": [],
|
1716
|
+
"stateMutability": "nonpayable",
|
1717
|
+
"type": "function"
|
1718
|
+
},
|
1719
|
+
{
|
1720
|
+
"inputs": [
|
1721
|
+
{
|
1722
|
+
"internalType": "bytes4",
|
1723
|
+
"name": "interfaceId",
|
1724
|
+
"type": "bytes4"
|
1725
|
+
}
|
1726
|
+
],
|
1727
|
+
"name": "registerInterface",
|
1728
|
+
"outputs": [],
|
1729
|
+
"stateMutability": "nonpayable",
|
1730
|
+
"type": "function"
|
1731
|
+
},
|
1665
1732
|
{
|
1666
1733
|
"inputs": [
|
1667
1734
|
{
|
@@ -1688,6 +1755,19 @@
|
|
1688
1755
|
"stateMutability": "nonpayable",
|
1689
1756
|
"type": "function"
|
1690
1757
|
},
|
1758
|
+
{
|
1759
|
+
"inputs": [
|
1760
|
+
{
|
1761
|
+
"internalType": "contract InstanceAccessManager",
|
1762
|
+
"name": "accessManager",
|
1763
|
+
"type": "address"
|
1764
|
+
}
|
1765
|
+
],
|
1766
|
+
"name": "setInstanceAccessManager",
|
1767
|
+
"outputs": [],
|
1768
|
+
"stateMutability": "nonpayable",
|
1769
|
+
"type": "function"
|
1770
|
+
},
|
1691
1771
|
{
|
1692
1772
|
"inputs": [
|
1693
1773
|
{
|
@@ -1720,25 +1800,6 @@
|
|
1720
1800
|
"stateMutability": "view",
|
1721
1801
|
"type": "function"
|
1722
1802
|
},
|
1723
|
-
{
|
1724
|
-
"inputs": [
|
1725
|
-
{
|
1726
|
-
"internalType": "NftId",
|
1727
|
-
"name": "bundleNftId",
|
1728
|
-
"type": "uint96"
|
1729
|
-
}
|
1730
|
-
],
|
1731
|
-
"name": "toBundleKey32",
|
1732
|
-
"outputs": [
|
1733
|
-
{
|
1734
|
-
"internalType": "Key32",
|
1735
|
-
"name": "",
|
1736
|
-
"type": "bytes32"
|
1737
|
-
}
|
1738
|
-
],
|
1739
|
-
"stateMutability": "pure",
|
1740
|
-
"type": "function"
|
1741
|
-
},
|
1742
1803
|
{
|
1743
1804
|
"inputs": [
|
1744
1805
|
{
|
@@ -1767,19 +1828,128 @@
|
|
1767
1828
|
"inputs": [
|
1768
1829
|
{
|
1769
1830
|
"internalType": "NftId",
|
1770
|
-
"name": "
|
1831
|
+
"name": "applicationNftId",
|
1771
1832
|
"type": "uint96"
|
1833
|
+
},
|
1834
|
+
{
|
1835
|
+
"components": [
|
1836
|
+
{
|
1837
|
+
"internalType": "NftId",
|
1838
|
+
"name": "productNftId",
|
1839
|
+
"type": "uint96"
|
1840
|
+
},
|
1841
|
+
{
|
1842
|
+
"internalType": "NftId",
|
1843
|
+
"name": "bundleNftId",
|
1844
|
+
"type": "uint96"
|
1845
|
+
},
|
1846
|
+
{
|
1847
|
+
"internalType": "ReferralId",
|
1848
|
+
"name": "referralId",
|
1849
|
+
"type": "bytes8"
|
1850
|
+
},
|
1851
|
+
{
|
1852
|
+
"internalType": "RiskId",
|
1853
|
+
"name": "riskId",
|
1854
|
+
"type": "bytes8"
|
1855
|
+
},
|
1856
|
+
{
|
1857
|
+
"internalType": "uint256",
|
1858
|
+
"name": "sumInsuredAmount",
|
1859
|
+
"type": "uint256"
|
1860
|
+
},
|
1861
|
+
{
|
1862
|
+
"internalType": "uint256",
|
1863
|
+
"name": "premiumAmount",
|
1864
|
+
"type": "uint256"
|
1865
|
+
},
|
1866
|
+
{
|
1867
|
+
"internalType": "uint256",
|
1868
|
+
"name": "premiumPaidAmount",
|
1869
|
+
"type": "uint256"
|
1870
|
+
},
|
1871
|
+
{
|
1872
|
+
"internalType": "Seconds",
|
1873
|
+
"name": "lifetime",
|
1874
|
+
"type": "uint40"
|
1875
|
+
},
|
1876
|
+
{
|
1877
|
+
"internalType": "bytes",
|
1878
|
+
"name": "applicationData",
|
1879
|
+
"type": "bytes"
|
1880
|
+
},
|
1881
|
+
{
|
1882
|
+
"internalType": "bytes",
|
1883
|
+
"name": "policyData",
|
1884
|
+
"type": "bytes"
|
1885
|
+
},
|
1886
|
+
{
|
1887
|
+
"internalType": "uint16",
|
1888
|
+
"name": "claimsCount",
|
1889
|
+
"type": "uint16"
|
1890
|
+
},
|
1891
|
+
{
|
1892
|
+
"internalType": "uint16",
|
1893
|
+
"name": "openClaimsCount",
|
1894
|
+
"type": "uint16"
|
1895
|
+
},
|
1896
|
+
{
|
1897
|
+
"internalType": "Amount",
|
1898
|
+
"name": "claimAmount",
|
1899
|
+
"type": "uint96"
|
1900
|
+
},
|
1901
|
+
{
|
1902
|
+
"internalType": "Amount",
|
1903
|
+
"name": "payoutAmount",
|
1904
|
+
"type": "uint96"
|
1905
|
+
},
|
1906
|
+
{
|
1907
|
+
"internalType": "Timestamp",
|
1908
|
+
"name": "activatedAt",
|
1909
|
+
"type": "uint40"
|
1910
|
+
},
|
1911
|
+
{
|
1912
|
+
"internalType": "Timestamp",
|
1913
|
+
"name": "expiredAt",
|
1914
|
+
"type": "uint40"
|
1915
|
+
},
|
1916
|
+
{
|
1917
|
+
"internalType": "Timestamp",
|
1918
|
+
"name": "closedAt",
|
1919
|
+
"type": "uint40"
|
1920
|
+
}
|
1921
|
+
],
|
1922
|
+
"internalType": "struct IPolicy.PolicyInfo",
|
1923
|
+
"name": "policy",
|
1924
|
+
"type": "tuple"
|
1925
|
+
},
|
1926
|
+
{
|
1927
|
+
"internalType": "StateId",
|
1928
|
+
"name": "newState",
|
1929
|
+
"type": "uint8"
|
1772
1930
|
}
|
1773
1931
|
],
|
1774
|
-
"name": "
|
1775
|
-
"outputs": [
|
1932
|
+
"name": "updateApplication",
|
1933
|
+
"outputs": [],
|
1934
|
+
"stateMutability": "nonpayable",
|
1935
|
+
"type": "function"
|
1936
|
+
},
|
1937
|
+
{
|
1938
|
+
"inputs": [
|
1776
1939
|
{
|
1777
|
-
"internalType": "
|
1778
|
-
"name": "",
|
1779
|
-
"type": "
|
1940
|
+
"internalType": "NftId",
|
1941
|
+
"name": "applicationNftId",
|
1942
|
+
"type": "uint96"
|
1943
|
+
},
|
1944
|
+
{
|
1945
|
+
"internalType": "StateId",
|
1946
|
+
"name": "newState",
|
1947
|
+
"type": "uint8"
|
1780
1948
|
}
|
1781
1949
|
],
|
1782
|
-
"
|
1950
|
+
"name": "updateApplicationState",
|
1951
|
+
"outputs": [],
|
1952
|
+
"stateMutability": "nonpayable",
|
1783
1953
|
"type": "function"
|
1784
1954
|
},
|
1785
1955
|
{
|
@@ -1819,24 +1989,24 @@
|
|
1819
1989
|
"type": "bytes"
|
1820
1990
|
},
|
1821
1991
|
{
|
1822
|
-
"internalType": "
|
1992
|
+
"internalType": "Amount",
|
1823
1993
|
"name": "capitalAmount",
|
1824
|
-
"type": "
|
1994
|
+
"type": "uint96"
|
1825
1995
|
},
|
1826
1996
|
{
|
1827
|
-
"internalType": "
|
1997
|
+
"internalType": "Amount",
|
1828
1998
|
"name": "lockedAmount",
|
1829
|
-
"type": "
|
1999
|
+
"type": "uint96"
|
1830
2000
|
},
|
1831
2001
|
{
|
1832
|
-
"internalType": "
|
1833
|
-
"name": "
|
1834
|
-
"type": "
|
2002
|
+
"internalType": "Amount",
|
2003
|
+
"name": "feeAmount",
|
2004
|
+
"type": "uint96"
|
1835
2005
|
},
|
1836
2006
|
{
|
1837
|
-
"internalType": "
|
2007
|
+
"internalType": "Seconds",
|
1838
2008
|
"name": "lifetime",
|
1839
|
-
"type": "
|
2009
|
+
"type": "uint40"
|
1840
2010
|
},
|
1841
2011
|
{
|
1842
2012
|
"internalType": "Timestamp",
|
@@ -1890,71 +2060,31 @@
|
|
1890
2060
|
"type": "uint96"
|
1891
2061
|
},
|
1892
2062
|
{
|
1893
|
-
"internalType": "
|
2063
|
+
"internalType": "ClaimId",
|
1894
2064
|
"name": "claimId",
|
1895
|
-
"type": "
|
2065
|
+
"type": "uint16"
|
1896
2066
|
},
|
1897
2067
|
{
|
1898
2068
|
"components": [
|
1899
2069
|
{
|
1900
|
-
"internalType": "
|
2070
|
+
"internalType": "Amount",
|
1901
2071
|
"name": "claimAmount",
|
1902
|
-
"type": "
|
1903
|
-
},
|
1904
|
-
{
|
1905
|
-
"internalType": "uint256",
|
1906
|
-
"name": "paidAmount",
|
1907
|
-
"type": "uint256"
|
1908
|
-
},
|
1909
|
-
{
|
1910
|
-
"internalType": "bytes",
|
1911
|
-
"name": "data",
|
1912
|
-
"type": "bytes"
|
2072
|
+
"type": "uint96"
|
1913
2073
|
},
|
1914
2074
|
{
|
1915
|
-
"internalType": "
|
1916
|
-
"name": "
|
1917
|
-
"type": "
|
1918
|
-
}
|
1919
|
-
],
|
1920
|
-
"internalType": "struct IPolicy.ClaimInfo",
|
1921
|
-
"name": "claim",
|
1922
|
-
"type": "tuple"
|
1923
|
-
},
|
1924
|
-
{
|
1925
|
-
"internalType": "StateId",
|
1926
|
-
"name": "newState",
|
1927
|
-
"type": "uint8"
|
1928
|
-
}
|
1929
|
-
],
|
1930
|
-
"name": "updateClaim",
|
1931
|
-
"outputs": [],
|
1932
|
-
"stateMutability": "nonpayable",
|
1933
|
-
"type": "function"
|
1934
|
-
},
|
1935
|
-
{
|
1936
|
-
"inputs": [
|
1937
|
-
{
|
1938
|
-
"internalType": "NftId",
|
1939
|
-
"name": "policyNftId",
|
1940
|
-
"type": "uint96"
|
1941
|
-
},
|
1942
|
-
{
|
1943
|
-
"internalType": "NumberId",
|
1944
|
-
"name": "payoutId",
|
1945
|
-
"type": "uint32"
|
1946
|
-
},
|
1947
|
-
{
|
1948
|
-
"components": [
|
1949
|
-
{
|
1950
|
-
"internalType": "NumberId",
|
1951
|
-
"name": "claimId",
|
1952
|
-
"type": "uint32"
|
2075
|
+
"internalType": "Amount",
|
2076
|
+
"name": "paidAmount",
|
2077
|
+
"type": "uint96"
|
1953
2078
|
},
|
1954
2079
|
{
|
1955
|
-
"internalType": "
|
1956
|
-
"name": "
|
1957
|
-
"type": "
|
2080
|
+
"internalType": "uint8",
|
2081
|
+
"name": "payoutsCount",
|
2082
|
+
"type": "uint8"
|
2083
|
+
},
|
2084
|
+
{
|
2085
|
+
"internalType": "uint8",
|
2086
|
+
"name": "openPayoutsCount",
|
2087
|
+
"type": "uint8"
|
1958
2088
|
},
|
1959
2089
|
{
|
1960
2090
|
"internalType": "bytes",
|
@@ -1963,12 +2093,12 @@
|
|
1963
2093
|
},
|
1964
2094
|
{
|
1965
2095
|
"internalType": "Timestamp",
|
1966
|
-
"name": "
|
2096
|
+
"name": "closedAt",
|
1967
2097
|
"type": "uint40"
|
1968
2098
|
}
|
1969
2099
|
],
|
1970
|
-
"internalType": "struct IPolicy.
|
1971
|
-
"name": "
|
2100
|
+
"internalType": "struct IPolicy.ClaimInfo",
|
2101
|
+
"name": "claim",
|
1972
2102
|
"type": "tuple"
|
1973
2103
|
},
|
1974
2104
|
{
|
@@ -1989,6 +2119,11 @@
|
|
1989
2119
|
"name": "policyNftId",
|
1990
2120
|
"type": "uint96"
|
1991
2121
|
},
|
2122
|
+
{
|
2123
|
+
"internalType": "ClaimId",
|
2124
|
+
"name": "claimId",
|
2125
|
+
"type": "uint16"
|
2126
|
+
},
|
1992
2127
|
{
|
1993
2128
|
"internalType": "StateId",
|
1994
2129
|
"name": "newState",
|
@@ -2033,18 +2168,35 @@
|
|
2033
2168
|
}
|
2034
2169
|
],
|
2035
2170
|
"internalType": "struct Fee",
|
2036
|
-
"name": "
|
2171
|
+
"name": "minDistributionOwnerFee",
|
2037
2172
|
"type": "tuple"
|
2038
2173
|
},
|
2039
2174
|
{
|
2040
|
-
"
|
2041
|
-
|
2042
|
-
|
2175
|
+
"components": [
|
2176
|
+
{
|
2177
|
+
"internalType": "UFixed",
|
2178
|
+
"name": "fractionalFee",
|
2179
|
+
"type": "uint256"
|
2180
|
+
},
|
2181
|
+
{
|
2182
|
+
"internalType": "uint256",
|
2183
|
+
"name": "fixedFee",
|
2184
|
+
"type": "uint256"
|
2185
|
+
}
|
2186
|
+
],
|
2187
|
+
"internalType": "struct Fee",
|
2188
|
+
"name": "distributionFee",
|
2189
|
+
"type": "tuple"
|
2043
2190
|
},
|
2044
2191
|
{
|
2045
2192
|
"internalType": "address",
|
2046
2193
|
"name": "wallet",
|
2047
2194
|
"type": "address"
|
2195
|
+
},
|
2196
|
+
{
|
2197
|
+
"internalType": "uint256",
|
2198
|
+
"name": "sumDistributionOwnerFees",
|
2199
|
+
"type": "uint256"
|
2048
2200
|
}
|
2049
2201
|
],
|
2050
2202
|
"internalType": "struct ISetup.DistributionSetupInfo",
|
@@ -2084,25 +2236,20 @@
|
|
2084
2236
|
"inputs": [
|
2085
2237
|
{
|
2086
2238
|
"internalType": "NftId",
|
2087
|
-
"name": "
|
2239
|
+
"name": "distributorNftId",
|
2088
2240
|
"type": "uint96"
|
2089
2241
|
},
|
2090
|
-
{
|
2091
|
-
"internalType": "NumberId",
|
2092
|
-
"name": "payoutId",
|
2093
|
-
"type": "uint32"
|
2094
|
-
},
|
2095
2242
|
{
|
2096
2243
|
"components": [
|
2097
2244
|
{
|
2098
|
-
"internalType": "
|
2099
|
-
"name": "
|
2100
|
-
"type": "
|
2245
|
+
"internalType": "DistributorType",
|
2246
|
+
"name": "distributorType",
|
2247
|
+
"type": "bytes8"
|
2101
2248
|
},
|
2102
2249
|
{
|
2103
|
-
"internalType": "
|
2104
|
-
"name": "
|
2105
|
-
"type": "
|
2250
|
+
"internalType": "bool",
|
2251
|
+
"name": "active",
|
2252
|
+
"type": "bool"
|
2106
2253
|
},
|
2107
2254
|
{
|
2108
2255
|
"internalType": "bytes",
|
@@ -2110,13 +2257,18 @@
|
|
2110
2257
|
"type": "bytes"
|
2111
2258
|
},
|
2112
2259
|
{
|
2113
|
-
"internalType": "
|
2114
|
-
"name": "
|
2115
|
-
"type": "
|
2260
|
+
"internalType": "uint256",
|
2261
|
+
"name": "sumCommisions",
|
2262
|
+
"type": "uint256"
|
2263
|
+
},
|
2264
|
+
{
|
2265
|
+
"internalType": "uint256",
|
2266
|
+
"name": "numPoliciesSold",
|
2267
|
+
"type": "uint256"
|
2116
2268
|
}
|
2117
2269
|
],
|
2118
|
-
"internalType": "struct
|
2119
|
-
"name": "
|
2270
|
+
"internalType": "struct IDistribution.DistributorInfo",
|
2271
|
+
"name": "info",
|
2120
2272
|
"type": "tuple"
|
2121
2273
|
},
|
2122
2274
|
{
|
@@ -2134,7 +2286,7 @@
|
|
2134
2286
|
"inputs": [
|
2135
2287
|
{
|
2136
2288
|
"internalType": "NftId",
|
2137
|
-
"name": "
|
2289
|
+
"name": "distributorNftId",
|
2138
2290
|
"type": "uint96"
|
2139
2291
|
},
|
2140
2292
|
{
|
@@ -2148,6 +2300,94 @@
|
|
2148
2300
|
"stateMutability": "nonpayable",
|
2149
2301
|
"type": "function"
|
2150
2302
|
},
|
2303
|
+
{
|
2304
|
+
"inputs": [
|
2305
|
+
{
|
2306
|
+
"internalType": "DistributorType",
|
2307
|
+
"name": "distributorType",
|
2308
|
+
"type": "bytes8"
|
2309
|
+
},
|
2310
|
+
{
|
2311
|
+
"components": [
|
2312
|
+
{
|
2313
|
+
"internalType": "string",
|
2314
|
+
"name": "name",
|
2315
|
+
"type": "string"
|
2316
|
+
},
|
2317
|
+
{
|
2318
|
+
"internalType": "UFixed",
|
2319
|
+
"name": "minDiscountPercentage",
|
2320
|
+
"type": "uint256"
|
2321
|
+
},
|
2322
|
+
{
|
2323
|
+
"internalType": "UFixed",
|
2324
|
+
"name": "maxDiscountPercentage",
|
2325
|
+
"type": "uint256"
|
2326
|
+
},
|
2327
|
+
{
|
2328
|
+
"internalType": "UFixed",
|
2329
|
+
"name": "commissionPercentage",
|
2330
|
+
"type": "uint256"
|
2331
|
+
},
|
2332
|
+
{
|
2333
|
+
"internalType": "uint32",
|
2334
|
+
"name": "maxReferralCount",
|
2335
|
+
"type": "uint32"
|
2336
|
+
},
|
2337
|
+
{
|
2338
|
+
"internalType": "uint32",
|
2339
|
+
"name": "maxReferralLifetime",
|
2340
|
+
"type": "uint32"
|
2341
|
+
},
|
2342
|
+
{
|
2343
|
+
"internalType": "bool",
|
2344
|
+
"name": "allowSelfReferrals",
|
2345
|
+
"type": "bool"
|
2346
|
+
},
|
2347
|
+
{
|
2348
|
+
"internalType": "bool",
|
2349
|
+
"name": "allowRenewals",
|
2350
|
+
"type": "bool"
|
2351
|
+
},
|
2352
|
+
{
|
2353
|
+
"internalType": "bytes",
|
2354
|
+
"name": "data",
|
2355
|
+
"type": "bytes"
|
2356
|
+
}
|
2357
|
+
],
|
2358
|
+
"internalType": "struct IDistribution.DistributorTypeInfo",
|
2359
|
+
"name": "info",
|
2360
|
+
"type": "tuple"
|
2361
|
+
},
|
2362
|
+
{
|
2363
|
+
"internalType": "StateId",
|
2364
|
+
"name": "newState",
|
2365
|
+
"type": "uint8"
|
2366
|
+
}
|
2367
|
+
],
|
2368
|
+
"name": "updateDistributorType",
|
2369
|
+
"outputs": [],
|
2370
|
+
"stateMutability": "nonpayable",
|
2371
|
+
"type": "function"
|
2372
|
+
},
|
2373
|
+
{
|
2374
|
+
"inputs": [
|
2375
|
+
{
|
2376
|
+
"internalType": "DistributorType",
|
2377
|
+
"name": "distributorType",
|
2378
|
+
"type": "bytes8"
|
2379
|
+
},
|
2380
|
+
{
|
2381
|
+
"internalType": "StateId",
|
2382
|
+
"name": "newState",
|
2383
|
+
"type": "uint8"
|
2384
|
+
}
|
2385
|
+
],
|
2386
|
+
"name": "updateDistributorTypeState",
|
2387
|
+
"outputs": [],
|
2388
|
+
"stateMutability": "nonpayable",
|
2389
|
+
"type": "function"
|
2390
|
+
},
|
2151
2391
|
{
|
2152
2392
|
"inputs": [
|
2153
2393
|
{
|
@@ -2156,21 +2396,21 @@
|
|
2156
2396
|
"type": "uint96"
|
2157
2397
|
},
|
2158
2398
|
{
|
2159
|
-
"internalType": "
|
2399
|
+
"internalType": "PayoutId",
|
2160
2400
|
"name": "payoutId",
|
2161
|
-
"type": "
|
2401
|
+
"type": "uint24"
|
2162
2402
|
},
|
2163
2403
|
{
|
2164
2404
|
"components": [
|
2165
2405
|
{
|
2166
|
-
"internalType": "
|
2406
|
+
"internalType": "ClaimId",
|
2167
2407
|
"name": "claimId",
|
2168
|
-
"type": "
|
2408
|
+
"type": "uint16"
|
2169
2409
|
},
|
2170
2410
|
{
|
2171
|
-
"internalType": "
|
2411
|
+
"internalType": "Amount",
|
2172
2412
|
"name": "amount",
|
2173
|
-
"type": "
|
2413
|
+
"type": "uint96"
|
2174
2414
|
},
|
2175
2415
|
{
|
2176
2416
|
"internalType": "bytes",
|
@@ -2193,7 +2433,7 @@
|
|
2193
2433
|
"type": "uint8"
|
2194
2434
|
}
|
2195
2435
|
],
|
2196
|
-
"name": "
|
2436
|
+
"name": "updatePayout",
|
2197
2437
|
"outputs": [],
|
2198
2438
|
"stateMutability": "nonpayable",
|
2199
2439
|
"type": "function"
|
@@ -2205,13 +2445,18 @@
|
|
2205
2445
|
"name": "policyNftId",
|
2206
2446
|
"type": "uint96"
|
2207
2447
|
},
|
2448
|
+
{
|
2449
|
+
"internalType": "PayoutId",
|
2450
|
+
"name": "payoutId",
|
2451
|
+
"type": "uint24"
|
2452
|
+
},
|
2208
2453
|
{
|
2209
2454
|
"internalType": "StateId",
|
2210
2455
|
"name": "newState",
|
2211
2456
|
"type": "uint8"
|
2212
2457
|
}
|
2213
2458
|
],
|
2214
|
-
"name": "
|
2459
|
+
"name": "updatePayoutState",
|
2215
2460
|
"outputs": [],
|
2216
2461
|
"stateMutability": "nonpayable",
|
2217
2462
|
"type": "function"
|
@@ -2223,13 +2468,105 @@
|
|
2223
2468
|
"name": "policyNftId",
|
2224
2469
|
"type": "uint96"
|
2225
2470
|
},
|
2471
|
+
{
|
2472
|
+
"components": [
|
2473
|
+
{
|
2474
|
+
"internalType": "NftId",
|
2475
|
+
"name": "productNftId",
|
2476
|
+
"type": "uint96"
|
2477
|
+
},
|
2478
|
+
{
|
2479
|
+
"internalType": "NftId",
|
2480
|
+
"name": "bundleNftId",
|
2481
|
+
"type": "uint96"
|
2482
|
+
},
|
2483
|
+
{
|
2484
|
+
"internalType": "ReferralId",
|
2485
|
+
"name": "referralId",
|
2486
|
+
"type": "bytes8"
|
2487
|
+
},
|
2488
|
+
{
|
2489
|
+
"internalType": "RiskId",
|
2490
|
+
"name": "riskId",
|
2491
|
+
"type": "bytes8"
|
2492
|
+
},
|
2493
|
+
{
|
2494
|
+
"internalType": "uint256",
|
2495
|
+
"name": "sumInsuredAmount",
|
2496
|
+
"type": "uint256"
|
2497
|
+
},
|
2498
|
+
{
|
2499
|
+
"internalType": "uint256",
|
2500
|
+
"name": "premiumAmount",
|
2501
|
+
"type": "uint256"
|
2502
|
+
},
|
2503
|
+
{
|
2504
|
+
"internalType": "uint256",
|
2505
|
+
"name": "premiumPaidAmount",
|
2506
|
+
"type": "uint256"
|
2507
|
+
},
|
2508
|
+
{
|
2509
|
+
"internalType": "Seconds",
|
2510
|
+
"name": "lifetime",
|
2511
|
+
"type": "uint40"
|
2512
|
+
},
|
2513
|
+
{
|
2514
|
+
"internalType": "bytes",
|
2515
|
+
"name": "applicationData",
|
2516
|
+
"type": "bytes"
|
2517
|
+
},
|
2518
|
+
{
|
2519
|
+
"internalType": "bytes",
|
2520
|
+
"name": "policyData",
|
2521
|
+
"type": "bytes"
|
2522
|
+
},
|
2523
|
+
{
|
2524
|
+
"internalType": "uint16",
|
2525
|
+
"name": "claimsCount",
|
2526
|
+
"type": "uint16"
|
2527
|
+
},
|
2528
|
+
{
|
2529
|
+
"internalType": "uint16",
|
2530
|
+
"name": "openClaimsCount",
|
2531
|
+
"type": "uint16"
|
2532
|
+
},
|
2533
|
+
{
|
2534
|
+
"internalType": "Amount",
|
2535
|
+
"name": "claimAmount",
|
2536
|
+
"type": "uint96"
|
2537
|
+
},
|
2538
|
+
{
|
2539
|
+
"internalType": "Amount",
|
2540
|
+
"name": "payoutAmount",
|
2541
|
+
"type": "uint96"
|
2542
|
+
},
|
2543
|
+
{
|
2544
|
+
"internalType": "Timestamp",
|
2545
|
+
"name": "activatedAt",
|
2546
|
+
"type": "uint40"
|
2547
|
+
},
|
2548
|
+
{
|
2549
|
+
"internalType": "Timestamp",
|
2550
|
+
"name": "expiredAt",
|
2551
|
+
"type": "uint40"
|
2552
|
+
},
|
2553
|
+
{
|
2554
|
+
"internalType": "Timestamp",
|
2555
|
+
"name": "closedAt",
|
2556
|
+
"type": "uint40"
|
2557
|
+
}
|
2558
|
+
],
|
2559
|
+
"internalType": "struct IPolicy.PolicyInfo",
|
2560
|
+
"name": "policy",
|
2561
|
+
"type": "tuple"
|
2562
|
+
},
|
2226
2563
|
{
|
2227
2564
|
"internalType": "StateId",
|
2228
2565
|
"name": "newState",
|
2229
2566
|
"type": "uint8"
|
2230
2567
|
}
|
2231
2568
|
],
|
2232
|
-
"name": "
|
2569
|
+
"name": "updatePolicy",
|
2233
2570
|
"outputs": [],
|
2234
2571
|
"stateMutability": "nonpayable",
|
2235
2572
|
"type": "function"
|
@@ -2279,9 +2616,9 @@
|
|
2279
2616
|
"type": "uint256"
|
2280
2617
|
},
|
2281
2618
|
{
|
2282
|
-
"internalType": "
|
2619
|
+
"internalType": "Seconds",
|
2283
2620
|
"name": "lifetime",
|
2284
|
-
"type": "
|
2621
|
+
"type": "uint40"
|
2285
2622
|
},
|
2286
2623
|
{
|
2287
2624
|
"internalType": "bytes",
|
@@ -2304,9 +2641,14 @@
|
|
2304
2641
|
"type": "uint16"
|
2305
2642
|
},
|
2306
2643
|
{
|
2307
|
-
"internalType": "
|
2644
|
+
"internalType": "Amount",
|
2645
|
+
"name": "claimAmount",
|
2646
|
+
"type": "uint96"
|
2647
|
+
},
|
2648
|
+
{
|
2649
|
+
"internalType": "Amount",
|
2308
2650
|
"name": "payoutAmount",
|
2309
|
-
"type": "
|
2651
|
+
"type": "uint96"
|
2310
2652
|
},
|
2311
2653
|
{
|
2312
2654
|
"internalType": "Timestamp",
|
@@ -2334,7 +2676,7 @@
|
|
2334
2676
|
"type": "uint8"
|
2335
2677
|
}
|
2336
2678
|
],
|
2337
|
-
"name": "
|
2679
|
+
"name": "updatePolicyClaims",
|
2338
2680
|
"outputs": [],
|
2339
2681
|
"stateMutability": "nonpayable",
|
2340
2682
|
"type": "function"
|
@@ -2367,9 +2709,14 @@
|
|
2367
2709
|
{
|
2368
2710
|
"components": [
|
2369
2711
|
{
|
2370
|
-
"internalType": "
|
2371
|
-
"name": "
|
2372
|
-
"type": "
|
2712
|
+
"internalType": "string",
|
2713
|
+
"name": "name",
|
2714
|
+
"type": "string"
|
2715
|
+
},
|
2716
|
+
{
|
2717
|
+
"internalType": "contract IERC20Metadata",
|
2718
|
+
"name": "token",
|
2719
|
+
"type": "address"
|
2373
2720
|
},
|
2374
2721
|
{
|
2375
2722
|
"internalType": "contract TokenHandler",
|
@@ -2377,79 +2724,28 @@
|
|
2377
2724
|
"type": "address"
|
2378
2725
|
},
|
2379
2726
|
{
|
2380
|
-
"internalType": "
|
2381
|
-
"name": "
|
2382
|
-
"type": "
|
2383
|
-
},
|
2384
|
-
{
|
2385
|
-
"components": [
|
2386
|
-
{
|
2387
|
-
"internalType": "UFixed",
|
2388
|
-
"name": "fractionalFee",
|
2389
|
-
"type": "uint256"
|
2390
|
-
},
|
2391
|
-
{
|
2392
|
-
"internalType": "uint256",
|
2393
|
-
"name": "fixedFee",
|
2394
|
-
"type": "uint256"
|
2395
|
-
}
|
2396
|
-
],
|
2397
|
-
"internalType": "struct Fee",
|
2398
|
-
"name": "poolFee",
|
2399
|
-
"type": "tuple"
|
2400
|
-
},
|
2401
|
-
{
|
2402
|
-
"components": [
|
2403
|
-
{
|
2404
|
-
"internalType": "UFixed",
|
2405
|
-
"name": "fractionalFee",
|
2406
|
-
"type": "uint256"
|
2407
|
-
},
|
2408
|
-
{
|
2409
|
-
"internalType": "uint256",
|
2410
|
-
"name": "fixedFee",
|
2411
|
-
"type": "uint256"
|
2412
|
-
}
|
2413
|
-
],
|
2414
|
-
"internalType": "struct Fee",
|
2415
|
-
"name": "stakingFee",
|
2416
|
-
"type": "tuple"
|
2417
|
-
},
|
2418
|
-
{
|
2419
|
-
"components": [
|
2420
|
-
{
|
2421
|
-
"internalType": "UFixed",
|
2422
|
-
"name": "fractionalFee",
|
2423
|
-
"type": "uint256"
|
2424
|
-
},
|
2425
|
-
{
|
2426
|
-
"internalType": "uint256",
|
2427
|
-
"name": "fixedFee",
|
2428
|
-
"type": "uint256"
|
2429
|
-
}
|
2430
|
-
],
|
2431
|
-
"internalType": "struct Fee",
|
2432
|
-
"name": "performanceFee",
|
2433
|
-
"type": "tuple"
|
2727
|
+
"internalType": "address",
|
2728
|
+
"name": "wallet",
|
2729
|
+
"type": "address"
|
2434
2730
|
},
|
2435
2731
|
{
|
2436
|
-
"internalType": "
|
2437
|
-
"name": "
|
2438
|
-
"type": "
|
2732
|
+
"internalType": "Amount",
|
2733
|
+
"name": "balanceAmount",
|
2734
|
+
"type": "uint96"
|
2439
2735
|
},
|
2440
2736
|
{
|
2441
|
-
"internalType": "
|
2442
|
-
"name": "
|
2443
|
-
"type": "
|
2737
|
+
"internalType": "Amount",
|
2738
|
+
"name": "feeAmount",
|
2739
|
+
"type": "uint96"
|
2444
2740
|
},
|
2445
2741
|
{
|
2446
|
-
"internalType": "
|
2447
|
-
"name": "
|
2448
|
-
"type": "
|
2742
|
+
"internalType": "bytes",
|
2743
|
+
"name": "data",
|
2744
|
+
"type": "bytes"
|
2449
2745
|
}
|
2450
2746
|
],
|
2451
|
-
"internalType": "struct
|
2452
|
-
"name": "
|
2747
|
+
"internalType": "struct IComponents.ComponentInfo",
|
2748
|
+
"name": "info",
|
2453
2749
|
"type": "tuple"
|
2454
2750
|
},
|
2455
2751
|
{
|
@@ -2510,23 +2806,6 @@
|
|
2510
2806
|
"name": "poolNftId",
|
2511
2807
|
"type": "uint96"
|
2512
2808
|
},
|
2513
|
-
{
|
2514
|
-
"components": [
|
2515
|
-
{
|
2516
|
-
"internalType": "UFixed",
|
2517
|
-
"name": "fractionalFee",
|
2518
|
-
"type": "uint256"
|
2519
|
-
},
|
2520
|
-
{
|
2521
|
-
"internalType": "uint256",
|
2522
|
-
"name": "fixedFee",
|
2523
|
-
"type": "uint256"
|
2524
|
-
}
|
2525
|
-
],
|
2526
|
-
"internalType": "struct Fee",
|
2527
|
-
"name": "distributionFee",
|
2528
|
-
"type": "tuple"
|
2529
|
-
},
|
2530
2809
|
{
|
2531
2810
|
"components": [
|
2532
2811
|
{
|
@@ -2561,57 +2840,6 @@
|
|
2561
2840
|
"name": "processingFee",
|
2562
2841
|
"type": "tuple"
|
2563
2842
|
},
|
2564
|
-
{
|
2565
|
-
"components": [
|
2566
|
-
{
|
2567
|
-
"internalType": "UFixed",
|
2568
|
-
"name": "fractionalFee",
|
2569
|
-
"type": "uint256"
|
2570
|
-
},
|
2571
|
-
{
|
2572
|
-
"internalType": "uint256",
|
2573
|
-
"name": "fixedFee",
|
2574
|
-
"type": "uint256"
|
2575
|
-
}
|
2576
|
-
],
|
2577
|
-
"internalType": "struct Fee",
|
2578
|
-
"name": "poolFee",
|
2579
|
-
"type": "tuple"
|
2580
|
-
},
|
2581
|
-
{
|
2582
|
-
"components": [
|
2583
|
-
{
|
2584
|
-
"internalType": "UFixed",
|
2585
|
-
"name": "fractionalFee",
|
2586
|
-
"type": "uint256"
|
2587
|
-
},
|
2588
|
-
{
|
2589
|
-
"internalType": "uint256",
|
2590
|
-
"name": "fixedFee",
|
2591
|
-
"type": "uint256"
|
2592
|
-
}
|
2593
|
-
],
|
2594
|
-
"internalType": "struct Fee",
|
2595
|
-
"name": "stakingFee",
|
2596
|
-
"type": "tuple"
|
2597
|
-
},
|
2598
|
-
{
|
2599
|
-
"components": [
|
2600
|
-
{
|
2601
|
-
"internalType": "UFixed",
|
2602
|
-
"name": "fractionalFee",
|
2603
|
-
"type": "uint256"
|
2604
|
-
},
|
2605
|
-
{
|
2606
|
-
"internalType": "uint256",
|
2607
|
-
"name": "fixedFee",
|
2608
|
-
"type": "uint256"
|
2609
|
-
}
|
2610
|
-
],
|
2611
|
-
"internalType": "struct Fee",
|
2612
|
-
"name": "performanceFee",
|
2613
|
-
"type": "tuple"
|
2614
|
-
},
|
2615
2843
|
{
|
2616
2844
|
"internalType": "bool",
|
2617
2845
|
"name": "isIntercepting",
|
@@ -2659,40 +2887,50 @@
|
|
2659
2887
|
{
|
2660
2888
|
"inputs": [
|
2661
2889
|
{
|
2662
|
-
"internalType": "
|
2663
|
-
"name": "
|
2664
|
-
"type": "
|
2665
|
-
},
|
2666
|
-
{
|
2667
|
-
"internalType": "NumberId",
|
2668
|
-
"name": "payoutId",
|
2669
|
-
"type": "uint32"
|
2890
|
+
"internalType": "ReferralId",
|
2891
|
+
"name": "referralId",
|
2892
|
+
"type": "bytes8"
|
2670
2893
|
},
|
2671
2894
|
{
|
2672
2895
|
"components": [
|
2673
2896
|
{
|
2674
|
-
"internalType": "
|
2675
|
-
"name": "
|
2676
|
-
"type": "
|
2897
|
+
"internalType": "NftId",
|
2898
|
+
"name": "distributorNftId",
|
2899
|
+
"type": "uint96"
|
2677
2900
|
},
|
2678
2901
|
{
|
2679
|
-
"internalType": "
|
2680
|
-
"name": "
|
2902
|
+
"internalType": "string",
|
2903
|
+
"name": "referralCode",
|
2904
|
+
"type": "string"
|
2905
|
+
},
|
2906
|
+
{
|
2907
|
+
"internalType": "UFixed",
|
2908
|
+
"name": "discountPercentage",
|
2681
2909
|
"type": "uint256"
|
2682
2910
|
},
|
2683
2911
|
{
|
2684
|
-
"internalType": "
|
2685
|
-
"name": "
|
2686
|
-
"type": "
|
2912
|
+
"internalType": "uint32",
|
2913
|
+
"name": "maxReferrals",
|
2914
|
+
"type": "uint32"
|
2915
|
+
},
|
2916
|
+
{
|
2917
|
+
"internalType": "uint32",
|
2918
|
+
"name": "usedReferrals",
|
2919
|
+
"type": "uint32"
|
2687
2920
|
},
|
2688
2921
|
{
|
2689
2922
|
"internalType": "Timestamp",
|
2690
|
-
"name": "
|
2923
|
+
"name": "expiryAt",
|
2691
2924
|
"type": "uint40"
|
2925
|
+
},
|
2926
|
+
{
|
2927
|
+
"internalType": "bytes",
|
2928
|
+
"name": "data",
|
2929
|
+
"type": "bytes"
|
2692
2930
|
}
|
2693
2931
|
],
|
2694
|
-
"internalType": "struct
|
2695
|
-
"name": "
|
2932
|
+
"internalType": "struct IDistribution.ReferralInfo",
|
2933
|
+
"name": "referralInfo",
|
2696
2934
|
"type": "tuple"
|
2697
2935
|
},
|
2698
2936
|
{
|
@@ -2709,9 +2947,9 @@
|
|
2709
2947
|
{
|
2710
2948
|
"inputs": [
|
2711
2949
|
{
|
2712
|
-
"internalType": "
|
2713
|
-
"name": "
|
2714
|
-
"type": "
|
2950
|
+
"internalType": "ReferralId",
|
2951
|
+
"name": "referralId",
|
2952
|
+
"type": "bytes8"
|
2715
2953
|
},
|
2716
2954
|
{
|
2717
2955
|
"internalType": "StateId",
|
@@ -2778,50 +3016,74 @@
|
|
2778
3016
|
"type": "function"
|
2779
3017
|
}
|
2780
3018
|
],
|
2781
|
-
"bytecode": "0x60806040523480156200001157600080fd5b50620000546301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600280546001600160a01b031916331790556200007062000094565b6200007a6200024b565b6200008462000385565b6200008e620005f2565b6200076b565b60dc600090815260036020527fa093975c0a88af8b2bf4799c5b4be14d42fc326c2a331b9f3fb3caecbaa5104f805460ff19166064179055600190600490620000db60dc90565b60ff1660ff1681526020019081526020016000206000620001016200073960201b60201c565b60ff1660ff1681526020019081526020016000206000620001276200074360201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906004906200015b60dc90565b60ff1660ff1681526020019081526020016000206000620001816200074360201b60201c565b60ff1660ff1681526020019081526020016000206000620001a76200073960201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190600490620001db60dc90565b60ff1660ff1681526020019081526020016000206000620002016200074360201b60201c565b60ff1660ff1681526020019081526020016000206000620002276200074860201b60201c565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f6b16ef514f22b74729cbea5cc7babfecbdc2309e530ca716643d11fe929eed2e8054606460ff1991821681179092557fd95a7ca9e147710ebdb88338ab2e67ddd90cff367c512f0cd93015f31f62adca8054909116600190811790915560009182526004602052907f083fc81be30b6287dea23aa60f8ffaf268f507cdeac82ed9644e506b59c54ff090620002df606e90565b60ff1660ff1681526020019081526020016000206000620003056200073960201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019060049062000339606490565b60ff1660ff16815260200190815260200160002060006200035f6200074360201b60201c565b60ff1660ff1681526020019081526020016000206000620002276200074d60201b60201c565b60d2600090815260036020527f4a3d8eec916edb195dbc0ca8a0f405ba03a38efbebf3c35851ce877e52911169805460ff1916600a179055600190600490620003cc60d290565b60ff1660ff1681526020019081526020016000206000620003f26200075260201b60201c565b60ff1660ff1681526020019081526020016000206000620004186200075760201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906004906200044c60d290565b60ff1660ff1681526020019081526020016000206000620004726200075260201b60201c565b60ff1660ff1681526020019081526020016000206000620004986200075c60201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190600490620004cc60d290565b60ff1660ff1681526020019081526020016000206000620004f26200075260201b60201c565b60ff1660ff1681526020019081526020016000206000620005186200076160201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906004906200054c60d290565b60ff1660ff1681526020019081526020016000206000620005726200076160201b60201c565b60ff1660ff1681526020019081526020016000206000620005986200073960201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190600490620005cc60d290565b60ff1660ff1681526020019081526020016000206000620002016200073960201b60201c565b60c8600090815260036020527f4ee5ee9bffee16640c2540fd7f6965fdc66a7e5f780f34dcd70130941a3eae07805460ff191660641790556001906004906200063960c890565b60ff1660ff16815260200190815260200160002060006200065f6200073960201b60201c565b60ff1660ff1681526020019081526020016000206000620006856200074360201b60201c565b60ff16815260208101919091526040016000908120805460ff191692151592909217909155600190600490620006b960c890565b60ff1660ff1681526020019081526020016000206000620006df6200074360201b60201c565b60ff1660ff1681526020019081526020016000206000620007056200073960201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001906004906200033960c890565b606490565b905090565b606e90565b60c890565b60d290565b600a90565b601490565b601e90565b600060286200073e565b6147cb806200077b6000396000f3fe608060405234801561001057600080fd5b50600436106104285760003560e01c806382f65adb1161022b578063bf1db3f911610130578063e7cd37d4116100b8578063f7bc431c11610087578063f7bc431c146109b3578063f8b648ac146105af578063fb2cb101146109c6578063fe1f18d6146109d7578063fed3d63f146109ea57600080fd5b8063e7cd37d41461094f578063e8951ee614610531578063e9e96c7014610962578063f48016ce146109a057600080fd5b8063cde749f4116100ff578063cde749f414610919578063d2f21a2914610921578063d5b221bd1461054c578063dee3262314610934578063e1033e7d1461094757600080fd5b8063bf1db3f9146108f6578063bf7e214f14610909578063c2f1a2d21461054c578063ca600b1c1461091157600080fd5b80639df0280b116101b3578063a898967511610182578063a8989675146108aa578063a9cea142146108bd578063b68ec146146105af578063bc8d4000146108d0578063bd5947e3146108e357600080fd5b80639df0280b14610531578063a13df2ab146107d3578063a5961b4c146107e6578063a76ee0181461089757600080fd5b80638fb36037116101fa5780638fb360371461076657806391ff6eaa14610787578063976b0a771461079a5780639a960d52146107ad5780639d7421f4146107c057600080fd5b806382f65adb146105af578063893d20e81461073e5780638dc77f42146105315780638eaa6ac01461074657600080fd5b806340529b0f1161033157806360aa32aa116102b957806375b238fc1161028857806375b238fc146106fd57806375c82776146107055780637a4158021461054c5780637a9e5e4b146107185780637cef48421461072b57600080fd5b806360aa32aa146106a657806361f5f420146106b9578063644c45e0146106ca5780636b9bf08b146106f557600080fd5b806354f6127f1161030057806354f6127f146106595780635ab1bd53146106795780635d4345cc146105315780635dfa73db1461068a5780636071a68e1461069357600080fd5b806340529b0f14610531578063422c9d001461062b5780634288121d1461063e578063468a18671461064657600080fd5b80631c45fe7a116103b457806333bb0a971161038357806333bb0a97146105af57806337f135d7146105c257806338a699a4146105df5780633ca7c02a146105f25780633fc5ab981461061857600080fd5b80631c45fe7a1461054c5780631eff4b221461055f5780632781d443146105945780632f61088a1461059c57600080fd5b80630d358181116103fb5780630d358181146104e35780630f526f7d146105095780630fec111c1461051c57806310203d2c14610531578063138461e01461054457600080fd5b806301ffc9a71461042d57806302cd30711461046f57806309648a9d146104945780630b24cf5f146104ce575b600080fd5b61045a61043b366004612ffb565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6007546001600160a01b03165b6040516001600160a01b039091168152602001610466565b6104bc6104a2366004613025565b600090815260056020526040902054610100900460ff1690565b60405160ff9091168152602001610466565b6104e16104dc36600461322f565b6109f2565b005b6104bc6104f1366004613274565b60ff9081166000908152600360205260409020541690565b6104e1610517366004613291565b610a36565b610524610a53565b604051610466919061331a565b6104e161053f366004613291565b610c0c565b6104e1610c21565b6104e161055a3660046134cd565b610e43565b6105867f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610466565b610586600381565b6104e16105aa3660046135bc565b610e84565b6104e16105bd36600461360b565b610f1f565b6105ca600081565b60405163ffffffff9091168152602001610466565b61045a6105ed366004613025565b610f4a565b6106006001600160401b0381565b6040516001600160401b039091168152602001610466565b6104e1610626366004613723565b610fdb565b6104e1610639366004613786565b611001565b61047c61113e565b6105866106543660046137a3565b6111c4565b61066c610667366004613025565b61125d565b60405161046691906137c0565b6001546001600160a01b031661047c565b61060061271081565b6104e16106a13660046137d3565b611302565b6104e16106b43660046138ce565b611328565b6008546001600160a01b031661047c565b600154600160a01b90046001600160601b03166040516001600160601b039091168152602001610466565b61047c611350565b610600600081565b6104e1610713366004613952565b61136b565b6104e1610726366004613786565b611391565b6104e16107393660046139aa565b611414565b61047c61149e565b610759610754366004613025565b61157b565b6040516104669190613a12565b61076e6116bc565b6040516001600160e01b03199091168152602001610466565b6104e1610795366004613b36565b6116f5565b6104e16107a8366004613b64565b61171d565b6104e16107bb366004613d02565b61185d565b6104e16107ce366004613d49565b611883565b6105866107e13660046137a3565b6118a9565b61088a6107f4366004613025565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260056020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516104669190613da0565b6104e16108a5366004613dae565b6118d6565b6104e16108b8366004613df5565b611971565b6104e16108cb366004613e35565b611a62565b6104e16108de366004613e76565b611a8a565b6104e16108f1366004613ebb565b611ab0565b61045a610904366004613274565b611ad8565b61047c611b25565b61047c611b41565b6104bc611b5c565b6104e161092f366004613291565b611bd3565b6104e1610942366004613291565b611bea565b61047c611c01565b6104e161095d366004613efb565b611c1c565b61045a610970366004613df5565b60ff9283166000908152600460209081526040808320948616835293815283822092851682529190915220541690565b6105866109ae366004613f39565b611c44565b6104e16109c1366004613786565b611ccf565b6002546001600160a01b031661047c565b6104e16109e5366004613291565b611dbc565b61047c611dd1565b6109ff335b600036611dec565b610a32610a0d836078611ef2565b82604051602001610a1e9190613f67565b604051602081830303815290604052611f3e565b5050565b610a3f336109f7565b610a32610a4d83608c611ef2565b82611f48565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b90910416151591810191909152600182018054919291606084019190610afe90613fc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2a90613fc7565b8015610b775780601f10610b4c57610100808354040283529160200191610b77565b820191906000526020600020905b815481529060010190602001808311610b5a57829003601f168201915b50505050508152505090506040518060e00160405280610b95600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b03168152602001610bf06002546001600160a01b031690565b6001600160a01b03168152602001826060015181525091505090565b610c15336109f7565b610a32610a4d836111c4565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610c83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca79190614001565b15610cee576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b0316610d175760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610d60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d849190614001565b610dac576040516372657a5160e01b81526001600160a01b0382166004820152602401610ce5565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610df6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1a919061401e565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b610e4c336109f7565b610e7e610e58856111c4565b83604051602001610e69919061403b565b60405160208183030381529060405283611f52565b50505050565b610e8d336109f7565b6040516355ee627560e01b81526001600160c01b031983166004820152610a329073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015610eea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0e919061408e565b82604051602001610a1e91906140a7565b610f28336109f7565b610f45610f34846111c4565b82604051602001610a1e919061403b565b505050565b60008181526005602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af4158015610fb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd59190614001565b92915050565b610fe4336109f7565b610f45610ff0846118a9565b83604051602001610e6991906140d5565b61100a336109f7565b6008546001600160a01b03161561105a5760405162461bcd60e51b8152602060048201526014602482015273109d5b991b1953585b9859d95c881a5cc81cd95d60621b6044820152606401610ce5565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c69190614189565b6001600160a01b03161461111c5760405162461bcd60e51b815260206004820152601f60248201527f42756e646c654d616e6167657220696e7374616e6365206d69736d61746368006044820152606401610ce5565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001546000906001600160a01b031663d39e6043606e5b6040516001600160e01b031960e084901b16815260ff9091166004820152600360248201526044015b602060405180830381865afa15801561119b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bf9190614189565b905090565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660d25b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015611239573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd5919061408e565b600081815260056020526040902060010180546060919061127d90613fc7565b80601f01602080910402602001604051908101604052809291908181526020018280546112a990613fc7565b80156112f65780601f106112cb576101008083540402835291602001916112f6565b820191906000526020600020905b8154815290600101906020018083116112d957829003601f168201915b50505050509050919050565b61130b336109f7565b610a32611317836118a9565b82604051602001610a1e91906140d5565b611331336109f7565b610f4561133f84608c611ef2565b83604051602001610e6991906141a6565b6001546000906001600160a01b031663d39e6043608c611155565b611374336109f7565b610e7e611380856111c4565b83604051602001610e699190614266565b3361139a611b25565b6001600160a01b0316816001600160a01b0316146113d55760405162d1953b60e31b81526001600160a01b0382166004820152602401610ce5565b816001600160a01b03163b60000361140b576040516361798f2f60e11b81526001600160a01b0383166004820152602401610ce5565b610a3282611f5d565b61141d336109f7565b6040516355ee627560e01b81526001600160c01b031983166004820152610a329073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af415801561147a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4d919061408e565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611503573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115279190614001565b1561156b57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a9060240161117e565b506002546001600160a01b031690565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260056020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c0820152928352600181018054919284019161163390613fc7565b80601f016020809104026020016040519081016040528092919081815260200182805461165f90613fc7565b80156116ac5780601f10611681576101008083540402835291602001916116ac565b820191906000526020600020905b81548152906001019060200180831161168f57829003601f168201915b5050505050815250509050919050565b600080516020614776833981519152805460009190600160a01b900460ff166116e65760006116ef565b638fb3603760e01b5b91505090565b6116fe336109f7565b610a3261170c83606e611ef2565b82604051602001610a1e9190614296565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156117625750825b90506000826001600160401b0316600114801561177e5750303b155b90508115801561178c575080155b156117aa5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156117d457845460ff60401b1916600160401b1785555b6117dd89611fbe565b6117fc8888604660008a60405180602001604052806000815250611fd2565b61180c633b03905f60e11b6120a7565b831561185257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b611866336109f7565b610f45611872846111c4565b83604051602001610e6991906143c0565b61188c336109f7565b610f45611898846111c4565b82604051602001610a1e9190614266565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660dc6111ed565b6118df336109f7565b6040516355ee627560e01b81526001600160c01b031984166004820152610f459073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af415801561193c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611960919061408e565b83604051602001610e6991906140a7565b60ff8381166000908152600360205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af41580156119d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119fa9190614001565b15611a0457505050565b60ff808416600090815260046020908152604080832086851684528252808320858516845290915290205416610f4557604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610ce5565b611a6b336109f7565b610f45611a7984606e611ef2565b83604051602001610e699190614296565b611a93336109f7565b610a32611a9f836111c4565b82604051602001610a1e91906143c0565b611ab9336109f7565b610f45611ac7846078611ef2565b83604051602001610e699190613f67565b60ff81811660009081526003602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401610f94565b600080516020614776833981519152546001600160a01b031690565b6001546000906001600160a01b031663d39e60436078611155565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611baf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bf9190614501565b611bdc336109f7565b610a32610a4d836078611ef2565b611bf3336109f7565b610a32610a4d83606e611ef2565b6001546000906001600160a01b031663d39e604360d2611155565b611c25336109f7565b610a32611c3383608c611ef2565b82604051602001610a1e91906141a6565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af4158015611ca4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cc8919061408e565b9392505050565b611cd8336109f7565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d449190614189565b6001600160a01b031614611d9a5760405162461bcd60e51b815260206004820181905260248201527f496e7374616e636552656164657220696e7374616e6365206d69736d617463686044820152606401610ce5565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b611dc5336109f7565b610a32610a4d836118a9565b6001546000906001600160a01b031663d39e604360dc611155565b600080516020614776833981519152600080611e27611e09611b25565b8730611e19600460008a8c61451e565b611e2291614548565b6120cc565b9150915081611eea5763ffffffff811615611ec757825460ff60a01b1916600160a01b178355611e55611b25565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611e8493929190614578565b600060405180830381600087803b158015611e9e57600080fd5b505af1158015611eb2573d6000803e3d6000fd5b5050845460ff60a01b1916855550611eea9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610ce5565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401611c87565b610a3282826121d8565b610a3282826125fa565b610f4583838361292e565b60008051602061477683398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611fc6612dc9565b611fcf81612e14565b50565b6120136301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61201d8287612e25565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b8615150217815590506001810161208d83826145fe565b5061209e6303fb044760e21b6120a7565b50505050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161213b91906146bd565b600060405180830381855afa9150503d8060008114612176576040519150601f19603f3d011682016040523d82523d6000602084013e61217b565b606091505b509150915081156121cd5760408151106121ad57808060200190518101906121a391906146d9565b90945092506121cd565b60208151106121cd57808060200190518101906121ca9190614001565b93505b505094509492505050565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801561222b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061224f9190614501565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af41580156122a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122c89190614001565b6123145760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610ce5565b600083815260056020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af415801561237d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123a19190614001565b6123ed5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610ce5565b334360006123fa85611ad8565b61240557606461241b565b60ff808616600090815260036020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b9190910217855560008881526005602052604090209091506001016124a587826145fe565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612518573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061253c9190614501565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af415801561258c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125b09190614708565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a0015b60405180910390a150505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af415801561264c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126709190614001565b6126bc5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610ce5565b600082815260056020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015612728573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061274c9190614001565b6127985760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610ce5565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166127dc4390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801561286e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128929190614501565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156128e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129069190614708565b878686328760405161291e9796959493929190614725565b60405180910390a1505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015612980573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129a49190614001565b6129f05760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610ce5565b600083815260056020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015612a5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a809190614001565b612acc5760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610ce5565b6000858152600560205260409020600101612ae785826145fe565b508154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b90910416612b2c4390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612bbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612be29190614501565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015612c32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c569190614708565b8786863287604051612c6e9796959493929190614725565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612ce8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d0c9190614501565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015612d5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d809190614708565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c0016125e9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16612e1257604051631afcd79f60e31b815260040160405180910390fd5b565b612e1c612dc9565b611fcf81611f5d565b6001600160a01b038216612e7b5760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401610ce5565b600280546001600160a01b0319166001600160a01b038416179055610a32816001546001600160a01b031615612ed35760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610ce5565b6001600160a01b038116612efa5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003612f305760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610ce5565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526316c8f9ff60e01b60048201526301ffc9a790602401602060405180830381865afa925050508015612faa575060408051601f3d908101601f19168201909252612fa791810190614001565b60015b612fd25760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610ce5565b80610a325760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610ce5565b60006020828403121561300d57600080fd5b81356001600160e01b031981168114611cc857600080fd5b60006020828403121561303757600080fd5b5035919050565b6001600160601b0381168114611fcf57600080fd5b803561305e8161303e565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b038111828210171561309b5761309b613063565b60405290565b604051608081016001600160401b038111828210171561309b5761309b613063565b60405161012081016001600160401b038111828210171561309b5761309b613063565b60405161018081016001600160401b038111828210171561309b5761309b613063565b60405161020081016001600160401b038111828210171561309b5761309b613063565b6001600160a01b0381168114611fcf57600080fd5b803561305e8161312c565b60006040828403121561315e57600080fd5b613166613079565b9050813581526020820135602082015292915050565b8015158114611fcf57600080fd5b803561305e8161317c565b600060c082840312156131a757600080fd5b60405160a081018181106001600160401b03821117156131c9576131c9613063565b60405290508082356131da8161303e565b815260208301356131ea8161312c565b60208201526131fc846040850161314c565b6040820152608083013561320f8161317c565b606082015260a08301356132228161312c565b6080919091015292915050565b60008060e0838503121561324257600080fd5b823561324d8161303e565b915061325c8460208501613195565b90509250929050565b60ff81168114611fcf57600080fd5b60006020828403121561328657600080fd5b8135611cc881613265565b600080604083850312156132a457600080fd5b82356132af8161303e565b915060208301356132bf81613265565b809150509250929050565b60005b838110156132e55781810151838201526020016132cd565b50506000910152565b600081518084526133068160208601602086016132ca565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161338360c08401826001600160a01b03169052565b5060c083015160e08084015261339d6101008401826132ee565b949350505050565b63ffffffff81168114611fcf57600080fd5b600082601f8301126133c857600080fd5b81356001600160401b03808211156133e2576133e2613063565b604051601f8301601f19908116603f0116810190828211818310171561340a5761340a613063565b8160405283815286602085880101111561342357600080fd5b836020870160208301376000602085830101528094505050505092915050565b803564ffffffffff8116811461305e57600080fd5b60006080828403121561346a57600080fd5b6134726130a1565b9050813561347f816133a5565b81526020828101359082015260408201356001600160401b038111156134a457600080fd5b6134b0848285016133b7565b6040830152506134c260608301613443565b606082015292915050565b600080600080608085870312156134e357600080fd5b84356134ee8161303e565b935060208501356134fe816133a5565b925060408501356001600160401b0381111561351957600080fd5b61352587828801613458565b925050606085013561353681613265565b939692955090935050565b6001600160c01b031981168114611fcf57600080fd5b803561305e81613541565b60006040828403121561357457600080fd5b61357c613079565b905081356135898161303e565b815260208201356001600160401b038111156135a457600080fd5b6135b0848285016133b7565b60208301525092915050565b600080604083850312156135cf57600080fd5b82356135da81613541565b915060208301356001600160401b038111156135f557600080fd5b61360185828601613562565b9150509250929050565b60008060006060848603121561362057600080fd5b833561362b8161303e565b9250602084013561363b816133a5565b915060408401356001600160401b0381111561365657600080fd5b61366286828701613458565b9150509250925092565b6000610140828403121561367f57600080fd5b6136876130c3565b905061369282613053565b81526136a1836020840161314c565b602082015260608201356001600160401b038111156136bf57600080fd5b6136cb848285016133b7565b6040830152506080820135606082015260a0820135608082015260c082013560a082015260e082013560c0820152610100613707818401613443565b60e08301526137196101208401613443565b9082015292915050565b60008060006060848603121561373857600080fd5b83356137438161303e565b925060208401356001600160401b0381111561375e57600080fd5b61376a8682870161366c565b925050604084013561377b81613265565b809150509250925092565b60006020828403121561379857600080fd5b8135611cc88161312c565b6000602082840312156137b557600080fd5b8135611cc88161303e565b602081526000611cc860208301846132ee565b600080604083850312156137e657600080fd5b82356137f18161303e565b915060208301356001600160401b0381111561380c57600080fd5b6136018582860161366c565b6000610180828403121561382b57600080fd5b6138336130c3565b905061383e82613053565b815261384c60208301613141565b602082015260408201356040820152613868836060840161314c565b606082015261387a8360a0840161314c565b608082015261388c8360e0840161314c565b60a082015261389e610120830161318a565b60c08201526138b0610140830161318a565b60e08201526138c26101608301613141565b61010082015292915050565b60008060006101c084860312156138e457600080fd5b83356138ef8161303e565b92506138fe8560208601613818565b91506101a084013561377b81613265565b60006080828403121561392157600080fd5b6139296130a1565b9050813581526020820135602082015260408201356001600160401b038111156134a457600080fd5b6000806000806080858703121561396857600080fd5b84356139738161303e565b93506020850135613983816133a5565b925060408501356001600160401b0381111561399e57600080fd5b6135258782880161390f565b600080604083850312156139bd57600080fd5b82356132af81613541565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b60208152613a246020820183516139c8565b6000602083015160c08084015261339d60e08401826132ee565b60006102408284031215613a5157600080fd5b613a596130e6565b9050613a6482613141565b8152613a7260208301613141565b6020820152613a8360408301613053565b6040820152613a9460608301613053565b6060820152613aa6836080840161314c565b6080820152613ab88360c0840161314c565b60a0820152610100613acc8482850161314c565b60c0830152610140613ae08582860161314c565b60e0840152613af385610180860161314c565b82840152613b05856101c0860161314c565b610120840152613b18610200850161318a565b9083015250613b2a6102208301613141565b61016082015292915050565b6000806102608385031215613b4a57600080fd5b8235613b558161303e565b915061325c8460208501613a3e565b60008060008060808587031215613b7a57600080fd5b8435613b858161312c565b93506020850135613b958161312c565b92506040850135613ba58161303e565b915060608501356135368161312c565b803561ffff8116811461305e57600080fd5b60006102008284031215613bda57600080fd5b613be2613109565b9050613bed82613053565b8152613bfb60208301613053565b6020820152613c0c60408301613557565b6040820152613c1d60608301613557565b60608201526080820135608082015260a082013560a082015260c082013560c082015260e082013560e0820152610100808301356001600160401b0380821115613c6657600080fd5b613c72868387016133b7565b83850152610120925082850135915080821115613c8e57600080fd5b50613c9b858286016133b7565b828401525050610140613caf818401613bb5565b90820152610160613cc1838201613bb5565b9082015261018082810135908201526101a0613cde818401613443565b908201526101c0613cf0838201613443565b908201526101e0613719838201613443565b600080600060608486031215613d1757600080fd5b8335613d228161303e565b925060208401356001600160401b03811115613d3d57600080fd5b61376a86828701613bc7565b600080600060608486031215613d5e57600080fd5b8335613d698161303e565b92506020840135613d79816133a5565b915060408401356001600160401b03811115613d9457600080fd5b6136628682870161390f565b60a08101610fd582846139c8565b600080600060608486031215613dc357600080fd5b8335613dce81613541565b925060208401356001600160401b03811115613de957600080fd5b61376a86828701613562565b600080600060608486031215613e0a57600080fd5b8335613e1581613265565b92506020840135613e2581613265565b9150604084013561377b81613265565b60008060006102808486031215613e4b57600080fd5b8335613e568161303e565b9250613e658560208601613a3e565b915061026084013561377b81613265565b60008060408385031215613e8957600080fd5b8235613e948161303e565b915060208301356001600160401b03811115613eaf57600080fd5b61360185828601613bc7565b60008060006101008486031215613ed157600080fd5b8335613edc8161303e565b9250613eeb8560208601613195565b915060e084013561377b81613265565b6000806101a08385031215613f0f57600080fd5b8235613f1a8161303e565b915061325c8460208501613818565b60ff1981168114611fcf57600080fd5b60008060408385031215613f4c57600080fd5b8235613f5781613265565b915060208301356132bf81613f29565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015260c0830191906060850151151560808501528060808601511660a0850152505092915050565b600181811c90821680613fdb57607f821691505b602082108103613ffb57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561401357600080fd5b8151611cc88161317c565b60006020828403121561403057600080fd5b8151611cc88161303e565b6020815263ffffffff825116602082015260208201516040820152600060408301516080606084015261407160a08401826132ee565b905064ffffffffff60608501511660808401528091505092915050565b6000602082840312156140a057600080fd5b5051919050565b602081526001600160601b0382511660208201526000602083015160408084015261339d60608401826132ee565b602081526140ef6020820183516001600160601b03169052565b6000602083015161410d604084018280518252602090810151910152565b50604083015161014080608085015261412a6101608501836132ee565b9150606085015160a0850152608085015160c085015260a085015160e085015260c0850151610100818187015260e0870151915061417261012087018364ffffffffff169052565b9095015164ffffffffff1693019290925250919050565b60006020828403121561419b57600080fd5b8151611cc88161312c565b81516001600160601b031681526020808301516101808301916141d3908401826001600160a01b03169052565b506040830151604083015260608301516141fa606084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c08301518015156101208401525060e0830151801515610140840152506101008301516001600160a01b0381166101608401525b5092915050565b602081528151602082015260208201516040820152600060408301516080606084015261407160a08401826132ee565b81516001600160a01b03168152610240810160208301516142c260208401826001600160a01b03169052565b5060408301516142dd60408401826001600160601b03169052565b5060608301516142f860608401826001600160601b03169052565b506080830151614315608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c083015161010061434b8185018380518252602090810151910152565b60e0850151915061014061436b8186018480518252602090810151910152565b9085015180516101808601526020908101516101a086015261012086015180516101c087015201516101e08501528401511515610200840152506101608301516001600160a01b03811661022084015261425f565b602081526143da6020820183516001600160601b03169052565b600060208301516143f660408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e0830151610100818185015280850151915050610200610120818186015261446e6102208601846132ee565b9250808601519050610140601f19868503018187015261448e84836132ee565b9350808701519150506101606144a98187018361ffff169052565b86015190506101806144c08682018361ffff169052565b8601516101a08681019190915286015190506101c06144e78187018364ffffffffff169052565b86015190506101e06141728682018364ffffffffff169052565b60006020828403121561451357600080fd5b8151611cc881613265565b6000808585111561452e57600080fd5b8386111561453b57600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156145705780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b601f821115610f4557600081815260208120601f850160051c810160208610156145df5750805b601f850160051c820191505b81811015611eea578281556001016145eb565b81516001600160401b0381111561461757614617613063565b61462b816146258454613fc7565b846145b8565b602080601f83116001811461466057600084156146485750858301515b600019600386901b1c1916600185901b178555611eea565b600085815260208120601f198616915b8281101561468f57888601518255948401946001909101908401614670565b50858210156146ad5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082516146cf8184602087016132ca565b9190910192915050565b600080604083850312156146ec57600080fd5b82516146f78161317c565b60208401519092506132bf816133a5565b60006020828403121561471a57600080fd5b8151611cc881613f29565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e0019056fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a264697066735822122034b8217482059b09fe4cb63c3e8ab360b8bdea8aab3a14620e96a04a31c7f28064736f6c63430008140033",
|
2782
|
-
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106104285760003560e01c806382f65adb1161022b578063bf1db3f911610130578063e7cd37d4116100b8578063f7bc431c11610087578063f7bc431c146109b3578063f8b648ac146105af578063fb2cb101146109c6578063fe1f18d6146109d7578063fed3d63f146109ea57600080fd5b8063e7cd37d41461094f578063e8951ee614610531578063e9e96c7014610962578063f48016ce146109a057600080fd5b8063cde749f4116100ff578063cde749f414610919578063d2f21a2914610921578063d5b221bd1461054c578063dee3262314610934578063e1033e7d1461094757600080fd5b8063bf1db3f9146108f6578063bf7e214f14610909578063c2f1a2d21461054c578063ca600b1c1461091157600080fd5b80639df0280b116101b3578063a898967511610182578063a8989675146108aa578063a9cea142146108bd578063b68ec146146105af578063bc8d4000146108d0578063bd5947e3146108e357600080fd5b80639df0280b14610531578063a13df2ab146107d3578063a5961b4c146107e6578063a76ee0181461089757600080fd5b80638fb36037116101fa5780638fb360371461076657806391ff6eaa14610787578063976b0a771461079a5780639a960d52146107ad5780639d7421f4146107c057600080fd5b806382f65adb146105af578063893d20e81461073e5780638dc77f42146105315780638eaa6ac01461074657600080fd5b806340529b0f1161033157806360aa32aa116102b957806375b238fc1161028857806375b238fc146106fd57806375c82776146107055780637a4158021461054c5780637a9e5e4b146107185780637cef48421461072b57600080fd5b806360aa32aa146106a657806361f5f420146106b9578063644c45e0146106ca5780636b9bf08b146106f557600080fd5b806354f6127f1161030057806354f6127f146106595780635ab1bd53146106795780635d4345cc146105315780635dfa73db1461068a5780636071a68e1461069357600080fd5b806340529b0f14610531578063422c9d001461062b5780634288121d1461063e578063468a18671461064657600080fd5b80631c45fe7a116103b457806333bb0a971161038357806333bb0a97146105af57806337f135d7146105c257806338a699a4146105df5780633ca7c02a146105f25780633fc5ab981461061857600080fd5b80631c45fe7a1461054c5780631eff4b221461055f5780632781d443146105945780632f61088a1461059c57600080fd5b80630d358181116103fb5780630d358181146104e35780630f526f7d146105095780630fec111c1461051c57806310203d2c14610531578063138461e01461054457600080fd5b806301ffc9a71461042d57806302cd30711461046f57806309648a9d146104945780630b24cf5f146104ce575b600080fd5b61045a61043b366004612ffb565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6007546001600160a01b03165b6040516001600160a01b039091168152602001610466565b6104bc6104a2366004613025565b600090815260056020526040902054610100900460ff1690565b60405160ff9091168152602001610466565b6104e16104dc36600461322f565b6109f2565b005b6104bc6104f1366004613274565b60ff9081166000908152600360205260409020541690565b6104e1610517366004613291565b610a36565b610524610a53565b604051610466919061331a565b6104e161053f366004613291565b610c0c565b6104e1610c21565b6104e161055a3660046134cd565b610e43565b6105867f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610466565b610586600381565b6104e16105aa3660046135bc565b610e84565b6104e16105bd36600461360b565b610f1f565b6105ca600081565b60405163ffffffff9091168152602001610466565b61045a6105ed366004613025565b610f4a565b6106006001600160401b0381565b6040516001600160401b039091168152602001610466565b6104e1610626366004613723565b610fdb565b6104e1610639366004613786565b611001565b61047c61113e565b6105866106543660046137a3565b6111c4565b61066c610667366004613025565b61125d565b60405161046691906137c0565b6001546001600160a01b031661047c565b61060061271081565b6104e16106a13660046137d3565b611302565b6104e16106b43660046138ce565b611328565b6008546001600160a01b031661047c565b600154600160a01b90046001600160601b03166040516001600160601b039091168152602001610466565b61047c611350565b610600600081565b6104e1610713366004613952565b61136b565b6104e1610726366004613786565b611391565b6104e16107393660046139aa565b611414565b61047c61149e565b610759610754366004613025565b61157b565b6040516104669190613a12565b61076e6116bc565b6040516001600160e01b03199091168152602001610466565b6104e1610795366004613b36565b6116f5565b6104e16107a8366004613b64565b61171d565b6104e16107bb366004613d02565b61185d565b6104e16107ce366004613d49565b611883565b6105866107e13660046137a3565b6118a9565b61088a6107f4366004613025565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260056020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516104669190613da0565b6104e16108a5366004613dae565b6118d6565b6104e16108b8366004613df5565b611971565b6104e16108cb366004613e35565b611a62565b6104e16108de366004613e76565b611a8a565b6104e16108f1366004613ebb565b611ab0565b61045a610904366004613274565b611ad8565b61047c611b25565b61047c611b41565b6104bc611b5c565b6104e161092f366004613291565b611bd3565b6104e1610942366004613291565b611bea565b61047c611c01565b6104e161095d366004613efb565b611c1c565b61045a610970366004613df5565b60ff9283166000908152600460209081526040808320948616835293815283822092851682529190915220541690565b6105866109ae366004613f39565b611c44565b6104e16109c1366004613786565b611ccf565b6002546001600160a01b031661047c565b6104e16109e5366004613291565b611dbc565b61047c611dd1565b6109ff335b600036611dec565b610a32610a0d836078611ef2565b82604051602001610a1e9190613f67565b604051602081830303815290604052611f3e565b5050565b610a3f336109f7565b610a32610a4d83608c611ef2565b82611f48565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b90910416151591810191909152600182018054919291606084019190610afe90613fc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2a90613fc7565b8015610b775780601f10610b4c57610100808354040283529160200191610b77565b820191906000526020600020905b815481529060010190602001808311610b5a57829003601f168201915b50505050508152505090506040518060e00160405280610b95600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b03168152602001610bf06002546001600160a01b031690565b6001600160a01b03168152602001826060015181525091505090565b610c15336109f7565b610a32610a4d836111c4565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610c83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca79190614001565b15610cee576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b0316610d175760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610d60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d849190614001565b610dac576040516372657a5160e01b81526001600160a01b0382166004820152602401610ce5565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa158015610df6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1a919061401e565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b610e4c336109f7565b610e7e610e58856111c4565b83604051602001610e69919061403b565b60405160208183030381529060405283611f52565b50505050565b610e8d336109f7565b6040516355ee627560e01b81526001600160c01b031983166004820152610a329073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015610eea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0e919061408e565b82604051602001610a1e91906140a7565b610f28336109f7565b610f45610f34846111c4565b82604051602001610a1e919061403b565b505050565b60008181526005602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af4158015610fb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd59190614001565b92915050565b610fe4336109f7565b610f45610ff0846118a9565b83604051602001610e6991906140d5565b61100a336109f7565b6008546001600160a01b03161561105a5760405162461bcd60e51b8152602060048201526014602482015273109d5b991b1953585b9859d95c881a5cc81cd95d60621b6044820152606401610ce5565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c69190614189565b6001600160a01b03161461111c5760405162461bcd60e51b815260206004820152601f60248201527f42756e646c654d616e6167657220696e7374616e6365206d69736d61746368006044820152606401610ce5565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001546000906001600160a01b031663d39e6043606e5b6040516001600160e01b031960e084901b16815260ff9091166004820152600360248201526044015b602060405180830381865afa15801561119b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bf9190614189565b905090565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660d25b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af4158015611239573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd5919061408e565b600081815260056020526040902060010180546060919061127d90613fc7565b80601f01602080910402602001604051908101604052809291908181526020018280546112a990613fc7565b80156112f65780601f106112cb576101008083540402835291602001916112f6565b820191906000526020600020905b8154815290600101906020018083116112d957829003601f168201915b50505050509050919050565b61130b336109f7565b610a32611317836118a9565b82604051602001610a1e91906140d5565b611331336109f7565b610f4561133f84608c611ef2565b83604051602001610e6991906141a6565b6001546000906001600160a01b031663d39e6043608c611155565b611374336109f7565b610e7e611380856111c4565b83604051602001610e699190614266565b3361139a611b25565b6001600160a01b0316816001600160a01b0316146113d55760405162d1953b60e31b81526001600160a01b0382166004820152602401610ce5565b816001600160a01b03163b60000361140b576040516361798f2f60e11b81526001600160a01b0383166004820152602401610ce5565b610a3282611f5d565b61141d336109f7565b6040516355ee627560e01b81526001600160c01b031983166004820152610a329073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af415801561147a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4d919061408e565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611503573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115279190614001565b1561156b57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a9060240161117e565b506002546001600160a01b031690565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260056020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c0820152928352600181018054919284019161163390613fc7565b80601f016020809104026020016040519081016040528092919081815260200182805461165f90613fc7565b80156116ac5780601f10611681576101008083540402835291602001916116ac565b820191906000526020600020905b81548152906001019060200180831161168f57829003601f168201915b5050505050815250509050919050565b600080516020614776833981519152805460009190600160a01b900460ff166116e65760006116ef565b638fb3603760e01b5b91505090565b6116fe336109f7565b610a3261170c83606e611ef2565b82604051602001610a1e9190614296565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156117625750825b90506000826001600160401b0316600114801561177e5750303b155b90508115801561178c575080155b156117aa5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156117d457845460ff60401b1916600160401b1785555b6117dd89611fbe565b6117fc8888604660008a60405180602001604052806000815250611fd2565b61180c633b03905f60e11b6120a7565b831561185257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b611866336109f7565b610f45611872846111c4565b83604051602001610e6991906143c0565b61188c336109f7565b610f45611898846111c4565b82604051602001610a1e9190614266565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660dc6111ed565b6118df336109f7565b6040516355ee627560e01b81526001600160c01b031984166004820152610f459073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af415801561193c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611960919061408e565b83604051602001610e6991906140a7565b60ff8381166000908152600360205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af41580156119d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119fa9190614001565b15611a0457505050565b60ff808416600090815260046020908152604080832086851684528252808320858516845290915290205416610f4557604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610ce5565b611a6b336109f7565b610f45611a7984606e611ef2565b83604051602001610e699190614296565b611a93336109f7565b610a32611a9f836111c4565b82604051602001610a1e91906143c0565b611ab9336109f7565b610f45611ac7846078611ef2565b83604051602001610e699190613f67565b60ff81811660009081526003602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401610f94565b600080516020614776833981519152546001600160a01b031690565b6001546000906001600160a01b031663d39e60436078611155565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611baf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111bf9190614501565b611bdc336109f7565b610a32610a4d836078611ef2565b611bf3336109f7565b610a32610a4d83606e611ef2565b6001546000906001600160a01b031663d39e604360d2611155565b611c25336109f7565b610a32611c3383608c611ef2565b82604051602001610a1e91906141a6565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af4158015611ca4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cc8919061408e565b9392505050565b611cd8336109f7565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d449190614189565b6001600160a01b031614611d9a5760405162461bcd60e51b815260206004820181905260248201527f496e7374616e636552656164657220696e7374616e6365206d69736d617463686044820152606401610ce5565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b611dc5336109f7565b610a32610a4d836118a9565b6001546000906001600160a01b031663d39e604360dc611155565b600080516020614776833981519152600080611e27611e09611b25565b8730611e19600460008a8c61451e565b611e2291614548565b6120cc565b9150915081611eea5763ffffffff811615611ec757825460ff60a01b1916600160a01b178355611e55611b25565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611e8493929190614578565b600060405180830381600087803b158015611e9e57600080fd5b505af1158015611eb2573d6000803e3d6000fd5b5050845460ff60a01b1916855550611eea9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610ce5565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401611c87565b610a3282826121d8565b610a3282826125fa565b610f4583838361292e565b60008051602061477683398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611fc6612dc9565b611fcf81612e14565b50565b6120136301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61201d8287612e25565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b8615150217815590506001810161208d83826145fe565b5061209e6303fb044760e21b6120a7565b50505050505050565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161213b91906146bd565b600060405180830381855afa9150503d8060008114612176576040519150601f19603f3d011682016040523d82523d6000602084013e61217b565b606091505b509150915081156121cd5760408151106121ad57808060200190518101906121a391906146d9565b90945092506121cd565b60208151106121cd57808060200190518101906121ca9190614001565b93505b505094509492505050565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801561222b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061224f9190614501565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af41580156122a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122c89190614001565b6123145760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610ce5565b600083815260056020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af415801561237d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123a19190614001565b6123ed5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610ce5565b334360006123fa85611ad8565b61240557606461241b565b60ff808616600090815260036020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b9190910217855560008881526005602052604090209091506001016124a587826145fe565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612518573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061253c9190614501565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af415801561258c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125b09190614708565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a0015b60405180910390a150505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af415801561264c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126709190614001565b6126bc5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610ce5565b600082815260056020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015612728573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061274c9190614001565b6127985760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610ce5565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166127dc4390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801561286e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128929190614501565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156128e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129069190614708565b878686328760405161291e9796959493929190614725565b60405180910390a1505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015612980573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129a49190614001565b6129f05760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610ce5565b600083815260056020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015612a5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a809190614001565b612acc5760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610ce5565b6000858152600560205260409020600101612ae785826145fe565b508154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b90910416612b2c4390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612bbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612be29190614501565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015612c32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c569190614708565b8786863287604051612c6e9796959493929190614725565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612ce8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d0c9190614501565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015612d5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d809190614708565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c0016125e9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16612e1257604051631afcd79f60e31b815260040160405180910390fd5b565b612e1c612dc9565b611fcf81611f5d565b6001600160a01b038216612e7b5760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401610ce5565b600280546001600160a01b0319166001600160a01b038416179055610a32816001546001600160a01b031615612ed35760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401610ce5565b6001600160a01b038116612efa5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003612f305760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610ce5565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526316c8f9ff60e01b60048201526301ffc9a790602401602060405180830381865afa925050508015612faa575060408051601f3d908101601f19168201909252612fa791810190614001565b60015b612fd25760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610ce5565b80610a325760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610ce5565b60006020828403121561300d57600080fd5b81356001600160e01b031981168114611cc857600080fd5b60006020828403121561303757600080fd5b5035919050565b6001600160601b0381168114611fcf57600080fd5b803561305e8161303e565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b038111828210171561309b5761309b613063565b60405290565b604051608081016001600160401b038111828210171561309b5761309b613063565b60405161012081016001600160401b038111828210171561309b5761309b613063565b60405161018081016001600160401b038111828210171561309b5761309b613063565b60405161020081016001600160401b038111828210171561309b5761309b613063565b6001600160a01b0381168114611fcf57600080fd5b803561305e8161312c565b60006040828403121561315e57600080fd5b613166613079565b9050813581526020820135602082015292915050565b8015158114611fcf57600080fd5b803561305e8161317c565b600060c082840312156131a757600080fd5b60405160a081018181106001600160401b03821117156131c9576131c9613063565b60405290508082356131da8161303e565b815260208301356131ea8161312c565b60208201526131fc846040850161314c565b6040820152608083013561320f8161317c565b606082015260a08301356132228161312c565b6080919091015292915050565b60008060e0838503121561324257600080fd5b823561324d8161303e565b915061325c8460208501613195565b90509250929050565b60ff81168114611fcf57600080fd5b60006020828403121561328657600080fd5b8135611cc881613265565b600080604083850312156132a457600080fd5b82356132af8161303e565b915060208301356132bf81613265565b809150509250929050565b60005b838110156132e55781810151838201526020016132cd565b50506000910152565b600081518084526133068160208601602086016132ca565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161338360c08401826001600160a01b03169052565b5060c083015160e08084015261339d6101008401826132ee565b949350505050565b63ffffffff81168114611fcf57600080fd5b600082601f8301126133c857600080fd5b81356001600160401b03808211156133e2576133e2613063565b604051601f8301601f19908116603f0116810190828211818310171561340a5761340a613063565b8160405283815286602085880101111561342357600080fd5b836020870160208301376000602085830101528094505050505092915050565b803564ffffffffff8116811461305e57600080fd5b60006080828403121561346a57600080fd5b6134726130a1565b9050813561347f816133a5565b81526020828101359082015260408201356001600160401b038111156134a457600080fd5b6134b0848285016133b7565b6040830152506134c260608301613443565b606082015292915050565b600080600080608085870312156134e357600080fd5b84356134ee8161303e565b935060208501356134fe816133a5565b925060408501356001600160401b0381111561351957600080fd5b61352587828801613458565b925050606085013561353681613265565b939692955090935050565b6001600160c01b031981168114611fcf57600080fd5b803561305e81613541565b60006040828403121561357457600080fd5b61357c613079565b905081356135898161303e565b815260208201356001600160401b038111156135a457600080fd5b6135b0848285016133b7565b60208301525092915050565b600080604083850312156135cf57600080fd5b82356135da81613541565b915060208301356001600160401b038111156135f557600080fd5b61360185828601613562565b9150509250929050565b60008060006060848603121561362057600080fd5b833561362b8161303e565b9250602084013561363b816133a5565b915060408401356001600160401b0381111561365657600080fd5b61366286828701613458565b9150509250925092565b6000610140828403121561367f57600080fd5b6136876130c3565b905061369282613053565b81526136a1836020840161314c565b602082015260608201356001600160401b038111156136bf57600080fd5b6136cb848285016133b7565b6040830152506080820135606082015260a0820135608082015260c082013560a082015260e082013560c0820152610100613707818401613443565b60e08301526137196101208401613443565b9082015292915050565b60008060006060848603121561373857600080fd5b83356137438161303e565b925060208401356001600160401b0381111561375e57600080fd5b61376a8682870161366c565b925050604084013561377b81613265565b809150509250925092565b60006020828403121561379857600080fd5b8135611cc88161312c565b6000602082840312156137b557600080fd5b8135611cc88161303e565b602081526000611cc860208301846132ee565b600080604083850312156137e657600080fd5b82356137f18161303e565b915060208301356001600160401b0381111561380c57600080fd5b6136018582860161366c565b6000610180828403121561382b57600080fd5b6138336130c3565b905061383e82613053565b815261384c60208301613141565b602082015260408201356040820152613868836060840161314c565b606082015261387a8360a0840161314c565b608082015261388c8360e0840161314c565b60a082015261389e610120830161318a565b60c08201526138b0610140830161318a565b60e08201526138c26101608301613141565b61010082015292915050565b60008060006101c084860312156138e457600080fd5b83356138ef8161303e565b92506138fe8560208601613818565b91506101a084013561377b81613265565b60006080828403121561392157600080fd5b6139296130a1565b9050813581526020820135602082015260408201356001600160401b038111156134a457600080fd5b6000806000806080858703121561396857600080fd5b84356139738161303e565b93506020850135613983816133a5565b925060408501356001600160401b0381111561399e57600080fd5b6135258782880161390f565b600080604083850312156139bd57600080fd5b82356132af81613541565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b60208152613a246020820183516139c8565b6000602083015160c08084015261339d60e08401826132ee565b60006102408284031215613a5157600080fd5b613a596130e6565b9050613a6482613141565b8152613a7260208301613141565b6020820152613a8360408301613053565b6040820152613a9460608301613053565b6060820152613aa6836080840161314c565b6080820152613ab88360c0840161314c565b60a0820152610100613acc8482850161314c565b60c0830152610140613ae08582860161314c565b60e0840152613af385610180860161314c565b82840152613b05856101c0860161314c565b610120840152613b18610200850161318a565b9083015250613b2a6102208301613141565b61016082015292915050565b6000806102608385031215613b4a57600080fd5b8235613b558161303e565b915061325c8460208501613a3e565b60008060008060808587031215613b7a57600080fd5b8435613b858161312c565b93506020850135613b958161312c565b92506040850135613ba58161303e565b915060608501356135368161312c565b803561ffff8116811461305e57600080fd5b60006102008284031215613bda57600080fd5b613be2613109565b9050613bed82613053565b8152613bfb60208301613053565b6020820152613c0c60408301613557565b6040820152613c1d60608301613557565b60608201526080820135608082015260a082013560a082015260c082013560c082015260e082013560e0820152610100808301356001600160401b0380821115613c6657600080fd5b613c72868387016133b7565b83850152610120925082850135915080821115613c8e57600080fd5b50613c9b858286016133b7565b828401525050610140613caf818401613bb5565b90820152610160613cc1838201613bb5565b9082015261018082810135908201526101a0613cde818401613443565b908201526101c0613cf0838201613443565b908201526101e0613719838201613443565b600080600060608486031215613d1757600080fd5b8335613d228161303e565b925060208401356001600160401b03811115613d3d57600080fd5b61376a86828701613bc7565b600080600060608486031215613d5e57600080fd5b8335613d698161303e565b92506020840135613d79816133a5565b915060408401356001600160401b03811115613d9457600080fd5b6136628682870161390f565b60a08101610fd582846139c8565b600080600060608486031215613dc357600080fd5b8335613dce81613541565b925060208401356001600160401b03811115613de957600080fd5b61376a86828701613562565b600080600060608486031215613e0a57600080fd5b8335613e1581613265565b92506020840135613e2581613265565b9150604084013561377b81613265565b60008060006102808486031215613e4b57600080fd5b8335613e568161303e565b9250613e658560208601613a3e565b915061026084013561377b81613265565b60008060408385031215613e8957600080fd5b8235613e948161303e565b915060208301356001600160401b03811115613eaf57600080fd5b61360185828601613bc7565b60008060006101008486031215613ed157600080fd5b8335613edc8161303e565b9250613eeb8560208601613195565b915060e084013561377b81613265565b6000806101a08385031215613f0f57600080fd5b8235613f1a8161303e565b915061325c8460208501613818565b60ff1981168114611fcf57600080fd5b60008060408385031215613f4c57600080fd5b8235613f5781613265565b915060208301356132bf81613f29565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015260c0830191906060850151151560808501528060808601511660a0850152505092915050565b600181811c90821680613fdb57607f821691505b602082108103613ffb57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561401357600080fd5b8151611cc88161317c565b60006020828403121561403057600080fd5b8151611cc88161303e565b6020815263ffffffff825116602082015260208201516040820152600060408301516080606084015261407160a08401826132ee565b905064ffffffffff60608501511660808401528091505092915050565b6000602082840312156140a057600080fd5b5051919050565b602081526001600160601b0382511660208201526000602083015160408084015261339d60608401826132ee565b602081526140ef6020820183516001600160601b03169052565b6000602083015161410d604084018280518252602090810151910152565b50604083015161014080608085015261412a6101608501836132ee565b9150606085015160a0850152608085015160c085015260a085015160e085015260c0850151610100818187015260e0870151915061417261012087018364ffffffffff169052565b9095015164ffffffffff1693019290925250919050565b60006020828403121561419b57600080fd5b8151611cc88161312c565b81516001600160601b031681526020808301516101808301916141d3908401826001600160a01b03169052565b506040830151604083015260608301516141fa606084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c08301518015156101208401525060e0830151801515610140840152506101008301516001600160a01b0381166101608401525b5092915050565b602081528151602082015260208201516040820152600060408301516080606084015261407160a08401826132ee565b81516001600160a01b03168152610240810160208301516142c260208401826001600160a01b03169052565b5060408301516142dd60408401826001600160601b03169052565b5060608301516142f860608401826001600160601b03169052565b506080830151614315608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c083015161010061434b8185018380518252602090810151910152565b60e0850151915061014061436b8186018480518252602090810151910152565b9085015180516101808601526020908101516101a086015261012086015180516101c087015201516101e08501528401511515610200840152506101608301516001600160a01b03811661022084015261425f565b602081526143da6020820183516001600160601b03169052565b600060208301516143f660408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e0830151610100818185015280850151915050610200610120818186015261446e6102208601846132ee565b9250808601519050610140601f19868503018187015261448e84836132ee565b9350808701519150506101606144a98187018361ffff169052565b86015190506101806144c08682018361ffff169052565b8601516101a08681019190915286015190506101c06144e78187018364ffffffffff169052565b86015190506101e06141728682018364ffffffffff169052565b60006020828403121561451357600080fd5b8151611cc881613265565b6000808585111561452e57600080fd5b8386111561453b57600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156145705780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b601f821115610f4557600081815260208120601f850160051c810160208610156145df5750805b601f850160051c820191505b81811015611eea578281556001016145eb565b81516001600160401b0381111561461757614617613063565b61462b816146258454613fc7565b846145b8565b602080601f83116001811461466057600084156146485750858301515b600019600386901b1c1916600185901b178555611eea565b600085815260208120601f198616915b8281101561468f57888601518255948401946001909101908401614670565b50858210156146ad5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082516146cf8184602087016132ca565b9190910192915050565b600080604083850312156146ec57600080fd5b82516146f78161317c565b60208401519092506132bf816133a5565b60006020828403121561471a57600080fd5b8151611cc881613f29565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e0019056fef3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a264697066735822122034b8217482059b09fe4cb63c3e8ab360b8bdea8aab3a14620e96a04a31c7f28064736f6c63430008140033",
|
3019
|
+
"bytecode": "0x608060405234801561001057600080fd5b50615ef180620000216000396000f3fe608060405234801561001057600080fd5b506004361061046a5760003560e01c80637a9e5e4b1161024c578063bf1db3f911610146578063e7f7fb86116100c3578063f7c34ee011610087578063f7c34ee014610b04578063fb4a8e3414610b17578063fbc1a3a014610b2a578063fe1f18d614610b3d578063feb34b4414610b5057600080fd5b8063e7f7fb8614610a7a578063e9e96c7014610a8d578063f48016ce14610acb578063f7b442d114610ade578063f7bc431c14610af157600080fd5b8063cde749f41161010a578063cde749f414610a23578063d2f21a2914610a2b578063d5c9d77d14610a3e578063dee3262314610a51578063e5f6cd2714610a6457600080fd5b8063bf1db3f9146109e2578063bf7e214f146109f5578063c0c53b8b146109fd578063c14ef880146105b4578063ca0e7f0814610a1057600080fd5b8063a2842229116101d4578063a898967511610198578063a898967514610981578063ada9652e14610994578063af902500146109a9578063b6d7cd62146109bc578063bb1e0e59146109cf57600080fd5b8063a284222914610884578063a4eeee5914610897578063a5961b4c146108aa578063a671495e1461095b578063a76ee0181461096e57600080fd5b80638eaa6ac01161021b5780638eaa6ac01461080a5780638fb360371461082a57806397affbf51461084b5780639e90178c1461085e578063a1ef60e91461087157600080fd5b80637a9e5e4b146107c95780637cef4842146107dc57806381c2b282146107ef578063893d20e81461080257600080fd5b806336fc697e1161036857806359852426116102e557806361105e0e116102a957806361105e0e1461076257806361f5f42014610775578063644c45e014610786578063675393bf146107ae57806375b238fc146107c157600080fd5b806359852426146107225780635a8416b0146107355780635ab1bd53146107485780635d4345cc146105845780635dfa73db1461075957600080fd5b80633ca7c02a1161032c5780633ca7c02a146106ae57806340529b0f146106d4578063422c9d00146106e7578063468bce06146106fa57806354f6127f1461070257600080fd5b806336fc697e14610663578063375cfcaf146105b457806337f135d71461066b5780633870a7701461068857806338a699a41461069b57600080fd5b80630fec111c116103f65780632781d443116103ba5780632781d4431461060f57806327bb7a331461061757806329e63f621461062a5780632f61088a1461063d57806330a130ba1461065057600080fd5b80630fec111c14610597578063138461e0146105ac5780631cf40934146105b45780631eff4b22146105c7578063214cdb80146105fc57600080fd5b80630d3581811161043d5780630d358181146105255780630f526f7d1461054b5780630f6c29ef1461055e5780630f749a89146105715780630fad0eb11461058457600080fd5b806301ffc9a71461046f57806302cd3071146104b157806309648a9d146104d65780630cbc6b8914610510575b600080fd5b61049c61047d366004613f09565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6006546001600160a01b03165b6040516001600160a01b0390911681526020016104a8565b6104fe6104e4366004613f33565b600090815260046020526040902054610100900460ff1690565b60405160ff90911681526020016104a8565b61052361051e36600461417d565b610b63565b005b6104fe6105333660046141c9565b60ff9081166000908152600260205260409020541690565b6105236105593660046141e6565b610ba9565b61052361056c36600461439a565b610bca565b61052361057f36600461440c565b610bf7565b6105236105923660046141e6565b610d1d565b61059f610d34565b6040516104a89190614479565b610523610e87565b6105236105c236600461468a565b611089565b6105ee7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016104a8565b61052361060a366004613f09565b6110b1565b6105ee600381565b6105236106253660046146e2565b6110de565b610523610638366004614820565b611183565b61052361064b3660046148d2565b6111aa565b61052361065e366004614a11565b61125e565b6105236112fe565b610673600081565b60405163ffffffff90911681526020016104a8565b610523610696366004614a56565b611344565b61049c6106a9366004613f33565b61135a565b6106bc6001600160401b0381565b6040516001600160401b0390911681526020016104a8565b6105236106e23660046141e6565b6113ef565b6105236106f536600461440c565b611406565b6105236115ad565b610715610710366004613f33565b6115df565b6040516104a89190614a94565b610523610730366004614b70565b611684565b610523610743366004614bb7565b6116ac565b6001546001600160a01b03166104be565b6106bc61271081565b610523610770366004614cba565b61174c565b6007546001600160a01b03166104be565b600080516020615e7c833981519152546040516001600160601b0390911681526020016104a8565b6105236107bc36600461440c565b6117ec565b6106bc600081565b6105236107d736600461440c565b6118f8565b6105236107ea366004614d01565b61197b565b6105236107fd366004614d1f565b611a0a565b6104be611a31565b61081d610818366004613f33565b611b68565b6040516104a89190614dc8565b610832611ca9565b6040516001600160e01b031990911681526020016104a8565b610523610859366004614df4565b611ce1565b61052361086c366004614ebe565b611d09565b61052361087f366004614ef5565b611d31565b610523610892366004614d01565b611d58565b6105236108a5366004614fdd565b611da6565b61094e6108b8366004613f33565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260046020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516104a89190615024565b6105236109693660046150d5565b611dce565b61052361097c36600461511a565b611df6565b61052361098f366004615161565b611e96565b6105ee600080516020615e7c83398151915281565b6105236109b7366004614d01565b611f87565b6105236109ca366004615191565b611fd5565b6105236109dd3660046151c1565b611feb565b61049c6109f03660046141c9565b6121b0565b6104be6121fd565b610523610a0b3660046151ed565b612219565b610523610a1e36600461522d565b6123ed565b6104fe61248d565b610523610a393660046141e6565b612509565b610523610a4c366004615272565b612520565b610523610a5f3660046141e6565b612548565b60055461010090046001600160a01b03166104be565b610523610a883660046152b7565b61255f565b61049c610a9b366004615161565b60ff9283166000908152600360209081526040808320948616835293815283822092851682529190915220541690565b6105ee610ad9366004615308565b612739565b610523610aec366004615336565b6127c4565b610523610aff36600461440c565b6127ec565b610523610b12366004615377565b6128ac565b610523610b253660046153a5565b612923565b610523610b383660046153ec565b61294b565b610523610b4b3660046141e6565b612973565b610523610b5e36600461541a565b61298a565b610b70335b6000366129b2565b610ba4610b7e84606e612ab8565b83604051602001610b8f919061545f565b60405160208183030381529060405283612b04565b505050565b610bb233610b68565b610bc6610bc083608c612ab8565b82612fb5565b5050565b610bd333610b68565b610bf1610be085856132f9565b83604051602001610b8f919061550e565b50505050565b610c0033610b68565b60055461010090046001600160a01b031615610c475760055460405163e02ca03360e01b81526101009091046001600160a01b031660048201526024015b60405180910390fd5b610c4f6121fd565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cba9190615568565b6001600160a01b031614610cf557610cd06121fd565b6040516374150f9560e11b81526001600160a01b039091166004820152602401610c3e565b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610d2633610b68565b610bc6610bc08360d3612ab8565b6040805160e0808201835260008083526020830181905282840181905260608084018290526080840182905260a0840182905260c0840152835191820190935290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300919081906001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610de3611a31565b6001600160a01b03168152602001826001018054610e0090615585565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2c90615585565b8015610e795780601f10610e4e57610100808354040283529160200191610e79565b820191906000526020600020905b815481529060010190602001808311610e5c57829003601f168201915b505050505081525091505090565b6000600080516020615e7c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610ef6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1a91906155bf565b15610f465780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610c3e565b30610f596001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015610fa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc591906155bf565b610fed5760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610c3e565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015611041573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106591906155dc565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b61109233610b68565b610ba46110a08460d3612ab8565b83604051602001610b8f91906155f9565b6110b9613347565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6110e6613347565b6110f082876128ac565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30161117983826157cf565b5050505050505050565b61118c33610b68565b610bf16111998585613390565b83604051602001610b8f919061588e565b6111b333610b68565b6040516355ee627560e01b8152610bc69073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee6275906111f8906001600160c01b0319871690600401615902565b602060405180830381865af4158015611215573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112399190615917565b8260405160200161124a9190615930565b6040516020818303038152906040526133dd565b61126733610b68565b6040516355ee627560e01b8152610bc69073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee6275906112ac906001600160c01b0319871690600401615902565b602060405180830381865af41580156112c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ed9190615917565b8260405160200161124a919061595e565b611306613347565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61134d33610b68565b610ba4610bc084846132f9565b600081815260046020819052604080832054905163b2466acf60e01b815261010090910460ff169181019190915273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156113c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e991906155bf565b92915050565b6113f833610b68565b610bc6610bc083607a612ab8565b61140f33610b68565b6007546001600160a01b0316156114485760075460405163384c2dbd60e11b81526001600160a01b039091166004820152602401610c3e565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611490573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b49190615568565b6001600160a01b0316146114dd5760405163decb98c560e01b8152306004820152602401610c3e565b6114e56121fd565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561152c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115509190615568565b6001600160a01b03161461158b576115666121fd565b604051630312205960e41b81526001600160a01b039091166004820152602401610c3e565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6115b5613347565b6115bd6137f6565b6115c5613919565b6115cd613a0c565b6115d5613b1a565b6115dd613c46565b565b60008181526004602052604090206001018054606091906115ff90615585565b80601f016020809104026020016040519081016040528092919081815260200182805461162b90615585565b80156116785780601f1061164d57610100808354040283529160200191611678565b820191906000526020600020905b81548152906001019060200180831161165b57829003601f168201915b50505050509050919050565b61168d33610b68565b610ba461169b8460dc612ab8565b83604051602001610b8f9190615a0e565b6116b533610b68565b6040516355ee627560e01b8152610ba49073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee6275906116fa906001600160c01b0319881690600401615902565b602060405180830381865af4158015611717573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173b9190615917565b83604051602001610b8f919061595e565b61175533610b68565b6040516355ee627560e01b8152610ba49073__$9f290d768183857d0249ab5bb54619c5ab$__906355ee62759061179a906001600160c01b0319881690600401615902565b602060405180830381865af41580156117b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117db9190615917565b83604051602001610b8f9190615ade565b6117f4613347565b806001600160a01b03163b60000361182a5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c3e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa9250505080156118a4575060408051601f3d908101601f191682019092526118a1918101906155bf565b60015b6118cc5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c3e565b80610bc65760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610c3e565b50565b336119016121fd565b6001600160a01b0316816001600160a01b03161461193c5760405162d1953b60e31b81526001600160a01b0382166004820152602401610c3e565b816001600160a01b03163b600003611972576040516361798f2f60e11b81526001600160a01b0383166004820152602401610c3e565b610bc682613d02565b61198433610b68565b6040516355ee627560e01b8152610bc69073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee6275906119c9906001600160c01b0319871690600401615902565b602060405180830381865af41580156119e6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc09190615917565b611a1333610b68565b610ba4611a2084846132f9565b8260405160200161124a919061550e565b600080600080516020615e7c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611aa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac591906155bf565b15611b52576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b4c9190615568565b91505090565b54600160601b90046001600160a01b0316919050565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260046020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c08201529283526001810180549192840191611c2090615585565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4c90615585565b8015611c995780601f10611c6e57610100808354040283529160200191611c99565b820191906000526020600020905b815481529060010190602001808311611c7c57829003601f168201915b5050505050815250509050919050565b600080516020615e9c833981519152805460009190600160a01b900460ff16611cd3576000611b4c565b638fb3603760e01b91505090565b611cea33610b68565b610bc6611cf88360dc612ab8565b8260405160200161124a9190615a0e565b611d1233610b68565b610bc6611d20836078612ab8565b8260405160200161124a9190615b7a565b611d3a33610b68565b610ba4611d478484613390565b8260405160200161124a919061588e565b611d6133610b68565b6040516355ee627560e01b8152610bc69073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee6275906119c9906001600160c01b0319871690600401615902565b611daf33610b68565b610ba4611dbd84608c612ab8565b83604051602001610b8f9190615bee565b611dd733610b68565b610bc6611de583607a612ab8565b8260405160200161124a9190615c6f565b611dff33610b68565b6040516355ee627560e01b8152610ba49073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590611e44906001600160c01b0319881690600401615902565b602060405180830381865af4158015611e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e859190615917565b83604051602001610b8f9190615930565b60ff8381166000908152600260205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015611efb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f1f91906155bf565b15611f2957505050565b60ff808416600090815260036020908152604080832086851684528252808320858516845290915290205416610ba457604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610c3e565b611f9033610b68565b6040516355ee627560e01b8152610bc69073__$9f290d768183857d0249ab5bb54619c5ab$__906355ee6275906119c9906001600160c01b0319871690600401615902565b611fde33610b68565b610ba4610bc08484613390565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612034573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120589190615568565b6001600160a01b0316336001600160a01b03161461207557600080fd5b60055461010090046001600160a01b03166303014974612093613d63565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865afa1580156120d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120fb9190615917565b1561210857612108615ccd565b60055461010090046001600160a01b031663b428b0b0612126613d63565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af115801561217b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061219f91906155bf565b1515600114610bc657610bc6615ccd565b60ff81811660009081526002602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016113a8565b600080516020615e9c833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b031660008115801561225e5750825b90506000826001600160401b0316600114801561227a5750303b155b905081158015612288575080155b156122a65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156122d057845460ff60401b1916600160401b1785555b6001600160a01b0388166122f75760405163da1db49160e01b815260040160405180910390fd5b61230088613ddb565b600087905061238588826001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612347573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061236b91906155dc565b604660018b604051806020016040528060008152506110de565b61238d6115ad565b61239d633e1e17f360e11b6110b1565b50831561117957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b6123f633610b68565b6040516355ee627560e01b8152610bc69073__$9f290d768183857d0249ab5bb54619c5ab$__906355ee62759061243b906001600160c01b0319871690600401615902565b602060405180830381865af4158015612458573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247c9190615917565b8260405160200161124a9190615ade565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af41580156124e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125049190615ce3565b905090565b61251233610b68565b610bc6610bc0836078612ab8565b61252933610b68565b610bc661253783608c612ab8565b8260405160200161124a9190615bee565b61255133610b68565b610bc6610bc083606e612ab8565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cc9190615568565b6001600160a01b0316336001600160a01b0316146125e957600080fd5b60055461010090046001600160a01b031663b7d2b162612607613d63565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03861660248201526044016020604051808303816000875af115801561265c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061268091906155bf565b151560011461269157612691615ccd565b60055461010090046001600160a01b031663b428b0b06126af613d63565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af1158015612704573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061272891906155bf565b1515600114610ba457610ba4615ccd565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af4158015612799573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127bd9190615917565b9392505050565b6127cd33610b68565b610ba46127db846078612ab8565b83604051602001610b8f9190615b7a565b6127f533610b68565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa15801561283d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128619190615568565b6001600160a01b03161461288a576040516345789cf560e01b8152306004820152602401610c3e565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6128b4613347565b6128bd816117ec565b6128c56112fe565b6001600160a01b0382166128ec5760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020615e7c83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b61292c33610b68565b610ba461293a84607a612ab8565b83604051602001610b8f9190615c6f565b61295433610b68565b610bc661296283606e612ab8565b8260405160200161124a919061545f565b61297c33610b68565b610bc6610bc08360dc612ab8565b61299333610b68565b610bc66129a18360d3612ab8565b8260405160200161124a91906155f9565b600080516020615e9c8339815191526000806129ed6129cf6121fd565b87306129df600460008a8c615d00565b6129e891615d2a565b613dec565b9150915081612ab05763ffffffff811615612a8d57825460ff60a01b1916600160a01b178355612a1b6121fd565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612a4a93929190615d5a565b600060405180830381600087803b158015612a6457600080fd5b505af1158015612a78573d6000803e3d6000fd5b5050845460ff60a01b1916855550612ab09050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610c3e565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c89060440161277c565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015612b56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b7a91906155bf565b612bc65760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610c3e565b6000838152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015612c32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c5691906155bf565b612ca25760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610c3e565b6000858152600460205260409020600101612cbd85826157cf565b5060ff80841614612cdb57815461ff00191661010060ff8516021782555b8154620100003390810262010000600160b01b031983161784559063ffffffff600160b01b90910416612d0b4390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612d9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dc19190615ce3565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015612e11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e359190615d9a565b8588863287604051612e4d9796959493929190615db7565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612ec7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eeb9190615ce3565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015612f3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f5f9190615d9a565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c0015b60405180910390a150505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613007573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061302b91906155bf565b6130775760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610c3e565b6000828152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156130e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061310791906155bf565b6131535760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610c3e565b81546131639060ff168285611e96565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166131a74390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613239573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061325d9190615ce3565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156132ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132d19190615d9a565b85888632876040516132e99796959493929190615db7565b60405180910390a1505050505050565b604051635927341160e01b815262ffffff821660048201526001600160601b038316602482015260009073__$e1d43d4fb5c0494c5b7331f52c1ee41012$__9063592734119060440161277c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166115dd57604051631afcd79f60e31b815260040160405180910390fd5b604051637d56159160e11b815261ffff821660048201526001600160601b038316602482015260009073__$0e0c503522f35343ef1955427c5075b143$__9063faac2b229060440161277c565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613430573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134549190615ce3565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af41580156134a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134cd91906155bf565b6135195760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610c3e565b6000838152600460208190526040918290208054925163037c8cb160e51b815261010090930460ff16918301919091529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015613586573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135aa91906155bf565b6135f65760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610c3e565b33436000613603856121b0565b61360e576064613624565b60ff808616600090815260026020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b9190910217855560008881526004602052604090209091506001016136ae87826157cf565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613721573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137459190615ce3565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613795573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137b99190615d9a565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a001612fa4565b7f4bee8dc518469fb8c73831886b94afa96b3ef3e3ee55b9076720259192220ef08054606460ff19918216179091557ffb39f406c8d3ff86a211d5f8c6729c90fce2fed80808bb47b6dc39e975a7d4d68054821660019081179091557fe59968928be831d9cd5403370c74d9f1dac318690d88a2efef2b29079332ee4f80548316821790557fe78520cf30689bb50fce16ae1e25040217df710de55e9ed38f2b2722b2a984688054909216811790915560dc600090815260036020527fa093975c0a88af8b2bf4799c5b4be14d42fc326c2a331b9f3fb3caecbaa5104f90606e5b60ff1660ff16815260200190815260200160002060006138f560c890565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f7673bcbb3401a7cbae68f81d40eea2cf35afdaf7ecd016ebf3f02857fcc1260a8054606460ff1991821681179092557fa1c69de77e78d12e062170d002ba111ba52c8f452f3b0ca326991b7298fd7aaf80548216600190811790915560008381527f6dcc58afd04aec67a07f8168234edce351865815e87e6f9a62e977830ebfce226020527f5267f8fb4089eaca6dac10383f9a063927ca0092f9c59d7ca3b3d61812638b028054909316821790925591600391905b60ff1660ff16815260200190815260200160002060006139ee606e90565b60ff1660ff16815260200190815260200160002060006138f560d290565b7feb6856e0ae0d71a8a9e0bc42aca98fe96c3be13699c5c2d551c94a190e39043d8054600a60ff19918216179091557f4b5a0a5953a753e51be29e6e2b638995162612852ea3b46cff09cbac61f9cb568054821660019081179091557fb7939d1e06f7236b22c8e9bf344ab29b7c87eec9f53e55d389378ef7585ffd7e80548316821790557f158b1af96972c14cb1a5e39cbdbd793a3bc4f7c57c85ef22cf298bf517d6e0b380548316821790557f6160f9e22b3793ed435de7ac6b8dd0ee9d3110d626fe8135ffbb7d38470f229a8054909216811790915560d3600090815260036020527fb0b6d2d73fcb69de4c434c711239319c2c669ebf6407f36fc258ff9f98f803fa9060646138d7565b7f07f164294c9f742449ae2b41ea995596da138b514d14d5f233585da8f9297196805460ff199081166032179091557f1aaad14668ac20aeb8e1295d4016ff57ca4e7d9a5d4ddded8fc4cc10cbd645768054821660019081179091557fe2294421c3570585f969350452a698010f0ce83857042531533f0ca7234165f780548316821790557feb93440461501f307485f24463ff8620c39e2837c2198fa31ef327eef292510980548316821790557f3926cb2852d780b0b027970c63edfde054d1b6dcba3e6f9d5494b62c7dc3deaf8054603c93168317905560009182527f231d22bc68c6c7424a2515a4e071b27784f0905392cd70ddae2ffd652d4c9539602052907fd700005a49d8862b1ef2c6810c55bae24955f83aacc7171fdd88d9fc2fa1cd1d9060dc6138f5565b7fec56eb74d500f9b1bf8f0c5cc42ff5ed51e8d9e3a2ebb6e83a26383f297e0f1e8054606460ff1991821681179092557fe63626ccd25c67b6e53c3bd622e9c77c962be121e55eb3904854ac631eb8f9f080548216600190811790915560009283527fa74711c3b0f698a9dde85849aefdd2d454c235a4c161e6f019356c5ec8490c816020527fbed2f4a35dfbfdf2c5294831261529ea73fa5b94705484f5af8ba1bc3cb59362805490921681179091559060039060c86139d0565b600080516020615e9c83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516368aebf7b60e01b815261076c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015613db7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125049190615e07565b613de3613347565b6118f581613ef8565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613e5b9190615e30565b600060405180830381855afa9150503d8060008114613e96576040519150601f19603f3d011682016040523d82523d6000602084013e613e9b565b606091505b50915091508115613eed576040815110613ecd5780806020019051810190613ec39190615e4c565b9094509250613eed565b6020815110613eed5780806020019051810190613eea91906155bf565b93505b505094509492505050565b613f00613347565b6118f581613d02565b600060208284031215613f1b57600080fd5b81356001600160e01b0319811681146127bd57600080fd5b600060208284031215613f4557600080fd5b5035919050565b6001600160601b03811681146118f557600080fd5b8035613f6c81613f4c565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613fa957613fa9613f71565b60405290565b60405161010081016001600160401b0381118282101715613fa957613fa9613f71565b60405161022081016001600160401b0381118282101715613fa957613fa9613f71565b60405160c081016001600160401b0381118282101715613fa957613fa9613f71565b60405161012081016001600160401b0381118282101715613fa957613fa9613f71565b60405160e081016001600160401b0381118282101715613fa957613fa9613f71565b6001600160a01b03811681146118f557600080fd5b8035613f6c8161405c565b60006040828403121561408e57600080fd5b614096613f87565b9050813581526020820135602082015292915050565b80151581146118f557600080fd5b8035613f6c816140ac565b600061014082840312156140d857600080fd5b6140e0613faf565b90506140eb82614071565b81526140f960208301614071565b602082015261410a60408301613f61565b604082015261411b60608301613f61565b606082015261412d836080840161407c565b608082015261413f8360c0840161407c565b60a082015261415161010083016140ba565b60c08201526141636101208301614071565b60e082015292915050565b60ff811681146118f557600080fd5b6000806000610180848603121561419357600080fd5b833561419e81613f4c565b92506141ad85602086016140c5565b91506101608401356141be8161416e565b809150509250925092565b6000602082840312156141db57600080fd5b81356127bd8161416e565b600080604083850312156141f957600080fd5b823561420481613f4c565b915060208301356142148161416e565b809150509250929050565b803562ffffff81168114613f6c57600080fd5b61ffff811681146118f557600080fd5b8035613f6c81614232565b600082601f83011261425e57600080fd5b81356001600160401b038082111561427857614278613f71565b604051601f8301601f19908116603f011681019082821181831017156142a0576142a0613f71565b816040528381528660208588010111156142b957600080fd5b836020870160208301376000602085830101528094505050505092915050565b64ffffffffff811681146118f557600080fd5b8035613f6c816142d9565b60006080828403121561430957600080fd5b604051608081016001600160401b03828210818311171561432c5761432c613f71565b816040528293508435915061434082614232565b90825260208401359061435282613f4c565b816020840152604085013591508082111561436c57600080fd5b506143798582860161424d565b604083015250606083013561438d816142d9565b6060919091015292915050565b600080600080608085870312156143b057600080fd5b84356143bb81613f4c565b93506143c96020860161421f565b925060408501356001600160401b038111156143e457600080fd5b6143f0878288016142f7565b92505060608501356144018161416e565b939692955090935050565b60006020828403121561441e57600080fd5b81356127bd8161405c565b60005b8381101561444457818101518382015260200161442c565b50506000910152565b60008151808452614465816020860160208601614429565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516144e260c08401826001600160a01b03169052565b5060c083015160e0808401526144fc61010084018261444d565b949350505050565b6001600160c01b0319811681146118f557600080fd5b8035613f6c81614504565b6000610220828403121561453857600080fd5b614540613fd2565b905061454b82613f61565b815261455960208301613f61565b602082015261456a6040830161451a565b604082015261457b6060830161451a565b60608201526080820135608082015260a082013560a082015260c082013560c08201526145aa60e083016142ec565b60e0820152610100808301356001600160401b03808211156145cb57600080fd5b6145d78683870161424d565b838501526101209250828501359150808211156145f357600080fd5b506146008582860161424d565b828401525050610140614614818401614242565b90820152610160614626838201614242565b90820152610180614638838201613f61565b908201526101a061464a838201613f61565b908201526101c061465c8382016142ec565b908201526101e061466e8382016142ec565b908201526102006146808382016142ec565b9082015292915050565b60008060006060848603121561469f57600080fd5b83356146aa81613f4c565b925060208401356001600160401b038111156146c557600080fd5b6146d186828701614525565b92505060408401356141be8161416e565b60008060008060008060c087890312156146fb57600080fd5b86356147068161405c565b9550602087013561471681613f4c565b945060408701356147268161416e565b93506060870135614736816140ac565b925060808701356147468161405c565b915060a08701356001600160401b0381111561476157600080fd5b61476d89828a0161424d565b9150509295509295509295565b600060c0828403121561478c57600080fd5b614794613ff5565b905081356147a181613f4c565b815260208201356147b181613f4c565b602082015260408201356147c48161416e565b604082015260608201356147d78161416e565b606082015260808201356001600160401b038111156147f557600080fd5b6148018482850161424d565b60808301525060a0820135614815816142d9565b60a082015292915050565b6000806000806080858703121561483657600080fd5b843561484181613f4c565b9350602085013561485181614232565b925060408501356001600160401b0381111561486c57600080fd5b6143f08782880161477a565b60006040828403121561488a57600080fd5b614892613f87565b9050813561489f81613f4c565b815260208201356001600160401b038111156148ba57600080fd5b6148c68482850161424d565b60208301525092915050565b600080604083850312156148e557600080fd5b82356148f081614504565b915060208301356001600160401b0381111561490b57600080fd5b61491785828601614878565b9150509250929050565b63ffffffff811681146118f557600080fd5b8035613f6c81614921565b6000610120828403121561495157600080fd5b614959614017565b905081356001600160401b038082111561497257600080fd5b61497e8583860161424d565b83526020840135602084015260408401356040840152606084013560608401526149aa60808501614933565b60808401526149bb60a08501614933565b60a08401526149cc60c085016140ba565b60c08401526149dd60e085016140ba565b60e0840152610100915081840135818111156149f857600080fd5b614a048682870161424d565b8385015250505092915050565b60008060408385031215614a2457600080fd5b8235614a2f81614504565b915060208301356001600160401b03811115614a4a57600080fd5b6149178582860161493e565b600080600060608486031215614a6b57600080fd5b8335614a7681613f4c565b9250614a846020850161421f565b915060408401356141be8161416e565b6020815260006127bd602083018461444d565b60006101408284031215614aba57600080fd5b614ac2614017565b9050614acd82613f61565b8152614adc836020840161407c565b602082015260608201356001600160401b03811115614afa57600080fd5b614b068482850161424d565b604083015250614b1860808301613f61565b6060820152614b2960a08301613f61565b6080820152614b3a60c08301613f61565b60a0820152614b4b60e083016142ec565b60c0820152610100614b5e8184016142ec565b60e083015261468061012084016142ec565b600080600060608486031215614b8557600080fd5b8335614b9081613f4c565b925060208401356001600160401b03811115614bab57600080fd5b6146d186828701614aa7565b600080600060608486031215614bcc57600080fd5b8335614bd781614504565b925060208401356001600160401b03811115614bf257600080fd5b6146d18682870161493e565b600060e08284031215614c1057600080fd5b614c1861403a565b9050614c2382613f61565b815260208201356001600160401b0380821115614c3f57600080fd5b614c4b8583860161424d565b602084015260408401356040840152614c6660608501614933565b6060840152614c7760808501614933565b6080840152614c8860a085016142ec565b60a084015260c0840135915080821115614ca157600080fd5b50614cae8482850161424d565b60c08301525092915050565b600080600060608486031215614ccf57600080fd5b8335614cda81614504565b925060208401356001600160401b03811115614cf557600080fd5b6146d186828701614bfe565b60008060408385031215614d1457600080fd5b823561420481614504565b600080600060608486031215614d3457600080fd5b8335614d3f81613f4c565b9250614d4d6020850161421f565b915060408401356001600160401b03811115614d6857600080fd5b614d74868287016142f7565b9150509250925092565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b60208152614dda602082018351614d7e565b6000602083015160c0808401526144fc60e084018261444d565b60008060408385031215614e0757600080fd5b8235614e1281613f4c565b915060208301356001600160401b03811115614e2d57600080fd5b61491785828601614aa7565b60006101008284031215614e4c57600080fd5b614e54613ff5565b90508135614e6181613f4c565b81526020820135614e718161405c565b6020820152614e83836040840161407c565b6040820152614e95836080840161407c565b606082015260c0820135614ea88161405c565b608082015260e0919091013560a0820152919050565b6000806101208385031215614ed257600080fd5b8235614edd81613f4c565b9150614eec8460208501614e39565b90509250929050565b600080600060608486031215614f0a57600080fd5b8335614f1581613f4c565b92506020840135614f2581614232565b915060408401356001600160401b03811115614f4057600080fd5b614d748682870161477a565b600060e08284031215614f5e57600080fd5b614f6661403a565b905081356001600160401b0380821115614f7f57600080fd5b614f8b8583860161424d565b8352614f9960208501614071565b6020840152614faa60408501614071565b6040840152614fbb60608501614071565b6060840152614fcc60808501613f61565b6080840152614c8860a08501613f61565b600080600060608486031215614ff257600080fd5b8335614ffd81613f4c565b925060208401356001600160401b0381111561501857600080fd5b6146d186828701614f4c565b60a081016113e98284614d7e565b600060a0828403121561504457600080fd5b60405160a081016001600160401b03828210818311171561506757615067613f71565b816040528293508435915061507b82614504565b90825260208401359061508d826140ac565b81602084015260408501359150808211156150a757600080fd5b506150b48582860161424d565b60408301525060608301356060820152608083013560808201525092915050565b600080604083850312156150e857600080fd5b82356150f381613f4c565b915060208301356001600160401b0381111561510e57600080fd5b61491785828601615032565b60008060006060848603121561512f57600080fd5b833561513a81614504565b925060208401356001600160401b0381111561515557600080fd5b6146d186828701614878565b60008060006060848603121561517657600080fd5b83356151818161416e565b92506020840135614a848161416e565b6000806000606084860312156151a657600080fd5b83356151b181613f4c565b92506020840135614a8481614232565b600080604083850312156151d457600080fd5b82356151df8161405c565b946020939093013593505050565b60008060006060848603121561520257600080fd5b833561520d8161405c565b9250602084013561521d8161405c565b915060408401356141be8161405c565b6000806040838503121561524057600080fd5b823561524b81614504565b915060208301356001600160401b0381111561526657600080fd5b61491785828601614bfe565b6000806040838503121561528557600080fd5b823561529081613f4c565b915060208301356001600160401b038111156152ab57600080fd5b61491785828601614f4c565b6000806000606084860312156152cc57600080fd5b83356152d78161405c565b925060208401356152e78161405c565b929592945050506040919091013590565b60ff19811681146118f557600080fd5b6000806040838503121561531b57600080fd5b82356153268161416e565b91506020830135614214816152f8565b6000806000610140848603121561534c57600080fd5b833561535781613f4c565b92506153668560208601614e39565b91506101208401356141be8161416e565b6000806040838503121561538a57600080fd5b82356153958161405c565b915060208301356142148161405c565b6000806000606084860312156153ba57600080fd5b83356153c581613f4c565b925060208401356001600160401b038111156153e057600080fd5b6146d186828701615032565b600080610160838503121561540057600080fd5b823561540b81613f4c565b9150614eec84602085016140c5565b6000806040838503121561542d57600080fd5b823561543881613f4c565b915060208301356001600160401b0381111561545357600080fd5b61491785828601614525565b81516001600160a01b039081168252602080840151909116908201526040808301516001600160601b0316908201526060808301516101408301916154ae908401826001600160601b03169052565b5060808301516154cb608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301518015156101008401525060e08301516001600160a01b0381166101208401525092915050565b6020815261ffff82511660208201526001600160601b036020830151166040820152600060408301516080606084015261554b60a084018261444d565b905064ffffffffff60608501511660808401528091505092915050565b60006020828403121561557a57600080fd5b81516127bd8161405c565b600181811c9082168061559957607f821691505b6020821081036155b957634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156155d157600080fd5b81516127bd816140ac565b6000602082840312156155ee57600080fd5b81516127bd81613f4c565b602081526156136020820183516001600160601b03169052565b6000602083015161562f60408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e08301516101006156948185018364ffffffffff169052565b8085015191505061022061012081818601526156b461024086018461444d565b9250808601519050610140601f1986850301818701526156d4848361444d565b9350808701519150506101606156ef8187018361ffff169052565b86015190506101806157068682018361ffff169052565b86015190506101a0615722868201836001600160601b03169052565b86015190506101c061573e868201836001600160601b03169052565b86015190506101e06157588682018364ffffffffff169052565b86015190506102006157728682018364ffffffffff169052565b9095015164ffffffffff1693019290925250919050565b601f821115610ba457600081815260208120601f850160051c810160208610156157b05750805b601f850160051c820191505b81811015612ab0578281556001016157bc565b81516001600160401b038111156157e8576157e8613f71565b6157fc816157f68454615585565b84615789565b602080601f83116001811461583157600084156158195750858301515b600019600386901b1c1916600185901b178555612ab0565b600085815260208120601f198616915b8281101561586057888601518255948401946001909101908401615841565b508582101561587e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260ff6060840151166080830152608083015160c060a08401526158e560e084018261444d565b905064ffffffffff60a08501511660c08401528091505092915050565b6001600160c01b031991909116815260200190565b60006020828403121561592957600080fd5b5051919050565b602081526001600160601b038251166020820152600060208301516040808401526144fc606084018261444d565b602081526000825161012080602085015261597d61014085018361444d565b915060208501516040850152604085015160608501526060850151608085015260808501516159b460a086018263ffffffff169052565b5060a085015163ffffffff811660c08601525060c085015180151560e08601525060e08501516101006159ea8187018315159052565b860151858403601f1901838701529050615a04838261444d565b9695505050505050565b60208152615a286020820183516001600160601b03169052565b60006020830151615a46604084018280518252602090810151910152565b506040830151610140806080850152615a6361016085018361444d565b91506060850151615a7f60a08601826001600160601b03169052565b5060808501516001600160601b03811660c08601525060a08501516001600160601b03811660e08601525060c0850151610100615ac48187018364ffffffffff169052565b60e087015164ffffffffff81166101208801529150615772565b602081526001600160601b0382511660208201526000602083015160e06040840152615b0e61010084018261444d565b90506040840151606084015263ffffffff60608501511660808401526080840151615b4160a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525b5060c0840151838203601f190160e0850152615b71828261444d565b95945050505050565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015261010083019190606085015180516080860152602081015160a0860152915060808501511660c08401525060a09092015160e09091015290565b602081526000825160e06020840152615c0b61010084018261444d565b9050602084015160018060a01b03808216604086015280604087015116606086015280606087015116608086015250506080840151615c5560a08501826001600160601b03169052565b5060a08401516001600160601b03811660c0850152615b55565b602081526001600160401b0360c01b82511660208201526020820151151560408201526000604083015160a06060840152615cad60c084018261444d565b905060608401516080840152608084015160a08401528091505092915050565b634e487b7160e01b600052600160045260246000fd5b600060208284031215615cf557600080fd5b81516127bd8161416e565b60008085851115615d1057600080fd5b83861115615d1d57600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015615d525780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600060208284031215615dac57600080fd5b81516127bd816152f8565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e00190565b600060208284031215615e1957600080fd5b81516001600160401b03811681146127bd57600080fd5b60008251615e42818460208701614429565b9190910192915050565b60008060408385031215615e5f57600080fd5b8251615e6a816140ac565b60208401519092506142148161492156fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220b82f38d92a3b70e3bdb558b7c40ccb0b20e13fd5acc8a15981a4f445db4d0f9364736f6c63430008140033",
|
3020
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b506004361061046a5760003560e01c80637a9e5e4b1161024c578063bf1db3f911610146578063e7f7fb86116100c3578063f7c34ee011610087578063f7c34ee014610b04578063fb4a8e3414610b17578063fbc1a3a014610b2a578063fe1f18d614610b3d578063feb34b4414610b5057600080fd5b8063e7f7fb8614610a7a578063e9e96c7014610a8d578063f48016ce14610acb578063f7b442d114610ade578063f7bc431c14610af157600080fd5b8063cde749f41161010a578063cde749f414610a23578063d2f21a2914610a2b578063d5c9d77d14610a3e578063dee3262314610a51578063e5f6cd2714610a6457600080fd5b8063bf1db3f9146109e2578063bf7e214f146109f5578063c0c53b8b146109fd578063c14ef880146105b4578063ca0e7f0814610a1057600080fd5b8063a2842229116101d4578063a898967511610198578063a898967514610981578063ada9652e14610994578063af902500146109a9578063b6d7cd62146109bc578063bb1e0e59146109cf57600080fd5b8063a284222914610884578063a4eeee5914610897578063a5961b4c146108aa578063a671495e1461095b578063a76ee0181461096e57600080fd5b80638eaa6ac01161021b5780638eaa6ac01461080a5780638fb360371461082a57806397affbf51461084b5780639e90178c1461085e578063a1ef60e91461087157600080fd5b80637a9e5e4b146107c95780637cef4842146107dc57806381c2b282146107ef578063893d20e81461080257600080fd5b806336fc697e1161036857806359852426116102e557806361105e0e116102a957806361105e0e1461076257806361f5f42014610775578063644c45e014610786578063675393bf146107ae57806375b238fc146107c157600080fd5b806359852426146107225780635a8416b0146107355780635ab1bd53146107485780635d4345cc146105845780635dfa73db1461075957600080fd5b80633ca7c02a1161032c5780633ca7c02a146106ae57806340529b0f146106d4578063422c9d00146106e7578063468bce06146106fa57806354f6127f1461070257600080fd5b806336fc697e14610663578063375cfcaf146105b457806337f135d71461066b5780633870a7701461068857806338a699a41461069b57600080fd5b80630fec111c116103f65780632781d443116103ba5780632781d4431461060f57806327bb7a331461061757806329e63f621461062a5780632f61088a1461063d57806330a130ba1461065057600080fd5b80630fec111c14610597578063138461e0146105ac5780631cf40934146105b45780631eff4b22146105c7578063214cdb80146105fc57600080fd5b80630d3581811161043d5780630d358181146105255780630f526f7d1461054b5780630f6c29ef1461055e5780630f749a89146105715780630fad0eb11461058457600080fd5b806301ffc9a71461046f57806302cd3071146104b157806309648a9d146104d65780630cbc6b8914610510575b600080fd5b61049c61047d366004613f09565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6006546001600160a01b03165b6040516001600160a01b0390911681526020016104a8565b6104fe6104e4366004613f33565b600090815260046020526040902054610100900460ff1690565b60405160ff90911681526020016104a8565b61052361051e36600461417d565b610b63565b005b6104fe6105333660046141c9565b60ff9081166000908152600260205260409020541690565b6105236105593660046141e6565b610ba9565b61052361056c36600461439a565b610bca565b61052361057f36600461440c565b610bf7565b6105236105923660046141e6565b610d1d565b61059f610d34565b6040516104a89190614479565b610523610e87565b6105236105c236600461468a565b611089565b6105ee7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016104a8565b61052361060a366004613f09565b6110b1565b6105ee600381565b6105236106253660046146e2565b6110de565b610523610638366004614820565b611183565b61052361064b3660046148d2565b6111aa565b61052361065e366004614a11565b61125e565b6105236112fe565b610673600081565b60405163ffffffff90911681526020016104a8565b610523610696366004614a56565b611344565b61049c6106a9366004613f33565b61135a565b6106bc6001600160401b0381565b6040516001600160401b0390911681526020016104a8565b6105236106e23660046141e6565b6113ef565b6105236106f536600461440c565b611406565b6105236115ad565b610715610710366004613f33565b6115df565b6040516104a89190614a94565b610523610730366004614b70565b611684565b610523610743366004614bb7565b6116ac565b6001546001600160a01b03166104be565b6106bc61271081565b610523610770366004614cba565b61174c565b6007546001600160a01b03166104be565b600080516020615e7c833981519152546040516001600160601b0390911681526020016104a8565b6105236107bc36600461440c565b6117ec565b6106bc600081565b6105236107d736600461440c565b6118f8565b6105236107ea366004614d01565b61197b565b6105236107fd366004614d1f565b611a0a565b6104be611a31565b61081d610818366004613f33565b611b68565b6040516104a89190614dc8565b610832611ca9565b6040516001600160e01b031990911681526020016104a8565b610523610859366004614df4565b611ce1565b61052361086c366004614ebe565b611d09565b61052361087f366004614ef5565b611d31565b610523610892366004614d01565b611d58565b6105236108a5366004614fdd565b611da6565b61094e6108b8366004613f33565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260046020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516104a89190615024565b6105236109693660046150d5565b611dce565b61052361097c36600461511a565b611df6565b61052361098f366004615161565b611e96565b6105ee600080516020615e7c83398151915281565b6105236109b7366004614d01565b611f87565b6105236109ca366004615191565b611fd5565b6105236109dd3660046151c1565b611feb565b61049c6109f03660046141c9565b6121b0565b6104be6121fd565b610523610a0b3660046151ed565b612219565b610523610a1e36600461522d565b6123ed565b6104fe61248d565b610523610a393660046141e6565b612509565b610523610a4c366004615272565b612520565b610523610a5f3660046141e6565b612548565b60055461010090046001600160a01b03166104be565b610523610a883660046152b7565b61255f565b61049c610a9b366004615161565b60ff9283166000908152600360209081526040808320948616835293815283822092851682529190915220541690565b6105ee610ad9366004615308565b612739565b610523610aec366004615336565b6127c4565b610523610aff36600461440c565b6127ec565b610523610b12366004615377565b6128ac565b610523610b253660046153a5565b612923565b610523610b383660046153ec565b61294b565b610523610b4b3660046141e6565b612973565b610523610b5e36600461541a565b61298a565b610b70335b6000366129b2565b610ba4610b7e84606e612ab8565b83604051602001610b8f919061545f565b60405160208183030381529060405283612b04565b505050565b610bb233610b68565b610bc6610bc083608c612ab8565b82612fb5565b5050565b610bd333610b68565b610bf1610be085856132f9565b83604051602001610b8f919061550e565b50505050565b610c0033610b68565b60055461010090046001600160a01b031615610c475760055460405163e02ca03360e01b81526101009091046001600160a01b031660048201526024015b60405180910390fd5b610c4f6121fd565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cba9190615568565b6001600160a01b031614610cf557610cd06121fd565b6040516374150f9560e11b81526001600160a01b039091166004820152602401610c3e565b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610d2633610b68565b610bc6610bc08360d3612ab8565b6040805160e0808201835260008083526020830181905282840181905260608084018290526080840182905260a0840182905260c0840152835191820190935290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300919081906001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610de3611a31565b6001600160a01b03168152602001826001018054610e0090615585565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2c90615585565b8015610e795780601f10610e4e57610100808354040283529160200191610e79565b820191906000526020600020905b815481529060010190602001808311610e5c57829003601f168201915b505050505081525091505090565b6000600080516020615e7c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610ef6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1a91906155bf565b15610f465780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610c3e565b30610f596001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015610fa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc591906155bf565b610fed5760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610c3e565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015611041573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106591906155dc565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b61109233610b68565b610ba46110a08460d3612ab8565b83604051602001610b8f91906155f9565b6110b9613347565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b6110e6613347565b6110f082876128ac565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30161117983826157cf565b5050505050505050565b61118c33610b68565b610bf16111998585613390565b83604051602001610b8f919061588e565b6111b333610b68565b6040516355ee627560e01b8152610bc69073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee6275906111f8906001600160c01b0319871690600401615902565b602060405180830381865af4158015611215573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112399190615917565b8260405160200161124a9190615930565b6040516020818303038152906040526133dd565b61126733610b68565b6040516355ee627560e01b8152610bc69073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee6275906112ac906001600160c01b0319871690600401615902565b602060405180830381865af41580156112c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ed9190615917565b8260405160200161124a919061595e565b611306613347565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b61134d33610b68565b610ba4610bc084846132f9565b600081815260046020819052604080832054905163b2466acf60e01b815261010090910460ff169181019190915273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156113c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e991906155bf565b92915050565b6113f833610b68565b610bc6610bc083607a612ab8565b61140f33610b68565b6007546001600160a01b0316156114485760075460405163384c2dbd60e11b81526001600160a01b039091166004820152602401610c3e565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611490573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b49190615568565b6001600160a01b0316146114dd5760405163decb98c560e01b8152306004820152602401610c3e565b6114e56121fd565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561152c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115509190615568565b6001600160a01b03161461158b576115666121fd565b604051630312205960e41b81526001600160a01b039091166004820152602401610c3e565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6115b5613347565b6115bd6137f6565b6115c5613919565b6115cd613a0c565b6115d5613b1a565b6115dd613c46565b565b60008181526004602052604090206001018054606091906115ff90615585565b80601f016020809104026020016040519081016040528092919081815260200182805461162b90615585565b80156116785780601f1061164d57610100808354040283529160200191611678565b820191906000526020600020905b81548152906001019060200180831161165b57829003601f168201915b50505050509050919050565b61168d33610b68565b610ba461169b8460dc612ab8565b83604051602001610b8f9190615a0e565b6116b533610b68565b6040516355ee627560e01b8152610ba49073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee6275906116fa906001600160c01b0319881690600401615902565b602060405180830381865af4158015611717573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173b9190615917565b83604051602001610b8f919061595e565b61175533610b68565b6040516355ee627560e01b8152610ba49073__$9f290d768183857d0249ab5bb54619c5ab$__906355ee62759061179a906001600160c01b0319881690600401615902565b602060405180830381865af41580156117b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117db9190615917565b83604051602001610b8f9190615ade565b6117f4613347565b806001600160a01b03163b60000361182a5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c3e565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa9250505080156118a4575060408051601f3d908101601f191682019092526118a1918101906155bf565b60015b6118cc5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610c3e565b80610bc65760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610c3e565b50565b336119016121fd565b6001600160a01b0316816001600160a01b03161461193c5760405162d1953b60e31b81526001600160a01b0382166004820152602401610c3e565b816001600160a01b03163b600003611972576040516361798f2f60e11b81526001600160a01b0383166004820152602401610c3e565b610bc682613d02565b61198433610b68565b6040516355ee627560e01b8152610bc69073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee6275906119c9906001600160c01b0319871690600401615902565b602060405180830381865af41580156119e6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc09190615917565b611a1333610b68565b610ba4611a2084846132f9565b8260405160200161124a919061550e565b600080600080516020615e7c83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611aa1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac591906155bf565b15611b52576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b4c9190615568565b91505090565b54600160601b90046001600160a01b0316919050565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260046020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c08201529283526001810180549192840191611c2090615585565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4c90615585565b8015611c995780601f10611c6e57610100808354040283529160200191611c99565b820191906000526020600020905b815481529060010190602001808311611c7c57829003601f168201915b5050505050815250509050919050565b600080516020615e9c833981519152805460009190600160a01b900460ff16611cd3576000611b4c565b638fb3603760e01b91505090565b611cea33610b68565b610bc6611cf88360dc612ab8565b8260405160200161124a9190615a0e565b611d1233610b68565b610bc6611d20836078612ab8565b8260405160200161124a9190615b7a565b611d3a33610b68565b610ba4611d478484613390565b8260405160200161124a919061588e565b611d6133610b68565b6040516355ee627560e01b8152610bc69073__$5906aa3f06c54ee09b434647963e1d1ed0$__906355ee6275906119c9906001600160c01b0319871690600401615902565b611daf33610b68565b610ba4611dbd84608c612ab8565b83604051602001610b8f9190615bee565b611dd733610b68565b610bc6611de583607a612ab8565b8260405160200161124a9190615c6f565b611dff33610b68565b6040516355ee627560e01b8152610ba49073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590611e44906001600160c01b0319881690600401615902565b602060405180830381865af4158015611e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e859190615917565b83604051602001610b8f9190615930565b60ff8381166000908152600260205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015611efb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f1f91906155bf565b15611f2957505050565b60ff808416600090815260036020908152604080832086851684528252808320858516845290915290205416610ba457604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610c3e565b611f9033610b68565b6040516355ee627560e01b8152610bc69073__$9f290d768183857d0249ab5bb54619c5ab$__906355ee6275906119c9906001600160c01b0319871690600401615902565b611fde33610b68565b610ba4610bc08484613390565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015612034573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120589190615568565b6001600160a01b0316336001600160a01b03161461207557600080fd5b60055461010090046001600160a01b03166303014974612093613d63565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865afa1580156120d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120fb9190615917565b1561210857612108615ccd565b60055461010090046001600160a01b031663b428b0b0612126613d63565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af115801561217b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061219f91906155bf565b1515600114610bc657610bc6615ccd565b60ff81811660009081526002602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016113a8565b600080516020615e9c833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b031660008115801561225e5750825b90506000826001600160401b0316600114801561227a5750303b155b905081158015612288575080155b156122a65760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156122d057845460ff60401b1916600160401b1785555b6001600160a01b0388166122f75760405163da1db49160e01b815260040160405180910390fd5b61230088613ddb565b600087905061238588826001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015612347573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061236b91906155dc565b604660018b604051806020016040528060008152506110de565b61238d6115ad565b61239d633e1e17f360e11b6110b1565b50831561117957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b6123f633610b68565b6040516355ee627560e01b8152610bc69073__$9f290d768183857d0249ab5bb54619c5ab$__906355ee62759061243b906001600160c01b0319871690600401615902565b602060405180830381865af4158015612458573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247c9190615917565b8260405160200161124a9190615ade565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af41580156124e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125049190615ce3565b905090565b61251233610b68565b610bc6610bc0836078612ab8565b61252933610b68565b610bc661253783608c612ab8565b8260405160200161124a9190615bee565b61255133610b68565b610bc6610bc083606e612ab8565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cc9190615568565b6001600160a01b0316336001600160a01b0316146125e957600080fd5b60055461010090046001600160a01b031663b7d2b162612607613d63565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03861660248201526044016020604051808303816000875af115801561265c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061268091906155bf565b151560011461269157612691615ccd565b60055461010090046001600160a01b031663b428b0b06126af613d63565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af1158015612704573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061272891906155bf565b1515600114610ba457610ba4615ccd565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af4158015612799573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127bd9190615917565b9392505050565b6127cd33610b68565b610ba46127db846078612ab8565b83604051602001610b8f9190615b7a565b6127f533610b68565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa15801561283d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128619190615568565b6001600160a01b03161461288a576040516345789cf560e01b8152306004820152602401610c3e565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6128b4613347565b6128bd816117ec565b6128c56112fe565b6001600160a01b0382166128ec5760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020615e7c83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b61292c33610b68565b610ba461293a84607a612ab8565b83604051602001610b8f9190615c6f565b61295433610b68565b610bc661296283606e612ab8565b8260405160200161124a919061545f565b61297c33610b68565b610bc6610bc08360dc612ab8565b61299333610b68565b610bc66129a18360d3612ab8565b8260405160200161124a91906155f9565b600080516020615e9c8339815191526000806129ed6129cf6121fd565b87306129df600460008a8c615d00565b6129e891615d2a565b613dec565b9150915081612ab05763ffffffff811615612a8d57825460ff60a01b1916600160a01b178355612a1b6121fd565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612a4a93929190615d5a565b600060405180830381600087803b158015612a6457600080fd5b505af1158015612a78573d6000803e3d6000fd5b5050845460ff60a01b1916855550612ab09050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610c3e565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c89060440161277c565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015612b56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b7a91906155bf565b612bc65760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610c3e565b6000838152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015612c32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c5691906155bf565b612ca25760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610c3e565b6000858152600460205260409020600101612cbd85826157cf565b5060ff80841614612cdb57815461ff00191661010060ff8516021782555b8154620100003390810262010000600160b01b031983161784559063ffffffff600160b01b90910416612d0b4390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612d9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dc19190615ce3565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015612e11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e359190615d9a565b8588863287604051612e4d9796959493929190615db7565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015612ec7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eeb9190615ce3565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015612f3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f5f9190615d9a565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c0015b60405180910390a150505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613007573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061302b91906155bf565b6130775760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610c3e565b6000828152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156130e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061310791906155bf565b6131535760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610c3e565b81546131639060ff168285611e96565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166131a74390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613239573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061325d9190615ce3565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156132ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132d19190615d9a565b85888632876040516132e99796959493929190615db7565b60405180910390a1505050505050565b604051635927341160e01b815262ffffff821660048201526001600160601b038316602482015260009073__$e1d43d4fb5c0494c5b7331f52c1ee41012$__9063592734119060440161277c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166115dd57604051631afcd79f60e31b815260040160405180910390fd5b604051637d56159160e11b815261ffff821660048201526001600160601b038316602482015260009073__$0e0c503522f35343ef1955427c5075b143$__9063faac2b229060440161277c565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613430573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134549190615ce3565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af41580156134a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134cd91906155bf565b6135195760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610c3e565b6000838152600460208190526040918290208054925163037c8cb160e51b815261010090930460ff16918301919091529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015613586573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135aa91906155bf565b6135f65760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610c3e565b33436000613603856121b0565b61360e576064613624565b60ff808616600090815260026020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b9190910217855560008881526004602052604090209091506001016136ae87826157cf565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613721573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137459190615ce3565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613795573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137b99190615d9a565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a001612fa4565b7f4bee8dc518469fb8c73831886b94afa96b3ef3e3ee55b9076720259192220ef08054606460ff19918216179091557ffb39f406c8d3ff86a211d5f8c6729c90fce2fed80808bb47b6dc39e975a7d4d68054821660019081179091557fe59968928be831d9cd5403370c74d9f1dac318690d88a2efef2b29079332ee4f80548316821790557fe78520cf30689bb50fce16ae1e25040217df710de55e9ed38f2b2722b2a984688054909216811790915560dc600090815260036020527fa093975c0a88af8b2bf4799c5b4be14d42fc326c2a331b9f3fb3caecbaa5104f90606e5b60ff1660ff16815260200190815260200160002060006138f560c890565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f7673bcbb3401a7cbae68f81d40eea2cf35afdaf7ecd016ebf3f02857fcc1260a8054606460ff1991821681179092557fa1c69de77e78d12e062170d002ba111ba52c8f452f3b0ca326991b7298fd7aaf80548216600190811790915560008381527f6dcc58afd04aec67a07f8168234edce351865815e87e6f9a62e977830ebfce226020527f5267f8fb4089eaca6dac10383f9a063927ca0092f9c59d7ca3b3d61812638b028054909316821790925591600391905b60ff1660ff16815260200190815260200160002060006139ee606e90565b60ff1660ff16815260200190815260200160002060006138f560d290565b7feb6856e0ae0d71a8a9e0bc42aca98fe96c3be13699c5c2d551c94a190e39043d8054600a60ff19918216179091557f4b5a0a5953a753e51be29e6e2b638995162612852ea3b46cff09cbac61f9cb568054821660019081179091557fb7939d1e06f7236b22c8e9bf344ab29b7c87eec9f53e55d389378ef7585ffd7e80548316821790557f158b1af96972c14cb1a5e39cbdbd793a3bc4f7c57c85ef22cf298bf517d6e0b380548316821790557f6160f9e22b3793ed435de7ac6b8dd0ee9d3110d626fe8135ffbb7d38470f229a8054909216811790915560d3600090815260036020527fb0b6d2d73fcb69de4c434c711239319c2c669ebf6407f36fc258ff9f98f803fa9060646138d7565b7f07f164294c9f742449ae2b41ea995596da138b514d14d5f233585da8f9297196805460ff199081166032179091557f1aaad14668ac20aeb8e1295d4016ff57ca4e7d9a5d4ddded8fc4cc10cbd645768054821660019081179091557fe2294421c3570585f969350452a698010f0ce83857042531533f0ca7234165f780548316821790557feb93440461501f307485f24463ff8620c39e2837c2198fa31ef327eef292510980548316821790557f3926cb2852d780b0b027970c63edfde054d1b6dcba3e6f9d5494b62c7dc3deaf8054603c93168317905560009182527f231d22bc68c6c7424a2515a4e071b27784f0905392cd70ddae2ffd652d4c9539602052907fd700005a49d8862b1ef2c6810c55bae24955f83aacc7171fdd88d9fc2fa1cd1d9060dc6138f5565b7fec56eb74d500f9b1bf8f0c5cc42ff5ed51e8d9e3a2ebb6e83a26383f297e0f1e8054606460ff1991821681179092557fe63626ccd25c67b6e53c3bd622e9c77c962be121e55eb3904854ac631eb8f9f080548216600190811790915560009283527fa74711c3b0f698a9dde85849aefdd2d454c235a4c161e6f019356c5ec8490c816020527fbed2f4a35dfbfdf2c5294831261529ea73fa5b94705484f5af8ba1bc3cb59362805490921681179091559060039060c86139d0565b600080516020615e9c83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516368aebf7b60e01b815261076c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015613db7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125049190615e07565b613de3613347565b6118f581613ef8565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613e5b9190615e30565b600060405180830381855afa9150503d8060008114613e96576040519150601f19603f3d011682016040523d82523d6000602084013e613e9b565b606091505b50915091508115613eed576040815110613ecd5780806020019051810190613ec39190615e4c565b9094509250613eed565b6020815110613eed5780806020019051810190613eea91906155bf565b93505b505094509492505050565b613f00613347565b6118f581613d02565b600060208284031215613f1b57600080fd5b81356001600160e01b0319811681146127bd57600080fd5b600060208284031215613f4557600080fd5b5035919050565b6001600160601b03811681146118f557600080fd5b8035613f6c81613f4c565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613fa957613fa9613f71565b60405290565b60405161010081016001600160401b0381118282101715613fa957613fa9613f71565b60405161022081016001600160401b0381118282101715613fa957613fa9613f71565b60405160c081016001600160401b0381118282101715613fa957613fa9613f71565b60405161012081016001600160401b0381118282101715613fa957613fa9613f71565b60405160e081016001600160401b0381118282101715613fa957613fa9613f71565b6001600160a01b03811681146118f557600080fd5b8035613f6c8161405c565b60006040828403121561408e57600080fd5b614096613f87565b9050813581526020820135602082015292915050565b80151581146118f557600080fd5b8035613f6c816140ac565b600061014082840312156140d857600080fd5b6140e0613faf565b90506140eb82614071565b81526140f960208301614071565b602082015261410a60408301613f61565b604082015261411b60608301613f61565b606082015261412d836080840161407c565b608082015261413f8360c0840161407c565b60a082015261415161010083016140ba565b60c08201526141636101208301614071565b60e082015292915050565b60ff811681146118f557600080fd5b6000806000610180848603121561419357600080fd5b833561419e81613f4c565b92506141ad85602086016140c5565b91506101608401356141be8161416e565b809150509250925092565b6000602082840312156141db57600080fd5b81356127bd8161416e565b600080604083850312156141f957600080fd5b823561420481613f4c565b915060208301356142148161416e565b809150509250929050565b803562ffffff81168114613f6c57600080fd5b61ffff811681146118f557600080fd5b8035613f6c81614232565b600082601f83011261425e57600080fd5b81356001600160401b038082111561427857614278613f71565b604051601f8301601f19908116603f011681019082821181831017156142a0576142a0613f71565b816040528381528660208588010111156142b957600080fd5b836020870160208301376000602085830101528094505050505092915050565b64ffffffffff811681146118f557600080fd5b8035613f6c816142d9565b60006080828403121561430957600080fd5b604051608081016001600160401b03828210818311171561432c5761432c613f71565b816040528293508435915061434082614232565b90825260208401359061435282613f4c565b816020840152604085013591508082111561436c57600080fd5b506143798582860161424d565b604083015250606083013561438d816142d9565b6060919091015292915050565b600080600080608085870312156143b057600080fd5b84356143bb81613f4c565b93506143c96020860161421f565b925060408501356001600160401b038111156143e457600080fd5b6143f0878288016142f7565b92505060608501356144018161416e565b939692955090935050565b60006020828403121561441e57600080fd5b81356127bd8161405c565b60005b8381101561444457818101518382015260200161442c565b50506000910152565b60008151808452614465816020860160208601614429565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516144e260c08401826001600160a01b03169052565b5060c083015160e0808401526144fc61010084018261444d565b949350505050565b6001600160c01b0319811681146118f557600080fd5b8035613f6c81614504565b6000610220828403121561453857600080fd5b614540613fd2565b905061454b82613f61565b815261455960208301613f61565b602082015261456a6040830161451a565b604082015261457b6060830161451a565b60608201526080820135608082015260a082013560a082015260c082013560c08201526145aa60e083016142ec565b60e0820152610100808301356001600160401b03808211156145cb57600080fd5b6145d78683870161424d565b838501526101209250828501359150808211156145f357600080fd5b506146008582860161424d565b828401525050610140614614818401614242565b90820152610160614626838201614242565b90820152610180614638838201613f61565b908201526101a061464a838201613f61565b908201526101c061465c8382016142ec565b908201526101e061466e8382016142ec565b908201526102006146808382016142ec565b9082015292915050565b60008060006060848603121561469f57600080fd5b83356146aa81613f4c565b925060208401356001600160401b038111156146c557600080fd5b6146d186828701614525565b92505060408401356141be8161416e565b60008060008060008060c087890312156146fb57600080fd5b86356147068161405c565b9550602087013561471681613f4c565b945060408701356147268161416e565b93506060870135614736816140ac565b925060808701356147468161405c565b915060a08701356001600160401b0381111561476157600080fd5b61476d89828a0161424d565b9150509295509295509295565b600060c0828403121561478c57600080fd5b614794613ff5565b905081356147a181613f4c565b815260208201356147b181613f4c565b602082015260408201356147c48161416e565b604082015260608201356147d78161416e565b606082015260808201356001600160401b038111156147f557600080fd5b6148018482850161424d565b60808301525060a0820135614815816142d9565b60a082015292915050565b6000806000806080858703121561483657600080fd5b843561484181613f4c565b9350602085013561485181614232565b925060408501356001600160401b0381111561486c57600080fd5b6143f08782880161477a565b60006040828403121561488a57600080fd5b614892613f87565b9050813561489f81613f4c565b815260208201356001600160401b038111156148ba57600080fd5b6148c68482850161424d565b60208301525092915050565b600080604083850312156148e557600080fd5b82356148f081614504565b915060208301356001600160401b0381111561490b57600080fd5b61491785828601614878565b9150509250929050565b63ffffffff811681146118f557600080fd5b8035613f6c81614921565b6000610120828403121561495157600080fd5b614959614017565b905081356001600160401b038082111561497257600080fd5b61497e8583860161424d565b83526020840135602084015260408401356040840152606084013560608401526149aa60808501614933565b60808401526149bb60a08501614933565b60a08401526149cc60c085016140ba565b60c08401526149dd60e085016140ba565b60e0840152610100915081840135818111156149f857600080fd5b614a048682870161424d565b8385015250505092915050565b60008060408385031215614a2457600080fd5b8235614a2f81614504565b915060208301356001600160401b03811115614a4a57600080fd5b6149178582860161493e565b600080600060608486031215614a6b57600080fd5b8335614a7681613f4c565b9250614a846020850161421f565b915060408401356141be8161416e565b6020815260006127bd602083018461444d565b60006101408284031215614aba57600080fd5b614ac2614017565b9050614acd82613f61565b8152614adc836020840161407c565b602082015260608201356001600160401b03811115614afa57600080fd5b614b068482850161424d565b604083015250614b1860808301613f61565b6060820152614b2960a08301613f61565b6080820152614b3a60c08301613f61565b60a0820152614b4b60e083016142ec565b60c0820152610100614b5e8184016142ec565b60e083015261468061012084016142ec565b600080600060608486031215614b8557600080fd5b8335614b9081613f4c565b925060208401356001600160401b03811115614bab57600080fd5b6146d186828701614aa7565b600080600060608486031215614bcc57600080fd5b8335614bd781614504565b925060208401356001600160401b03811115614bf257600080fd5b6146d18682870161493e565b600060e08284031215614c1057600080fd5b614c1861403a565b9050614c2382613f61565b815260208201356001600160401b0380821115614c3f57600080fd5b614c4b8583860161424d565b602084015260408401356040840152614c6660608501614933565b6060840152614c7760808501614933565b6080840152614c8860a085016142ec565b60a084015260c0840135915080821115614ca157600080fd5b50614cae8482850161424d565b60c08301525092915050565b600080600060608486031215614ccf57600080fd5b8335614cda81614504565b925060208401356001600160401b03811115614cf557600080fd5b6146d186828701614bfe565b60008060408385031215614d1457600080fd5b823561420481614504565b600080600060608486031215614d3457600080fd5b8335614d3f81613f4c565b9250614d4d6020850161421f565b915060408401356001600160401b03811115614d6857600080fd5b614d74868287016142f7565b9150509250925092565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b60208152614dda602082018351614d7e565b6000602083015160c0808401526144fc60e084018261444d565b60008060408385031215614e0757600080fd5b8235614e1281613f4c565b915060208301356001600160401b03811115614e2d57600080fd5b61491785828601614aa7565b60006101008284031215614e4c57600080fd5b614e54613ff5565b90508135614e6181613f4c565b81526020820135614e718161405c565b6020820152614e83836040840161407c565b6040820152614e95836080840161407c565b606082015260c0820135614ea88161405c565b608082015260e0919091013560a0820152919050565b6000806101208385031215614ed257600080fd5b8235614edd81613f4c565b9150614eec8460208501614e39565b90509250929050565b600080600060608486031215614f0a57600080fd5b8335614f1581613f4c565b92506020840135614f2581614232565b915060408401356001600160401b03811115614f4057600080fd5b614d748682870161477a565b600060e08284031215614f5e57600080fd5b614f6661403a565b905081356001600160401b0380821115614f7f57600080fd5b614f8b8583860161424d565b8352614f9960208501614071565b6020840152614faa60408501614071565b6040840152614fbb60608501614071565b6060840152614fcc60808501613f61565b6080840152614c8860a08501613f61565b600080600060608486031215614ff257600080fd5b8335614ffd81613f4c565b925060208401356001600160401b0381111561501857600080fd5b6146d186828701614f4c565b60a081016113e98284614d7e565b600060a0828403121561504457600080fd5b60405160a081016001600160401b03828210818311171561506757615067613f71565b816040528293508435915061507b82614504565b90825260208401359061508d826140ac565b81602084015260408501359150808211156150a757600080fd5b506150b48582860161424d565b60408301525060608301356060820152608083013560808201525092915050565b600080604083850312156150e857600080fd5b82356150f381613f4c565b915060208301356001600160401b0381111561510e57600080fd5b61491785828601615032565b60008060006060848603121561512f57600080fd5b833561513a81614504565b925060208401356001600160401b0381111561515557600080fd5b6146d186828701614878565b60008060006060848603121561517657600080fd5b83356151818161416e565b92506020840135614a848161416e565b6000806000606084860312156151a657600080fd5b83356151b181613f4c565b92506020840135614a8481614232565b600080604083850312156151d457600080fd5b82356151df8161405c565b946020939093013593505050565b60008060006060848603121561520257600080fd5b833561520d8161405c565b9250602084013561521d8161405c565b915060408401356141be8161405c565b6000806040838503121561524057600080fd5b823561524b81614504565b915060208301356001600160401b0381111561526657600080fd5b61491785828601614bfe565b6000806040838503121561528557600080fd5b823561529081613f4c565b915060208301356001600160401b038111156152ab57600080fd5b61491785828601614f4c565b6000806000606084860312156152cc57600080fd5b83356152d78161405c565b925060208401356152e78161405c565b929592945050506040919091013590565b60ff19811681146118f557600080fd5b6000806040838503121561531b57600080fd5b82356153268161416e565b91506020830135614214816152f8565b6000806000610140848603121561534c57600080fd5b833561535781613f4c565b92506153668560208601614e39565b91506101208401356141be8161416e565b6000806040838503121561538a57600080fd5b82356153958161405c565b915060208301356142148161405c565b6000806000606084860312156153ba57600080fd5b83356153c581613f4c565b925060208401356001600160401b038111156153e057600080fd5b6146d186828701615032565b600080610160838503121561540057600080fd5b823561540b81613f4c565b9150614eec84602085016140c5565b6000806040838503121561542d57600080fd5b823561543881613f4c565b915060208301356001600160401b0381111561545357600080fd5b61491785828601614525565b81516001600160a01b039081168252602080840151909116908201526040808301516001600160601b0316908201526060808301516101408301916154ae908401826001600160601b03169052565b5060808301516154cb608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301518015156101008401525060e08301516001600160a01b0381166101208401525092915050565b6020815261ffff82511660208201526001600160601b036020830151166040820152600060408301516080606084015261554b60a084018261444d565b905064ffffffffff60608501511660808401528091505092915050565b60006020828403121561557a57600080fd5b81516127bd8161405c565b600181811c9082168061559957607f821691505b6020821081036155b957634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156155d157600080fd5b81516127bd816140ac565b6000602082840312156155ee57600080fd5b81516127bd81613f4c565b602081526156136020820183516001600160601b03169052565b6000602083015161562f60408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e08301516101006156948185018364ffffffffff169052565b8085015191505061022061012081818601526156b461024086018461444d565b9250808601519050610140601f1986850301818701526156d4848361444d565b9350808701519150506101606156ef8187018361ffff169052565b86015190506101806157068682018361ffff169052565b86015190506101a0615722868201836001600160601b03169052565b86015190506101c061573e868201836001600160601b03169052565b86015190506101e06157588682018364ffffffffff169052565b86015190506102006157728682018364ffffffffff169052565b9095015164ffffffffff1693019290925250919050565b601f821115610ba457600081815260208120601f850160051c810160208610156157b05750805b601f850160051c820191505b81811015612ab0578281556001016157bc565b81516001600160401b038111156157e8576157e8613f71565b6157fc816157f68454615585565b84615789565b602080601f83116001811461583157600084156158195750858301515b600019600386901b1c1916600185901b178555612ab0565b600085815260208120601f198616915b8281101561586057888601518255948401946001909101908401615841565b508582101561587e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260ff6060840151166080830152608083015160c060a08401526158e560e084018261444d565b905064ffffffffff60a08501511660c08401528091505092915050565b6001600160c01b031991909116815260200190565b60006020828403121561592957600080fd5b5051919050565b602081526001600160601b038251166020820152600060208301516040808401526144fc606084018261444d565b602081526000825161012080602085015261597d61014085018361444d565b915060208501516040850152604085015160608501526060850151608085015260808501516159b460a086018263ffffffff169052565b5060a085015163ffffffff811660c08601525060c085015180151560e08601525060e08501516101006159ea8187018315159052565b860151858403601f1901838701529050615a04838261444d565b9695505050505050565b60208152615a286020820183516001600160601b03169052565b60006020830151615a46604084018280518252602090810151910152565b506040830151610140806080850152615a6361016085018361444d565b91506060850151615a7f60a08601826001600160601b03169052565b5060808501516001600160601b03811660c08601525060a08501516001600160601b03811660e08601525060c0850151610100615ac48187018364ffffffffff169052565b60e087015164ffffffffff81166101208801529150615772565b602081526001600160601b0382511660208201526000602083015160e06040840152615b0e61010084018261444d565b90506040840151606084015263ffffffff60608501511660808401526080840151615b4160a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525b5060c0840151838203601f190160e0850152615b71828261444d565b95945050505050565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015261010083019190606085015180516080860152602081015160a0860152915060808501511660c08401525060a09092015160e09091015290565b602081526000825160e06020840152615c0b61010084018261444d565b9050602084015160018060a01b03808216604086015280604087015116606086015280606087015116608086015250506080840151615c5560a08501826001600160601b03169052565b5060a08401516001600160601b03811660c0850152615b55565b602081526001600160401b0360c01b82511660208201526020820151151560408201526000604083015160a06060840152615cad60c084018261444d565b905060608401516080840152608084015160a08401528091505092915050565b634e487b7160e01b600052600160045260246000fd5b600060208284031215615cf557600080fd5b81516127bd8161416e565b60008085851115615d1057600080fd5b83861115615d1d57600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015615d525780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600060208284031215615dac57600080fd5b81516127bd816152f8565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e00190565b600060208284031215615e1957600080fd5b81516001600160401b03811681146127bd57600080fd5b60008251615e42818460208701614429565b9190910192915050565b60008060408385031215615e5f57600080fd5b8251615e6a816140ac565b60208401519092506142148161492156fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220b82f38d92a3b70e3bdb558b7c40ccb0b20e13fd5acc8a15981a4f445db4d0f9364736f6c63430008140033",
|
2783
3021
|
"linkReferences": {
|
3022
|
+
"contracts/types/ClaimId.sol": {
|
3023
|
+
"ClaimIdLib": [
|
3024
|
+
{
|
3025
|
+
"length": 20,
|
3026
|
+
"start": 13276
|
3027
|
+
}
|
3028
|
+
]
|
3029
|
+
},
|
3030
|
+
"contracts/types/DistributorType.sol": {
|
3031
|
+
"DistributorTypeLib": [
|
3032
|
+
{
|
3033
|
+
"length": 20,
|
3034
|
+
"start": 4763
|
3035
|
+
},
|
3036
|
+
{
|
3037
|
+
"length": 20,
|
3038
|
+
"start": 5865
|
3039
|
+
},
|
3040
|
+
{
|
3041
|
+
"length": 20,
|
3042
|
+
"start": 7573
|
3043
|
+
}
|
3044
|
+
]
|
3045
|
+
},
|
2784
3046
|
"contracts/types/Key32.sol": {
|
2785
3047
|
"Key32Lib": [
|
2786
3048
|
{
|
2787
3049
|
"length": 20,
|
2788
|
-
"start":
|
3050
|
+
"start": 10111
|
2789
3051
|
},
|
2790
3052
|
{
|
2791
3053
|
"length": 20,
|
2792
|
-
"start":
|
3054
|
+
"start": 11652
|
2793
3055
|
},
|
2794
3056
|
{
|
2795
3057
|
"length": 20,
|
2796
|
-
"start":
|
3058
|
+
"start": 11768
|
2797
3059
|
},
|
2798
3060
|
{
|
2799
3061
|
"length": 20,
|
2800
|
-
"start":
|
3062
|
+
"start": 11950
|
2801
3063
|
},
|
2802
3064
|
{
|
2803
3065
|
"length": 20,
|
2804
|
-
"start":
|
3066
|
+
"start": 12066
|
2805
3067
|
},
|
2806
3068
|
{
|
2807
3069
|
"length": 20,
|
2808
|
-
"start":
|
3070
|
+
"start": 12832
|
2809
3071
|
},
|
2810
3072
|
{
|
2811
3073
|
"length": 20,
|
2812
|
-
"start":
|
3074
|
+
"start": 12948
|
2813
3075
|
},
|
2814
3076
|
{
|
2815
3077
|
"length": 20,
|
2816
|
-
"start":
|
3078
|
+
"start": 13335
|
2817
3079
|
},
|
2818
3080
|
{
|
2819
3081
|
"length": 20,
|
2820
|
-
"start":
|
3082
|
+
"start": 14088
|
2821
3083
|
},
|
2822
3084
|
{
|
2823
3085
|
"length": 20,
|
2824
|
-
"start":
|
3086
|
+
"start": 14204
|
2825
3087
|
}
|
2826
3088
|
]
|
2827
3089
|
},
|
@@ -2829,31 +3091,47 @@
|
|
2829
3091
|
"NftIdLib": [
|
2830
3092
|
{
|
2831
3093
|
"length": 20,
|
2832
|
-
"start":
|
3094
|
+
"start": 3805
|
2833
3095
|
},
|
2834
3096
|
{
|
2835
3097
|
"length": 20,
|
2836
|
-
"start":
|
3098
|
+
"start": 6792
|
2837
3099
|
},
|
2838
3100
|
{
|
2839
3101
|
"length": 20,
|
2840
|
-
"start":
|
2841
|
-
}
|
3102
|
+
"start": 11011
|
3103
|
+
}
|
3104
|
+
]
|
3105
|
+
},
|
3106
|
+
"contracts/types/ObjectType.sol": {
|
3107
|
+
"ObjectTypeLib": [
|
2842
3108
|
{
|
2843
3109
|
"length": 20,
|
2844
|
-
"start":
|
2845
|
-
}
|
3110
|
+
"start": 13456
|
3111
|
+
}
|
3112
|
+
]
|
3113
|
+
},
|
3114
|
+
"contracts/types/PayoutId.sol": {
|
3115
|
+
"PayoutIdLib": [
|
2846
3116
|
{
|
2847
3117
|
"length": 20,
|
2848
|
-
"start":
|
3118
|
+
"start": 13126
|
2849
3119
|
}
|
2850
3120
|
]
|
2851
3121
|
},
|
2852
|
-
"contracts/types/
|
2853
|
-
"
|
3122
|
+
"contracts/types/Referral.sol": {
|
3123
|
+
"ReferralLib": [
|
3124
|
+
{
|
3125
|
+
"length": 20,
|
3126
|
+
"start": 6025
|
3127
|
+
},
|
3128
|
+
{
|
3129
|
+
"length": 20,
|
3130
|
+
"start": 8132
|
3131
|
+
},
|
2854
3132
|
{
|
2855
3133
|
"length": 20,
|
2856
|
-
"start":
|
3134
|
+
"start": 9258
|
2857
3135
|
}
|
2858
3136
|
]
|
2859
3137
|
},
|
@@ -2861,15 +3139,23 @@
|
|
2861
3139
|
"RiskIdLib": [
|
2862
3140
|
{
|
2863
3141
|
"length": 20,
|
2864
|
-
"start":
|
3142
|
+
"start": 4583
|
2865
3143
|
},
|
2866
3144
|
{
|
2867
3145
|
"length": 20,
|
2868
|
-
"start":
|
3146
|
+
"start": 6584
|
2869
3147
|
},
|
2870
3148
|
{
|
2871
3149
|
"length": 20,
|
2872
|
-
"start":
|
3150
|
+
"start": 7731
|
3151
|
+
}
|
3152
|
+
]
|
3153
|
+
},
|
3154
|
+
"contracts/types/RoleId.sol": {
|
3155
|
+
"RoleIdLib": [
|
3156
|
+
{
|
3157
|
+
"length": 20,
|
3158
|
+
"start": 15774
|
2873
3159
|
}
|
2874
3160
|
]
|
2875
3161
|
},
|
@@ -2877,35 +3163,35 @@
|
|
2877
3163
|
"StateIdLib": [
|
2878
3164
|
{
|
2879
3165
|
"length": 20,
|
2880
|
-
"start":
|
3166
|
+
"start": 5035
|
2881
3167
|
},
|
2882
3168
|
{
|
2883
3169
|
"length": 20,
|
2884
|
-
"start":
|
3170
|
+
"start": 7906
|
2885
3171
|
},
|
2886
3172
|
{
|
2887
3173
|
"length": 20,
|
2888
|
-
"start":
|
3174
|
+
"start": 8700
|
2889
3175
|
},
|
2890
3176
|
{
|
2891
3177
|
"length": 20,
|
2892
|
-
"start":
|
3178
|
+
"start": 11069
|
2893
3179
|
},
|
2894
3180
|
{
|
2895
3181
|
"length": 20,
|
2896
|
-
"start":
|
3182
|
+
"start": 11289
|
2897
3183
|
},
|
2898
3184
|
{
|
2899
3185
|
"length": 20,
|
2900
|
-
"start":
|
3186
|
+
"start": 12270
|
2901
3187
|
},
|
2902
3188
|
{
|
2903
3189
|
"length": 20,
|
2904
|
-
"start":
|
3190
|
+
"start": 12490
|
2905
3191
|
},
|
2906
3192
|
{
|
2907
3193
|
"length": 20,
|
2908
|
-
"start":
|
3194
|
+
"start": 13677
|
2909
3195
|
}
|
2910
3196
|
]
|
2911
3197
|
},
|
@@ -2913,53 +3199,77 @@
|
|
2913
3199
|
"VersionPartLib": [
|
2914
3200
|
{
|
2915
3201
|
"length": 20,
|
2916
|
-
"start":
|
3202
|
+
"start": 9415
|
2917
3203
|
}
|
2918
3204
|
]
|
2919
3205
|
}
|
2920
3206
|
},
|
2921
3207
|
"deployedLinkReferences": {
|
3208
|
+
"contracts/types/ClaimId.sol": {
|
3209
|
+
"ClaimIdLib": [
|
3210
|
+
{
|
3211
|
+
"length": 20,
|
3212
|
+
"start": 13243
|
3213
|
+
}
|
3214
|
+
]
|
3215
|
+
},
|
3216
|
+
"contracts/types/DistributorType.sol": {
|
3217
|
+
"DistributorTypeLib": [
|
3218
|
+
{
|
3219
|
+
"length": 20,
|
3220
|
+
"start": 4730
|
3221
|
+
},
|
3222
|
+
{
|
3223
|
+
"length": 20,
|
3224
|
+
"start": 5832
|
3225
|
+
},
|
3226
|
+
{
|
3227
|
+
"length": 20,
|
3228
|
+
"start": 7540
|
3229
|
+
}
|
3230
|
+
]
|
3231
|
+
},
|
2922
3232
|
"contracts/types/Key32.sol": {
|
2923
3233
|
"Key32Lib": [
|
2924
3234
|
{
|
2925
3235
|
"length": 20,
|
2926
|
-
"start":
|
3236
|
+
"start": 10078
|
2927
3237
|
},
|
2928
3238
|
{
|
2929
3239
|
"length": 20,
|
2930
|
-
"start":
|
3240
|
+
"start": 11619
|
2931
3241
|
},
|
2932
3242
|
{
|
2933
3243
|
"length": 20,
|
2934
|
-
"start":
|
3244
|
+
"start": 11735
|
2935
3245
|
},
|
2936
3246
|
{
|
2937
3247
|
"length": 20,
|
2938
|
-
"start":
|
3248
|
+
"start": 11917
|
2939
3249
|
},
|
2940
3250
|
{
|
2941
3251
|
"length": 20,
|
2942
|
-
"start":
|
3252
|
+
"start": 12033
|
2943
3253
|
},
|
2944
3254
|
{
|
2945
3255
|
"length": 20,
|
2946
|
-
"start":
|
3256
|
+
"start": 12799
|
2947
3257
|
},
|
2948
3258
|
{
|
2949
3259
|
"length": 20,
|
2950
|
-
"start":
|
3260
|
+
"start": 12915
|
2951
3261
|
},
|
2952
3262
|
{
|
2953
3263
|
"length": 20,
|
2954
|
-
"start":
|
3264
|
+
"start": 13302
|
2955
3265
|
},
|
2956
3266
|
{
|
2957
3267
|
"length": 20,
|
2958
|
-
"start":
|
3268
|
+
"start": 14055
|
2959
3269
|
},
|
2960
3270
|
{
|
2961
3271
|
"length": 20,
|
2962
|
-
"start":
|
3272
|
+
"start": 14171
|
2963
3273
|
}
|
2964
3274
|
]
|
2965
3275
|
},
|
@@ -2967,31 +3277,47 @@
|
|
2967
3277
|
"NftIdLib": [
|
2968
3278
|
{
|
2969
3279
|
"length": 20,
|
2970
|
-
"start":
|
3280
|
+
"start": 3772
|
2971
3281
|
},
|
2972
3282
|
{
|
2973
3283
|
"length": 20,
|
2974
|
-
"start":
|
3284
|
+
"start": 6759
|
2975
3285
|
},
|
2976
3286
|
{
|
2977
3287
|
"length": 20,
|
2978
|
-
"start":
|
2979
|
-
}
|
3288
|
+
"start": 10978
|
3289
|
+
}
|
3290
|
+
]
|
3291
|
+
},
|
3292
|
+
"contracts/types/ObjectType.sol": {
|
3293
|
+
"ObjectTypeLib": [
|
2980
3294
|
{
|
2981
3295
|
"length": 20,
|
2982
|
-
"start":
|
2983
|
-
}
|
3296
|
+
"start": 13423
|
3297
|
+
}
|
3298
|
+
]
|
3299
|
+
},
|
3300
|
+
"contracts/types/PayoutId.sol": {
|
3301
|
+
"PayoutIdLib": [
|
2984
3302
|
{
|
2985
3303
|
"length": 20,
|
2986
|
-
"start":
|
3304
|
+
"start": 13093
|
2987
3305
|
}
|
2988
3306
|
]
|
2989
3307
|
},
|
2990
|
-
"contracts/types/
|
2991
|
-
"
|
3308
|
+
"contracts/types/Referral.sol": {
|
3309
|
+
"ReferralLib": [
|
3310
|
+
{
|
3311
|
+
"length": 20,
|
3312
|
+
"start": 5992
|
3313
|
+
},
|
3314
|
+
{
|
3315
|
+
"length": 20,
|
3316
|
+
"start": 8099
|
3317
|
+
},
|
2992
3318
|
{
|
2993
3319
|
"length": 20,
|
2994
|
-
"start":
|
3320
|
+
"start": 9225
|
2995
3321
|
}
|
2996
3322
|
]
|
2997
3323
|
},
|
@@ -2999,15 +3325,23 @@
|
|
2999
3325
|
"RiskIdLib": [
|
3000
3326
|
{
|
3001
3327
|
"length": 20,
|
3002
|
-
"start":
|
3328
|
+
"start": 4550
|
3003
3329
|
},
|
3004
3330
|
{
|
3005
3331
|
"length": 20,
|
3006
|
-
"start":
|
3332
|
+
"start": 6551
|
3007
3333
|
},
|
3008
3334
|
{
|
3009
3335
|
"length": 20,
|
3010
|
-
"start":
|
3336
|
+
"start": 7698
|
3337
|
+
}
|
3338
|
+
]
|
3339
|
+
},
|
3340
|
+
"contracts/types/RoleId.sol": {
|
3341
|
+
"RoleIdLib": [
|
3342
|
+
{
|
3343
|
+
"length": 20,
|
3344
|
+
"start": 15741
|
3011
3345
|
}
|
3012
3346
|
]
|
3013
3347
|
},
|
@@ -3015,35 +3349,35 @@
|
|
3015
3349
|
"StateIdLib": [
|
3016
3350
|
{
|
3017
3351
|
"length": 20,
|
3018
|
-
"start":
|
3352
|
+
"start": 5002
|
3019
3353
|
},
|
3020
3354
|
{
|
3021
3355
|
"length": 20,
|
3022
|
-
"start":
|
3356
|
+
"start": 7873
|
3023
3357
|
},
|
3024
3358
|
{
|
3025
3359
|
"length": 20,
|
3026
|
-
"start":
|
3360
|
+
"start": 8667
|
3027
3361
|
},
|
3028
3362
|
{
|
3029
3363
|
"length": 20,
|
3030
|
-
"start":
|
3364
|
+
"start": 11036
|
3031
3365
|
},
|
3032
3366
|
{
|
3033
3367
|
"length": 20,
|
3034
|
-
"start":
|
3368
|
+
"start": 11256
|
3035
3369
|
},
|
3036
3370
|
{
|
3037
3371
|
"length": 20,
|
3038
|
-
"start":
|
3372
|
+
"start": 12237
|
3039
3373
|
},
|
3040
3374
|
{
|
3041
3375
|
"length": 20,
|
3042
|
-
"start":
|
3376
|
+
"start": 12457
|
3043
3377
|
},
|
3044
3378
|
{
|
3045
3379
|
"length": 20,
|
3046
|
-
"start":
|
3380
|
+
"start": 13644
|
3047
3381
|
}
|
3048
3382
|
]
|
3049
3383
|
},
|
@@ -3051,7 +3385,7 @@
|
|
3051
3385
|
"VersionPartLib": [
|
3052
3386
|
{
|
3053
3387
|
"length": 20,
|
3054
|
-
"start":
|
3388
|
+
"start": 9382
|
3055
3389
|
}
|
3056
3390
|
]
|
3057
3391
|
}
|