@etherisc/gif-next 0.0.2-f619be3-760 → 0.0.2-f626d92-602
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 +324 -22
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +672 -35
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +1329 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +605 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +969 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +1064 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +830 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +1180 -132
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +977 -156
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +778 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +190 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1698 -810
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +633 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +2413 -849
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1330 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1289 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1179 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +741 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +256 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +607 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +429 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/{lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +532 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +194 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +237 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/{access/IAccess.sol/IAccess.json → module/IBundle.sol/IBundle.json} +2 -2
- package/artifacts/contracts/instance/module/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 +4 -0
- package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IRisk.sol/IRisk.json} +2 -2
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.json +10 -0
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/{treasury → module}/ITreasury.sol/ITreasury.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +1039 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +673 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1231 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +721 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +817 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +641 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +1798 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +805 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +622 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +659 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +475 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +1090 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +606 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +844 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +450 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1092 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +697 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +1237 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +661 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +840 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +653 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +252 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +595 -27
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +866 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +652 -50
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1158 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +670 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +559 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +498 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +73 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/{registry/Registry.sol/Registerable.json → shared/INftOwnable.sol/INftOwnable.json} +46 -74
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/{instance/product/IProductService.sol/IProductService.json → shared/IPolicyHolder.sol/IPolicyHolder.json} +68 -66
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +188 -0
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +18 -19
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → shared/IService.sol/IService.json} +168 -132
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +251 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +248 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +582 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +352 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +84 -0
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +261 -217
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +383 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
- package/artifacts/contracts/test/TestService.sol/TestService.json +596 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +376 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +104 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
- package/artifacts/contracts/test/Usdc.sol/USDC.json +376 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +161 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +2 -2
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +100 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +288 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +125 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +78 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +33 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +100 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +142 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +156 -0
- package/artifacts/contracts/types/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 +97 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/{experiment/types/TypeB.sol/TypeBLib.json → types/UFixed.sol/MathLib.json} +4 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +479 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionLib.json +177 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +49 -0
- package/contracts/components/Component.sol +227 -51
- package/contracts/components/Distribution.sol +280 -0
- package/contracts/components/IComponent.sol +76 -0
- package/contracts/components/IDistributionComponent.sol +71 -0
- package/contracts/components/IPoolComponent.sol +113 -0
- package/contracts/components/IProductComponent.sol +40 -0
- package/contracts/components/Pool.sol +281 -30
- package/contracts/components/Product.sol +252 -48
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +13 -0
- package/contracts/instance/BundleManager.sol +127 -0
- package/contracts/instance/Cloneable.sol +51 -0
- package/contracts/instance/IInstance.sol +95 -22
- package/contracts/instance/IInstanceService.sol +72 -0
- package/contracts/instance/Instance.sol +306 -51
- package/contracts/instance/InstanceAccessManager.sol +527 -0
- package/contracts/instance/InstanceReader.sol +291 -0
- package/contracts/instance/InstanceService.sol +495 -0
- package/contracts/instance/InstanceServiceManager.sol +54 -0
- package/contracts/instance/ObjectManager.sol +82 -0
- package/contracts/instance/base/ComponentService.sol +121 -0
- package/contracts/instance/base/IKeyValueStore.sol +49 -0
- package/contracts/instance/base/ILifecycle.sol +30 -0
- package/contracts/instance/base/KeyValueStore.sol +180 -0
- package/contracts/instance/base/Lifecycle.sol +109 -0
- package/contracts/instance/module/IAccess.sol +54 -0
- package/contracts/instance/module/IBundle.sol +23 -0
- package/contracts/instance/module/IComponents.sol +41 -0
- package/contracts/instance/module/IDistribution.sol +41 -0
- package/contracts/instance/module/IPolicy.sol +72 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +33 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/ApplicationService.sol +350 -0
- package/contracts/instance/service/ApplicationServiceManager.sol +35 -0
- package/contracts/instance/service/BundleService.sol +431 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/ClaimService.sol +151 -0
- package/contracts/instance/service/ClaimServiceManager.sol +35 -0
- package/contracts/instance/service/DistributionService.sol +435 -0
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IApplicationService.sol +82 -0
- package/contracts/instance/service/IBundleService.sol +93 -0
- package/contracts/instance/service/IClaimService.sol +61 -0
- package/contracts/instance/service/IDistributionService.sol +99 -0
- package/contracts/instance/service/IPolicyService.sol +72 -0
- package/contracts/instance/service/IPoolService.sol +99 -0
- package/contracts/instance/service/IProductService.sol +40 -0
- package/contracts/instance/service/PolicyService.sol +362 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +303 -0
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +210 -0
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +137 -62
- package/contracts/registry/IRegistry.sol +75 -41
- package/contracts/registry/IRegistryService.sol +68 -0
- package/contracts/registry/ITransferInterceptor.sol +7 -0
- package/contracts/registry/Registry.sol +413 -128
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +282 -0
- package/contracts/registry/RegistryServiceManager.sol +62 -0
- package/contracts/registry/ReleaseManager.sol +324 -0
- package/contracts/registry/TokenRegistry.sol +116 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +27 -0
- package/contracts/shared/INftOwnable.sol +23 -0
- package/contracts/shared/IPolicyHolder.sol +26 -0
- package/contracts/shared/IRegisterable.sol +15 -0
- package/contracts/shared/IRegistryLinked.sol +12 -0
- package/contracts/shared/IService.sol +16 -0
- package/contracts/shared/IVersionable.sol +53 -0
- package/contracts/shared/NftOwnable.sol +120 -0
- package/contracts/shared/PolicyHolder.sol +81 -0
- package/contracts/shared/ProxyManager.sol +169 -0
- package/contracts/shared/Registerable.sol +74 -0
- package/contracts/shared/RegistryLinked.sol +48 -0
- package/contracts/shared/Service.sol +72 -0
- package/contracts/shared/TokenHandler.sol +33 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +59 -0
- package/contracts/test/TestFee.sol +25 -0
- package/contracts/test/TestRegisterable.sol +18 -0
- package/contracts/test/TestRoleId.sol +14 -0
- package/contracts/test/TestService.sol +25 -0
- package/contracts/{mock/Dip.sol → test/TestToken.sol} +5 -5
- package/contracts/test/TestVersion.sol +44 -0
- package/contracts/test/TestVersionable.sol +17 -0
- package/contracts/{mock → test}/Usdc.sol +1 -1
- package/contracts/types/AddressSet.sol +58 -0
- package/contracts/types/Amount.sol +60 -0
- package/contracts/types/Blocknumber.sol +1 -0
- package/contracts/types/ClaimId.sol +52 -0
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +52 -20
- package/contracts/types/Key32.sol +50 -0
- package/contracts/types/NftId.sol +30 -1
- package/contracts/types/NftIdSet.sol +62 -0
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +65 -15
- package/contracts/types/PayoutId.sol +54 -0
- package/contracts/types/Referral.sol +89 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +97 -0
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/StateId.sol +19 -4
- package/contracts/types/Timestamp.sol +31 -6
- package/contracts/types/UFixed.sol +139 -23
- package/contracts/types/Version.sol +108 -0
- package/package.json +11 -5
- package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -255
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -74
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
- package/artifacts/contracts/experiment/inheritance/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/instance/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
- package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -202
- package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -205
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -217
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -141
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
- package/artifacts/contracts/instance/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -254
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -254
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -129
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -155
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
- package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
- package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -196
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/ITreasury.sol/ITreasuryModule.json +0 -490
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TokenHandler.sol/TokenHandler.json +0 -45
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/treasury/TreasuryModule.sol/TreasuryModule.json +0 -490
- package/artifacts/contracts/mock/Dip.sol/DIP.dbg.json +0 -4
- package/artifacts/contracts/mock/Dip.sol/DIP.json +0 -338
- package/artifacts/contracts/mock/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/mock/TestPool.sol/TestPool.json +0 -294
- package/artifacts/contracts/mock/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/mock/TestProduct.sol/TestProduct.json +0 -384
- package/artifacts/contracts/mock/Usdc.sol/USDC.dbg.json +0 -4
- package/artifacts/contracts/mock/Usdc.sol/USDC.json +0 -338
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +0 -24
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +0 -166
- package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -479
- package/contracts/components/IPool.sol +0 -15
- package/contracts/components/IProduct.sol +0 -16
- 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/README.md +0 -112
- package/contracts/experiment/statemachine/SM.sol +0 -57
- package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
- package/contracts/experiment/types/TypeA.sol +0 -47
- package/contracts/experiment/types/TypeB.sol +0 -29
- package/contracts/instance/access/Access.sol +0 -165
- package/contracts/instance/access/IAccess.sol +0 -63
- package/contracts/instance/component/ComponentModule.sol +0 -274
- package/contracts/instance/component/IComponent.sol +0 -74
- package/contracts/instance/lifecycle/ILifecycle.sol +0 -47
- package/contracts/instance/lifecycle/LifecycleModule.sol +0 -88
- package/contracts/instance/policy/IPolicy.sol +0 -50
- package/contracts/instance/policy/PolicyModule.sol +0 -114
- package/contracts/instance/pool/IPoolModule.sol +0 -23
- package/contracts/instance/pool/PoolModule.sol +0 -81
- package/contracts/instance/product/IProductService.sol +0 -36
- package/contracts/instance/product/ProductService.sol +0 -136
- package/contracts/instance/treasury/ITreasury.sol +0 -91
- package/contracts/instance/treasury/TokenHandler.sol +0 -24
- package/contracts/instance/treasury/TreasuryModule.sol +0 -168
- package/contracts/mock/TestPool.sol +0 -16
- package/contracts/mock/TestProduct.sol +0 -39
- package/contracts/registry/IChainNft.sol +0 -21
| @@ -0,0 +1,1237 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_format": "hh-sol-artifact-1",
         | 
| 3 | 
            +
              "contractName": "PoolService",
         | 
| 4 | 
            +
              "sourceName": "contracts/instance/service/PoolService.sol",
         | 
| 5 | 
            +
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [
         | 
| 8 | 
            +
                    {
         | 
| 9 | 
            +
                      "internalType": "address",
         | 
| 10 | 
            +
                      "name": "authority",
         | 
| 11 | 
            +
                      "type": "address"
         | 
| 12 | 
            +
                    }
         | 
| 13 | 
            +
                  ],
         | 
| 14 | 
            +
                  "name": "AccessManagedInvalidAuthority",
         | 
| 15 | 
            +
                  "type": "error"
         | 
| 16 | 
            +
                },
         | 
| 17 | 
            +
                {
         | 
| 18 | 
            +
                  "inputs": [
         | 
| 19 | 
            +
                    {
         | 
| 20 | 
            +
                      "internalType": "address",
         | 
| 21 | 
            +
                      "name": "caller",
         | 
| 22 | 
            +
                      "type": "address"
         | 
| 23 | 
            +
                    },
         | 
| 24 | 
            +
                    {
         | 
| 25 | 
            +
                      "internalType": "uint32",
         | 
| 26 | 
            +
                      "name": "delay",
         | 
| 27 | 
            +
                      "type": "uint32"
         | 
| 28 | 
            +
                    }
         | 
| 29 | 
            +
                  ],
         | 
| 30 | 
            +
                  "name": "AccessManagedRequiredDelay",
         | 
| 31 | 
            +
                  "type": "error"
         | 
| 32 | 
            +
                },
         | 
| 33 | 
            +
                {
         | 
| 34 | 
            +
                  "inputs": [
         | 
| 35 | 
            +
                    {
         | 
| 36 | 
            +
                      "internalType": "address",
         | 
| 37 | 
            +
                      "name": "caller",
         | 
| 38 | 
            +
                      "type": "address"
         | 
| 39 | 
            +
                    }
         | 
| 40 | 
            +
                  ],
         | 
| 41 | 
            +
                  "name": "AccessManagedUnauthorized",
         | 
| 42 | 
            +
                  "type": "error"
         | 
| 43 | 
            +
                },
         | 
| 44 | 
            +
                {
         | 
| 45 | 
            +
                  "inputs": [
         | 
| 46 | 
            +
                    {
         | 
| 47 | 
            +
                      "internalType": "address",
         | 
| 48 | 
            +
                      "name": "component",
         | 
| 49 | 
            +
                      "type": "address"
         | 
| 50 | 
            +
                    }
         | 
| 51 | 
            +
                  ],
         | 
| 52 | 
            +
                  "name": "ErrorComponentServiceComponentLocked",
         | 
| 53 | 
            +
                  "type": "error"
         | 
| 54 | 
            +
                },
         | 
| 55 | 
            +
                {
         | 
| 56 | 
            +
                  "inputs": [
         | 
| 57 | 
            +
                    {
         | 
| 58 | 
            +
                      "internalType": "NftId",
         | 
| 59 | 
            +
                      "name": "instanceNftId",
         | 
| 60 | 
            +
                      "type": "uint96"
         | 
| 61 | 
            +
                    },
         | 
| 62 | 
            +
                    {
         | 
| 63 | 
            +
                      "internalType": "RoleId",
         | 
| 64 | 
            +
                      "name": "requiredRole",
         | 
| 65 | 
            +
                      "type": "uint64"
         | 
| 66 | 
            +
                    },
         | 
| 67 | 
            +
                    {
         | 
| 68 | 
            +
                      "internalType": "address",
         | 
| 69 | 
            +
                      "name": "sender",
         | 
| 70 | 
            +
                      "type": "address"
         | 
| 71 | 
            +
                    }
         | 
| 72 | 
            +
                  ],
         | 
| 73 | 
            +
                  "name": "ErrorComponentServiceExpectedRoleMissing",
         | 
| 74 | 
            +
                  "type": "error"
         | 
| 75 | 
            +
                },
         | 
| 76 | 
            +
                {
         | 
| 77 | 
            +
                  "inputs": [
         | 
| 78 | 
            +
                    {
         | 
| 79 | 
            +
                      "internalType": "address",
         | 
| 80 | 
            +
                      "name": "component",
         | 
| 81 | 
            +
                      "type": "address"
         | 
| 82 | 
            +
                    },
         | 
| 83 | 
            +
                    {
         | 
| 84 | 
            +
                      "internalType": "ObjectType",
         | 
| 85 | 
            +
                      "name": "requiredType",
         | 
| 86 | 
            +
                      "type": "uint8"
         | 
| 87 | 
            +
                    },
         | 
| 88 | 
            +
                    {
         | 
| 89 | 
            +
                      "internalType": "ObjectType",
         | 
| 90 | 
            +
                      "name": "componentType",
         | 
| 91 | 
            +
                      "type": "uint8"
         | 
| 92 | 
            +
                    }
         | 
| 93 | 
            +
                  ],
         | 
| 94 | 
            +
                  "name": "ErrorComponentServiceInvalidType",
         | 
| 95 | 
            +
                  "type": "error"
         | 
| 96 | 
            +
                },
         | 
| 97 | 
            +
                {
         | 
| 98 | 
            +
                  "inputs": [
         | 
| 99 | 
            +
                    {
         | 
| 100 | 
            +
                      "internalType": "address",
         | 
| 101 | 
            +
                      "name": "component",
         | 
| 102 | 
            +
                      "type": "address"
         | 
| 103 | 
            +
                    }
         | 
| 104 | 
            +
                  ],
         | 
| 105 | 
            +
                  "name": "ErrorComponentServiceNotComponent",
         | 
| 106 | 
            +
                  "type": "error"
         | 
| 107 | 
            +
                },
         | 
| 108 | 
            +
                {
         | 
| 109 | 
            +
                  "inputs": [
         | 
| 110 | 
            +
                    {
         | 
| 111 | 
            +
                      "internalType": "address",
         | 
| 112 | 
            +
                      "name": "component",
         | 
| 113 | 
            +
                      "type": "address"
         | 
| 114 | 
            +
                    },
         | 
| 115 | 
            +
                    {
         | 
| 116 | 
            +
                      "internalType": "address",
         | 
| 117 | 
            +
                      "name": "initialOwner",
         | 
| 118 | 
            +
                      "type": "address"
         | 
| 119 | 
            +
                    },
         | 
| 120 | 
            +
                    {
         | 
| 121 | 
            +
                      "internalType": "address",
         | 
| 122 | 
            +
                      "name": "sender",
         | 
| 123 | 
            +
                      "type": "address"
         | 
| 124 | 
            +
                    }
         | 
| 125 | 
            +
                  ],
         | 
| 126 | 
            +
                  "name": "ErrorComponentServiceSenderNotOwner",
         | 
| 127 | 
            +
                  "type": "error"
         | 
| 128 | 
            +
                },
         | 
| 129 | 
            +
                {
         | 
| 130 | 
            +
                  "inputs": [
         | 
| 131 | 
            +
                    {
         | 
| 132 | 
            +
                      "internalType": "address",
         | 
| 133 | 
            +
                      "name": "target",
         | 
| 134 | 
            +
                      "type": "address"
         | 
| 135 | 
            +
                    }
         | 
| 136 | 
            +
                  ],
         | 
| 137 | 
            +
                  "name": "ErrorIAccessTargetLocked",
         | 
| 138 | 
            +
                  "type": "error"
         | 
| 139 | 
            +
                },
         | 
| 140 | 
            +
                {
         | 
| 141 | 
            +
                  "inputs": [
         | 
| 142 | 
            +
                    {
         | 
| 143 | 
            +
                      "internalType": "NftId",
         | 
| 144 | 
            +
                      "name": "nftId",
         | 
| 145 | 
            +
                      "type": "uint96"
         | 
| 146 | 
            +
                    }
         | 
| 147 | 
            +
                  ],
         | 
| 148 | 
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         | 
| 149 | 
            +
                  "type": "error"
         | 
| 150 | 
            +
                },
         | 
| 151 | 
            +
                {
         | 
| 152 | 
            +
                  "inputs": [
         | 
| 153 | 
            +
                    {
         | 
| 154 | 
            +
                      "internalType": "address",
         | 
| 155 | 
            +
                      "name": "contractAddress",
         | 
| 156 | 
            +
                      "type": "address"
         | 
| 157 | 
            +
                    }
         | 
| 158 | 
            +
                  ],
         | 
| 159 | 
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         | 
| 160 | 
            +
                  "type": "error"
         | 
| 161 | 
            +
                },
         | 
| 162 | 
            +
                {
         | 
| 163 | 
            +
                  "inputs": [],
         | 
| 164 | 
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         | 
| 165 | 
            +
                  "type": "error"
         | 
| 166 | 
            +
                },
         | 
| 167 | 
            +
                {
         | 
| 168 | 
            +
                  "inputs": [
         | 
| 169 | 
            +
                    {
         | 
| 170 | 
            +
                      "internalType": "address",
         | 
| 171 | 
            +
                      "name": "account",
         | 
| 172 | 
            +
                      "type": "address"
         | 
| 173 | 
            +
                    }
         | 
| 174 | 
            +
                  ],
         | 
| 175 | 
            +
                  "name": "ErrorNftOwnableNotOwner",
         | 
| 176 | 
            +
                  "type": "error"
         | 
| 177 | 
            +
                },
         | 
| 178 | 
            +
                {
         | 
| 179 | 
            +
                  "inputs": [
         | 
| 180 | 
            +
                    {
         | 
| 181 | 
            +
                      "internalType": "address",
         | 
| 182 | 
            +
                      "name": "registryAddress",
         | 
| 183 | 
            +
                      "type": "address"
         | 
| 184 | 
            +
                    }
         | 
| 185 | 
            +
                  ],
         | 
| 186 | 
            +
                  "name": "ErrorNotRegistry",
         | 
| 187 | 
            +
                  "type": "error"
         | 
| 188 | 
            +
                },
         | 
| 189 | 
            +
                {
         | 
| 190 | 
            +
                  "inputs": [
         | 
| 191 | 
            +
                    {
         | 
| 192 | 
            +
                      "internalType": "NftId",
         | 
| 193 | 
            +
                      "name": "poolNftId",
         | 
| 194 | 
            +
                      "type": "uint96"
         | 
| 195 | 
            +
                    }
         | 
| 196 | 
            +
                  ],
         | 
| 197 | 
            +
                  "name": "ErrorPoolServiceBundleOwnerRoleAlreadySet",
         | 
| 198 | 
            +
                  "type": "error"
         | 
| 199 | 
            +
                },
         | 
| 200 | 
            +
                {
         | 
| 201 | 
            +
                  "inputs": [
         | 
| 202 | 
            +
                    {
         | 
| 203 | 
            +
                      "internalType": "NftId",
         | 
| 204 | 
            +
                      "name": "bundlePoolNftId",
         | 
| 205 | 
            +
                      "type": "uint96"
         | 
| 206 | 
            +
                    },
         | 
| 207 | 
            +
                    {
         | 
| 208 | 
            +
                      "internalType": "NftId",
         | 
| 209 | 
            +
                      "name": "productPoolNftId",
         | 
| 210 | 
            +
                      "type": "uint96"
         | 
| 211 | 
            +
                    }
         | 
| 212 | 
            +
                  ],
         | 
| 213 | 
            +
                  "name": "ErrorPoolServiceBundlePoolMismatch",
         | 
| 214 | 
            +
                  "type": "error"
         | 
| 215 | 
            +
                },
         | 
| 216 | 
            +
                {
         | 
| 217 | 
            +
                  "inputs": [],
         | 
| 218 | 
            +
                  "name": "InvalidInitialization",
         | 
| 219 | 
            +
                  "type": "error"
         | 
| 220 | 
            +
                },
         | 
| 221 | 
            +
                {
         | 
| 222 | 
            +
                  "inputs": [],
         | 
| 223 | 
            +
                  "name": "NotInitializing",
         | 
| 224 | 
            +
                  "type": "error"
         | 
| 225 | 
            +
                },
         | 
| 226 | 
            +
                {
         | 
| 227 | 
            +
                  "anonymous": false,
         | 
| 228 | 
            +
                  "inputs": [
         | 
| 229 | 
            +
                    {
         | 
| 230 | 
            +
                      "indexed": false,
         | 
| 231 | 
            +
                      "internalType": "address",
         | 
| 232 | 
            +
                      "name": "authority",
         | 
| 233 | 
            +
                      "type": "address"
         | 
| 234 | 
            +
                    }
         | 
| 235 | 
            +
                  ],
         | 
| 236 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 237 | 
            +
                  "type": "event"
         | 
| 238 | 
            +
                },
         | 
| 239 | 
            +
                {
         | 
| 240 | 
            +
                  "anonymous": false,
         | 
| 241 | 
            +
                  "inputs": [
         | 
| 242 | 
            +
                    {
         | 
| 243 | 
            +
                      "indexed": false,
         | 
| 244 | 
            +
                      "internalType": "uint64",
         | 
| 245 | 
            +
                      "name": "version",
         | 
| 246 | 
            +
                      "type": "uint64"
         | 
| 247 | 
            +
                    }
         | 
| 248 | 
            +
                  ],
         | 
| 249 | 
            +
                  "name": "Initialized",
         | 
| 250 | 
            +
                  "type": "event"
         | 
| 251 | 
            +
                },
         | 
| 252 | 
            +
                {
         | 
| 253 | 
            +
                  "anonymous": false,
         | 
| 254 | 
            +
                  "inputs": [
         | 
| 255 | 
            +
                    {
         | 
| 256 | 
            +
                      "indexed": false,
         | 
| 257 | 
            +
                      "internalType": "NftId",
         | 
| 258 | 
            +
                      "name": "instanceNftId",
         | 
| 259 | 
            +
                      "type": "uint96"
         | 
| 260 | 
            +
                    },
         | 
| 261 | 
            +
                    {
         | 
| 262 | 
            +
                      "indexed": false,
         | 
| 263 | 
            +
                      "internalType": "NftId",
         | 
| 264 | 
            +
                      "name": "poolNftId",
         | 
| 265 | 
            +
                      "type": "uint96"
         | 
| 266 | 
            +
                    },
         | 
| 267 | 
            +
                    {
         | 
| 268 | 
            +
                      "indexed": false,
         | 
| 269 | 
            +
                      "internalType": "NftId",
         | 
| 270 | 
            +
                      "name": "bundleNftId",
         | 
| 271 | 
            +
                      "type": "uint96"
         | 
| 272 | 
            +
                    }
         | 
| 273 | 
            +
                  ],
         | 
| 274 | 
            +
                  "name": "LogPoolServiceBundleClosed",
         | 
| 275 | 
            +
                  "type": "event"
         | 
| 276 | 
            +
                },
         | 
| 277 | 
            +
                {
         | 
| 278 | 
            +
                  "anonymous": false,
         | 
| 279 | 
            +
                  "inputs": [
         | 
| 280 | 
            +
                    {
         | 
| 281 | 
            +
                      "indexed": false,
         | 
| 282 | 
            +
                      "internalType": "NftId",
         | 
| 283 | 
            +
                      "name": "instanceNftId",
         | 
| 284 | 
            +
                      "type": "uint96"
         | 
| 285 | 
            +
                    },
         | 
| 286 | 
            +
                    {
         | 
| 287 | 
            +
                      "indexed": false,
         | 
| 288 | 
            +
                      "internalType": "NftId",
         | 
| 289 | 
            +
                      "name": "poolNftId",
         | 
| 290 | 
            +
                      "type": "uint96"
         | 
| 291 | 
            +
                    },
         | 
| 292 | 
            +
                    {
         | 
| 293 | 
            +
                      "indexed": false,
         | 
| 294 | 
            +
                      "internalType": "NftId",
         | 
| 295 | 
            +
                      "name": "bundleNftId",
         | 
| 296 | 
            +
                      "type": "uint96"
         | 
| 297 | 
            +
                    }
         | 
| 298 | 
            +
                  ],
         | 
| 299 | 
            +
                  "name": "LogPoolServiceBundleCreated",
         | 
| 300 | 
            +
                  "type": "event"
         | 
| 301 | 
            +
                },
         | 
| 302 | 
            +
                {
         | 
| 303 | 
            +
                  "anonymous": false,
         | 
| 304 | 
            +
                  "inputs": [
         | 
| 305 | 
            +
                    {
         | 
| 306 | 
            +
                      "indexed": false,
         | 
| 307 | 
            +
                      "internalType": "NftId",
         | 
| 308 | 
            +
                      "name": "poolNftId",
         | 
| 309 | 
            +
                      "type": "uint96"
         | 
| 310 | 
            +
                    },
         | 
| 311 | 
            +
                    {
         | 
| 312 | 
            +
                      "indexed": false,
         | 
| 313 | 
            +
                      "internalType": "RoleId",
         | 
| 314 | 
            +
                      "name": "bundleOwnerRole",
         | 
| 315 | 
            +
                      "type": "uint64"
         | 
| 316 | 
            +
                    }
         | 
| 317 | 
            +
                  ],
         | 
| 318 | 
            +
                  "name": "LogPoolServiceBundleOwnerRoleSet",
         | 
| 319 | 
            +
                  "type": "event"
         | 
| 320 | 
            +
                },
         | 
| 321 | 
            +
                {
         | 
| 322 | 
            +
                  "anonymous": false,
         | 
| 323 | 
            +
                  "inputs": [
         | 
| 324 | 
            +
                    {
         | 
| 325 | 
            +
                      "indexed": false,
         | 
| 326 | 
            +
                      "internalType": "NftId",
         | 
| 327 | 
            +
                      "name": "poolNftId",
         | 
| 328 | 
            +
                      "type": "uint96"
         | 
| 329 | 
            +
                    },
         | 
| 330 | 
            +
                    {
         | 
| 331 | 
            +
                      "indexed": false,
         | 
| 332 | 
            +
                      "internalType": "uint256",
         | 
| 333 | 
            +
                      "name": "previousMaxCapitalAmount",
         | 
| 334 | 
            +
                      "type": "uint256"
         | 
| 335 | 
            +
                    },
         | 
| 336 | 
            +
                    {
         | 
| 337 | 
            +
                      "indexed": false,
         | 
| 338 | 
            +
                      "internalType": "uint256",
         | 
| 339 | 
            +
                      "name": "currentMaxCapitalAmount",
         | 
| 340 | 
            +
                      "type": "uint256"
         | 
| 341 | 
            +
                    }
         | 
| 342 | 
            +
                  ],
         | 
| 343 | 
            +
                  "name": "LogPoolServiceMaxCapitalAmountUpdated",
         | 
| 344 | 
            +
                  "type": "event"
         | 
| 345 | 
            +
                },
         | 
| 346 | 
            +
                {
         | 
| 347 | 
            +
                  "inputs": [],
         | 
| 348 | 
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         | 
| 349 | 
            +
                  "outputs": [
         | 
| 350 | 
            +
                    {
         | 
| 351 | 
            +
                      "internalType": "bytes32",
         | 
| 352 | 
            +
                      "name": "",
         | 
| 353 | 
            +
                      "type": "bytes32"
         | 
| 354 | 
            +
                    }
         | 
| 355 | 
            +
                  ],
         | 
| 356 | 
            +
                  "stateMutability": "view",
         | 
| 357 | 
            +
                  "type": "function"
         | 
| 358 | 
            +
                },
         | 
| 359 | 
            +
                {
         | 
| 360 | 
            +
                  "inputs": [],
         | 
| 361 | 
            +
                  "name": "REGISTERABLE_LOCATION_V1",
         | 
| 362 | 
            +
                  "outputs": [
         | 
| 363 | 
            +
                    {
         | 
| 364 | 
            +
                      "internalType": "bytes32",
         | 
| 365 | 
            +
                      "name": "",
         | 
| 366 | 
            +
                      "type": "bytes32"
         | 
| 367 | 
            +
                    }
         | 
| 368 | 
            +
                  ],
         | 
| 369 | 
            +
                  "stateMutability": "view",
         | 
| 370 | 
            +
                  "type": "function"
         | 
| 371 | 
            +
                },
         | 
| 372 | 
            +
                {
         | 
| 373 | 
            +
                  "inputs": [],
         | 
| 374 | 
            +
                  "name": "authority",
         | 
| 375 | 
            +
                  "outputs": [
         | 
| 376 | 
            +
                    {
         | 
| 377 | 
            +
                      "internalType": "address",
         | 
| 378 | 
            +
                      "name": "",
         | 
| 379 | 
            +
                      "type": "address"
         | 
| 380 | 
            +
                    }
         | 
| 381 | 
            +
                  ],
         | 
| 382 | 
            +
                  "stateMutability": "view",
         | 
| 383 | 
            +
                  "type": "function"
         | 
| 384 | 
            +
                },
         | 
| 385 | 
            +
                {
         | 
| 386 | 
            +
                  "inputs": [
         | 
| 387 | 
            +
                    {
         | 
| 388 | 
            +
                      "internalType": "NftId",
         | 
| 389 | 
            +
                      "name": "bundleNftId",
         | 
| 390 | 
            +
                      "type": "uint96"
         | 
| 391 | 
            +
                    }
         | 
| 392 | 
            +
                  ],
         | 
| 393 | 
            +
                  "name": "closeBundle",
         | 
| 394 | 
            +
                  "outputs": [],
         | 
| 395 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 396 | 
            +
                  "type": "function"
         | 
| 397 | 
            +
                },
         | 
| 398 | 
            +
                {
         | 
| 399 | 
            +
                  "inputs": [
         | 
| 400 | 
            +
                    {
         | 
| 401 | 
            +
                      "internalType": "address",
         | 
| 402 | 
            +
                      "name": "owner",
         | 
| 403 | 
            +
                      "type": "address"
         | 
| 404 | 
            +
                    },
         | 
| 405 | 
            +
                    {
         | 
| 406 | 
            +
                      "components": [
         | 
| 407 | 
            +
                        {
         | 
| 408 | 
            +
                          "internalType": "UFixed",
         | 
| 409 | 
            +
                          "name": "fractionalFee",
         | 
| 410 | 
            +
                          "type": "uint256"
         | 
| 411 | 
            +
                        },
         | 
| 412 | 
            +
                        {
         | 
| 413 | 
            +
                          "internalType": "uint256",
         | 
| 414 | 
            +
                          "name": "fixedFee",
         | 
| 415 | 
            +
                          "type": "uint256"
         | 
| 416 | 
            +
                        }
         | 
| 417 | 
            +
                      ],
         | 
| 418 | 
            +
                      "internalType": "struct Fee",
         | 
| 419 | 
            +
                      "name": "fee",
         | 
| 420 | 
            +
                      "type": "tuple"
         | 
| 421 | 
            +
                    },
         | 
| 422 | 
            +
                    {
         | 
| 423 | 
            +
                      "internalType": "Amount",
         | 
| 424 | 
            +
                      "name": "stakingAmount",
         | 
| 425 | 
            +
                      "type": "uint96"
         | 
| 426 | 
            +
                    },
         | 
| 427 | 
            +
                    {
         | 
| 428 | 
            +
                      "internalType": "Seconds",
         | 
| 429 | 
            +
                      "name": "lifetime",
         | 
| 430 | 
            +
                      "type": "uint40"
         | 
| 431 | 
            +
                    },
         | 
| 432 | 
            +
                    {
         | 
| 433 | 
            +
                      "internalType": "bytes",
         | 
| 434 | 
            +
                      "name": "filter",
         | 
| 435 | 
            +
                      "type": "bytes"
         | 
| 436 | 
            +
                    }
         | 
| 437 | 
            +
                  ],
         | 
| 438 | 
            +
                  "name": "createBundle",
         | 
| 439 | 
            +
                  "outputs": [
         | 
| 440 | 
            +
                    {
         | 
| 441 | 
            +
                      "internalType": "NftId",
         | 
| 442 | 
            +
                      "name": "bundleNftId",
         | 
| 443 | 
            +
                      "type": "uint96"
         | 
| 444 | 
            +
                    }
         | 
| 445 | 
            +
                  ],
         | 
| 446 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 447 | 
            +
                  "type": "function"
         | 
| 448 | 
            +
                },
         | 
| 449 | 
            +
                {
         | 
| 450 | 
            +
                  "inputs": [],
         | 
| 451 | 
            +
                  "name": "getDomain",
         | 
| 452 | 
            +
                  "outputs": [
         | 
| 453 | 
            +
                    {
         | 
| 454 | 
            +
                      "internalType": "ObjectType",
         | 
| 455 | 
            +
                      "name": "",
         | 
| 456 | 
            +
                      "type": "uint8"
         | 
| 457 | 
            +
                    }
         | 
| 458 | 
            +
                  ],
         | 
| 459 | 
            +
                  "stateMutability": "pure",
         | 
| 460 | 
            +
                  "type": "function"
         | 
| 461 | 
            +
                },
         | 
| 462 | 
            +
                {
         | 
| 463 | 
            +
                  "inputs": [],
         | 
| 464 | 
            +
                  "name": "getInitialInfo",
         | 
| 465 | 
            +
                  "outputs": [
         | 
| 466 | 
            +
                    {
         | 
| 467 | 
            +
                      "components": [
         | 
| 468 | 
            +
                        {
         | 
| 469 | 
            +
                          "internalType": "NftId",
         | 
| 470 | 
            +
                          "name": "nftId",
         | 
| 471 | 
            +
                          "type": "uint96"
         | 
| 472 | 
            +
                        },
         | 
| 473 | 
            +
                        {
         | 
| 474 | 
            +
                          "internalType": "NftId",
         | 
| 475 | 
            +
                          "name": "parentNftId",
         | 
| 476 | 
            +
                          "type": "uint96"
         | 
| 477 | 
            +
                        },
         | 
| 478 | 
            +
                        {
         | 
| 479 | 
            +
                          "internalType": "ObjectType",
         | 
| 480 | 
            +
                          "name": "objectType",
         | 
| 481 | 
            +
                          "type": "uint8"
         | 
| 482 | 
            +
                        },
         | 
| 483 | 
            +
                        {
         | 
| 484 | 
            +
                          "internalType": "bool",
         | 
| 485 | 
            +
                          "name": "isInterceptor",
         | 
| 486 | 
            +
                          "type": "bool"
         | 
| 487 | 
            +
                        },
         | 
| 488 | 
            +
                        {
         | 
| 489 | 
            +
                          "internalType": "address",
         | 
| 490 | 
            +
                          "name": "objectAddress",
         | 
| 491 | 
            +
                          "type": "address"
         | 
| 492 | 
            +
                        },
         | 
| 493 | 
            +
                        {
         | 
| 494 | 
            +
                          "internalType": "address",
         | 
| 495 | 
            +
                          "name": "initialOwner",
         | 
| 496 | 
            +
                          "type": "address"
         | 
| 497 | 
            +
                        },
         | 
| 498 | 
            +
                        {
         | 
| 499 | 
            +
                          "internalType": "bytes",
         | 
| 500 | 
            +
                          "name": "data",
         | 
| 501 | 
            +
                          "type": "bytes"
         | 
| 502 | 
            +
                        }
         | 
| 503 | 
            +
                      ],
         | 
| 504 | 
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         | 
| 505 | 
            +
                      "name": "info",
         | 
| 506 | 
            +
                      "type": "tuple"
         | 
| 507 | 
            +
                    }
         | 
| 508 | 
            +
                  ],
         | 
| 509 | 
            +
                  "stateMutability": "view",
         | 
| 510 | 
            +
                  "type": "function"
         | 
| 511 | 
            +
                },
         | 
| 512 | 
            +
                {
         | 
| 513 | 
            +
                  "inputs": [],
         | 
| 514 | 
            +
                  "name": "getInstanceService",
         | 
| 515 | 
            +
                  "outputs": [
         | 
| 516 | 
            +
                    {
         | 
| 517 | 
            +
                      "internalType": "contract InstanceService",
         | 
| 518 | 
            +
                      "name": "",
         | 
| 519 | 
            +
                      "type": "address"
         | 
| 520 | 
            +
                    }
         | 
| 521 | 
            +
                  ],
         | 
| 522 | 
            +
                  "stateMutability": "view",
         | 
| 523 | 
            +
                  "type": "function"
         | 
| 524 | 
            +
                },
         | 
| 525 | 
            +
                {
         | 
| 526 | 
            +
                  "inputs": [],
         | 
| 527 | 
            +
                  "name": "getNftId",
         | 
| 528 | 
            +
                  "outputs": [
         | 
| 529 | 
            +
                    {
         | 
| 530 | 
            +
                      "internalType": "NftId",
         | 
| 531 | 
            +
                      "name": "",
         | 
| 532 | 
            +
                      "type": "uint96"
         | 
| 533 | 
            +
                    }
         | 
| 534 | 
            +
                  ],
         | 
| 535 | 
            +
                  "stateMutability": "view",
         | 
| 536 | 
            +
                  "type": "function"
         | 
| 537 | 
            +
                },
         | 
| 538 | 
            +
                {
         | 
| 539 | 
            +
                  "inputs": [],
         | 
| 540 | 
            +
                  "name": "getOwner",
         | 
| 541 | 
            +
                  "outputs": [
         | 
| 542 | 
            +
                    {
         | 
| 543 | 
            +
                      "internalType": "address",
         | 
| 544 | 
            +
                      "name": "",
         | 
| 545 | 
            +
                      "type": "address"
         | 
| 546 | 
            +
                    }
         | 
| 547 | 
            +
                  ],
         | 
| 548 | 
            +
                  "stateMutability": "view",
         | 
| 549 | 
            +
                  "type": "function"
         | 
| 550 | 
            +
                },
         | 
| 551 | 
            +
                {
         | 
| 552 | 
            +
                  "inputs": [],
         | 
| 553 | 
            +
                  "name": "getRegistry",
         | 
| 554 | 
            +
                  "outputs": [
         | 
| 555 | 
            +
                    {
         | 
| 556 | 
            +
                      "internalType": "contract IRegistry",
         | 
| 557 | 
            +
                      "name": "",
         | 
| 558 | 
            +
                      "type": "address"
         | 
| 559 | 
            +
                    }
         | 
| 560 | 
            +
                  ],
         | 
| 561 | 
            +
                  "stateMutability": "view",
         | 
| 562 | 
            +
                  "type": "function"
         | 
| 563 | 
            +
                },
         | 
| 564 | 
            +
                {
         | 
| 565 | 
            +
                  "inputs": [],
         | 
| 566 | 
            +
                  "name": "getRegistryAddress",
         | 
| 567 | 
            +
                  "outputs": [
         | 
| 568 | 
            +
                    {
         | 
| 569 | 
            +
                      "internalType": "address",
         | 
| 570 | 
            +
                      "name": "",
         | 
| 571 | 
            +
                      "type": "address"
         | 
| 572 | 
            +
                    }
         | 
| 573 | 
            +
                  ],
         | 
| 574 | 
            +
                  "stateMutability": "view",
         | 
| 575 | 
            +
                  "type": "function"
         | 
| 576 | 
            +
                },
         | 
| 577 | 
            +
                {
         | 
| 578 | 
            +
                  "inputs": [],
         | 
| 579 | 
            +
                  "name": "getRegistryService",
         | 
| 580 | 
            +
                  "outputs": [
         | 
| 581 | 
            +
                    {
         | 
| 582 | 
            +
                      "internalType": "contract IRegistryService",
         | 
| 583 | 
            +
                      "name": "",
         | 
| 584 | 
            +
                      "type": "address"
         | 
| 585 | 
            +
                    }
         | 
| 586 | 
            +
                  ],
         | 
| 587 | 
            +
                  "stateMutability": "view",
         | 
| 588 | 
            +
                  "type": "function"
         | 
| 589 | 
            +
                },
         | 
| 590 | 
            +
                {
         | 
| 591 | 
            +
                  "inputs": [],
         | 
| 592 | 
            +
                  "name": "getVersion",
         | 
| 593 | 
            +
                  "outputs": [
         | 
| 594 | 
            +
                    {
         | 
| 595 | 
            +
                      "internalType": "Version",
         | 
| 596 | 
            +
                      "name": "",
         | 
| 597 | 
            +
                      "type": "uint24"
         | 
| 598 | 
            +
                    }
         | 
| 599 | 
            +
                  ],
         | 
| 600 | 
            +
                  "stateMutability": "pure",
         | 
| 601 | 
            +
                  "type": "function"
         | 
| 602 | 
            +
                },
         | 
| 603 | 
            +
                {
         | 
| 604 | 
            +
                  "inputs": [],
         | 
| 605 | 
            +
                  "name": "initializeERC165",
         | 
| 606 | 
            +
                  "outputs": [],
         | 
| 607 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 608 | 
            +
                  "type": "function"
         | 
| 609 | 
            +
                },
         | 
| 610 | 
            +
                {
         | 
| 611 | 
            +
                  "inputs": [
         | 
| 612 | 
            +
                    {
         | 
| 613 | 
            +
                      "internalType": "address",
         | 
| 614 | 
            +
                      "name": "initialOwner",
         | 
| 615 | 
            +
                      "type": "address"
         | 
| 616 | 
            +
                    },
         | 
| 617 | 
            +
                    {
         | 
| 618 | 
            +
                      "internalType": "address",
         | 
| 619 | 
            +
                      "name": "registryAddress",
         | 
| 620 | 
            +
                      "type": "address"
         | 
| 621 | 
            +
                    }
         | 
| 622 | 
            +
                  ],
         | 
| 623 | 
            +
                  "name": "initializeNftOwnable",
         | 
| 624 | 
            +
                  "outputs": [],
         | 
| 625 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 626 | 
            +
                  "type": "function"
         | 
| 627 | 
            +
                },
         | 
| 628 | 
            +
                {
         | 
| 629 | 
            +
                  "inputs": [
         | 
| 630 | 
            +
                    {
         | 
| 631 | 
            +
                      "internalType": "address",
         | 
| 632 | 
            +
                      "name": "registryAddress",
         | 
| 633 | 
            +
                      "type": "address"
         | 
| 634 | 
            +
                    },
         | 
| 635 | 
            +
                    {
         | 
| 636 | 
            +
                      "internalType": "NftId",
         | 
| 637 | 
            +
                      "name": "parentNftId",
         | 
| 638 | 
            +
                      "type": "uint96"
         | 
| 639 | 
            +
                    },
         | 
| 640 | 
            +
                    {
         | 
| 641 | 
            +
                      "internalType": "ObjectType",
         | 
| 642 | 
            +
                      "name": "objectType",
         | 
| 643 | 
            +
                      "type": "uint8"
         | 
| 644 | 
            +
                    },
         | 
| 645 | 
            +
                    {
         | 
| 646 | 
            +
                      "internalType": "bool",
         | 
| 647 | 
            +
                      "name": "isInterceptor",
         | 
| 648 | 
            +
                      "type": "bool"
         | 
| 649 | 
            +
                    },
         | 
| 650 | 
            +
                    {
         | 
| 651 | 
            +
                      "internalType": "address",
         | 
| 652 | 
            +
                      "name": "initialOwner",
         | 
| 653 | 
            +
                      "type": "address"
         | 
| 654 | 
            +
                    },
         | 
| 655 | 
            +
                    {
         | 
| 656 | 
            +
                      "internalType": "bytes",
         | 
| 657 | 
            +
                      "name": "registryData",
         | 
| 658 | 
            +
                      "type": "bytes"
         | 
| 659 | 
            +
                    }
         | 
| 660 | 
            +
                  ],
         | 
| 661 | 
            +
                  "name": "initializeRegisterable",
         | 
| 662 | 
            +
                  "outputs": [],
         | 
| 663 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 664 | 
            +
                  "type": "function"
         | 
| 665 | 
            +
                },
         | 
| 666 | 
            +
                {
         | 
| 667 | 
            +
                  "inputs": [
         | 
| 668 | 
            +
                    {
         | 
| 669 | 
            +
                      "internalType": "address",
         | 
| 670 | 
            +
                      "name": "registryAddress",
         | 
| 671 | 
            +
                      "type": "address"
         | 
| 672 | 
            +
                    }
         | 
| 673 | 
            +
                  ],
         | 
| 674 | 
            +
                  "name": "initializeRegistryLinked",
         | 
| 675 | 
            +
                  "outputs": [],
         | 
| 676 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 677 | 
            +
                  "type": "function"
         | 
| 678 | 
            +
                },
         | 
| 679 | 
            +
                {
         | 
| 680 | 
            +
                  "inputs": [
         | 
| 681 | 
            +
                    {
         | 
| 682 | 
            +
                      "internalType": "address",
         | 
| 683 | 
            +
                      "name": "registry",
         | 
| 684 | 
            +
                      "type": "address"
         | 
| 685 | 
            +
                    },
         | 
| 686 | 
            +
                    {
         | 
| 687 | 
            +
                      "internalType": "address",
         | 
| 688 | 
            +
                      "name": "authority",
         | 
| 689 | 
            +
                      "type": "address"
         | 
| 690 | 
            +
                    },
         | 
| 691 | 
            +
                    {
         | 
| 692 | 
            +
                      "internalType": "address",
         | 
| 693 | 
            +
                      "name": "initialOwner",
         | 
| 694 | 
            +
                      "type": "address"
         | 
| 695 | 
            +
                    }
         | 
| 696 | 
            +
                  ],
         | 
| 697 | 
            +
                  "name": "initializeService",
         | 
| 698 | 
            +
                  "outputs": [],
         | 
| 699 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 700 | 
            +
                  "type": "function"
         | 
| 701 | 
            +
                },
         | 
| 702 | 
            +
                {
         | 
| 703 | 
            +
                  "inputs": [
         | 
| 704 | 
            +
                    {
         | 
| 705 | 
            +
                      "internalType": "address",
         | 
| 706 | 
            +
                      "name": "activatedBy",
         | 
| 707 | 
            +
                      "type": "address"
         | 
| 708 | 
            +
                    },
         | 
| 709 | 
            +
                    {
         | 
| 710 | 
            +
                      "internalType": "bytes",
         | 
| 711 | 
            +
                      "name": "data",
         | 
| 712 | 
            +
                      "type": "bytes"
         | 
| 713 | 
            +
                    }
         | 
| 714 | 
            +
                  ],
         | 
| 715 | 
            +
                  "name": "initializeVersionable",
         | 
| 716 | 
            +
                  "outputs": [],
         | 
| 717 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 718 | 
            +
                  "type": "function"
         | 
| 719 | 
            +
                },
         | 
| 720 | 
            +
                {
         | 
| 721 | 
            +
                  "inputs": [],
         | 
| 722 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 723 | 
            +
                  "outputs": [
         | 
| 724 | 
            +
                    {
         | 
| 725 | 
            +
                      "internalType": "bytes4",
         | 
| 726 | 
            +
                      "name": "",
         | 
| 727 | 
            +
                      "type": "bytes4"
         | 
| 728 | 
            +
                    }
         | 
| 729 | 
            +
                  ],
         | 
| 730 | 
            +
                  "stateMutability": "view",
         | 
| 731 | 
            +
                  "type": "function"
         | 
| 732 | 
            +
                },
         | 
| 733 | 
            +
                {
         | 
| 734 | 
            +
                  "inputs": [],
         | 
| 735 | 
            +
                  "name": "linkToRegisteredNftId",
         | 
| 736 | 
            +
                  "outputs": [],
         | 
| 737 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 738 | 
            +
                  "type": "function"
         | 
| 739 | 
            +
                },
         | 
| 740 | 
            +
                {
         | 
| 741 | 
            +
                  "inputs": [
         | 
| 742 | 
            +
                    {
         | 
| 743 | 
            +
                      "internalType": "contract IInstance",
         | 
| 744 | 
            +
                      "name": "instance",
         | 
| 745 | 
            +
                      "type": "address"
         | 
| 746 | 
            +
                    },
         | 
| 747 | 
            +
                    {
         | 
| 748 | 
            +
                      "internalType": "NftId",
         | 
| 749 | 
            +
                      "name": "productNftId",
         | 
| 750 | 
            +
                      "type": "uint96"
         | 
| 751 | 
            +
                    },
         | 
| 752 | 
            +
                    {
         | 
| 753 | 
            +
                      "internalType": "NftId",
         | 
| 754 | 
            +
                      "name": "applicationNftId",
         | 
| 755 | 
            +
                      "type": "uint96"
         | 
| 756 | 
            +
                    },
         | 
| 757 | 
            +
                    {
         | 
| 758 | 
            +
                      "components": [
         | 
| 759 | 
            +
                        {
         | 
| 760 | 
            +
                          "internalType": "NftId",
         | 
| 761 | 
            +
                          "name": "productNftId",
         | 
| 762 | 
            +
                          "type": "uint96"
         | 
| 763 | 
            +
                        },
         | 
| 764 | 
            +
                        {
         | 
| 765 | 
            +
                          "internalType": "NftId",
         | 
| 766 | 
            +
                          "name": "bundleNftId",
         | 
| 767 | 
            +
                          "type": "uint96"
         | 
| 768 | 
            +
                        },
         | 
| 769 | 
            +
                        {
         | 
| 770 | 
            +
                          "internalType": "ReferralId",
         | 
| 771 | 
            +
                          "name": "referralId",
         | 
| 772 | 
            +
                          "type": "bytes8"
         | 
| 773 | 
            +
                        },
         | 
| 774 | 
            +
                        {
         | 
| 775 | 
            +
                          "internalType": "RiskId",
         | 
| 776 | 
            +
                          "name": "riskId",
         | 
| 777 | 
            +
                          "type": "bytes8"
         | 
| 778 | 
            +
                        },
         | 
| 779 | 
            +
                        {
         | 
| 780 | 
            +
                          "internalType": "uint256",
         | 
| 781 | 
            +
                          "name": "sumInsuredAmount",
         | 
| 782 | 
            +
                          "type": "uint256"
         | 
| 783 | 
            +
                        },
         | 
| 784 | 
            +
                        {
         | 
| 785 | 
            +
                          "internalType": "uint256",
         | 
| 786 | 
            +
                          "name": "premiumAmount",
         | 
| 787 | 
            +
                          "type": "uint256"
         | 
| 788 | 
            +
                        },
         | 
| 789 | 
            +
                        {
         | 
| 790 | 
            +
                          "internalType": "uint256",
         | 
| 791 | 
            +
                          "name": "premiumPaidAmount",
         | 
| 792 | 
            +
                          "type": "uint256"
         | 
| 793 | 
            +
                        },
         | 
| 794 | 
            +
                        {
         | 
| 795 | 
            +
                          "internalType": "Seconds",
         | 
| 796 | 
            +
                          "name": "lifetime",
         | 
| 797 | 
            +
                          "type": "uint40"
         | 
| 798 | 
            +
                        },
         | 
| 799 | 
            +
                        {
         | 
| 800 | 
            +
                          "internalType": "bytes",
         | 
| 801 | 
            +
                          "name": "applicationData",
         | 
| 802 | 
            +
                          "type": "bytes"
         | 
| 803 | 
            +
                        },
         | 
| 804 | 
            +
                        {
         | 
| 805 | 
            +
                          "internalType": "bytes",
         | 
| 806 | 
            +
                          "name": "policyData",
         | 
| 807 | 
            +
                          "type": "bytes"
         | 
| 808 | 
            +
                        },
         | 
| 809 | 
            +
                        {
         | 
| 810 | 
            +
                          "internalType": "uint16",
         | 
| 811 | 
            +
                          "name": "claimsCount",
         | 
| 812 | 
            +
                          "type": "uint16"
         | 
| 813 | 
            +
                        },
         | 
| 814 | 
            +
                        {
         | 
| 815 | 
            +
                          "internalType": "uint16",
         | 
| 816 | 
            +
                          "name": "openClaimsCount",
         | 
| 817 | 
            +
                          "type": "uint16"
         | 
| 818 | 
            +
                        },
         | 
| 819 | 
            +
                        {
         | 
| 820 | 
            +
                          "internalType": "uint256",
         | 
| 821 | 
            +
                          "name": "payoutAmount",
         | 
| 822 | 
            +
                          "type": "uint256"
         | 
| 823 | 
            +
                        },
         | 
| 824 | 
            +
                        {
         | 
| 825 | 
            +
                          "internalType": "Timestamp",
         | 
| 826 | 
            +
                          "name": "activatedAt",
         | 
| 827 | 
            +
                          "type": "uint40"
         | 
| 828 | 
            +
                        },
         | 
| 829 | 
            +
                        {
         | 
| 830 | 
            +
                          "internalType": "Timestamp",
         | 
| 831 | 
            +
                          "name": "expiredAt",
         | 
| 832 | 
            +
                          "type": "uint40"
         | 
| 833 | 
            +
                        },
         | 
| 834 | 
            +
                        {
         | 
| 835 | 
            +
                          "internalType": "Timestamp",
         | 
| 836 | 
            +
                          "name": "closedAt",
         | 
| 837 | 
            +
                          "type": "uint40"
         | 
| 838 | 
            +
                        }
         | 
| 839 | 
            +
                      ],
         | 
| 840 | 
            +
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 841 | 
            +
                      "name": "applicationInfo",
         | 
| 842 | 
            +
                      "type": "tuple"
         | 
| 843 | 
            +
                    },
         | 
| 844 | 
            +
                    {
         | 
| 845 | 
            +
                      "internalType": "uint256",
         | 
| 846 | 
            +
                      "name": "premiumAmount",
         | 
| 847 | 
            +
                      "type": "uint256"
         | 
| 848 | 
            +
                    }
         | 
| 849 | 
            +
                  ],
         | 
| 850 | 
            +
                  "name": "lockCollateral",
         | 
| 851 | 
            +
                  "outputs": [],
         | 
| 852 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 853 | 
            +
                  "type": "function"
         | 
| 854 | 
            +
                },
         | 
| 855 | 
            +
                {
         | 
| 856 | 
            +
                  "inputs": [
         | 
| 857 | 
            +
                    {
         | 
| 858 | 
            +
                      "internalType": "address",
         | 
| 859 | 
            +
                      "name": "poolAddress",
         | 
| 860 | 
            +
                      "type": "address"
         | 
| 861 | 
            +
                    }
         | 
| 862 | 
            +
                  ],
         | 
| 863 | 
            +
                  "name": "register",
         | 
| 864 | 
            +
                  "outputs": [
         | 
| 865 | 
            +
                    {
         | 
| 866 | 
            +
                      "internalType": "NftId",
         | 
| 867 | 
            +
                      "name": "poolNftId",
         | 
| 868 | 
            +
                      "type": "uint96"
         | 
| 869 | 
            +
                    }
         | 
| 870 | 
            +
                  ],
         | 
| 871 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 872 | 
            +
                  "type": "function"
         | 
| 873 | 
            +
                },
         | 
| 874 | 
            +
                {
         | 
| 875 | 
            +
                  "inputs": [
         | 
| 876 | 
            +
                    {
         | 
| 877 | 
            +
                      "internalType": "bytes4",
         | 
| 878 | 
            +
                      "name": "interfaceId",
         | 
| 879 | 
            +
                      "type": "bytes4"
         | 
| 880 | 
            +
                    }
         | 
| 881 | 
            +
                  ],
         | 
| 882 | 
            +
                  "name": "registerInterface",
         | 
| 883 | 
            +
                  "outputs": [],
         | 
| 884 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 885 | 
            +
                  "type": "function"
         | 
| 886 | 
            +
                },
         | 
| 887 | 
            +
                {
         | 
| 888 | 
            +
                  "inputs": [
         | 
| 889 | 
            +
                    {
         | 
| 890 | 
            +
                      "internalType": "contract IInstance",
         | 
| 891 | 
            +
                      "name": "instance",
         | 
| 892 | 
            +
                      "type": "address"
         | 
| 893 | 
            +
                    },
         | 
| 894 | 
            +
                    {
         | 
| 895 | 
            +
                      "internalType": "NftId",
         | 
| 896 | 
            +
                      "name": "policyNftId",
         | 
| 897 | 
            +
                      "type": "uint96"
         | 
| 898 | 
            +
                    },
         | 
| 899 | 
            +
                    {
         | 
| 900 | 
            +
                      "components": [
         | 
| 901 | 
            +
                        {
         | 
| 902 | 
            +
                          "internalType": "NftId",
         | 
| 903 | 
            +
                          "name": "productNftId",
         | 
| 904 | 
            +
                          "type": "uint96"
         | 
| 905 | 
            +
                        },
         | 
| 906 | 
            +
                        {
         | 
| 907 | 
            +
                          "internalType": "NftId",
         | 
| 908 | 
            +
                          "name": "bundleNftId",
         | 
| 909 | 
            +
                          "type": "uint96"
         | 
| 910 | 
            +
                        },
         | 
| 911 | 
            +
                        {
         | 
| 912 | 
            +
                          "internalType": "ReferralId",
         | 
| 913 | 
            +
                          "name": "referralId",
         | 
| 914 | 
            +
                          "type": "bytes8"
         | 
| 915 | 
            +
                        },
         | 
| 916 | 
            +
                        {
         | 
| 917 | 
            +
                          "internalType": "RiskId",
         | 
| 918 | 
            +
                          "name": "riskId",
         | 
| 919 | 
            +
                          "type": "bytes8"
         | 
| 920 | 
            +
                        },
         | 
| 921 | 
            +
                        {
         | 
| 922 | 
            +
                          "internalType": "uint256",
         | 
| 923 | 
            +
                          "name": "sumInsuredAmount",
         | 
| 924 | 
            +
                          "type": "uint256"
         | 
| 925 | 
            +
                        },
         | 
| 926 | 
            +
                        {
         | 
| 927 | 
            +
                          "internalType": "uint256",
         | 
| 928 | 
            +
                          "name": "premiumAmount",
         | 
| 929 | 
            +
                          "type": "uint256"
         | 
| 930 | 
            +
                        },
         | 
| 931 | 
            +
                        {
         | 
| 932 | 
            +
                          "internalType": "uint256",
         | 
| 933 | 
            +
                          "name": "premiumPaidAmount",
         | 
| 934 | 
            +
                          "type": "uint256"
         | 
| 935 | 
            +
                        },
         | 
| 936 | 
            +
                        {
         | 
| 937 | 
            +
                          "internalType": "Seconds",
         | 
| 938 | 
            +
                          "name": "lifetime",
         | 
| 939 | 
            +
                          "type": "uint40"
         | 
| 940 | 
            +
                        },
         | 
| 941 | 
            +
                        {
         | 
| 942 | 
            +
                          "internalType": "bytes",
         | 
| 943 | 
            +
                          "name": "applicationData",
         | 
| 944 | 
            +
                          "type": "bytes"
         | 
| 945 | 
            +
                        },
         | 
| 946 | 
            +
                        {
         | 
| 947 | 
            +
                          "internalType": "bytes",
         | 
| 948 | 
            +
                          "name": "policyData",
         | 
| 949 | 
            +
                          "type": "bytes"
         | 
| 950 | 
            +
                        },
         | 
| 951 | 
            +
                        {
         | 
| 952 | 
            +
                          "internalType": "uint16",
         | 
| 953 | 
            +
                          "name": "claimsCount",
         | 
| 954 | 
            +
                          "type": "uint16"
         | 
| 955 | 
            +
                        },
         | 
| 956 | 
            +
                        {
         | 
| 957 | 
            +
                          "internalType": "uint16",
         | 
| 958 | 
            +
                          "name": "openClaimsCount",
         | 
| 959 | 
            +
                          "type": "uint16"
         | 
| 960 | 
            +
                        },
         | 
| 961 | 
            +
                        {
         | 
| 962 | 
            +
                          "internalType": "uint256",
         | 
| 963 | 
            +
                          "name": "payoutAmount",
         | 
| 964 | 
            +
                          "type": "uint256"
         | 
| 965 | 
            +
                        },
         | 
| 966 | 
            +
                        {
         | 
| 967 | 
            +
                          "internalType": "Timestamp",
         | 
| 968 | 
            +
                          "name": "activatedAt",
         | 
| 969 | 
            +
                          "type": "uint40"
         | 
| 970 | 
            +
                        },
         | 
| 971 | 
            +
                        {
         | 
| 972 | 
            +
                          "internalType": "Timestamp",
         | 
| 973 | 
            +
                          "name": "expiredAt",
         | 
| 974 | 
            +
                          "type": "uint40"
         | 
| 975 | 
            +
                        },
         | 
| 976 | 
            +
                        {
         | 
| 977 | 
            +
                          "internalType": "Timestamp",
         | 
| 978 | 
            +
                          "name": "closedAt",
         | 
| 979 | 
            +
                          "type": "uint40"
         | 
| 980 | 
            +
                        }
         | 
| 981 | 
            +
                      ],
         | 
| 982 | 
            +
                      "internalType": "struct IPolicy.PolicyInfo",
         | 
| 983 | 
            +
                      "name": "policyInfo",
         | 
| 984 | 
            +
                      "type": "tuple"
         | 
| 985 | 
            +
                    }
         | 
| 986 | 
            +
                  ],
         | 
| 987 | 
            +
                  "name": "releaseCollateral",
         | 
| 988 | 
            +
                  "outputs": [],
         | 
| 989 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 990 | 
            +
                  "type": "function"
         | 
| 991 | 
            +
                },
         | 
| 992 | 
            +
                {
         | 
| 993 | 
            +
                  "inputs": [
         | 
| 994 | 
            +
                    {
         | 
| 995 | 
            +
                      "internalType": "address",
         | 
| 996 | 
            +
                      "name": "newAuthority",
         | 
| 997 | 
            +
                      "type": "address"
         | 
| 998 | 
            +
                    }
         | 
| 999 | 
            +
                  ],
         | 
| 1000 | 
            +
                  "name": "setAuthority",
         | 
| 1001 | 
            +
                  "outputs": [],
         | 
| 1002 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1003 | 
            +
                  "type": "function"
         | 
| 1004 | 
            +
                },
         | 
| 1005 | 
            +
                {
         | 
| 1006 | 
            +
                  "inputs": [
         | 
| 1007 | 
            +
                    {
         | 
| 1008 | 
            +
                      "internalType": "RoleId",
         | 
| 1009 | 
            +
                      "name": "bundleOwnerRole",
         | 
| 1010 | 
            +
                      "type": "uint64"
         | 
| 1011 | 
            +
                    }
         | 
| 1012 | 
            +
                  ],
         | 
| 1013 | 
            +
                  "name": "setBundleOwnerRole",
         | 
| 1014 | 
            +
                  "outputs": [],
         | 
| 1015 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1016 | 
            +
                  "type": "function"
         | 
| 1017 | 
            +
                },
         | 
| 1018 | 
            +
                {
         | 
| 1019 | 
            +
                  "inputs": [
         | 
| 1020 | 
            +
                    {
         | 
| 1021 | 
            +
                      "components": [
         | 
| 1022 | 
            +
                        {
         | 
| 1023 | 
            +
                          "internalType": "UFixed",
         | 
| 1024 | 
            +
                          "name": "fractionalFee",
         | 
| 1025 | 
            +
                          "type": "uint256"
         | 
| 1026 | 
            +
                        },
         | 
| 1027 | 
            +
                        {
         | 
| 1028 | 
            +
                          "internalType": "uint256",
         | 
| 1029 | 
            +
                          "name": "fixedFee",
         | 
| 1030 | 
            +
                          "type": "uint256"
         | 
| 1031 | 
            +
                        }
         | 
| 1032 | 
            +
                      ],
         | 
| 1033 | 
            +
                      "internalType": "struct Fee",
         | 
| 1034 | 
            +
                      "name": "poolFee",
         | 
| 1035 | 
            +
                      "type": "tuple"
         | 
| 1036 | 
            +
                    },
         | 
| 1037 | 
            +
                    {
         | 
| 1038 | 
            +
                      "components": [
         | 
| 1039 | 
            +
                        {
         | 
| 1040 | 
            +
                          "internalType": "UFixed",
         | 
| 1041 | 
            +
                          "name": "fractionalFee",
         | 
| 1042 | 
            +
                          "type": "uint256"
         | 
| 1043 | 
            +
                        },
         | 
| 1044 | 
            +
                        {
         | 
| 1045 | 
            +
                          "internalType": "uint256",
         | 
| 1046 | 
            +
                          "name": "fixedFee",
         | 
| 1047 | 
            +
                          "type": "uint256"
         | 
| 1048 | 
            +
                        }
         | 
| 1049 | 
            +
                      ],
         | 
| 1050 | 
            +
                      "internalType": "struct Fee",
         | 
| 1051 | 
            +
                      "name": "stakingFee",
         | 
| 1052 | 
            +
                      "type": "tuple"
         | 
| 1053 | 
            +
                    },
         | 
| 1054 | 
            +
                    {
         | 
| 1055 | 
            +
                      "components": [
         | 
| 1056 | 
            +
                        {
         | 
| 1057 | 
            +
                          "internalType": "UFixed",
         | 
| 1058 | 
            +
                          "name": "fractionalFee",
         | 
| 1059 | 
            +
                          "type": "uint256"
         | 
| 1060 | 
            +
                        },
         | 
| 1061 | 
            +
                        {
         | 
| 1062 | 
            +
                          "internalType": "uint256",
         | 
| 1063 | 
            +
                          "name": "fixedFee",
         | 
| 1064 | 
            +
                          "type": "uint256"
         | 
| 1065 | 
            +
                        }
         | 
| 1066 | 
            +
                      ],
         | 
| 1067 | 
            +
                      "internalType": "struct Fee",
         | 
| 1068 | 
            +
                      "name": "performanceFee",
         | 
| 1069 | 
            +
                      "type": "tuple"
         | 
| 1070 | 
            +
                    }
         | 
| 1071 | 
            +
                  ],
         | 
| 1072 | 
            +
                  "name": "setFees",
         | 
| 1073 | 
            +
                  "outputs": [],
         | 
| 1074 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1075 | 
            +
                  "type": "function"
         | 
| 1076 | 
            +
                },
         | 
| 1077 | 
            +
                {
         | 
| 1078 | 
            +
                  "inputs": [
         | 
| 1079 | 
            +
                    {
         | 
| 1080 | 
            +
                      "internalType": "uint256",
         | 
| 1081 | 
            +
                      "name": "maxCapitalAmount",
         | 
| 1082 | 
            +
                      "type": "uint256"
         | 
| 1083 | 
            +
                    }
         | 
| 1084 | 
            +
                  ],
         | 
| 1085 | 
            +
                  "name": "setMaxCapitalAmount",
         | 
| 1086 | 
            +
                  "outputs": [],
         | 
| 1087 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1088 | 
            +
                  "type": "function"
         | 
| 1089 | 
            +
                },
         | 
| 1090 | 
            +
                {
         | 
| 1091 | 
            +
                  "inputs": [
         | 
| 1092 | 
            +
                    {
         | 
| 1093 | 
            +
                      "internalType": "bytes4",
         | 
| 1094 | 
            +
                      "name": "interfaceId",
         | 
| 1095 | 
            +
                      "type": "bytes4"
         | 
| 1096 | 
            +
                    }
         | 
| 1097 | 
            +
                  ],
         | 
| 1098 | 
            +
                  "name": "supportsInterface",
         | 
| 1099 | 
            +
                  "outputs": [
         | 
| 1100 | 
            +
                    {
         | 
| 1101 | 
            +
                      "internalType": "bool",
         | 
| 1102 | 
            +
                      "name": "",
         | 
| 1103 | 
            +
                      "type": "bool"
         | 
| 1104 | 
            +
                    }
         | 
| 1105 | 
            +
                  ],
         | 
| 1106 | 
            +
                  "stateMutability": "view",
         | 
| 1107 | 
            +
                  "type": "function"
         | 
| 1108 | 
            +
                },
         | 
| 1109 | 
            +
                {
         | 
| 1110 | 
            +
                  "inputs": [
         | 
| 1111 | 
            +
                    {
         | 
| 1112 | 
            +
                      "internalType": "bytes",
         | 
| 1113 | 
            +
                      "name": "data",
         | 
| 1114 | 
            +
                      "type": "bytes"
         | 
| 1115 | 
            +
                    }
         | 
| 1116 | 
            +
                  ],
         | 
| 1117 | 
            +
                  "name": "upgradeVersionable",
         | 
| 1118 | 
            +
                  "outputs": [],
         | 
| 1119 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 1120 | 
            +
                  "type": "function"
         | 
| 1121 | 
            +
                }
         | 
| 1122 | 
            +
              ],
         | 
| 1123 | 
            +
              "bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b614af580620000e66000396000f3fe60806040523480156200001157600080fd5b5060043610620002195760003560e01c80637738eb861162000125578063b135d5d411620000af578063cc9fc59a116200007a578063cc9fc59a1462000508578063d0d63b091462000512578063f21de1e814620003a2578063f7c34ee0146200052957600080fd5b8063b135d5d414620004b7578063b68d180914620004ce578063bf7e214f14620004de578063caf4e3d414620004fe57600080fd5b80638e32e97911620000f05780638e32e979146200044e5780638fb360371462000465578063a3c260521462000489578063ada9652e14620004a057600080fd5b80637738eb8614620003ff5780637a9e5e4b146200041657806382678766146200042d578063893d20e8146200044457600080fd5b8063329d6e7411620001a757806359eaa43e116200017257806359eaa43e146200038b5780635ab1bd5314620003a2578063644c45e014620003c8578063675393bf14620003e857600080fd5b8063329d6e74146200032357806336fc697e146200033a5780634420e486146200034457806349bb9e4b146200037457600080fd5b806313f3bc2f11620001e857806313f3bc2f14620002a75780631eff4b2214620002be578063214cdb8014620002f557806327bb7a33146200030c57600080fd5b806301ffc9a7146200021e5780630d8e6e2c14620002635780630fec111c1462000282578063138461e0146200029b575b600080fd5b6200024e6200022f36600462003135565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6200026d62000540565b60405162ffffff90911681526020016200025a565b6200028c620005cd565b6040516200025a9190620031bc565b620002a56200078c565b005b620002a5620002b8366004620035f5565b620009a1565b620002e67f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016200025a565b620002a56200030636600462003135565b62000da1565b620002a56200031d3660046200369a565b62000dd0565b620002a56200033436600462003740565b62000e62565b620002a562000fba565b6200035b6200035536600462003778565b62001002565b6040516001600160601b0390911681526020016200025a565b620002a56200038536600462003798565b6200152a565b620002a56200039c366004620037ed565b62001632565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016200025a565b60008051602062004a60833981519152546001600160601b03166200035b565b620002a5620003f936600462003778565b620016b8565b6200035b6200041036600462003889565b620017d1565b620002a56200042736600462003778565b620019ac565b620002a56200043e36600462003950565b62001a4e565b620003af62001c0d565b620002a56200045f3660046200399d565b62001d4c565b6200046f62001fa0565b6040516001600160e01b031990911681526020016200025a565b620002a56200049a36600462003a05565b62001fdb565b620002e660008051602062004a6083398151915281565b620002a5620004c836600462003a25565b6200222f565b604051608c81526020016200025a565b60008051602062004a80833981519152546001600160a01b0316620003af565b620003af6200243a565b620003af62002448565b620002a56200052336600462003a3f565b62002456565b620002a56200053a36600462003a5f565b6200258c565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015620005a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005c8919062003a9d565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906200067f9062003ac4565b80601f0160208091040260200160405190810160405280929190818152602001828054620006ad9062003ac4565b8015620006fe5780601f10620006d257610100808354040283529160200191620006fe565b820191906000526020600020905b815481529060010190602001808311620006e057829003601f168201915b50505050508152505090506040518060e001604052806200071d600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016200077062001c0d565b6001600160a01b03168152602001826060015181525091505090565b600060008051602062004a6083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015620007fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000823919062003b0d565b15620008555780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b30620008696001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015620008b2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008d8919062003b0d565b620009025760405163b9304b0d60e01b81526001600160a01b03821660048201526024016200084c565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa15801562000957573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200097d919062003b3a565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6000856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015620009e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a08919062003b5a565b60405163242bdc1960e21b81526001600160601b03871660048201529091506000906001600160a01b038316906390af70649060240161014060405180830381865afa15801562000a5d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a83919062003bba565b606001516020850151604051634793b4ab60e01b81526001600160601b0382166004820152919250906000906001600160a01b03851690634793b4ab90602401600060405180830381865afa15801562000ae1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000b0b919081019062003cce565b80519091506001600160601b0384811691161462000b53578051604051630a49ea2360e01b81526001600160601b03918216600482015290841660248201526044016200084c565b60405163f0ea17c360e01b81526001600160601b03841660048201526000906001600160a01b0386169063f0ea17c390602401600060405180830381865afa15801562000ba4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000bce919081019062003de2565b905060008160c0015180602001905181019062000bec919062003ee9565b608089015160025460405163a7e0dea760e01b81526001600160a01b038f811660048301526001600160601b03808f1660248401528916604483015260648201849052608482018c905293945091928a9291169063a7e0dea79060a401600060405180830381600087803b15801562000c6457600080fd5b505af115801562000c79573d6000803e3d6000fd5b505050508260e001511562000d9257600062000c9d6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b038a1660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801562000ced573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000d17919081019062003fe8565b608001519050806001600160a01b031663da65659d8d8d61010001518a8a60400151886040518663ffffffff1660e01b815260040162000d5c95949392919062004099565b600060405180830381600087803b15801562000d7757600080fd5b505af115801562000d8c573d6000803e3d6000fd5b50505050505b50505050505050505050505050565b62000dab6200260b565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b62000dda6200260b565b62000de682876200258c565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b8615150217815590506001810162000e58838262004140565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c62000e8662000540565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801562000ec7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000eed91906200420c565b60008051602062004aa08339815191528054600160401b900460ff168062000f22575080546001600160401b03808416911610155b1562000f415760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815562000f6d8362002646565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a1505050565b62000fc46200260b565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6000808080806200101f86608c6200101962002650565b620026ca565b92965090945092509050856000620010366200243a565b604051637286e5e560e01b81526001600160a01b03848116600483015287811660248301529190911690637286e5e5906044016000604051808303816000875af115801562001089573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620010b3919081019062003fe8565b9050816001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015620010f157600080fd5b505af115801562001106573d6000803e3d6000fd5b50505050806000015196506000826001600160a01b03166390edbd356040518163ffffffff1660e01b8152600401600060405180830381865afa15801562001152573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200117c919081019062003de2565b90508060200151604051620011919062003127565b6001600160a01b039091168152602001604051809103906000f080158015620011be573d6000803e3d6000fd5b506001600160a01b039081166040808401919091525163d5c9d77d60e01b81529086169063d5c9d77d90620011fa908b908590600401620042b8565b600060405180830381600087803b1580156200121557600080fd5b505af11580156200122a573d6000803e3d6000fd5b5060009250600291506200123b9050565b6040519080825280602002602001820160405280156200127057816020015b60608152602001906001900390816200125a5790505b50604080516001808252818301909252919250602080830190803683370190505081600081518110620012a757620012a7620042dc565b6020908102919091010152604080516001808252818301909252908160200160208202803683370190505081600181518110620012e857620012e8620042dc565b6020026020010181905250638267876660e01b81600081518110620013115762001311620042dc565b60200260200101516000815181106200132e576200132e620042dc565b6001600160e01b031990921660209283029190910190910152805163da65659d60e01b9082906001908110620013685762001368620042dc565b6020026020010151600081518110620013855762001385620042dc565b6001600160e01b0319929092166020928302919091018201526040805160028082526060820183526000939192909183019080368337019050509050620013cb62002650565b81600081518110620013e157620013e1620042dc565b60200260200101906001600160401b031690816001600160401b0316815250506200140b620029d2565b81600181518110620014215762001421620042dc565b60200260200101906001600160401b031690816001600160401b0316815250506200144b62002448565b6001600160a01b0316636c6fbb28878d886001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156200149a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620014c49190810190620042f2565b86866040518663ffffffff1660e01b8152600401620014e895949392919062004370565b600060405180830381600087803b1580156200150357600080fd5b505af115801562001518573d6000803e3d6000fd5b50505050505050505050505050919050565b60008051602062004aa08339815191528054600160401b810460ff1615906001600160401b03166000811580156200155f5750825b90506000826001600160401b031660011480156200157c5750303b155b9050811580156200158b575080155b15620015aa5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315620015d557845460ff60401b1916600160401b1785555b620015e1878762002a0f565b83156200162957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b60025460208201516080830151604051632a4cd36960e21b81526001600160a01b0387811660048301526001600160601b0380881660248401529093166044820152606481019190915291169063a9334da490608401600060405180830381600087803b158015620016a357600080fd5b505af115801562001629573d6000803e3d6000fd5b620016c26200260b565b806001600160a01b03163b600003620016fa5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016200084c565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa92505050801562001777575060408051601f3d908101601f19168201909252620017749181019062003b0d565b60015b620017a15760405163fdeac91f60e01b81526001600160a01b03821660048201526024016200084c565b80620017cc5760405163fdeac91f60e01b81526001600160a01b03831660048201526024016200084c565b505b50565b60008080620017e1608c62002c63565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001827573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200184d919062003b5a565b90506000889050600260009054906101000a90046001600160a01b03166001600160a01b031663e283b4a984868e8e868e8e8e6040518963ffffffff1660e01b8152600401620018a59897969594939291906200444c565b6020604051808303816000875af1158015620018c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620018eb919062003b3a565b94507f0dcadf661b8b2888423f78a848a77785b4dc0138395b12584835f6a65dfcea79836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200194d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001973919062003b3a565b604080516001600160601b03928316815282881660208201529188169082015260600160405180910390a1505050509695505050505050565b33620019ce60008051602062004a80833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b03161462001a0b5760405162d1953b60e31b81526001600160a01b03821660048201526024016200084c565b816001600160a01b03163b60000362001a43576040516361798f2f60e11b81526001600160a01b03831660048201526024016200084c565b620017cc8262002ea4565b6000808062001a5e608c62002c63565b9250925092506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001aa5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001acb919062003b5a565b60405163f0ea17c360e01b81526001600160601b03861660048201529091506000906001600160a01b0383169063f0ea17c390602401600060405180830381865afa15801562001b1f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262001b49919081019062003de2565b905060008160c0015180602001905181019062001b67919062003ee9565b61014081018a90526101608101899052610180810188905260405190915062001b95908290602001620044dd565b60408051808303601f1901815291905260c08301526001600160a01b03841663a4eeee59878460ff6040518463ffffffff1660e01b815260040162001bdd93929190620045d7565b600060405180830381600087803b15801562001bf857600080fd5b505af115801562000d92573d6000803e3d6000fd5b60008060008051602062004a6083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562001c7f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001ca5919062003b0d565b1562001d36576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801562001d0a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001d30919062003b5a565b91505090565b54600160601b90046001600160a01b0316919050565b62001d566200260b565b62001ddb83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001d9a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001dc0919062003b3a565b603c6000856040518060200160405280600081525062000dd0565b6001600160a01b0382161562001dfc5762001df68262002f06565b62001f77565b600062001e116001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af415801562001e72573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001e9891906200460e565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801562001ede573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001f04919062003b5a565b905062001f75816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001f49573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001f6f919062003b5a565b62002f06565b505b62001f89634a531f3360e01b62000da1565b62001f9b63b68d180960e01b62000da1565b505050565b60008051602062004a80833981519152805460009190600160a01b900460ff1662001fcd57600062001d30565b638fb3603760e01b91505090565b6000808062001feb608c62002c63565b9250925092506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002032573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002058919062003b5a565b60405163f0ea17c360e01b81526001600160601b03861660048201529091506000906001600160a01b0383169063f0ea17c390602401600060405180830381865afa158015620020ac573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620020d6919081019062003de2565b905060008160c00151806020019051810190620020f4919062003ee9565b90506200211b81602001516200210962002f1b565b6001600160401b039081169116141590565b15620021465760405163eff765ff60e01b81526001600160601b03871660048201526024016200084c565b6001600160401b0387166020808301919091526040516200216a91839101620044dd565b60408051808303601f1901815291905260c08301526001600160a01b03841663a4eeee59878460ff6040518463ffffffff1660e01b8152600401620021b293929190620045d7565b600060405180830381600087803b158015620021cd57600080fd5b505af1158015620021e2573d6000803e3d6000fd5b5050604080516001600160601b038a1681526001600160401b038b1660208201527fe7e6a7a42cbdb2d274dfaaac06073a09d6095ca3745ce71fe5a137f8247ea23e935001905062001620565b600080806200223f608c62002c63565b9250925092506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002286573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620022ac919062003b5a565b60405163f0ea17c360e01b81526001600160601b03861660048201529091506000906001600160a01b0383169063f0ea17c390602401600060405180830381865afa15801562002300573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200232a919081019062003de2565b905060008160c0015180602001905181019062002348919062003ee9565b60408082018051908a905290519192509062002369908390602001620044dd565b60408051808303601f1901815291905260c08401526001600160a01b03851663a4eeee59888560ff6040518463ffffffff1660e01b8152600401620023b193929190620045d7565b600060405180830381600087803b158015620023cc57600080fd5b505af1158015620023e1573d6000803e3d6000fd5b5050604080516001600160601b038b168152602081018590529081018b90527f3d3c927c97d357afd5a7d8406e5040fdd068b171cc4ea3cfd3f41c5500d596379250606001905060405180910390a15050505050505050565b6000620005c8602862002f5d565b6000620005c8604662002f5d565b60008062002465608c62002c63565b600254604051632aa6b2cb60e21b81526001600160a01b0380841660048301526001600160601b0389166024830152949650919450929092169163aa9acb2c9150604401600060405180830381600087803b158015620024c457600080fd5b505af1158015620024d9573d6000803e3d6000fd5b505050507f64c75a4392ba38fee1b5a44b61e3dd0cae424d2d43eb2b0c99772efe31e1c042816001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200253d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002563919062003b3a565b604080516001600160601b03928316815282861660208201529186169082015260600162000fad565b620025966200260b565b620025a181620016b8565b620025ab62000fba565b6001600160a01b038216620025d35760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602062004a6083398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b60008051602062004aa083398151915254600160401b900460ff166200264457604051631afcd79f60e31b815260040160405180910390fd5b565b620002196200260b565b6040516368aebf7b60e01b815260048082015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024015b602060405180830381865af4158015620026a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005c891906200420c565b6040516301ffc9a760e01b81526396c8ab0560e01b60048201528390339060009081906001600160a01b038516906301ffc9a790602401602060405180830381865afa1580156200271f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002745919062003b0d565b6200276f576040516359bff0e360e11b81526001600160a01b03881660048201526024016200084c565b6000846001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015620027b0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620027da919081019062003fe8565b9050620027f281604001518860ff9081169116141590565b1562002834576040808201519051634a2e948760e11b81526001600160a01b038a16600482015260ff808a16602483015290911660448201526064016200084c565b60a08101516001600160a01b0385811690821614620028885760a0820151604051632b50a20960e21b81526001600160a01b03808c166004830152918216602482015290861660448201526064016200084c565b816020015192506200289a8362003079565b9350836001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015620028db573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002901919062003b5a565b6040516368fc2b7760e11b81526001600160401b03891660048201526001600160a01b038781166024830152919091169063d1f856ee90604401602060405180830381865afa15801562002959573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200297f919062003b0d565b620029c757604051636af540d960e01b81526001600160601b03841660048201526001600160401b03881660248201526001600160a01b03861660448201526064016200084c565b505093509350935093565b6040516368aebf7b60e01b815261096a600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b9060240162002686565b60008051602062004aa08339815191528054600160401b810460ff1615906001600160401b031660008115801562002a445750825b90506000826001600160401b0316600114801562002a615750303b155b90508115801562002a70575080155b1562002a8f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831562002aba57845460ff60401b1916600160401b1785555b6000808780602001905181019062002ad391906200462e565b909250905062002ae68260008b62001d4c565b6001546001600160a01b031663d39e604360dc62002b0362000540565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801562002b59573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002b7f91906200460e565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801562002bc5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002beb919062003b5a565b600280546001600160a01b0319166001600160a01b039290921691909117905562002c1d630728e3df60e31b62000da1565b505083156200162957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200162001620565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015260008062002cb06001546001600160a01b031690565b6040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa15801562002cf8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262002d22919081019062003fe8565b925062002d3983604001518660ff90811691161490565b62002d7d5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b60448201526064016200084c565b8260000151935062002d93836020015162003079565b9150816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002dd4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002dfa919062003b5a565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa15801562002e45573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002e6b919062003b0d565b1562002e9c57608083015160405163d53987e560e01b81526001600160a01b0390911660048201526024016200084c565b509193909250565b60008051602062004a8083398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b62002f106200260b565b620017ce8162003112565b6040516368aebf7b60e01b81526001600160401b03600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b9060240162002686565b600062002f726001546001600160a01b031690565b6001600160a01b031663d39e60438362002f8b62000540565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801562002fe1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200300791906200460e565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156200304d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003073919062003b5a565b92915050565b60006200308e6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015620030de573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262003108919081019062003fe8565b6080015192915050565b6200311c6200260b565b620017ce8162002ea4565b6103fd806200466383390190565b6000602082840312156200314857600080fd5b81356001600160e01b0319811681146200316157600080fd5b9392505050565b60005b83811015620031855781810151838201526020016200316b565b50506000910152565b60008151808452620031a881602086016020860162003168565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516200322660c08401826001600160a01b03169052565b5060c083015160e080840152620032426101008401826200318e565b949350505050565b6001600160a01b0381168114620017ce57600080fd5b6001600160601b0381168114620017ce57600080fd5b8035620032838162003260565b919050565b634e487b7160e01b600052604160045260246000fd5b60405161020081016001600160401b0381118282101715620032c457620032c462003288565b60405290565b604080519081016001600160401b0381118282101715620032c457620032c462003288565b60405161010081016001600160401b0381118282101715620032c457620032c462003288565b60405161012081016001600160401b0381118282101715620032c457620032c462003288565b60405160e081016001600160401b0381118282101715620032c457620032c462003288565b6040516101a081016001600160401b0381118282101715620032c457620032c462003288565b604051601f8201601f191681016001600160401b0381118282101715620033b157620033b162003288565b604052919050565b80356001600160c01b0319811681146200328357600080fd5b64ffffffffff81168114620017ce57600080fd5b80356200328381620033d2565b60006001600160401b038211156200340f576200340f62003288565b50601f01601f191660200190565b600082601f8301126200342f57600080fd5b8135620034466200344082620033f3565b62003386565b8181528460208386010111156200345c57600080fd5b816020850160208301376000918101602001919091529392505050565b803561ffff811681146200328357600080fd5b60006102008284031215620034a057600080fd5b620034aa6200329e565b9050620034b78262003276565b8152620034c76020830162003276565b6020820152620034da60408301620033b9565b6040820152620034ed60608301620033b9565b60608201526080820135608082015260a082013560a082015260c082013560c08201526200351e60e08301620033e6565b60e0820152610100808301356001600160401b03808211156200354057600080fd5b6200354e868387016200341d565b838501526101209250828501359150808211156200356b57600080fd5b506200357a858286016200341d565b8284015250506101406200359081840162003479565b90820152610160620035a483820162003479565b9082015261018082810135908201526101a0620035c3818401620033e6565b908201526101c0620035d7838201620033e6565b908201526101e0620035eb838201620033e6565b9082015292915050565b600080600080600060a086880312156200360e57600080fd5b85356200361b816200324a565b945060208601356200362d8162003260565b935060408601356200363f8162003260565b925060608601356001600160401b038111156200365b57600080fd5b62003669888289016200348c565b95989497509295608001359392505050565b60ff81168114620017ce57600080fd5b8015158114620017ce57600080fd5b60008060008060008060c08789031215620036b457600080fd5b8635620036c1816200324a565b95506020870135620036d38162003260565b94506040870135620036e5816200367b565b93506060870135620036f7816200368b565b9250608087013562003709816200324a565b915060a08701356001600160401b038111156200372557600080fd5b6200373389828a016200341d565b9150509295509295509295565b6000602082840312156200375357600080fd5b81356001600160401b038111156200376a57600080fd5b62003242848285016200341d565b6000602082840312156200378b57600080fd5b813562003161816200324a565b60008060408385031215620037ac57600080fd5b8235620037b9816200324a565b915060208301356001600160401b03811115620037d557600080fd5b620037e3858286016200341d565b9150509250929050565b6000806000606084860312156200380357600080fd5b833562003810816200324a565b92506020840135620038228162003260565b915060408401356001600160401b038111156200383e57600080fd5b6200384c868287016200348c565b9150509250925092565b6000604082840312156200386957600080fd5b62003873620032ca565b9050813581526020820135602082015292915050565b60008060008060008060c08789031215620038a357600080fd5b8635620038b0816200324a565b9550620038c1886020890162003856565b94506060870135620038d38162003260565b93506080870135620038e581620033d2565b925060a08701356001600160401b03808211156200390257600080fd5b818901915089601f8301126200391757600080fd5b8135818111156200392757600080fd5b8a60208285010111156200393a57600080fd5b6020830194508093505050509295509295509295565b600080600060c084860312156200396657600080fd5b62003972858562003856565b925062003983856040860162003856565b915062003994856080860162003856565b90509250925092565b600080600060608486031215620039b357600080fd5b8335620039c0816200324a565b92506020840135620039d2816200324a565b91506040840135620039e4816200324a565b809150509250925092565b6001600160401b0381168114620017ce57600080fd5b60006020828403121562003a1857600080fd5b81356200316181620039ef565b60006020828403121562003a3857600080fd5b5035919050565b60006020828403121562003a5257600080fd5b8135620031618162003260565b6000806040838503121562003a7357600080fd5b823562003a80816200324a565b9150602083013562003a92816200324a565b809150509250929050565b60006020828403121562003ab057600080fd5b815162ffffff811681146200316157600080fd5b600181811c9082168062003ad957607f821691505b60208210810362003afa57634e487b7160e01b600052602260045260246000fd5b50919050565b805162003283816200368b565b60006020828403121562003b2057600080fd5b815162003161816200368b565b8051620032838162003260565b60006020828403121562003b4d57600080fd5b8151620031618162003260565b60006020828403121562003b6d57600080fd5b815162003161816200324a565b805162003283816200324a565b60006040828403121562003b9a57600080fd5b62003ba4620032ca565b9050815181526020820151602082015292915050565b6000610140828403121562003bce57600080fd5b62003bd8620032ef565b62003be38362003b7a565b815262003bf36020840162003b7a565b602082015262003c066040840162003b2d565b604082015262003c196060840162003b2d565b606082015262003c2d846080850162003b87565b608082015262003c418460c0850162003b87565b60a082015262003c55610100840162003b00565b60c082015262003c69610120840162003b7a565b60e08201529392505050565b600082601f83011262003c8757600080fd5b815162003c986200344082620033f3565b81815284602083860101111562003cae57600080fd5b6200324282602083016020870162003168565b80516200328381620033d2565b60006020828403121562003ce157600080fd5b81516001600160401b038082111562003cf957600080fd5b90830190610140828603121562003d0f57600080fd5b62003d1962003315565b62003d248362003b2d565b815262003d35866020850162003b87565b602082015260608301518281111562003d4d57600080fd5b62003d5b8782860162003c75565b60408301525062003d6f6080840162003b2d565b606082015262003d8260a0840162003b2d565b608082015262003d9560c0840162003b2d565b60a082015262003da860e0840162003cc1565b60c0820152610100915062003dbf82840162003cc1565b60e082015262003dd3610120840162003cc1565b91810191909152949350505050565b60006020828403121562003df557600080fd5b81516001600160401b038082111562003e0d57600080fd5b9083019060e0828603121562003e2257600080fd5b62003e2c6200333b565b82518281111562003e3c57600080fd5b62003e4a8782860162003c75565b82525062003e5b6020840162003b7a565b602082015262003e6e6040840162003b7a565b604082015262003e816060840162003b7a565b606082015262003e946080840162003b2d565b608082015262003ea760a0840162003b2d565b60a082015260c08301518281111562003ebf57600080fd5b62003ecd8782860162003c75565b60c08301525095945050505050565b80516200328381620039ef565b6000610200828403121562003efd57600080fd5b62003f0762003360565b62003f128362003b2d565b815262003f226020840162003edc565b602082015260408301516040820152606083015160608201526080830151608082015262003f5360a0840162003b00565b60a082015262003f6660c0840162003b00565b60c082015262003f7960e0840162003b00565b60e08201526101008381015190820152610120808401519082015261014062003fa58582860162003b87565b9082015261018062003fba8585830162003b87565b61016083015262003fd0856101c0860162003b87565b908201529392505050565b805162003283816200367b565b60006020828403121562003ffb57600080fd5b81516001600160401b03808211156200401357600080fd5b9083019060e082860312156200402857600080fd5b620040326200333b565b6200403d8362003b2d565b81526200404d6020840162003b2d565b6020820152620040606040840162003fdb565b6040820152620040736060840162003b00565b6060820152620040866080840162003b7a565b608082015262003ea760a0840162003b7a565b60006001600160601b03808816835260a06020840152620040be60a08401886200318e565b81871660408501528381036060850152620040da81876200318e565b925050508260808301529695505050505050565b601f82111562001f9b57600081815260208120601f850160051c81016020861015620041175750805b601f850160051c820191505b81811015620041385782815560010162004123565b505050505050565b81516001600160401b038111156200415c576200415c62003288565b62004174816200416d845462003ac4565b84620040ee565b602080601f831160018114620041ac5760008415620041935750858301515b600019600386901b1c1916600185901b17855562004138565b600085815260208120601f198616915b82811015620041dd57888601518255948401946001909101908401620041bc565b5085821015620041fc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200421f57600080fd5b81516200316181620039ef565b6000815160e084526200424360e08501826200318e565b9050602083015160018060a01b038082166020870152806040860151166040870152806060860151166060870152505060808301516001600160601b0380821660808701528060a08601511660a0870152505060c083015184820360c0860152620042af82826200318e565b95945050505050565b6001600160601b03831681526040602082015260006200324260408301846200422c565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156200430557600080fd5b81516001600160401b038111156200431c57600080fd5b620032428482850162003c75565b600081518084526020808501945080840160005b83811015620043655781516001600160401b0316875295820195908201906001016200433e565b509495945050505050565b6001600160601b03861681526000602060018060a01b0387168184015260a06040840152620043a360a08401876200318e565b8381036060850152855180825282820190600581901b830184018489016000805b848110156200442557868403601f19018652825180518086529089019089860190845b818110156200440f5783516001600160e01b0319168352928b0192918b0191600101620043e7565b50509689019694505091870191600101620043c4565b50505086810360808801526200443c81896200432a565b9c9b505050505050505050505050565b6001600160a01b0389811682526001600160601b03898116602084015288821660408401526000916101009162004490606086018b80518252602090810151910152565b881660a08501525064ffffffffff861660c084015260e0830181905282018390526101208385828501376000838501820152601f909301601f191690910190910198975050505050505050565b81516001600160601b03168152610200810160208301516200450a60208401826001600160401b03169052565b5060408301516040830152606083015160608301526080830151608083015260a08301516200453d60a084018215159052565b5060c08301516200455260c084018215159052565b5060e08301516200456760e084018215159052565b50610100838101519083015261012080840151908301526101408084015180518285015260208101516101608501525050610160830151610180620045b88185018380518252602090810151910152565b84015180516101c085015260208101516101e085015290505092915050565b6001600160601b0384168152606060208201526000620045fb60608301856200422c565b905060ff83166040830152949350505050565b6000602082840312156200462157600080fd5b815162003161816200367b565b600080604083850312156200464257600080fd5b82516200464f816200324a565b602084015190925062003a92816200324a56fe608060405234801561001057600080fd5b506040516103fd3803806103fd83398101604081905261002f91610054565b600080546001600160a01b0319166001600160a01b0392909216919091179055610084565b60006020828403121561006657600080fd5b81516001600160a01b038116811461007d57600080fd5b9392505050565b61036a806100936000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806321df0da71461003b578063beabacc81461005a575b600080fd5b600054604080516001600160a01b039092168252519081900360200190f35b61006d6100683660046102a7565b61006f565b005b600054610087906001600160a01b031684848461008c565b505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526100e69085906100ec565b50505050565b60006101016001600160a01b03841683610154565b9050805160001415801561012657508080602001905181019061012491906102e3565b155b1561008757604051635274afe760e01b81526001600160a01b03841660048201526024015b60405180910390fd5b606061016283836000610169565b9392505050565b60608147101561018e5760405163cd78605960e01b815230600482015260240161014b565b600080856001600160a01b031684866040516101aa9190610305565b60006040518083038185875af1925050503d80600081146101e7576040519150601f19603f3d011682016040523d82523d6000602084013e6101ec565b606091505b50915091506101fc868383610206565b9695505050505050565b60608261021b5761021682610262565b610162565b815115801561023257506001600160a01b0384163b155b1561025b57604051639996b31560e01b81526001600160a01b038516600482015260240161014b565b5080610162565b8051156102725780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b80356001600160a01b03811681146102a257600080fd5b919050565b6000806000606084860312156102bc57600080fd5b6102c58461028b565b92506102d36020850161028b565b9150604084013590509250925092565b6000602082840312156102f557600080fd5b8151801515811461016257600080fd5b6000825160005b81811015610326576020818601810151858301520161030c565b50600092019182525091905056fea2646970667358221220f3141585df36c5ff1a5cbb09bfe8edba43afb8f272b7a3dabda004da27f24fc464736f6c6343000814003307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220539c55cc23581be2645c84f4888c5fa6b6f0a07f91c28e0c8392186d11593bee64736f6c63430008140033",
         | 
| 1124 | 
            +
              "deployedBytecode": "0x60806040523480156200001157600080fd5b5060043610620002195760003560e01c80637738eb861162000125578063b135d5d411620000af578063cc9fc59a116200007a578063cc9fc59a1462000508578063d0d63b091462000512578063f21de1e814620003a2578063f7c34ee0146200052957600080fd5b8063b135d5d414620004b7578063b68d180914620004ce578063bf7e214f14620004de578063caf4e3d414620004fe57600080fd5b80638e32e97911620000f05780638e32e979146200044e5780638fb360371462000465578063a3c260521462000489578063ada9652e14620004a057600080fd5b80637738eb8614620003ff5780637a9e5e4b146200041657806382678766146200042d578063893d20e8146200044457600080fd5b8063329d6e7411620001a757806359eaa43e116200017257806359eaa43e146200038b5780635ab1bd5314620003a2578063644c45e014620003c8578063675393bf14620003e857600080fd5b8063329d6e74146200032357806336fc697e146200033a5780634420e486146200034457806349bb9e4b146200037457600080fd5b806313f3bc2f11620001e857806313f3bc2f14620002a75780631eff4b2214620002be578063214cdb8014620002f557806327bb7a33146200030c57600080fd5b806301ffc9a7146200021e5780630d8e6e2c14620002635780630fec111c1462000282578063138461e0146200029b575b600080fd5b6200024e6200022f36600462003135565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6200026d62000540565b60405162ffffff90911681526020016200025a565b6200028c620005cd565b6040516200025a9190620031bc565b620002a56200078c565b005b620002a5620002b8366004620035f5565b620009a1565b620002e67f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016200025a565b620002a56200030636600462003135565b62000da1565b620002a56200031d3660046200369a565b62000dd0565b620002a56200033436600462003740565b62000e62565b620002a562000fba565b6200035b6200035536600462003778565b62001002565b6040516001600160601b0390911681526020016200025a565b620002a56200038536600462003798565b6200152a565b620002a56200039c366004620037ed565b62001632565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016200025a565b60008051602062004a60833981519152546001600160601b03166200035b565b620002a5620003f936600462003778565b620016b8565b6200035b6200041036600462003889565b620017d1565b620002a56200042736600462003778565b620019ac565b620002a56200043e36600462003950565b62001a4e565b620003af62001c0d565b620002a56200045f3660046200399d565b62001d4c565b6200046f62001fa0565b6040516001600160e01b031990911681526020016200025a565b620002a56200049a36600462003a05565b62001fdb565b620002e660008051602062004a6083398151915281565b620002a5620004c836600462003a25565b6200222f565b604051608c81526020016200025a565b60008051602062004a80833981519152546001600160a01b0316620003af565b620003af6200243a565b620003af62002448565b620002a56200052336600462003a3f565b62002456565b620002a56200053a36600462003a5f565b6200258c565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af4158015620005a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005c8919062003a9d565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906200067f9062003ac4565b80601f0160208091040260200160405190810160405280929190818152602001828054620006ad9062003ac4565b8015620006fe5780601f10620006d257610100808354040283529160200191620006fe565b820191906000526020600020905b815481529060010190602001808311620006e057829003601f168201915b50505050508152505090506040518060e001604052806200071d600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016200077062001c0d565b6001600160a01b03168152602001826060015181525091505090565b600060008051602062004a6083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015620007fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000823919062003b0d565b15620008555780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b30620008696001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015620008b2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008d8919062003b0d565b620009025760405163b9304b0d60e01b81526001600160a01b03821660048201526024016200084c565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa15801562000957573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200097d919062003b3a565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6000856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015620009e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a08919062003b5a565b60405163242bdc1960e21b81526001600160601b03871660048201529091506000906001600160a01b038316906390af70649060240161014060405180830381865afa15801562000a5d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a83919062003bba565b606001516020850151604051634793b4ab60e01b81526001600160601b0382166004820152919250906000906001600160a01b03851690634793b4ab90602401600060405180830381865afa15801562000ae1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000b0b919081019062003cce565b80519091506001600160601b0384811691161462000b53578051604051630a49ea2360e01b81526001600160601b03918216600482015290841660248201526044016200084c565b60405163f0ea17c360e01b81526001600160601b03841660048201526000906001600160a01b0386169063f0ea17c390602401600060405180830381865afa15801562000ba4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000bce919081019062003de2565b905060008160c0015180602001905181019062000bec919062003ee9565b608089015160025460405163a7e0dea760e01b81526001600160a01b038f811660048301526001600160601b03808f1660248401528916604483015260648201849052608482018c905293945091928a9291169063a7e0dea79060a401600060405180830381600087803b15801562000c6457600080fd5b505af115801562000c79573d6000803e3d6000fd5b505050508260e001511562000d9257600062000c9d6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b038a1660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801562000ced573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000d17919081019062003fe8565b608001519050806001600160a01b031663da65659d8d8d61010001518a8a60400151886040518663ffffffff1660e01b815260040162000d5c95949392919062004099565b600060405180830381600087803b15801562000d7757600080fd5b505af115801562000d8c573d6000803e3d6000fd5b50505050505b50505050505050505050505050565b62000dab6200260b565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b62000dda6200260b565b62000de682876200258c565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b8615150217815590506001810162000e58838262004140565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c62000e8662000540565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801562000ec7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000eed91906200420c565b60008051602062004aa08339815191528054600160401b900460ff168062000f22575080546001600160401b03808416911610155b1562000f415760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815562000f6d8362002646565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a1505050565b62000fc46200260b565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6000808080806200101f86608c6200101962002650565b620026ca565b92965090945092509050856000620010366200243a565b604051637286e5e560e01b81526001600160a01b03848116600483015287811660248301529190911690637286e5e5906044016000604051808303816000875af115801562001089573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620010b3919081019062003fe8565b9050816001600160a01b031663138461e06040518163ffffffff1660e01b8152600401600060405180830381600087803b158015620010f157600080fd5b505af115801562001106573d6000803e3d6000fd5b50505050806000015196506000826001600160a01b03166390edbd356040518163ffffffff1660e01b8152600401600060405180830381865afa15801562001152573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200117c919081019062003de2565b90508060200151604051620011919062003127565b6001600160a01b039091168152602001604051809103906000f080158015620011be573d6000803e3d6000fd5b506001600160a01b039081166040808401919091525163d5c9d77d60e01b81529086169063d5c9d77d90620011fa908b908590600401620042b8565b600060405180830381600087803b1580156200121557600080fd5b505af11580156200122a573d6000803e3d6000fd5b5060009250600291506200123b9050565b6040519080825280602002602001820160405280156200127057816020015b60608152602001906001900390816200125a5790505b50604080516001808252818301909252919250602080830190803683370190505081600081518110620012a757620012a7620042dc565b6020908102919091010152604080516001808252818301909252908160200160208202803683370190505081600181518110620012e857620012e8620042dc565b6020026020010181905250638267876660e01b81600081518110620013115762001311620042dc565b60200260200101516000815181106200132e576200132e620042dc565b6001600160e01b031990921660209283029190910190910152805163da65659d60e01b9082906001908110620013685762001368620042dc565b6020026020010151600081518110620013855762001385620042dc565b6001600160e01b0319929092166020928302919091018201526040805160028082526060820183526000939192909183019080368337019050509050620013cb62002650565b81600081518110620013e157620013e1620042dc565b60200260200101906001600160401b031690816001600160401b0316815250506200140b620029d2565b81600181518110620014215762001421620042dc565b60200260200101906001600160401b031690816001600160401b0316815250506200144b62002448565b6001600160a01b0316636c6fbb28878d886001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156200149a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620014c49190810190620042f2565b86866040518663ffffffff1660e01b8152600401620014e895949392919062004370565b600060405180830381600087803b1580156200150357600080fd5b505af115801562001518573d6000803e3d6000fd5b50505050505050505050505050919050565b60008051602062004aa08339815191528054600160401b810460ff1615906001600160401b03166000811580156200155f5750825b90506000826001600160401b031660011480156200157c5750303b155b9050811580156200158b575080155b15620015aa5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315620015d557845460ff60401b1916600160401b1785555b620015e1878762002a0f565b83156200162957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b60025460208201516080830151604051632a4cd36960e21b81526001600160a01b0387811660048301526001600160601b0380881660248401529093166044820152606481019190915291169063a9334da490608401600060405180830381600087803b158015620016a357600080fd5b505af115801562001629573d6000803e3d6000fd5b620016c26200260b565b806001600160a01b03163b600003620016fa5760405163fdeac91f60e01b81526001600160a01b03821660048201526024016200084c565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa92505050801562001777575060408051601f3d908101601f19168201909252620017749181019062003b0d565b60015b620017a15760405163fdeac91f60e01b81526001600160a01b03821660048201526024016200084c565b80620017cc5760405163fdeac91f60e01b81526001600160a01b03831660048201526024016200084c565b505b50565b60008080620017e1608c62002c63565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001827573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200184d919062003b5a565b90506000889050600260009054906101000a90046001600160a01b03166001600160a01b031663e283b4a984868e8e868e8e8e6040518963ffffffff1660e01b8152600401620018a59897969594939291906200444c565b6020604051808303816000875af1158015620018c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620018eb919062003b3a565b94507f0dcadf661b8b2888423f78a848a77785b4dc0138395b12584835f6a65dfcea79836001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200194d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001973919062003b3a565b604080516001600160601b03928316815282881660208201529188169082015260600160405180910390a1505050509695505050505050565b33620019ce60008051602062004a80833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b03161462001a0b5760405162d1953b60e31b81526001600160a01b03821660048201526024016200084c565b816001600160a01b03163b60000362001a43576040516361798f2f60e11b81526001600160a01b03831660048201526024016200084c565b620017cc8262002ea4565b6000808062001a5e608c62002c63565b9250925092506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001aa5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001acb919062003b5a565b60405163f0ea17c360e01b81526001600160601b03861660048201529091506000906001600160a01b0383169063f0ea17c390602401600060405180830381865afa15801562001b1f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262001b49919081019062003de2565b905060008160c0015180602001905181019062001b67919062003ee9565b61014081018a90526101608101899052610180810188905260405190915062001b95908290602001620044dd565b60408051808303601f1901815291905260c08301526001600160a01b03841663a4eeee59878460ff6040518463ffffffff1660e01b815260040162001bdd93929190620045d7565b600060405180830381600087803b15801562001bf857600080fd5b505af115801562000d92573d6000803e3d6000fd5b60008060008051602062004a6083398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801562001c7f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001ca5919062003b0d565b1562001d36576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801562001d0a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001d30919062003b5a565b91505090565b54600160601b90046001600160a01b0316919050565b62001d566200260b565b62001ddb83846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001d9a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001dc0919062003b3a565b603c6000856040518060200160405280600081525062000dd0565b6001600160a01b0382161562001dfc5762001df68262002f06565b62001f77565b600062001e116001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af415801562001e72573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001e9891906200460e565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801562001ede573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001f04919062003b5a565b905062001f75816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001f49573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001f6f919062003b5a565b62002f06565b505b62001f89634a531f3360e01b62000da1565b62001f9b63b68d180960e01b62000da1565b505050565b60008051602062004a80833981519152805460009190600160a01b900460ff1662001fcd57600062001d30565b638fb3603760e01b91505090565b6000808062001feb608c62002c63565b9250925092506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002032573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002058919062003b5a565b60405163f0ea17c360e01b81526001600160601b03861660048201529091506000906001600160a01b0383169063f0ea17c390602401600060405180830381865afa158015620020ac573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620020d6919081019062003de2565b905060008160c00151806020019051810190620020f4919062003ee9565b90506200211b81602001516200210962002f1b565b6001600160401b039081169116141590565b15620021465760405163eff765ff60e01b81526001600160601b03871660048201526024016200084c565b6001600160401b0387166020808301919091526040516200216a91839101620044dd565b60408051808303601f1901815291905260c08301526001600160a01b03841663a4eeee59878460ff6040518463ffffffff1660e01b8152600401620021b293929190620045d7565b600060405180830381600087803b158015620021cd57600080fd5b505af1158015620021e2573d6000803e3d6000fd5b5050604080516001600160601b038a1681526001600160401b038b1660208201527fe7e6a7a42cbdb2d274dfaaac06073a09d6095ca3745ce71fe5a137f8247ea23e935001905062001620565b600080806200223f608c62002c63565b9250925092506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002286573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620022ac919062003b5a565b60405163f0ea17c360e01b81526001600160601b03861660048201529091506000906001600160a01b0383169063f0ea17c390602401600060405180830381865afa15801562002300573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200232a919081019062003de2565b905060008160c0015180602001905181019062002348919062003ee9565b60408082018051908a905290519192509062002369908390602001620044dd565b60408051808303601f1901815291905260c08401526001600160a01b03851663a4eeee59888560ff6040518463ffffffff1660e01b8152600401620023b193929190620045d7565b600060405180830381600087803b158015620023cc57600080fd5b505af1158015620023e1573d6000803e3d6000fd5b5050604080516001600160601b038b168152602081018590529081018b90527f3d3c927c97d357afd5a7d8406e5040fdd068b171cc4ea3cfd3f41c5500d596379250606001905060405180910390a15050505050505050565b6000620005c8602862002f5d565b6000620005c8604662002f5d565b60008062002465608c62002c63565b600254604051632aa6b2cb60e21b81526001600160a01b0380841660048301526001600160601b0389166024830152949650919450929092169163aa9acb2c9150604401600060405180830381600087803b158015620024c457600080fd5b505af1158015620024d9573d6000803e3d6000fd5b505050507f64c75a4392ba38fee1b5a44b61e3dd0cae424d2d43eb2b0c99772efe31e1c042816001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200253d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002563919062003b3a565b604080516001600160601b03928316815282861660208201529186169082015260600162000fad565b620025966200260b565b620025a181620016b8565b620025ab62000fba565b6001600160a01b038216620025d35760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602062004a6083398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b60008051602062004aa083398151915254600160401b900460ff166200264457604051631afcd79f60e31b815260040160405180910390fd5b565b620002196200260b565b6040516368aebf7b60e01b815260048082015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b906024015b602060405180830381865af4158015620026a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005c891906200420c565b6040516301ffc9a760e01b81526396c8ab0560e01b60048201528390339060009081906001600160a01b038516906301ffc9a790602401602060405180830381865afa1580156200271f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002745919062003b0d565b6200276f576040516359bff0e360e11b81526001600160a01b03881660048201526024016200084c565b6000846001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa158015620027b0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620027da919081019062003fe8565b9050620027f281604001518860ff9081169116141590565b1562002834576040808201519051634a2e948760e11b81526001600160a01b038a16600482015260ff808a16602483015290911660448201526064016200084c565b60a08101516001600160a01b0385811690821614620028885760a0820151604051632b50a20960e21b81526001600160a01b03808c166004830152918216602482015290861660448201526064016200084c565b816020015192506200289a8362003079565b9350836001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015620028db573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002901919062003b5a565b6040516368fc2b7760e11b81526001600160401b03891660048201526001600160a01b038781166024830152919091169063d1f856ee90604401602060405180830381865afa15801562002959573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200297f919062003b0d565b620029c757604051636af540d960e01b81526001600160601b03841660048201526001600160401b03881660248201526001600160a01b03861660448201526064016200084c565b505093509350935093565b6040516368aebf7b60e01b815261096a600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b9060240162002686565b60008051602062004aa08339815191528054600160401b810460ff1615906001600160401b031660008115801562002a445750825b90506000826001600160401b0316600114801562002a615750303b155b90508115801562002a70575080155b1562002a8f5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831562002aba57845460ff60401b1916600160401b1785555b6000808780602001905181019062002ad391906200462e565b909250905062002ae68260008b62001d4c565b6001546001600160a01b031663d39e604360dc62002b0362000540565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801562002b59573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002b7f91906200460e565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801562002bc5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002beb919062003b5a565b600280546001600160a01b0319166001600160a01b039290921691909117905562002c1d630728e3df60e31b62000da1565b505083156200162957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200162001620565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082015260008062002cb06001546001600160a01b031690565b6040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa15801562002cf8573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262002d22919081019062003fe8565b925062002d3983604001518660ff90811691161490565b62002d7d5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b60448201526064016200084c565b8260000151935062002d93836020015162003079565b9150816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002dd4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002dfa919062003b5a565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa15801562002e45573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002e6b919062003b0d565b1562002e9c57608083015160405163d53987e560e01b81526001600160a01b0390911660048201526024016200084c565b509193909250565b60008051602062004a8083398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b62002f106200260b565b620017ce8162003112565b6040516368aebf7b60e01b81526001600160401b03600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b9060240162002686565b600062002f726001546001600160a01b031690565b6001600160a01b031663d39e60438362002f8b62000540565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af415801562002fe1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200300791906200460e565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156200304d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003073919062003b5a565b92915050565b60006200308e6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015620030de573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262003108919081019062003fe8565b6080015192915050565b6200311c6200260b565b620017ce8162002ea4565b6103fd806200466383390190565b6000602082840312156200314857600080fd5b81356001600160e01b0319811681146200316157600080fd5b9392505050565b60005b83811015620031855781810151838201526020016200316b565b50506000910152565b60008151808452620031a881602086016020860162003168565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516200322660c08401826001600160a01b03169052565b5060c083015160e080840152620032426101008401826200318e565b949350505050565b6001600160a01b0381168114620017ce57600080fd5b6001600160601b0381168114620017ce57600080fd5b8035620032838162003260565b919050565b634e487b7160e01b600052604160045260246000fd5b60405161020081016001600160401b0381118282101715620032c457620032c462003288565b60405290565b604080519081016001600160401b0381118282101715620032c457620032c462003288565b60405161010081016001600160401b0381118282101715620032c457620032c462003288565b60405161012081016001600160401b0381118282101715620032c457620032c462003288565b60405160e081016001600160401b0381118282101715620032c457620032c462003288565b6040516101a081016001600160401b0381118282101715620032c457620032c462003288565b604051601f8201601f191681016001600160401b0381118282101715620033b157620033b162003288565b604052919050565b80356001600160c01b0319811681146200328357600080fd5b64ffffffffff81168114620017ce57600080fd5b80356200328381620033d2565b60006001600160401b038211156200340f576200340f62003288565b50601f01601f191660200190565b600082601f8301126200342f57600080fd5b8135620034466200344082620033f3565b62003386565b8181528460208386010111156200345c57600080fd5b816020850160208301376000918101602001919091529392505050565b803561ffff811681146200328357600080fd5b60006102008284031215620034a057600080fd5b620034aa6200329e565b9050620034b78262003276565b8152620034c76020830162003276565b6020820152620034da60408301620033b9565b6040820152620034ed60608301620033b9565b60608201526080820135608082015260a082013560a082015260c082013560c08201526200351e60e08301620033e6565b60e0820152610100808301356001600160401b03808211156200354057600080fd5b6200354e868387016200341d565b838501526101209250828501359150808211156200356b57600080fd5b506200357a858286016200341d565b8284015250506101406200359081840162003479565b90820152610160620035a483820162003479565b9082015261018082810135908201526101a0620035c3818401620033e6565b908201526101c0620035d7838201620033e6565b908201526101e0620035eb838201620033e6565b9082015292915050565b600080600080600060a086880312156200360e57600080fd5b85356200361b816200324a565b945060208601356200362d8162003260565b935060408601356200363f8162003260565b925060608601356001600160401b038111156200365b57600080fd5b62003669888289016200348c565b95989497509295608001359392505050565b60ff81168114620017ce57600080fd5b8015158114620017ce57600080fd5b60008060008060008060c08789031215620036b457600080fd5b8635620036c1816200324a565b95506020870135620036d38162003260565b94506040870135620036e5816200367b565b93506060870135620036f7816200368b565b9250608087013562003709816200324a565b915060a08701356001600160401b038111156200372557600080fd5b6200373389828a016200341d565b9150509295509295509295565b6000602082840312156200375357600080fd5b81356001600160401b038111156200376a57600080fd5b62003242848285016200341d565b6000602082840312156200378b57600080fd5b813562003161816200324a565b60008060408385031215620037ac57600080fd5b8235620037b9816200324a565b915060208301356001600160401b03811115620037d557600080fd5b620037e3858286016200341d565b9150509250929050565b6000806000606084860312156200380357600080fd5b833562003810816200324a565b92506020840135620038228162003260565b915060408401356001600160401b038111156200383e57600080fd5b6200384c868287016200348c565b9150509250925092565b6000604082840312156200386957600080fd5b62003873620032ca565b9050813581526020820135602082015292915050565b60008060008060008060c08789031215620038a357600080fd5b8635620038b0816200324a565b9550620038c1886020890162003856565b94506060870135620038d38162003260565b93506080870135620038e581620033d2565b925060a08701356001600160401b03808211156200390257600080fd5b818901915089601f8301126200391757600080fd5b8135818111156200392757600080fd5b8a60208285010111156200393a57600080fd5b6020830194508093505050509295509295509295565b600080600060c084860312156200396657600080fd5b62003972858562003856565b925062003983856040860162003856565b915062003994856080860162003856565b90509250925092565b600080600060608486031215620039b357600080fd5b8335620039c0816200324a565b92506020840135620039d2816200324a565b91506040840135620039e4816200324a565b809150509250925092565b6001600160401b0381168114620017ce57600080fd5b60006020828403121562003a1857600080fd5b81356200316181620039ef565b60006020828403121562003a3857600080fd5b5035919050565b60006020828403121562003a5257600080fd5b8135620031618162003260565b6000806040838503121562003a7357600080fd5b823562003a80816200324a565b9150602083013562003a92816200324a565b809150509250929050565b60006020828403121562003ab057600080fd5b815162ffffff811681146200316157600080fd5b600181811c9082168062003ad957607f821691505b60208210810362003afa57634e487b7160e01b600052602260045260246000fd5b50919050565b805162003283816200368b565b60006020828403121562003b2057600080fd5b815162003161816200368b565b8051620032838162003260565b60006020828403121562003b4d57600080fd5b8151620031618162003260565b60006020828403121562003b6d57600080fd5b815162003161816200324a565b805162003283816200324a565b60006040828403121562003b9a57600080fd5b62003ba4620032ca565b9050815181526020820151602082015292915050565b6000610140828403121562003bce57600080fd5b62003bd8620032ef565b62003be38362003b7a565b815262003bf36020840162003b7a565b602082015262003c066040840162003b2d565b604082015262003c196060840162003b2d565b606082015262003c2d846080850162003b87565b608082015262003c418460c0850162003b87565b60a082015262003c55610100840162003b00565b60c082015262003c69610120840162003b7a565b60e08201529392505050565b600082601f83011262003c8757600080fd5b815162003c986200344082620033f3565b81815284602083860101111562003cae57600080fd5b6200324282602083016020870162003168565b80516200328381620033d2565b60006020828403121562003ce157600080fd5b81516001600160401b038082111562003cf957600080fd5b90830190610140828603121562003d0f57600080fd5b62003d1962003315565b62003d248362003b2d565b815262003d35866020850162003b87565b602082015260608301518281111562003d4d57600080fd5b62003d5b8782860162003c75565b60408301525062003d6f6080840162003b2d565b606082015262003d8260a0840162003b2d565b608082015262003d9560c0840162003b2d565b60a082015262003da860e0840162003cc1565b60c0820152610100915062003dbf82840162003cc1565b60e082015262003dd3610120840162003cc1565b91810191909152949350505050565b60006020828403121562003df557600080fd5b81516001600160401b038082111562003e0d57600080fd5b9083019060e0828603121562003e2257600080fd5b62003e2c6200333b565b82518281111562003e3c57600080fd5b62003e4a8782860162003c75565b82525062003e5b6020840162003b7a565b602082015262003e6e6040840162003b7a565b604082015262003e816060840162003b7a565b606082015262003e946080840162003b2d565b608082015262003ea760a0840162003b2d565b60a082015260c08301518281111562003ebf57600080fd5b62003ecd8782860162003c75565b60c08301525095945050505050565b80516200328381620039ef565b6000610200828403121562003efd57600080fd5b62003f0762003360565b62003f128362003b2d565b815262003f226020840162003edc565b602082015260408301516040820152606083015160608201526080830151608082015262003f5360a0840162003b00565b60a082015262003f6660c0840162003b00565b60c082015262003f7960e0840162003b00565b60e08201526101008381015190820152610120808401519082015261014062003fa58582860162003b87565b9082015261018062003fba8585830162003b87565b61016083015262003fd0856101c0860162003b87565b908201529392505050565b805162003283816200367b565b60006020828403121562003ffb57600080fd5b81516001600160401b03808211156200401357600080fd5b9083019060e082860312156200402857600080fd5b620040326200333b565b6200403d8362003b2d565b81526200404d6020840162003b2d565b6020820152620040606040840162003fdb565b6040820152620040736060840162003b00565b6060820152620040866080840162003b7a565b608082015262003ea760a0840162003b7a565b60006001600160601b03808816835260a06020840152620040be60a08401886200318e565b81871660408501528381036060850152620040da81876200318e565b925050508260808301529695505050505050565b601f82111562001f9b57600081815260208120601f850160051c81016020861015620041175750805b601f850160051c820191505b81811015620041385782815560010162004123565b505050505050565b81516001600160401b038111156200415c576200415c62003288565b62004174816200416d845462003ac4565b84620040ee565b602080601f831160018114620041ac5760008415620041935750858301515b600019600386901b1c1916600185901b17855562004138565b600085815260208120601f198616915b82811015620041dd57888601518255948401946001909101908401620041bc565b5085821015620041fc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200421f57600080fd5b81516200316181620039ef565b6000815160e084526200424360e08501826200318e565b9050602083015160018060a01b038082166020870152806040860151166040870152806060860151166060870152505060808301516001600160601b0380821660808701528060a08601511660a0870152505060c083015184820360c0860152620042af82826200318e565b95945050505050565b6001600160601b03831681526040602082015260006200324260408301846200422c565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156200430557600080fd5b81516001600160401b038111156200431c57600080fd5b620032428482850162003c75565b600081518084526020808501945080840160005b83811015620043655781516001600160401b0316875295820195908201906001016200433e565b509495945050505050565b6001600160601b03861681526000602060018060a01b0387168184015260a06040840152620043a360a08401876200318e565b8381036060850152855180825282820190600581901b830184018489016000805b848110156200442557868403601f19018652825180518086529089019089860190845b818110156200440f5783516001600160e01b0319168352928b0192918b0191600101620043e7565b50509689019694505091870191600101620043c4565b50505086810360808801526200443c81896200432a565b9c9b505050505050505050505050565b6001600160a01b0389811682526001600160601b03898116602084015288821660408401526000916101009162004490606086018b80518252602090810151910152565b881660a08501525064ffffffffff861660c084015260e0830181905282018390526101208385828501376000838501820152601f909301601f191690910190910198975050505050505050565b81516001600160601b03168152610200810160208301516200450a60208401826001600160401b03169052565b5060408301516040830152606083015160608301526080830151608083015260a08301516200453d60a084018215159052565b5060c08301516200455260c084018215159052565b5060e08301516200456760e084018215159052565b50610100838101519083015261012080840151908301526101408084015180518285015260208101516101608501525050610160830151610180620045b88185018380518252602090810151910152565b84015180516101c085015260208101516101e085015290505092915050565b6001600160601b0384168152606060208201526000620045fb60608301856200422c565b905060ff83166040830152949350505050565b6000602082840312156200462157600080fd5b815162003161816200367b565b600080604083850312156200464257600080fd5b82516200464f816200324a565b602084015190925062003a92816200324a56fe608060405234801561001057600080fd5b506040516103fd3803806103fd83398101604081905261002f91610054565b600080546001600160a01b0319166001600160a01b0392909216919091179055610084565b60006020828403121561006657600080fd5b81516001600160a01b038116811461007d57600080fd5b9392505050565b61036a806100936000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806321df0da71461003b578063beabacc81461005a575b600080fd5b600054604080516001600160a01b039092168252519081900360200190f35b61006d6100683660046102a7565b61006f565b005b600054610087906001600160a01b031684848461008c565b505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526100e69085906100ec565b50505050565b60006101016001600160a01b03841683610154565b9050805160001415801561012657508080602001905181019061012491906102e3565b155b1561008757604051635274afe760e01b81526001600160a01b03841660048201526024015b60405180910390fd5b606061016283836000610169565b9392505050565b60608147101561018e5760405163cd78605960e01b815230600482015260240161014b565b600080856001600160a01b031684866040516101aa9190610305565b60006040518083038185875af1925050503d80600081146101e7576040519150601f19603f3d011682016040523d82523d6000602084013e6101ec565b606091505b50915091506101fc868383610206565b9695505050505050565b60608261021b5761021682610262565b610162565b815115801561023257506001600160a01b0384163b155b1561025b57604051639996b31560e01b81526001600160a01b038516600482015260240161014b565b5080610162565b8051156102725780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b80356001600160a01b03811681146102a257600080fd5b919050565b6000806000606084860312156102bc57600080fd5b6102c58461028b565b92506102d36020850161028b565b9150604084013590509250925092565b6000602082840312156102f557600080fd5b8151801515811461016257600080fd5b6000825160005b81811015610326576020818601810151858301520161030c565b50600092019182525091905056fea2646970667358221220f3141585df36c5ff1a5cbb09bfe8edba43afb8f272b7a3dabda004da27f24fc464736f6c6343000814003307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220539c55cc23581be2645c84f4888c5fa6b6f0a07f91c28e0c8392186d11593bee64736f6c63430008140033",
         | 
| 1125 | 
            +
              "linkReferences": {
         | 
| 1126 | 
            +
                "contracts/types/NftId.sol": {
         | 
| 1127 | 
            +
                  "NftIdLib": [
         | 
| 1128 | 
            +
                    {
         | 
| 1129 | 
            +
                      "length": 20,
         | 
| 1130 | 
            +
                      "start": 2216
         | 
| 1131 | 
            +
                    },
         | 
| 1132 | 
            +
                    {
         | 
| 1133 | 
            +
                      "length": 20,
         | 
| 1134 | 
            +
                      "start": 7466
         | 
| 1135 | 
            +
                    }
         | 
| 1136 | 
            +
                  ]
         | 
| 1137 | 
            +
                },
         | 
| 1138 | 
            +
                "contracts/types/RoleId.sol": {
         | 
| 1139 | 
            +
                  "RoleIdLib": [
         | 
| 1140 | 
            +
                    {
         | 
| 1141 | 
            +
                      "length": 20,
         | 
| 1142 | 
            +
                      "start": 10062
         | 
| 1143 | 
            +
                    },
         | 
| 1144 | 
            +
                    {
         | 
| 1145 | 
            +
                      "length": 20,
         | 
| 1146 | 
            +
                      "start": 10962
         | 
| 1147 | 
            +
                    },
         | 
| 1148 | 
            +
                    {
         | 
| 1149 | 
            +
                      "length": 20,
         | 
| 1150 | 
            +
                      "start": 12320
         | 
| 1151 | 
            +
                    }
         | 
| 1152 | 
            +
                  ]
         | 
| 1153 | 
            +
                },
         | 
| 1154 | 
            +
                "contracts/types/Version.sol": {
         | 
| 1155 | 
            +
                  "VersionLib": [
         | 
| 1156 | 
            +
                    {
         | 
| 1157 | 
            +
                      "length": 20,
         | 
| 1158 | 
            +
                      "start": 1613
         | 
| 1159 | 
            +
                    },
         | 
| 1160 | 
            +
                    {
         | 
| 1161 | 
            +
                      "length": 20,
         | 
| 1162 | 
            +
                      "start": 3914
         | 
| 1163 | 
            +
                    },
         | 
| 1164 | 
            +
                    {
         | 
| 1165 | 
            +
                      "length": 20,
         | 
| 1166 | 
            +
                      "start": 11268
         | 
| 1167 | 
            +
                    },
         | 
| 1168 | 
            +
                    {
         | 
| 1169 | 
            +
                      "length": 20,
         | 
| 1170 | 
            +
                      "start": 12428
         | 
| 1171 | 
            +
                    }
         | 
| 1172 | 
            +
                  ],
         | 
| 1173 | 
            +
                  "VersionPartLib": [
         | 
| 1174 | 
            +
                    {
         | 
| 1175 | 
            +
                      "length": 20,
         | 
| 1176 | 
            +
                      "start": 7965
         | 
| 1177 | 
            +
                    }
         | 
| 1178 | 
            +
                  ]
         | 
| 1179 | 
            +
                }
         | 
| 1180 | 
            +
              },
         | 
| 1181 | 
            +
              "deployedLinkReferences": {
         | 
| 1182 | 
            +
                "contracts/types/NftId.sol": {
         | 
| 1183 | 
            +
                  "NftIdLib": [
         | 
| 1184 | 
            +
                    {
         | 
| 1185 | 
            +
                      "length": 20,
         | 
| 1186 | 
            +
                      "start": 1986
         | 
| 1187 | 
            +
                    },
         | 
| 1188 | 
            +
                    {
         | 
| 1189 | 
            +
                      "length": 20,
         | 
| 1190 | 
            +
                      "start": 7236
         | 
| 1191 | 
            +
                    }
         | 
| 1192 | 
            +
                  ]
         | 
| 1193 | 
            +
                },
         | 
| 1194 | 
            +
                "contracts/types/RoleId.sol": {
         | 
| 1195 | 
            +
                  "RoleIdLib": [
         | 
| 1196 | 
            +
                    {
         | 
| 1197 | 
            +
                      "length": 20,
         | 
| 1198 | 
            +
                      "start": 9832
         | 
| 1199 | 
            +
                    },
         | 
| 1200 | 
            +
                    {
         | 
| 1201 | 
            +
                      "length": 20,
         | 
| 1202 | 
            +
                      "start": 10732
         | 
| 1203 | 
            +
                    },
         | 
| 1204 | 
            +
                    {
         | 
| 1205 | 
            +
                      "length": 20,
         | 
| 1206 | 
            +
                      "start": 12090
         | 
| 1207 | 
            +
                    }
         | 
| 1208 | 
            +
                  ]
         | 
| 1209 | 
            +
                },
         | 
| 1210 | 
            +
                "contracts/types/Version.sol": {
         | 
| 1211 | 
            +
                  "VersionLib": [
         | 
| 1212 | 
            +
                    {
         | 
| 1213 | 
            +
                      "length": 20,
         | 
| 1214 | 
            +
                      "start": 1383
         | 
| 1215 | 
            +
                    },
         | 
| 1216 | 
            +
                    {
         | 
| 1217 | 
            +
                      "length": 20,
         | 
| 1218 | 
            +
                      "start": 3684
         | 
| 1219 | 
            +
                    },
         | 
| 1220 | 
            +
                    {
         | 
| 1221 | 
            +
                      "length": 20,
         | 
| 1222 | 
            +
                      "start": 11038
         | 
| 1223 | 
            +
                    },
         | 
| 1224 | 
            +
                    {
         | 
| 1225 | 
            +
                      "length": 20,
         | 
| 1226 | 
            +
                      "start": 12198
         | 
| 1227 | 
            +
                    }
         | 
| 1228 | 
            +
                  ],
         | 
| 1229 | 
            +
                  "VersionPartLib": [
         | 
| 1230 | 
            +
                    {
         | 
| 1231 | 
            +
                      "length": 20,
         | 
| 1232 | 
            +
                      "start": 7735
         | 
| 1233 | 
            +
                    }
         | 
| 1234 | 
            +
                  ]
         | 
| 1235 | 
            +
                }
         | 
| 1236 | 
            +
              }
         | 
| 1237 | 
            +
            }
         |