@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,1231 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_format": "hh-sol-artifact-1",
         | 
| 3 | 
            +
              "contractName": "BundleService",
         | 
| 4 | 
            +
              "sourceName": "contracts/instance/service/BundleService.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": "NftId",
         | 
| 48 | 
            +
                      "name": "policyNftId",
         | 
| 49 | 
            +
                      "type": "uint96"
         | 
| 50 | 
            +
                    }
         | 
| 51 | 
            +
                  ],
         | 
| 52 | 
            +
                  "name": "ErrorBundleManagerPolicyAlreadyActivated",
         | 
| 53 | 
            +
                  "type": "error"
         | 
| 54 | 
            +
                },
         | 
| 55 | 
            +
                {
         | 
| 56 | 
            +
                  "inputs": [
         | 
| 57 | 
            +
                    {
         | 
| 58 | 
            +
                      "internalType": "NftId",
         | 
| 59 | 
            +
                      "name": "policyNftId",
         | 
| 60 | 
            +
                      "type": "uint96"
         | 
| 61 | 
            +
                    }
         | 
| 62 | 
            +
                  ],
         | 
| 63 | 
            +
                  "name": "ErrorBundleManagerPolicyNotCloseable",
         | 
| 64 | 
            +
                  "type": "error"
         | 
| 65 | 
            +
                },
         | 
| 66 | 
            +
                {
         | 
| 67 | 
            +
                  "inputs": [
         | 
| 68 | 
            +
                    {
         | 
| 69 | 
            +
                      "internalType": "NftId",
         | 
| 70 | 
            +
                      "name": "policyNftId",
         | 
| 71 | 
            +
                      "type": "uint96"
         | 
| 72 | 
            +
                    },
         | 
| 73 | 
            +
                    {
         | 
| 74 | 
            +
                      "internalType": "uint256",
         | 
| 75 | 
            +
                      "name": "openClaimsCount",
         | 
| 76 | 
            +
                      "type": "uint256"
         | 
| 77 | 
            +
                    }
         | 
| 78 | 
            +
                  ],
         | 
| 79 | 
            +
                  "name": "ErrorBundleManagerPolicyWithOpenClaims",
         | 
| 80 | 
            +
                  "type": "error"
         | 
| 81 | 
            +
                },
         | 
| 82 | 
            +
                {
         | 
| 83 | 
            +
                  "inputs": [
         | 
| 84 | 
            +
                    {
         | 
| 85 | 
            +
                      "internalType": "NftId",
         | 
| 86 | 
            +
                      "name": "bundleNftId",
         | 
| 87 | 
            +
                      "type": "uint96"
         | 
| 88 | 
            +
                    },
         | 
| 89 | 
            +
                    {
         | 
| 90 | 
            +
                      "internalType": "StateId",
         | 
| 91 | 
            +
                      "name": "state",
         | 
| 92 | 
            +
                      "type": "uint8"
         | 
| 93 | 
            +
                    },
         | 
| 94 | 
            +
                    {
         | 
| 95 | 
            +
                      "internalType": "Timestamp",
         | 
| 96 | 
            +
                      "name": "expiredAt",
         | 
| 97 | 
            +
                      "type": "uint40"
         | 
| 98 | 
            +
                    }
         | 
| 99 | 
            +
                  ],
         | 
| 100 | 
            +
                  "name": "ErrorBundleServiceBundleNotOpen",
         | 
| 101 | 
            +
                  "type": "error"
         | 
| 102 | 
            +
                },
         | 
| 103 | 
            +
                {
         | 
| 104 | 
            +
                  "inputs": [
         | 
| 105 | 
            +
                    {
         | 
| 106 | 
            +
                      "internalType": "NftId",
         | 
| 107 | 
            +
                      "name": "bundleNftId",
         | 
| 108 | 
            +
                      "type": "uint96"
         | 
| 109 | 
            +
                    },
         | 
| 110 | 
            +
                    {
         | 
| 111 | 
            +
                      "internalType": "uint256",
         | 
| 112 | 
            +
                      "name": "openPoliciesCount",
         | 
| 113 | 
            +
                      "type": "uint256"
         | 
| 114 | 
            +
                    }
         | 
| 115 | 
            +
                  ],
         | 
| 116 | 
            +
                  "name": "ErrorBundleServiceBundleWithOpenPolicies",
         | 
| 117 | 
            +
                  "type": "error"
         | 
| 118 | 
            +
                },
         | 
| 119 | 
            +
                {
         | 
| 120 | 
            +
                  "inputs": [
         | 
| 121 | 
            +
                    {
         | 
| 122 | 
            +
                      "internalType": "NftId",
         | 
| 123 | 
            +
                      "name": "bundleNftId",
         | 
| 124 | 
            +
                      "type": "uint96"
         | 
| 125 | 
            +
                    },
         | 
| 126 | 
            +
                    {
         | 
| 127 | 
            +
                      "internalType": "uint256",
         | 
| 128 | 
            +
                      "name": "capacityAmount",
         | 
| 129 | 
            +
                      "type": "uint256"
         | 
| 130 | 
            +
                    },
         | 
| 131 | 
            +
                    {
         | 
| 132 | 
            +
                      "internalType": "uint256",
         | 
| 133 | 
            +
                      "name": "collateralAmount",
         | 
| 134 | 
            +
                      "type": "uint256"
         | 
| 135 | 
            +
                    }
         | 
| 136 | 
            +
                  ],
         | 
| 137 | 
            +
                  "name": "ErrorBundleServiceCapacityInsufficient",
         | 
| 138 | 
            +
                  "type": "error"
         | 
| 139 | 
            +
                },
         | 
| 140 | 
            +
                {
         | 
| 141 | 
            +
                  "inputs": [
         | 
| 142 | 
            +
                    {
         | 
| 143 | 
            +
                      "internalType": "address",
         | 
| 144 | 
            +
                      "name": "bundleOwner",
         | 
| 145 | 
            +
                      "type": "address"
         | 
| 146 | 
            +
                    },
         | 
| 147 | 
            +
                    {
         | 
| 148 | 
            +
                      "internalType": "address",
         | 
| 149 | 
            +
                      "name": "tokenHandlerAddress",
         | 
| 150 | 
            +
                      "type": "address"
         | 
| 151 | 
            +
                    },
         | 
| 152 | 
            +
                    {
         | 
| 153 | 
            +
                      "internalType": "uint256",
         | 
| 154 | 
            +
                      "name": "amount",
         | 
| 155 | 
            +
                      "type": "uint256"
         | 
| 156 | 
            +
                    }
         | 
| 157 | 
            +
                  ],
         | 
| 158 | 
            +
                  "name": "ErrorBundleServiceInsufficientAllowance",
         | 
| 159 | 
            +
                  "type": "error"
         | 
| 160 | 
            +
                },
         | 
| 161 | 
            +
                {
         | 
| 162 | 
            +
                  "inputs": [
         | 
| 163 | 
            +
                    {
         | 
| 164 | 
            +
                      "internalType": "address",
         | 
| 165 | 
            +
                      "name": "component",
         | 
| 166 | 
            +
                      "type": "address"
         | 
| 167 | 
            +
                    }
         | 
| 168 | 
            +
                  ],
         | 
| 169 | 
            +
                  "name": "ErrorComponentServiceComponentLocked",
         | 
| 170 | 
            +
                  "type": "error"
         | 
| 171 | 
            +
                },
         | 
| 172 | 
            +
                {
         | 
| 173 | 
            +
                  "inputs": [
         | 
| 174 | 
            +
                    {
         | 
| 175 | 
            +
                      "internalType": "NftId",
         | 
| 176 | 
            +
                      "name": "instanceNftId",
         | 
| 177 | 
            +
                      "type": "uint96"
         | 
| 178 | 
            +
                    },
         | 
| 179 | 
            +
                    {
         | 
| 180 | 
            +
                      "internalType": "RoleId",
         | 
| 181 | 
            +
                      "name": "requiredRole",
         | 
| 182 | 
            +
                      "type": "uint64"
         | 
| 183 | 
            +
                    },
         | 
| 184 | 
            +
                    {
         | 
| 185 | 
            +
                      "internalType": "address",
         | 
| 186 | 
            +
                      "name": "sender",
         | 
| 187 | 
            +
                      "type": "address"
         | 
| 188 | 
            +
                    }
         | 
| 189 | 
            +
                  ],
         | 
| 190 | 
            +
                  "name": "ErrorComponentServiceExpectedRoleMissing",
         | 
| 191 | 
            +
                  "type": "error"
         | 
| 192 | 
            +
                },
         | 
| 193 | 
            +
                {
         | 
| 194 | 
            +
                  "inputs": [
         | 
| 195 | 
            +
                    {
         | 
| 196 | 
            +
                      "internalType": "address",
         | 
| 197 | 
            +
                      "name": "component",
         | 
| 198 | 
            +
                      "type": "address"
         | 
| 199 | 
            +
                    },
         | 
| 200 | 
            +
                    {
         | 
| 201 | 
            +
                      "internalType": "ObjectType",
         | 
| 202 | 
            +
                      "name": "requiredType",
         | 
| 203 | 
            +
                      "type": "uint8"
         | 
| 204 | 
            +
                    },
         | 
| 205 | 
            +
                    {
         | 
| 206 | 
            +
                      "internalType": "ObjectType",
         | 
| 207 | 
            +
                      "name": "componentType",
         | 
| 208 | 
            +
                      "type": "uint8"
         | 
| 209 | 
            +
                    }
         | 
| 210 | 
            +
                  ],
         | 
| 211 | 
            +
                  "name": "ErrorComponentServiceInvalidType",
         | 
| 212 | 
            +
                  "type": "error"
         | 
| 213 | 
            +
                },
         | 
| 214 | 
            +
                {
         | 
| 215 | 
            +
                  "inputs": [
         | 
| 216 | 
            +
                    {
         | 
| 217 | 
            +
                      "internalType": "address",
         | 
| 218 | 
            +
                      "name": "component",
         | 
| 219 | 
            +
                      "type": "address"
         | 
| 220 | 
            +
                    }
         | 
| 221 | 
            +
                  ],
         | 
| 222 | 
            +
                  "name": "ErrorComponentServiceNotComponent",
         | 
| 223 | 
            +
                  "type": "error"
         | 
| 224 | 
            +
                },
         | 
| 225 | 
            +
                {
         | 
| 226 | 
            +
                  "inputs": [
         | 
| 227 | 
            +
                    {
         | 
| 228 | 
            +
                      "internalType": "address",
         | 
| 229 | 
            +
                      "name": "component",
         | 
| 230 | 
            +
                      "type": "address"
         | 
| 231 | 
            +
                    },
         | 
| 232 | 
            +
                    {
         | 
| 233 | 
            +
                      "internalType": "address",
         | 
| 234 | 
            +
                      "name": "initialOwner",
         | 
| 235 | 
            +
                      "type": "address"
         | 
| 236 | 
            +
                    },
         | 
| 237 | 
            +
                    {
         | 
| 238 | 
            +
                      "internalType": "address",
         | 
| 239 | 
            +
                      "name": "sender",
         | 
| 240 | 
            +
                      "type": "address"
         | 
| 241 | 
            +
                    }
         | 
| 242 | 
            +
                  ],
         | 
| 243 | 
            +
                  "name": "ErrorComponentServiceSenderNotOwner",
         | 
| 244 | 
            +
                  "type": "error"
         | 
| 245 | 
            +
                },
         | 
| 246 | 
            +
                {
         | 
| 247 | 
            +
                  "inputs": [
         | 
| 248 | 
            +
                    {
         | 
| 249 | 
            +
                      "internalType": "address",
         | 
| 250 | 
            +
                      "name": "target",
         | 
| 251 | 
            +
                      "type": "address"
         | 
| 252 | 
            +
                    }
         | 
| 253 | 
            +
                  ],
         | 
| 254 | 
            +
                  "name": "ErrorIAccessTargetLocked",
         | 
| 255 | 
            +
                  "type": "error"
         | 
| 256 | 
            +
                },
         | 
| 257 | 
            +
                {
         | 
| 258 | 
            +
                  "inputs": [
         | 
| 259 | 
            +
                    {
         | 
| 260 | 
            +
                      "internalType": "NftId",
         | 
| 261 | 
            +
                      "name": "nftId",
         | 
| 262 | 
            +
                      "type": "uint96"
         | 
| 263 | 
            +
                    }
         | 
| 264 | 
            +
                  ],
         | 
| 265 | 
            +
                  "name": "ErrorNftOwnableAlreadyLinked",
         | 
| 266 | 
            +
                  "type": "error"
         | 
| 267 | 
            +
                },
         | 
| 268 | 
            +
                {
         | 
| 269 | 
            +
                  "inputs": [
         | 
| 270 | 
            +
                    {
         | 
| 271 | 
            +
                      "internalType": "address",
         | 
| 272 | 
            +
                      "name": "contractAddress",
         | 
| 273 | 
            +
                      "type": "address"
         | 
| 274 | 
            +
                    }
         | 
| 275 | 
            +
                  ],
         | 
| 276 | 
            +
                  "name": "ErrorNftOwnableContractNotRegistered",
         | 
| 277 | 
            +
                  "type": "error"
         | 
| 278 | 
            +
                },
         | 
| 279 | 
            +
                {
         | 
| 280 | 
            +
                  "inputs": [],
         | 
| 281 | 
            +
                  "name": "ErrorNftOwnableInitialOwnerZero",
         | 
| 282 | 
            +
                  "type": "error"
         | 
| 283 | 
            +
                },
         | 
| 284 | 
            +
                {
         | 
| 285 | 
            +
                  "inputs": [
         | 
| 286 | 
            +
                    {
         | 
| 287 | 
            +
                      "internalType": "address",
         | 
| 288 | 
            +
                      "name": "account",
         | 
| 289 | 
            +
                      "type": "address"
         | 
| 290 | 
            +
                    }
         | 
| 291 | 
            +
                  ],
         | 
| 292 | 
            +
                  "name": "ErrorNftOwnableNotOwner",
         | 
| 293 | 
            +
                  "type": "error"
         | 
| 294 | 
            +
                },
         | 
| 295 | 
            +
                {
         | 
| 296 | 
            +
                  "inputs": [
         | 
| 297 | 
            +
                    {
         | 
| 298 | 
            +
                      "internalType": "address",
         | 
| 299 | 
            +
                      "name": "registryAddress",
         | 
| 300 | 
            +
                      "type": "address"
         | 
| 301 | 
            +
                    }
         | 
| 302 | 
            +
                  ],
         | 
| 303 | 
            +
                  "name": "ErrorNotRegistry",
         | 
| 304 | 
            +
                  "type": "error"
         | 
| 305 | 
            +
                },
         | 
| 306 | 
            +
                {
         | 
| 307 | 
            +
                  "inputs": [],
         | 
| 308 | 
            +
                  "name": "InvalidInitialization",
         | 
| 309 | 
            +
                  "type": "error"
         | 
| 310 | 
            +
                },
         | 
| 311 | 
            +
                {
         | 
| 312 | 
            +
                  "inputs": [],
         | 
| 313 | 
            +
                  "name": "NotInitializing",
         | 
| 314 | 
            +
                  "type": "error"
         | 
| 315 | 
            +
                },
         | 
| 316 | 
            +
                {
         | 
| 317 | 
            +
                  "anonymous": false,
         | 
| 318 | 
            +
                  "inputs": [
         | 
| 319 | 
            +
                    {
         | 
| 320 | 
            +
                      "indexed": false,
         | 
| 321 | 
            +
                      "internalType": "address",
         | 
| 322 | 
            +
                      "name": "authority",
         | 
| 323 | 
            +
                      "type": "address"
         | 
| 324 | 
            +
                    }
         | 
| 325 | 
            +
                  ],
         | 
| 326 | 
            +
                  "name": "AuthorityUpdated",
         | 
| 327 | 
            +
                  "type": "event"
         | 
| 328 | 
            +
                },
         | 
| 329 | 
            +
                {
         | 
| 330 | 
            +
                  "anonymous": false,
         | 
| 331 | 
            +
                  "inputs": [
         | 
| 332 | 
            +
                    {
         | 
| 333 | 
            +
                      "indexed": false,
         | 
| 334 | 
            +
                      "internalType": "uint64",
         | 
| 335 | 
            +
                      "name": "version",
         | 
| 336 | 
            +
                      "type": "uint64"
         | 
| 337 | 
            +
                    }
         | 
| 338 | 
            +
                  ],
         | 
| 339 | 
            +
                  "name": "Initialized",
         | 
| 340 | 
            +
                  "type": "event"
         | 
| 341 | 
            +
                },
         | 
| 342 | 
            +
                {
         | 
| 343 | 
            +
                  "anonymous": false,
         | 
| 344 | 
            +
                  "inputs": [
         | 
| 345 | 
            +
                    {
         | 
| 346 | 
            +
                      "indexed": false,
         | 
| 347 | 
            +
                      "internalType": "NftId",
         | 
| 348 | 
            +
                      "name": "bundleNftId",
         | 
| 349 | 
            +
                      "type": "uint96"
         | 
| 350 | 
            +
                    }
         | 
| 351 | 
            +
                  ],
         | 
| 352 | 
            +
                  "name": "LogBundleServiceBundleActivated",
         | 
| 353 | 
            +
                  "type": "event"
         | 
| 354 | 
            +
                },
         | 
| 355 | 
            +
                {
         | 
| 356 | 
            +
                  "anonymous": false,
         | 
| 357 | 
            +
                  "inputs": [
         | 
| 358 | 
            +
                    {
         | 
| 359 | 
            +
                      "indexed": false,
         | 
| 360 | 
            +
                      "internalType": "NftId",
         | 
| 361 | 
            +
                      "name": "bundleNftId",
         | 
| 362 | 
            +
                      "type": "uint96"
         | 
| 363 | 
            +
                    }
         | 
| 364 | 
            +
                  ],
         | 
| 365 | 
            +
                  "name": "LogBundleServiceBundleLocked",
         | 
| 366 | 
            +
                  "type": "event"
         | 
| 367 | 
            +
                },
         | 
| 368 | 
            +
                {
         | 
| 369 | 
            +
                  "inputs": [],
         | 
| 370 | 
            +
                  "name": "NAME",
         | 
| 371 | 
            +
                  "outputs": [
         | 
| 372 | 
            +
                    {
         | 
| 373 | 
            +
                      "internalType": "string",
         | 
| 374 | 
            +
                      "name": "",
         | 
| 375 | 
            +
                      "type": "string"
         | 
| 376 | 
            +
                    }
         | 
| 377 | 
            +
                  ],
         | 
| 378 | 
            +
                  "stateMutability": "view",
         | 
| 379 | 
            +
                  "type": "function"
         | 
| 380 | 
            +
                },
         | 
| 381 | 
            +
                {
         | 
| 382 | 
            +
                  "inputs": [],
         | 
| 383 | 
            +
                  "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
         | 
| 384 | 
            +
                  "outputs": [
         | 
| 385 | 
            +
                    {
         | 
| 386 | 
            +
                      "internalType": "bytes32",
         | 
| 387 | 
            +
                      "name": "",
         | 
| 388 | 
            +
                      "type": "bytes32"
         | 
| 389 | 
            +
                    }
         | 
| 390 | 
            +
                  ],
         | 
| 391 | 
            +
                  "stateMutability": "view",
         | 
| 392 | 
            +
                  "type": "function"
         | 
| 393 | 
            +
                },
         | 
| 394 | 
            +
                {
         | 
| 395 | 
            +
                  "inputs": [],
         | 
| 396 | 
            +
                  "name": "REGISTERABLE_LOCATION_V1",
         | 
| 397 | 
            +
                  "outputs": [
         | 
| 398 | 
            +
                    {
         | 
| 399 | 
            +
                      "internalType": "bytes32",
         | 
| 400 | 
            +
                      "name": "",
         | 
| 401 | 
            +
                      "type": "bytes32"
         | 
| 402 | 
            +
                    }
         | 
| 403 | 
            +
                  ],
         | 
| 404 | 
            +
                  "stateMutability": "view",
         | 
| 405 | 
            +
                  "type": "function"
         | 
| 406 | 
            +
                },
         | 
| 407 | 
            +
                {
         | 
| 408 | 
            +
                  "inputs": [],
         | 
| 409 | 
            +
                  "name": "authority",
         | 
| 410 | 
            +
                  "outputs": [
         | 
| 411 | 
            +
                    {
         | 
| 412 | 
            +
                      "internalType": "address",
         | 
| 413 | 
            +
                      "name": "",
         | 
| 414 | 
            +
                      "type": "address"
         | 
| 415 | 
            +
                    }
         | 
| 416 | 
            +
                  ],
         | 
| 417 | 
            +
                  "stateMutability": "view",
         | 
| 418 | 
            +
                  "type": "function"
         | 
| 419 | 
            +
                },
         | 
| 420 | 
            +
                {
         | 
| 421 | 
            +
                  "inputs": [
         | 
| 422 | 
            +
                    {
         | 
| 423 | 
            +
                      "internalType": "contract IInstance",
         | 
| 424 | 
            +
                      "name": "instance",
         | 
| 425 | 
            +
                      "type": "address"
         | 
| 426 | 
            +
                    },
         | 
| 427 | 
            +
                    {
         | 
| 428 | 
            +
                      "internalType": "NftId",
         | 
| 429 | 
            +
                      "name": "bundleNftId",
         | 
| 430 | 
            +
                      "type": "uint96"
         | 
| 431 | 
            +
                    }
         | 
| 432 | 
            +
                  ],
         | 
| 433 | 
            +
                  "name": "close",
         | 
| 434 | 
            +
                  "outputs": [],
         | 
| 435 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 436 | 
            +
                  "type": "function"
         | 
| 437 | 
            +
                },
         | 
| 438 | 
            +
                {
         | 
| 439 | 
            +
                  "inputs": [
         | 
| 440 | 
            +
                    {
         | 
| 441 | 
            +
                      "internalType": "contract IInstance",
         | 
| 442 | 
            +
                      "name": "instance",
         | 
| 443 | 
            +
                      "type": "address"
         | 
| 444 | 
            +
                    },
         | 
| 445 | 
            +
                    {
         | 
| 446 | 
            +
                      "internalType": "NftId",
         | 
| 447 | 
            +
                      "name": "poolNftId",
         | 
| 448 | 
            +
                      "type": "uint96"
         | 
| 449 | 
            +
                    },
         | 
| 450 | 
            +
                    {
         | 
| 451 | 
            +
                      "internalType": "address",
         | 
| 452 | 
            +
                      "name": "owner",
         | 
| 453 | 
            +
                      "type": "address"
         | 
| 454 | 
            +
                    },
         | 
| 455 | 
            +
                    {
         | 
| 456 | 
            +
                      "components": [
         | 
| 457 | 
            +
                        {
         | 
| 458 | 
            +
                          "internalType": "UFixed",
         | 
| 459 | 
            +
                          "name": "fractionalFee",
         | 
| 460 | 
            +
                          "type": "uint256"
         | 
| 461 | 
            +
                        },
         | 
| 462 | 
            +
                        {
         | 
| 463 | 
            +
                          "internalType": "uint256",
         | 
| 464 | 
            +
                          "name": "fixedFee",
         | 
| 465 | 
            +
                          "type": "uint256"
         | 
| 466 | 
            +
                        }
         | 
| 467 | 
            +
                      ],
         | 
| 468 | 
            +
                      "internalType": "struct Fee",
         | 
| 469 | 
            +
                      "name": "fee",
         | 
| 470 | 
            +
                      "type": "tuple"
         | 
| 471 | 
            +
                    },
         | 
| 472 | 
            +
                    {
         | 
| 473 | 
            +
                      "internalType": "Amount",
         | 
| 474 | 
            +
                      "name": "stakingAmount",
         | 
| 475 | 
            +
                      "type": "uint96"
         | 
| 476 | 
            +
                    },
         | 
| 477 | 
            +
                    {
         | 
| 478 | 
            +
                      "internalType": "Seconds",
         | 
| 479 | 
            +
                      "name": "lifetime",
         | 
| 480 | 
            +
                      "type": "uint40"
         | 
| 481 | 
            +
                    },
         | 
| 482 | 
            +
                    {
         | 
| 483 | 
            +
                      "internalType": "bytes",
         | 
| 484 | 
            +
                      "name": "filter",
         | 
| 485 | 
            +
                      "type": "bytes"
         | 
| 486 | 
            +
                    }
         | 
| 487 | 
            +
                  ],
         | 
| 488 | 
            +
                  "name": "create",
         | 
| 489 | 
            +
                  "outputs": [
         | 
| 490 | 
            +
                    {
         | 
| 491 | 
            +
                      "internalType": "NftId",
         | 
| 492 | 
            +
                      "name": "bundleNftId",
         | 
| 493 | 
            +
                      "type": "uint96"
         | 
| 494 | 
            +
                    }
         | 
| 495 | 
            +
                  ],
         | 
| 496 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 497 | 
            +
                  "type": "function"
         | 
| 498 | 
            +
                },
         | 
| 499 | 
            +
                {
         | 
| 500 | 
            +
                  "inputs": [],
         | 
| 501 | 
            +
                  "name": "getDomain",
         | 
| 502 | 
            +
                  "outputs": [
         | 
| 503 | 
            +
                    {
         | 
| 504 | 
            +
                      "internalType": "ObjectType",
         | 
| 505 | 
            +
                      "name": "",
         | 
| 506 | 
            +
                      "type": "uint8"
         | 
| 507 | 
            +
                    }
         | 
| 508 | 
            +
                  ],
         | 
| 509 | 
            +
                  "stateMutability": "pure",
         | 
| 510 | 
            +
                  "type": "function"
         | 
| 511 | 
            +
                },
         | 
| 512 | 
            +
                {
         | 
| 513 | 
            +
                  "inputs": [],
         | 
| 514 | 
            +
                  "name": "getInitialInfo",
         | 
| 515 | 
            +
                  "outputs": [
         | 
| 516 | 
            +
                    {
         | 
| 517 | 
            +
                      "components": [
         | 
| 518 | 
            +
                        {
         | 
| 519 | 
            +
                          "internalType": "NftId",
         | 
| 520 | 
            +
                          "name": "nftId",
         | 
| 521 | 
            +
                          "type": "uint96"
         | 
| 522 | 
            +
                        },
         | 
| 523 | 
            +
                        {
         | 
| 524 | 
            +
                          "internalType": "NftId",
         | 
| 525 | 
            +
                          "name": "parentNftId",
         | 
| 526 | 
            +
                          "type": "uint96"
         | 
| 527 | 
            +
                        },
         | 
| 528 | 
            +
                        {
         | 
| 529 | 
            +
                          "internalType": "ObjectType",
         | 
| 530 | 
            +
                          "name": "objectType",
         | 
| 531 | 
            +
                          "type": "uint8"
         | 
| 532 | 
            +
                        },
         | 
| 533 | 
            +
                        {
         | 
| 534 | 
            +
                          "internalType": "bool",
         | 
| 535 | 
            +
                          "name": "isInterceptor",
         | 
| 536 | 
            +
                          "type": "bool"
         | 
| 537 | 
            +
                        },
         | 
| 538 | 
            +
                        {
         | 
| 539 | 
            +
                          "internalType": "address",
         | 
| 540 | 
            +
                          "name": "objectAddress",
         | 
| 541 | 
            +
                          "type": "address"
         | 
| 542 | 
            +
                        },
         | 
| 543 | 
            +
                        {
         | 
| 544 | 
            +
                          "internalType": "address",
         | 
| 545 | 
            +
                          "name": "initialOwner",
         | 
| 546 | 
            +
                          "type": "address"
         | 
| 547 | 
            +
                        },
         | 
| 548 | 
            +
                        {
         | 
| 549 | 
            +
                          "internalType": "bytes",
         | 
| 550 | 
            +
                          "name": "data",
         | 
| 551 | 
            +
                          "type": "bytes"
         | 
| 552 | 
            +
                        }
         | 
| 553 | 
            +
                      ],
         | 
| 554 | 
            +
                      "internalType": "struct IRegistry.ObjectInfo",
         | 
| 555 | 
            +
                      "name": "info",
         | 
| 556 | 
            +
                      "type": "tuple"
         | 
| 557 | 
            +
                    }
         | 
| 558 | 
            +
                  ],
         | 
| 559 | 
            +
                  "stateMutability": "view",
         | 
| 560 | 
            +
                  "type": "function"
         | 
| 561 | 
            +
                },
         | 
| 562 | 
            +
                {
         | 
| 563 | 
            +
                  "inputs": [],
         | 
| 564 | 
            +
                  "name": "getInstanceService",
         | 
| 565 | 
            +
                  "outputs": [
         | 
| 566 | 
            +
                    {
         | 
| 567 | 
            +
                      "internalType": "contract InstanceService",
         | 
| 568 | 
            +
                      "name": "",
         | 
| 569 | 
            +
                      "type": "address"
         | 
| 570 | 
            +
                    }
         | 
| 571 | 
            +
                  ],
         | 
| 572 | 
            +
                  "stateMutability": "view",
         | 
| 573 | 
            +
                  "type": "function"
         | 
| 574 | 
            +
                },
         | 
| 575 | 
            +
                {
         | 
| 576 | 
            +
                  "inputs": [],
         | 
| 577 | 
            +
                  "name": "getNftId",
         | 
| 578 | 
            +
                  "outputs": [
         | 
| 579 | 
            +
                    {
         | 
| 580 | 
            +
                      "internalType": "NftId",
         | 
| 581 | 
            +
                      "name": "",
         | 
| 582 | 
            +
                      "type": "uint96"
         | 
| 583 | 
            +
                    }
         | 
| 584 | 
            +
                  ],
         | 
| 585 | 
            +
                  "stateMutability": "view",
         | 
| 586 | 
            +
                  "type": "function"
         | 
| 587 | 
            +
                },
         | 
| 588 | 
            +
                {
         | 
| 589 | 
            +
                  "inputs": [],
         | 
| 590 | 
            +
                  "name": "getOwner",
         | 
| 591 | 
            +
                  "outputs": [
         | 
| 592 | 
            +
                    {
         | 
| 593 | 
            +
                      "internalType": "address",
         | 
| 594 | 
            +
                      "name": "",
         | 
| 595 | 
            +
                      "type": "address"
         | 
| 596 | 
            +
                    }
         | 
| 597 | 
            +
                  ],
         | 
| 598 | 
            +
                  "stateMutability": "view",
         | 
| 599 | 
            +
                  "type": "function"
         | 
| 600 | 
            +
                },
         | 
| 601 | 
            +
                {
         | 
| 602 | 
            +
                  "inputs": [],
         | 
| 603 | 
            +
                  "name": "getRegistry",
         | 
| 604 | 
            +
                  "outputs": [
         | 
| 605 | 
            +
                    {
         | 
| 606 | 
            +
                      "internalType": "contract IRegistry",
         | 
| 607 | 
            +
                      "name": "",
         | 
| 608 | 
            +
                      "type": "address"
         | 
| 609 | 
            +
                    }
         | 
| 610 | 
            +
                  ],
         | 
| 611 | 
            +
                  "stateMutability": "view",
         | 
| 612 | 
            +
                  "type": "function"
         | 
| 613 | 
            +
                },
         | 
| 614 | 
            +
                {
         | 
| 615 | 
            +
                  "inputs": [],
         | 
| 616 | 
            +
                  "name": "getRegistryAddress",
         | 
| 617 | 
            +
                  "outputs": [
         | 
| 618 | 
            +
                    {
         | 
| 619 | 
            +
                      "internalType": "address",
         | 
| 620 | 
            +
                      "name": "",
         | 
| 621 | 
            +
                      "type": "address"
         | 
| 622 | 
            +
                    }
         | 
| 623 | 
            +
                  ],
         | 
| 624 | 
            +
                  "stateMutability": "view",
         | 
| 625 | 
            +
                  "type": "function"
         | 
| 626 | 
            +
                },
         | 
| 627 | 
            +
                {
         | 
| 628 | 
            +
                  "inputs": [],
         | 
| 629 | 
            +
                  "name": "getRegistryService",
         | 
| 630 | 
            +
                  "outputs": [
         | 
| 631 | 
            +
                    {
         | 
| 632 | 
            +
                      "internalType": "contract IRegistryService",
         | 
| 633 | 
            +
                      "name": "",
         | 
| 634 | 
            +
                      "type": "address"
         | 
| 635 | 
            +
                    }
         | 
| 636 | 
            +
                  ],
         | 
| 637 | 
            +
                  "stateMutability": "view",
         | 
| 638 | 
            +
                  "type": "function"
         | 
| 639 | 
            +
                },
         | 
| 640 | 
            +
                {
         | 
| 641 | 
            +
                  "inputs": [],
         | 
| 642 | 
            +
                  "name": "getVersion",
         | 
| 643 | 
            +
                  "outputs": [
         | 
| 644 | 
            +
                    {
         | 
| 645 | 
            +
                      "internalType": "Version",
         | 
| 646 | 
            +
                      "name": "",
         | 
| 647 | 
            +
                      "type": "uint24"
         | 
| 648 | 
            +
                    }
         | 
| 649 | 
            +
                  ],
         | 
| 650 | 
            +
                  "stateMutability": "pure",
         | 
| 651 | 
            +
                  "type": "function"
         | 
| 652 | 
            +
                },
         | 
| 653 | 
            +
                {
         | 
| 654 | 
            +
                  "inputs": [
         | 
| 655 | 
            +
                    {
         | 
| 656 | 
            +
                      "internalType": "contract IInstance",
         | 
| 657 | 
            +
                      "name": "instance",
         | 
| 658 | 
            +
                      "type": "address"
         | 
| 659 | 
            +
                    },
         | 
| 660 | 
            +
                    {
         | 
| 661 | 
            +
                      "internalType": "NftId",
         | 
| 662 | 
            +
                      "name": "bundleNftId",
         | 
| 663 | 
            +
                      "type": "uint96"
         | 
| 664 | 
            +
                    },
         | 
| 665 | 
            +
                    {
         | 
| 666 | 
            +
                      "internalType": "uint256",
         | 
| 667 | 
            +
                      "name": "premiumAmount",
         | 
| 668 | 
            +
                      "type": "uint256"
         | 
| 669 | 
            +
                    }
         | 
| 670 | 
            +
                  ],
         | 
| 671 | 
            +
                  "name": "increaseBalance",
         | 
| 672 | 
            +
                  "outputs": [],
         | 
| 673 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 674 | 
            +
                  "type": "function"
         | 
| 675 | 
            +
                },
         | 
| 676 | 
            +
                {
         | 
| 677 | 
            +
                  "inputs": [],
         | 
| 678 | 
            +
                  "name": "initializeERC165",
         | 
| 679 | 
            +
                  "outputs": [],
         | 
| 680 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 681 | 
            +
                  "type": "function"
         | 
| 682 | 
            +
                },
         | 
| 683 | 
            +
                {
         | 
| 684 | 
            +
                  "inputs": [
         | 
| 685 | 
            +
                    {
         | 
| 686 | 
            +
                      "internalType": "address",
         | 
| 687 | 
            +
                      "name": "initialOwner",
         | 
| 688 | 
            +
                      "type": "address"
         | 
| 689 | 
            +
                    },
         | 
| 690 | 
            +
                    {
         | 
| 691 | 
            +
                      "internalType": "address",
         | 
| 692 | 
            +
                      "name": "registryAddress",
         | 
| 693 | 
            +
                      "type": "address"
         | 
| 694 | 
            +
                    }
         | 
| 695 | 
            +
                  ],
         | 
| 696 | 
            +
                  "name": "initializeNftOwnable",
         | 
| 697 | 
            +
                  "outputs": [],
         | 
| 698 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 699 | 
            +
                  "type": "function"
         | 
| 700 | 
            +
                },
         | 
| 701 | 
            +
                {
         | 
| 702 | 
            +
                  "inputs": [
         | 
| 703 | 
            +
                    {
         | 
| 704 | 
            +
                      "internalType": "address",
         | 
| 705 | 
            +
                      "name": "registryAddress",
         | 
| 706 | 
            +
                      "type": "address"
         | 
| 707 | 
            +
                    },
         | 
| 708 | 
            +
                    {
         | 
| 709 | 
            +
                      "internalType": "NftId",
         | 
| 710 | 
            +
                      "name": "parentNftId",
         | 
| 711 | 
            +
                      "type": "uint96"
         | 
| 712 | 
            +
                    },
         | 
| 713 | 
            +
                    {
         | 
| 714 | 
            +
                      "internalType": "ObjectType",
         | 
| 715 | 
            +
                      "name": "objectType",
         | 
| 716 | 
            +
                      "type": "uint8"
         | 
| 717 | 
            +
                    },
         | 
| 718 | 
            +
                    {
         | 
| 719 | 
            +
                      "internalType": "bool",
         | 
| 720 | 
            +
                      "name": "isInterceptor",
         | 
| 721 | 
            +
                      "type": "bool"
         | 
| 722 | 
            +
                    },
         | 
| 723 | 
            +
                    {
         | 
| 724 | 
            +
                      "internalType": "address",
         | 
| 725 | 
            +
                      "name": "initialOwner",
         | 
| 726 | 
            +
                      "type": "address"
         | 
| 727 | 
            +
                    },
         | 
| 728 | 
            +
                    {
         | 
| 729 | 
            +
                      "internalType": "bytes",
         | 
| 730 | 
            +
                      "name": "registryData",
         | 
| 731 | 
            +
                      "type": "bytes"
         | 
| 732 | 
            +
                    }
         | 
| 733 | 
            +
                  ],
         | 
| 734 | 
            +
                  "name": "initializeRegisterable",
         | 
| 735 | 
            +
                  "outputs": [],
         | 
| 736 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 737 | 
            +
                  "type": "function"
         | 
| 738 | 
            +
                },
         | 
| 739 | 
            +
                {
         | 
| 740 | 
            +
                  "inputs": [
         | 
| 741 | 
            +
                    {
         | 
| 742 | 
            +
                      "internalType": "address",
         | 
| 743 | 
            +
                      "name": "registryAddress",
         | 
| 744 | 
            +
                      "type": "address"
         | 
| 745 | 
            +
                    }
         | 
| 746 | 
            +
                  ],
         | 
| 747 | 
            +
                  "name": "initializeRegistryLinked",
         | 
| 748 | 
            +
                  "outputs": [],
         | 
| 749 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 750 | 
            +
                  "type": "function"
         | 
| 751 | 
            +
                },
         | 
| 752 | 
            +
                {
         | 
| 753 | 
            +
                  "inputs": [
         | 
| 754 | 
            +
                    {
         | 
| 755 | 
            +
                      "internalType": "address",
         | 
| 756 | 
            +
                      "name": "registry",
         | 
| 757 | 
            +
                      "type": "address"
         | 
| 758 | 
            +
                    },
         | 
| 759 | 
            +
                    {
         | 
| 760 | 
            +
                      "internalType": "address",
         | 
| 761 | 
            +
                      "name": "authority",
         | 
| 762 | 
            +
                      "type": "address"
         | 
| 763 | 
            +
                    },
         | 
| 764 | 
            +
                    {
         | 
| 765 | 
            +
                      "internalType": "address",
         | 
| 766 | 
            +
                      "name": "initialOwner",
         | 
| 767 | 
            +
                      "type": "address"
         | 
| 768 | 
            +
                    }
         | 
| 769 | 
            +
                  ],
         | 
| 770 | 
            +
                  "name": "initializeService",
         | 
| 771 | 
            +
                  "outputs": [],
         | 
| 772 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 773 | 
            +
                  "type": "function"
         | 
| 774 | 
            +
                },
         | 
| 775 | 
            +
                {
         | 
| 776 | 
            +
                  "inputs": [
         | 
| 777 | 
            +
                    {
         | 
| 778 | 
            +
                      "internalType": "address",
         | 
| 779 | 
            +
                      "name": "activatedBy",
         | 
| 780 | 
            +
                      "type": "address"
         | 
| 781 | 
            +
                    },
         | 
| 782 | 
            +
                    {
         | 
| 783 | 
            +
                      "internalType": "bytes",
         | 
| 784 | 
            +
                      "name": "data",
         | 
| 785 | 
            +
                      "type": "bytes"
         | 
| 786 | 
            +
                    }
         | 
| 787 | 
            +
                  ],
         | 
| 788 | 
            +
                  "name": "initializeVersionable",
         | 
| 789 | 
            +
                  "outputs": [],
         | 
| 790 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 791 | 
            +
                  "type": "function"
         | 
| 792 | 
            +
                },
         | 
| 793 | 
            +
                {
         | 
| 794 | 
            +
                  "inputs": [],
         | 
| 795 | 
            +
                  "name": "isConsumingScheduledOp",
         | 
| 796 | 
            +
                  "outputs": [
         | 
| 797 | 
            +
                    {
         | 
| 798 | 
            +
                      "internalType": "bytes4",
         | 
| 799 | 
            +
                      "name": "",
         | 
| 800 | 
            +
                      "type": "bytes4"
         | 
| 801 | 
            +
                    }
         | 
| 802 | 
            +
                  ],
         | 
| 803 | 
            +
                  "stateMutability": "view",
         | 
| 804 | 
            +
                  "type": "function"
         | 
| 805 | 
            +
                },
         | 
| 806 | 
            +
                {
         | 
| 807 | 
            +
                  "inputs": [],
         | 
| 808 | 
            +
                  "name": "linkToRegisteredNftId",
         | 
| 809 | 
            +
                  "outputs": [],
         | 
| 810 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 811 | 
            +
                  "type": "function"
         | 
| 812 | 
            +
                },
         | 
| 813 | 
            +
                {
         | 
| 814 | 
            +
                  "inputs": [
         | 
| 815 | 
            +
                    {
         | 
| 816 | 
            +
                      "internalType": "NftId",
         | 
| 817 | 
            +
                      "name": "bundleNftId",
         | 
| 818 | 
            +
                      "type": "uint96"
         | 
| 819 | 
            +
                    }
         | 
| 820 | 
            +
                  ],
         | 
| 821 | 
            +
                  "name": "lock",
         | 
| 822 | 
            +
                  "outputs": [],
         | 
| 823 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 824 | 
            +
                  "type": "function"
         | 
| 825 | 
            +
                },
         | 
| 826 | 
            +
                {
         | 
| 827 | 
            +
                  "inputs": [
         | 
| 828 | 
            +
                    {
         | 
| 829 | 
            +
                      "internalType": "contract IInstance",
         | 
| 830 | 
            +
                      "name": "instance",
         | 
| 831 | 
            +
                      "type": "address"
         | 
| 832 | 
            +
                    },
         | 
| 833 | 
            +
                    {
         | 
| 834 | 
            +
                      "internalType": "NftId",
         | 
| 835 | 
            +
                      "name": "policyNftId",
         | 
| 836 | 
            +
                      "type": "uint96"
         | 
| 837 | 
            +
                    },
         | 
| 838 | 
            +
                    {
         | 
| 839 | 
            +
                      "internalType": "NftId",
         | 
| 840 | 
            +
                      "name": "bundleNftId",
         | 
| 841 | 
            +
                      "type": "uint96"
         | 
| 842 | 
            +
                    },
         | 
| 843 | 
            +
                    {
         | 
| 844 | 
            +
                      "internalType": "uint256",
         | 
| 845 | 
            +
                      "name": "collateralAmount",
         | 
| 846 | 
            +
                      "type": "uint256"
         | 
| 847 | 
            +
                    },
         | 
| 848 | 
            +
                    {
         | 
| 849 | 
            +
                      "internalType": "uint256",
         | 
| 850 | 
            +
                      "name": "premiumAmount",
         | 
| 851 | 
            +
                      "type": "uint256"
         | 
| 852 | 
            +
                    }
         | 
| 853 | 
            +
                  ],
         | 
| 854 | 
            +
                  "name": "lockCollateral",
         | 
| 855 | 
            +
                  "outputs": [],
         | 
| 856 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 857 | 
            +
                  "type": "function"
         | 
| 858 | 
            +
                },
         | 
| 859 | 
            +
                {
         | 
| 860 | 
            +
                  "inputs": [
         | 
| 861 | 
            +
                    {
         | 
| 862 | 
            +
                      "internalType": "bytes4",
         | 
| 863 | 
            +
                      "name": "interfaceId",
         | 
| 864 | 
            +
                      "type": "bytes4"
         | 
| 865 | 
            +
                    }
         | 
| 866 | 
            +
                  ],
         | 
| 867 | 
            +
                  "name": "registerInterface",
         | 
| 868 | 
            +
                  "outputs": [],
         | 
| 869 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 870 | 
            +
                  "type": "function"
         | 
| 871 | 
            +
                },
         | 
| 872 | 
            +
                {
         | 
| 873 | 
            +
                  "inputs": [
         | 
| 874 | 
            +
                    {
         | 
| 875 | 
            +
                      "internalType": "contract IInstance",
         | 
| 876 | 
            +
                      "name": "instance",
         | 
| 877 | 
            +
                      "type": "address"
         | 
| 878 | 
            +
                    },
         | 
| 879 | 
            +
                    {
         | 
| 880 | 
            +
                      "internalType": "NftId",
         | 
| 881 | 
            +
                      "name": "policyNftId",
         | 
| 882 | 
            +
                      "type": "uint96"
         | 
| 883 | 
            +
                    },
         | 
| 884 | 
            +
                    {
         | 
| 885 | 
            +
                      "internalType": "NftId",
         | 
| 886 | 
            +
                      "name": "bundleNftId",
         | 
| 887 | 
            +
                      "type": "uint96"
         | 
| 888 | 
            +
                    },
         | 
| 889 | 
            +
                    {
         | 
| 890 | 
            +
                      "internalType": "uint256",
         | 
| 891 | 
            +
                      "name": "collateralAmount",
         | 
| 892 | 
            +
                      "type": "uint256"
         | 
| 893 | 
            +
                    }
         | 
| 894 | 
            +
                  ],
         | 
| 895 | 
            +
                  "name": "releaseCollateral",
         | 
| 896 | 
            +
                  "outputs": [],
         | 
| 897 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 898 | 
            +
                  "type": "function"
         | 
| 899 | 
            +
                },
         | 
| 900 | 
            +
                {
         | 
| 901 | 
            +
                  "inputs": [
         | 
| 902 | 
            +
                    {
         | 
| 903 | 
            +
                      "internalType": "address",
         | 
| 904 | 
            +
                      "name": "newAuthority",
         | 
| 905 | 
            +
                      "type": "address"
         | 
| 906 | 
            +
                    }
         | 
| 907 | 
            +
                  ],
         | 
| 908 | 
            +
                  "name": "setAuthority",
         | 
| 909 | 
            +
                  "outputs": [],
         | 
| 910 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 911 | 
            +
                  "type": "function"
         | 
| 912 | 
            +
                },
         | 
| 913 | 
            +
                {
         | 
| 914 | 
            +
                  "inputs": [
         | 
| 915 | 
            +
                    {
         | 
| 916 | 
            +
                      "internalType": "NftId",
         | 
| 917 | 
            +
                      "name": "bundleNftId",
         | 
| 918 | 
            +
                      "type": "uint96"
         | 
| 919 | 
            +
                    },
         | 
| 920 | 
            +
                    {
         | 
| 921 | 
            +
                      "components": [
         | 
| 922 | 
            +
                        {
         | 
| 923 | 
            +
                          "internalType": "UFixed",
         | 
| 924 | 
            +
                          "name": "fractionalFee",
         | 
| 925 | 
            +
                          "type": "uint256"
         | 
| 926 | 
            +
                        },
         | 
| 927 | 
            +
                        {
         | 
| 928 | 
            +
                          "internalType": "uint256",
         | 
| 929 | 
            +
                          "name": "fixedFee",
         | 
| 930 | 
            +
                          "type": "uint256"
         | 
| 931 | 
            +
                        }
         | 
| 932 | 
            +
                      ],
         | 
| 933 | 
            +
                      "internalType": "struct Fee",
         | 
| 934 | 
            +
                      "name": "fee",
         | 
| 935 | 
            +
                      "type": "tuple"
         | 
| 936 | 
            +
                    }
         | 
| 937 | 
            +
                  ],
         | 
| 938 | 
            +
                  "name": "setFee",
         | 
| 939 | 
            +
                  "outputs": [],
         | 
| 940 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 941 | 
            +
                  "type": "function"
         | 
| 942 | 
            +
                },
         | 
| 943 | 
            +
                {
         | 
| 944 | 
            +
                  "inputs": [
         | 
| 945 | 
            +
                    {
         | 
| 946 | 
            +
                      "internalType": "bytes4",
         | 
| 947 | 
            +
                      "name": "interfaceId",
         | 
| 948 | 
            +
                      "type": "bytes4"
         | 
| 949 | 
            +
                    }
         | 
| 950 | 
            +
                  ],
         | 
| 951 | 
            +
                  "name": "supportsInterface",
         | 
| 952 | 
            +
                  "outputs": [
         | 
| 953 | 
            +
                    {
         | 
| 954 | 
            +
                      "internalType": "bool",
         | 
| 955 | 
            +
                      "name": "",
         | 
| 956 | 
            +
                      "type": "bool"
         | 
| 957 | 
            +
                    }
         | 
| 958 | 
            +
                  ],
         | 
| 959 | 
            +
                  "stateMutability": "view",
         | 
| 960 | 
            +
                  "type": "function"
         | 
| 961 | 
            +
                },
         | 
| 962 | 
            +
                {
         | 
| 963 | 
            +
                  "inputs": [
         | 
| 964 | 
            +
                    {
         | 
| 965 | 
            +
                      "internalType": "NftId",
         | 
| 966 | 
            +
                      "name": "bundleNftId",
         | 
| 967 | 
            +
                      "type": "uint96"
         | 
| 968 | 
            +
                    }
         | 
| 969 | 
            +
                  ],
         | 
| 970 | 
            +
                  "name": "unlock",
         | 
| 971 | 
            +
                  "outputs": [],
         | 
| 972 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 973 | 
            +
                  "type": "function"
         | 
| 974 | 
            +
                },
         | 
| 975 | 
            +
                {
         | 
| 976 | 
            +
                  "inputs": [
         | 
| 977 | 
            +
                    {
         | 
| 978 | 
            +
                      "internalType": "bytes",
         | 
| 979 | 
            +
                      "name": "data",
         | 
| 980 | 
            +
                      "type": "bytes"
         | 
| 981 | 
            +
                    }
         | 
| 982 | 
            +
                  ],
         | 
| 983 | 
            +
                  "name": "upgradeVersionable",
         | 
| 984 | 
            +
                  "outputs": [],
         | 
| 985 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 986 | 
            +
                  "type": "function"
         | 
| 987 | 
            +
                }
         | 
| 988 | 
            +
              ],
         | 
| 989 | 
            +
              "bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6149dc80620000e66000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063893d20e81161011a578063ada9652e116100ad578063caf4e3d41161007c578063caf4e3d4146104bf578063cc9fc59a146104c7578063e283b4a9146104cf578063f21de1e81461032c578063f7c34ee0146104e257600080fd5b8063ada9652e1461046a578063b5346af51461047f578063b68d180914610492578063bf7e214f146104a157600080fd5b8063a3f4df7e116100e9578063a3f4df7e146103f8578063a7e0dea714610431578063a9334da414610444578063aa9acb2c1461045757600080fd5b8063893d20e8146103a95780638e32e979146103b15780638fb36037146103c45780639babe3bf146103e557600080fd5b806327bb7a33116101925780635ab1bd53116101615780635ab1bd531461032c578063644c45e014610351578063675393bf146103835780637a9e5e4b1461039657600080fd5b806327bb7a33146102eb578063329d6e74146102fe57806336fc697e1461031157806349bb9e4b1461031957600080fd5b8063138461e0116101ce578063138461e0146102885780631eff4b22146102905780631f8e8f36146102c5578063214cdb80146102d857600080fd5b806301ffc9a71461020057806306fa4565146102425780630d8e6e2c146102575780630fec111c14610273575b600080fd5b61022d61020e3660046138b9565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102556102503660046138ff565b6104f5565b005b61025f61068a565b60405162ffffff9091168152602001610239565b61027b610714565b604051610239919061396c565b6102556108c8565b6102b77f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610239565b6102556102d3366004613afd565b610acf565b6102556102e63660046138b9565b610d68565b6102556102f9366004613be2565b610d95565b61025561030c366004613c7a565b610e21565b610255610f66565b610255610327366004613cae565b610fac565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610239565b600080516020614947833981519152546001600160601b03165b6040516001600160601b039091168152602001610239565b610255610391366004613cfd565b6110ab565b6102556103a4366004613cfd565b6111b9565b610339611253565b6102556103bf366004613d1a565b61138a565b6103cc6115c3565b6040516001600160e01b03199091168152602001610239565b6102556103f3366004613d65565b6115fb565b6104246040518060400160405280600d81526020016c42756e646c655365727669636560981b81525081565b6040516102399190613da6565b61025561043f366004613db9565b61178b565b610255610452366004613e14565b611d68565b610255610465366004613e65565b612055565b6102b760008051602061494783398151915281565b61025561048d3660046138ff565b612235565b60405160dc8152602001610239565b600080516020614967833981519152546001600160a01b0316610339565b6103396123c1565b6103396123cd565b61036b6104dd366004613eb1565b6123d9565b6102556104f0366004613f92565b612a62565b6000610501608c612ad9565b92505050806001600160a01b031663fe1f18d68361051d606490565b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401600060405180830381600087803b15801561056657600080fd5b505af115801561057a573d6000803e3d6000fd5b505050506000816001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e29190613fc0565b6040516306fa456560e01b81526001600160601b03851660048201529091506001600160a01b038216906306fa456590602401600060405180830381600087803b15801561062f57600080fd5b505af1158015610643573d6000803e3d6000fd5b50506040516001600160601b03861681527f87cfb697b5d649751f13ba6e2e51778a1fd0a1f260df7281952986c453708e71925060200190505b60405180910390a1505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156106eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061070f9190613fdd565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906107c490614002565b80601f01602080910402602001604051908101604052809291908181526020018280546107f090614002565b801561083d5780601f106108125761010080835404028352916020019161083d565b820191906000526020600020905b81548152906001019060200180831161082057829003601f168201915b50505050508152505090506040518060e0016040528061085b600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016108ac611253565b6001600160a01b03168152602001826060015181525091505090565b600060008051602061494783398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610937573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095b919061404c565b1561098c5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061099f6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156109e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0b919061404c565b610a335760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610983565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610a87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aab9190614074565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b60008080610add608c612ad9565b9250925092506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b479190613fc0565b604051634793b4ab60e01b81526001600160601b03881660048201529091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa158015610b9a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bc29190810190614111565b80516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c44919061404c565b610c905760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a504c532d3031303a42554e444c455f554e4b4e4f574e000000006044820152606401610983565b610c9e858260000151612d09565b610cf55760405162461bcd60e51b815260206004820152602260248201527f4552524f523a504c532d3031313a42554e444c455f504f4f4c5f4d49534d4154604482015261086960f31b6064820152608401610983565b60208101869052604051632cc2921360e11b81526001600160a01b03841690635985242690610d2d908a90859060ff906004016142dc565b600060405180830381600087803b158015610d4757600080fd5b505af1158015610d5b573d6000803e3d6000fd5b5050505050505050505050565b610d70612d1f565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610d9d612d1f565b610da78287612a62565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101610e178382614357565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610e4361068a565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610e83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea79190614416565b6000805160206149878339815191528054600160401b900460ff1680610eda575080546001600160401b03808416911610155b15610ef85760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610f2283612d58565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161067d565b610f6e612d1f565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6000805160206149878339815191528054600160401b810460ff1615906001600160401b0316600081158015610fdf5750825b90506000826001600160401b03166001148015610ffb5750303b155b905081158015611009575080155b156110275760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561105157845460ff60401b1916600160401b1785555b61105b8787612d60565b83156110a257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b6110b3612d1f565b806001600160a01b03163b6000036110e95760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610983565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015611163575060408051601f3d908101601f191682019092526111609181019061404c565b60015b61118b5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610983565b806111b45760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610983565b505b50565b336111d9600080516020614967833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146112145760405162d1953b60e31b81526001600160a01b0382166004820152602401610983565b816001600160a01b03163b60000361124a576040516361798f2f60e11b81526001600160a01b0383166004820152602401610983565b6111b482612e81565b60008060008051602061494783398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156112c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e7919061404c565b15611374576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561134a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136e9190613fc0565b91505090565b54600160601b90046001600160a01b0316919050565b611392612d1f565b61141283846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f89190614074565b603c60008560405180602001604052806000815250610d95565b6001600160a01b0382161561142f5761142a82612ee2565b61159e565b60006114436001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af41580156114a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c79190614455565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561150c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115309190613fc0565b905061159c816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611573573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115979190613fc0565b612ee2565b505b6115ae634a531f3360e01b610d68565b6115be63b68d180960e01b610d68565b505050565b600080516020614967833981519152805460009190600160a01b900460ff166115ed57600061136e565b638fb3603760e01b91505090565b3361160e6001546001600160a01b031690565b604051632b91e0a960e01b81526001600160a01b0383811660048301529190911690632b91e0a990602401602060405180830381865afa158015611656573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167a919061404c565b6116965760405162461bcd60e51b815260040161098390614472565b6000846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fa9190613fc0565b604051634793b4ab60e01b81526001600160601b03861660048201529091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa15801561174d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526117759190810190614111565b905061178386868387612ef3565b505050505050565b3361179e6001546001600160a01b031690565b604051632b91e0a960e01b81526001600160a01b0383811660048301529190911690632b91e0a990602401602060405180830381865afa1580156117e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180a919061404c565b6118265760405162461bcd60e51b815260040161098390614472565b6000866001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611866573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188a9190613fc0565b905060006001600160a01b03821663a5961b4c73__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b038a1660dc6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af415801561190f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611933919061449d565b6040518263ffffffff1660e01b815260040161195191815260200190565b60a060405180830381865afa15801561196e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199291906144ca565b60200151604051634793b4ab60e01b81526001600160601b03881660048201529091506000906001600160a01b03841690634793b4ab90602401600060405180830381865afa1580156119e9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611a119190810190614111565b905060ff82166064141580611aa55750611aa58160e0015173__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611a72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a96919061455d565b64ffffffffff90811691161090565b15611aea5760e081015160405163bf5b8f0960e01b81526001600160601b038916600482015260ff8416602482015264ffffffffff9091166044820152606401610983565b608081015160405163046e44af60e11b81526001600160601b03909116600482015260009073__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__906308dc895e90602401602060405180830381865af4158015611b4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6f919061449d565b606083015160405163046e44af60e11b81526001600160601b039091166004820152879073__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__906308dc895e90602401602060405180830381865af4158015611bcf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf3919061449d565b611bfd9190614590565b611c0791906145a3565b905086811015611c4357604051634a94e79160e11b81526001600160601b03891660048201526024810182905260448101889052606401610983565b608082015160405163046e44af60e11b81526001600160601b03909116600482015273__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__90634c41dd9690899083906308dc895e90602401602060405180830381865af4158015611cab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ccf919061449d565b611cd99190614590565b6040518263ffffffff1660e01b8152600401611cf791815260200190565b602060405180830381865af4158015611d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d389190614074565b6001600160601b03166080830152611d528a898489612ef3565b611d5c8a8a6131cc565b50505050505050505050565b33611d7b6001546001600160a01b031690565b604051632b91e0a960e01b81526001600160a01b0383811660048301529190911690632b91e0a990602401602060405180830381865afa158015611dc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611de7919061404c565b611e035760405162461bcd60e51b815260040161098390614472565b6000856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e679190613fc0565b604051634793b4ab60e01b81526001600160601b03861660048201529091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa158015611eba573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ee29190810190614111565b608081015160405163046e44af60e11b81526001600160601b03909116600482015290915073__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__90634c41dd9690869083906308dc895e90602401602060405180830381865af4158015611f4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f71919061449d565b611f7b91906145a3565b6040518263ffffffff1660e01b8152600401611f9991815260200190565b602060405180830381865af4158015611fb6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fda9190614074565b6001600160601b03166080820152604051632cc2921360e11b81526001600160a01b03881690635985242690612019908890859060ff906004016142dc565b600060405180830381600087803b15801561203357600080fd5b505af1158015612047573d6000803e3d6000fd5b505050506110a28787613482565b6001600160a01b03821663fe1f18d68260c86040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401600060405180830381600087803b1580156120b057600080fd5b505af11580156120c4573d6000803e3d6000fd5b505050506000826001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015612108573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061212c9190613fc0565b6040516322cc1d4560e11b81526001600160601b03841660048201529091506000906001600160a01b038316906345983a8a90602401602060405180830381865afa15801561217f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121a3919061449d565b905080156121d6576040516356a410b760e01b81526001600160601b038416600482015260248101829052604401610983565b60405163b5346af560e01b81526001600160601b03841660048201526001600160a01b0383169063b5346af5906024015b600060405180830381600087803b15801561222157600080fd5b505af1158015610e17573d6000803e3d6000fd5b6000612241608c612ad9565b92505050806001600160a01b031663fe1f18d68361225d606e90565b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401600060405180830381600087803b1580156122a657600080fd5b505af11580156122ba573d6000803e3d6000fd5b505050506000816001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123229190613fc0565b60405163b5346af560e01b81526001600160601b03851660048201529091506001600160a01b0382169063b5346af590602401600060405180830381600087803b15801561236f57600080fd5b505af1158015612383573d6000803e3d6000fd5b50506040516001600160601b03861681527f6764112d27879e5bb12f07fde08a48629ec22e603c75c9942ba62a06c95a55f49250602001905061067d565b600061070f6028613706565b600061070f6046613706565b600080896001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561241a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061243e9190613fc0565b905060006040518061012001604052808b6001600160601b0316815260200189815260200186868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050908252506001600160601b0389166020808301919091526040805163bc1b392d60e01b81528151919093019273__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__9263bc1b392d926004808401938290030181865af41580156124ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125239190614074565b6001600160601b0316815260200173__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561257a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061259e9190614074565b6001600160601b031681526020018764ffffffffff16815260200173__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612602573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612626919061455d565b6040516352bcc5a760e11b815264ffffffffff9182166004820152908916602482015273__$d53880c81dc91c20799140d711e5ab8718$__9063a5798b4e90604401602060405180830381865af4158015612685573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126a9919061455d565b64ffffffffff168152600060209091015290506126c46123c1565b6001600160a01b031663c2bf08c86040518060e001604052806126e5600090565b6001600160601b031681526020018d6001600160601b0316815260200161270a60dc90565b60ff16815260200160001515815260200160006001600160a01b031681526020018c6001600160a01b03168152602001604051806020016040528060008152508152506040518263ffffffff1660e01b8152600401612769919061396c565b6020604051808303816000875af1158015612788573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ac9190614074565b6040516397affbf560e01b81529093506001600160a01b038c16906397affbf5906127dd90869085906004016145b6565b600060405180830381600087803b1580156127f757600080fd5b505af115801561280b573d6000803e3d6000fd5b5050505060008b6001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa15801561284f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128739190613fc0565b6040516346f0e8a760e11b81526001600160601b03861660048201529091506001600160a01b03821690638de1d14e90602401600060405180830381600087803b1580156128c057600080fd5b505af11580156128d4573d6000803e3d6000fd5b505060405163f0ea17c360e01b81526001600160601b038e166004820152600092506001600160a01b038616915063f0ea17c390602401600060405180830381865afa158015612928573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261295091908101906145d8565b6040808201516060830151915163046e44af60e11b81526001600160601b038d1660048201529293506001600160a01b03169163beabacc8918e9173__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__906308dc895e90602401602060405180830381865af41580156129c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129eb919061449d565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b158015612a3a57600080fd5b505af1158015612a4e573d6000803e3d6000fd5b505050505050505098975050505050505050565b612a6a612d1f565b612a73816110ab565b612a7b610f66565b6001600160a01b038216612aa25760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061494783398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152600080612b256001546001600160a01b031690565b6040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa158015612b6c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612b9491908101906146bd565b9250612baa83604001518660ff90811691161490565b612bec5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b6044820152606401610983565b82600001519350612c008360200151613813565b9150816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c649190613fc0565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015612cae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cd2919061404c565b15612d0157608083015160405163d53987e560e01b81526001600160a01b039091166004820152602401610983565b509193909250565b6001600160601b03828116908216145b92915050565b60008051602061498783398151915254600160401b900460ff16612d5657604051631afcd79f60e31b815260040160405180910390fd5b565b6101fb612d1f565b6000805160206149878339815191528054600160401b810460ff1615906001600160401b0316600081158015612d935750825b90506000826001600160401b03166001148015612daf5750303b155b905081158015612dbd575080155b15612ddb5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612e0557845460ff60401b1916600160401b1785555b60008087806020019051810190612e1c919061475d565b9092509050612e2d8260008b61138a565b612e3d637121af9f60e01b610d68565b505083156110a257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611099565b60008051602061496783398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b612eea612d1f565b6111b6816138a8565b801561319b5760208083015160405163012ebd8360e21b815281516004820152910151602482015260448101829052600090819073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af4158015612f62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f86919061478c565b606086015160405163046e44af60e11b81526001600160601b039091166004820152919350915073__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__90634c41dd9690839083906308dc895e90602401602060405180830381865af4158015612ff3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613017919061449d565b6130219190614590565b6040518263ffffffff1660e01b815260040161303f91815260200190565b602060405180830381865af415801561305c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130809190614074565b6001600160601b0316606085015281156131985760a084015160405163046e44af60e11b81526001600160601b03909116600482015273__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__90634c41dd9690849083906308dc895e90602401602060405180830381865af41580156130fc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613120919061449d565b61312a9190614590565b6040518263ffffffff1660e01b815260040161314891815260200190565b602060405180830381865af4158015613165573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131899190614074565b6001600160601b031660a08501525b50505b604051632cc2921360e11b81526001600160a01b03851690635985242690612207908690869060ff906004016142dc565b6000826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561320c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132309190613fc0565b60405163bd7d9d8560e01b81526001600160601b03841660048201529091506000906001600160a01b0383169063bd7d9d8590602401600060405180830381865afa158015613283573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526132ab91908101906147da565b6101a0810151604051638d38cd4b60e01b815264ffffffffff909116600482015290915073__$d53880c81dc91c20799140d711e5ab8718$__90638d38cd4b90602401602060405180830381865af415801561330b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061332f919061404c565b80156133885750613388816101a0015173__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611a72573d6000803e3d6000fd5b156133b157604051630cd0c0b560e31b81526001600160601b0384166004820152602401610983565b6000846001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134159190613fc0565b604051630331f98560e21b81526001600160601b03861660048201529091506001600160a01b03821690630cc7e614906024015b600060405180830381600087803b15801561346357600080fd5b505af1158015613477573d6000803e3d6000fd5b505050505050505050565b6000826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134e69190613fc0565b60405163bd7d9d8560e01b81526001600160601b03841660048201529091506000906001600160a01b0383169063bd7d9d8590602401600060405180830381865afa158015613539573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261356191908101906147da565b61016081015190915061ffff16156135a8576101608101516040516309fa740360e41b81526001600160601b038516600482015261ffff9091166024820152604401610983565b61362d73__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156135f4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613618919061455d565b826101c0015164ffffffffff90811691161090565b801561364157508060800151816101800151105b1561366a576040516389670e9b60e01b81526001600160601b0384166004820152602401610983565b6000846001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa1580156136aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136ce9190613fc0565b604051631351fccf60e31b81526001600160601b03861660048201529091506001600160a01b03821690639a8fe67890602401613449565b600061371a6001546001600160a01b031690565b6001600160a01b031663d39e60438361373161068a565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015613786573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137aa9190614455565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156137ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d199190613fc0565b60006138276001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613876573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261389e91908101906146bd565b6080015192915050565b6138b0612d1f565b6111b681612e81565b6000602082840312156138cb57600080fd5b81356001600160e01b0319811681146138e357600080fd5b9392505050565b6001600160601b03811681146111b657600080fd5b60006020828403121561391157600080fd5b81356138e3816138ea565b60005b8381101561393757818101518382015260200161391f565b50506000910152565b6000815180845261395881602086016020860161391c565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516139d560c08401826001600160a01b03169052565b5060c083015160e0808401526139ef610100840182613940565b949350505050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613a2f57613a2f6139f7565b60405290565b60405161012081016001600160401b0381118282101715613a2f57613a2f6139f7565b60405160e081016001600160401b0381118282101715613a2f57613a2f6139f7565b60405161020081016001600160401b0381118282101715613a2f57613a2f6139f7565b604051601f8201601f191681016001600160401b0381118282101715613ac557613ac56139f7565b604052919050565b600060408284031215613adf57600080fd5b613ae7613a0d565b9050813581526020820135602082015292915050565b60008060608385031215613b1057600080fd5b8235613b1b816138ea565b9150613b2a8460208501613acd565b90509250929050565b6001600160a01b03811681146111b657600080fd5b60ff811681146111b657600080fd5b80151581146111b657600080fd5b60006001600160401b03821115613b7e57613b7e6139f7565b50601f01601f191660200190565b600082601f830112613b9d57600080fd5b8135613bb0613bab82613b65565b613a9d565b818152846020838601011115613bc557600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c08789031215613bfb57600080fd5b8635613c0681613b33565b95506020870135613c16816138ea565b94506040870135613c2681613b48565b93506060870135613c3681613b57565b92506080870135613c4681613b33565b915060a08701356001600160401b03811115613c6157600080fd5b613c6d89828a01613b8c565b9150509295509295509295565b600060208284031215613c8c57600080fd5b81356001600160401b03811115613ca257600080fd5b6139ef84828501613b8c565b60008060408385031215613cc157600080fd5b8235613ccc81613b33565b915060208301356001600160401b03811115613ce757600080fd5b613cf385828601613b8c565b9150509250929050565b600060208284031215613d0f57600080fd5b81356138e381613b33565b600080600060608486031215613d2f57600080fd5b8335613d3a81613b33565b92506020840135613d4a81613b33565b91506040840135613d5a81613b33565b809150509250925092565b600080600060608486031215613d7a57600080fd5b8335613d8581613b33565b92506020840135613d95816138ea565b929592945050506040919091013590565b6020815260006138e36020830184613940565b600080600080600060a08688031215613dd157600080fd5b8535613ddc81613b33565b94506020860135613dec816138ea565b93506040860135613dfc816138ea565b94979396509394606081013594506080013592915050565b60008060008060808587031215613e2a57600080fd5b8435613e3581613b33565b93506020850135613e45816138ea565b92506040850135613e55816138ea565b9396929550929360600135925050565b60008060408385031215613e7857600080fd5b8235613e8381613b33565b91506020830135613e93816138ea565b809150509250929050565b64ffffffffff811681146111b657600080fd5b600080600080600080600080610100898b031215613ece57600080fd5b8835613ed981613b33565b97506020890135613ee9816138ea565b96506040890135613ef981613b33565b9550613f088a60608b01613acd565b945060a0890135613f18816138ea565b935060c0890135613f2881613e9e565b925060e08901356001600160401b0380821115613f4457600080fd5b818b0191508b601f830112613f5857600080fd5b813581811115613f6757600080fd5b8c6020828501011115613f7957600080fd5b6020830194508093505050509295985092959890939650565b60008060408385031215613fa557600080fd5b8235613fb081613b33565b91506020830135613e9381613b33565b600060208284031215613fd257600080fd5b81516138e381613b33565b600060208284031215613fef57600080fd5b815162ffffff811681146138e357600080fd5b600181811c9082168061401657607f821691505b60208210810361403657634e487b7160e01b600052602260045260246000fd5b50919050565b805161404781613b57565b919050565b60006020828403121561405e57600080fd5b81516138e381613b57565b8051614047816138ea565b60006020828403121561408657600080fd5b81516138e3816138ea565b6000604082840312156140a357600080fd5b6140ab613a0d565b9050815181526020820151602082015292915050565b600082601f8301126140d257600080fd5b81516140e0613bab82613b65565b8181528460208386010111156140f557600080fd5b6139ef82602083016020870161391c565b805161404781613e9e565b60006020828403121561412357600080fd5b81516001600160401b038082111561413a57600080fd5b90830190610140828603121561414f57600080fd5b614157613a35565b61416083614069565b815261416f8660208501614091565b602082015260608301518281111561418657600080fd5b614192878286016140c1565b6040830152506141a460808401614069565b60608201526141b560a08401614069565b60808201526141c660c08401614069565b60a08201526141d760e08401614106565b60c082015261010091506141ec828401614106565b60e08201526141fe6101208401614106565b91810191909152949350505050565b80516001600160601b03168252600061014060208381015180518683015290810151604086015250604083015181606086015261424c82860182613940565b915050606083015161426960808601826001600160601b03169052565b5060808301516001600160601b03811660a08601525060a08301516001600160601b03811660c08601525060c083015164ffffffffff811660e08601525060e08301516101006142c18187018364ffffffffff169052565b84015164ffffffffff81166101208701529050509392505050565b6001600160601b03841681526060602082015260006142fe606083018561420d565b905060ff83166040830152949350505050565b601f8211156115be57600081815260208120601f850160051c810160208610156143385750805b601f850160051c820191505b8181101561178357828155600101614344565b81516001600160401b03811115614370576143706139f7565b6143848161437e8454614002565b84614311565b602080601f8311600181146143b957600084156143a15750858301515b600019600386901b1c1916600185901b178555611783565b600085815260208120601f198616915b828110156143e8578886015182559484019460019091019084016143c9565b50858210156144065787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561442857600080fd5b81516001600160401b03811681146138e357600080fd5b805161404781613b33565b805161404781613b48565b60006020828403121561446757600080fd5b81516138e381613b48565b6020808252601190820152704552524f525f4e4f545f5345525649434560781b604082015260600190565b6000602082840312156144af57600080fd5b5051919050565b805163ffffffff8116811461404757600080fd5b600060a082840312156144dc57600080fd5b60405160a081018181106001600160401b03821117156144fe576144fe6139f7565b604052825161450c81613b48565b8152602083015161451c81613b48565b6020820152604083015161452f81613b33565b6040820152614540606084016144b6565b6060820152614551608084016144b6565b60808201529392505050565b60006020828403121561456f57600080fd5b81516138e381613e9e565b634e487b7160e01b600052601160045260246000fd5b80820180821115612d1957612d1961457a565b81810381811115612d1957612d1961457a565b6001600160601b03831681526040602082015260006139ef604083018461420d565b6000602082840312156145ea57600080fd5b81516001600160401b038082111561460157600080fd5b9083019060e0828603121561461557600080fd5b61461d613a58565b82518281111561462c57600080fd5b614638878286016140c1565b8252506146476020840161443f565b60208201526146586040840161443f565b60408201526146696060840161443f565b606082015261467a60808401614069565b608082015261468b60a08401614069565b60a082015260c0830151828111156146a257600080fd5b6146ae878286016140c1565b60c08301525095945050505050565b6000602082840312156146cf57600080fd5b81516001600160401b03808211156146e657600080fd5b9083019060e082860312156146fa57600080fd5b614702613a58565b61470b83614069565b815261471960208401614069565b602082015261472a6040840161444a565b604082015261473b6060840161403c565b606082015261474c6080840161443f565b608082015261468b60a0840161443f565b6000806040838503121561477057600080fd5b825161477b81613b33565b6020840151909250613e9381613b33565b6000806040838503121561479f57600080fd5b505080516020909101519092909150565b80516001600160c01b03198116811461404757600080fd5b805161ffff8116811461404757600080fd5b6000602082840312156147ec57600080fd5b81516001600160401b038082111561480357600080fd5b90830190610200828603121561481857600080fd5b614820613a7a565b61482983614069565b815261483760208401614069565b6020820152614848604084016147b0565b6040820152614859606084016147b0565b60608201526080830151608082015260a083015160a082015260c083015160c082015261488860e08401614106565b60e082015261010080840151838111156148a157600080fd5b6148ad888287016140c1565b82840152505061012080840151838111156148c757600080fd5b6148d3888287016140c1565b82840152505061014091506148e98284016147c8565b8282015261016091506148fd8284016147c8565b82820152610180915081830151828201526101a0915061491e828401614106565b828201526101c09150614932828401614106565b828201526101e091506141fe82840161410656fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122000b27a86941c44d0ad4b4f0f66b3abcb180e1bf41eafffce686bd6dca1e667e164736f6c63430008140033",
         | 
| 990 | 
            +
              "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063893d20e81161011a578063ada9652e116100ad578063caf4e3d41161007c578063caf4e3d4146104bf578063cc9fc59a146104c7578063e283b4a9146104cf578063f21de1e81461032c578063f7c34ee0146104e257600080fd5b8063ada9652e1461046a578063b5346af51461047f578063b68d180914610492578063bf7e214f146104a157600080fd5b8063a3f4df7e116100e9578063a3f4df7e146103f8578063a7e0dea714610431578063a9334da414610444578063aa9acb2c1461045757600080fd5b8063893d20e8146103a95780638e32e979146103b15780638fb36037146103c45780639babe3bf146103e557600080fd5b806327bb7a33116101925780635ab1bd53116101615780635ab1bd531461032c578063644c45e014610351578063675393bf146103835780637a9e5e4b1461039657600080fd5b806327bb7a33146102eb578063329d6e74146102fe57806336fc697e1461031157806349bb9e4b1461031957600080fd5b8063138461e0116101ce578063138461e0146102885780631eff4b22146102905780631f8e8f36146102c5578063214cdb80146102d857600080fd5b806301ffc9a71461020057806306fa4565146102425780630d8e6e2c146102575780630fec111c14610273575b600080fd5b61022d61020e3660046138b9565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6102556102503660046138ff565b6104f5565b005b61025f61068a565b60405162ffffff9091168152602001610239565b61027b610714565b604051610239919061396c565b6102556108c8565b6102b77f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610239565b6102556102d3366004613afd565b610acf565b6102556102e63660046138b9565b610d68565b6102556102f9366004613be2565b610d95565b61025561030c366004613c7a565b610e21565b610255610f66565b610255610327366004613cae565b610fac565b6001546001600160a01b03165b6040516001600160a01b039091168152602001610239565b600080516020614947833981519152546001600160601b03165b6040516001600160601b039091168152602001610239565b610255610391366004613cfd565b6110ab565b6102556103a4366004613cfd565b6111b9565b610339611253565b6102556103bf366004613d1a565b61138a565b6103cc6115c3565b6040516001600160e01b03199091168152602001610239565b6102556103f3366004613d65565b6115fb565b6104246040518060400160405280600d81526020016c42756e646c655365727669636560981b81525081565b6040516102399190613da6565b61025561043f366004613db9565b61178b565b610255610452366004613e14565b611d68565b610255610465366004613e65565b612055565b6102b760008051602061494783398151915281565b61025561048d3660046138ff565b612235565b60405160dc8152602001610239565b600080516020614967833981519152546001600160a01b0316610339565b6103396123c1565b6103396123cd565b61036b6104dd366004613eb1565b6123d9565b6102556104f0366004613f92565b612a62565b6000610501608c612ad9565b92505050806001600160a01b031663fe1f18d68361051d606490565b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401600060405180830381600087803b15801561056657600080fd5b505af115801561057a573d6000803e3d6000fd5b505050506000816001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e29190613fc0565b6040516306fa456560e01b81526001600160601b03851660048201529091506001600160a01b038216906306fa456590602401600060405180830381600087803b15801561062f57600080fd5b505af1158015610643573d6000803e3d6000fd5b50506040516001600160601b03861681527f87cfb697b5d649751f13ba6e2e51778a1fd0a1f260df7281952986c453708e71925060200190505b60405180910390a1505050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af41580156106eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061070f9190613fdd565b905090565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915260007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b909104161515918101919091526001820180549192916060840191906107c490614002565b80601f01602080910402602001604051908101604052809291908181526020018280546107f090614002565b801561083d5780601f106108125761010080835404028352916020019161083d565b820191906000526020600020905b81548152906001019060200180831161082057829003601f168201915b50505050508152505090506040518060e0016040528061085b600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b031681526020016108ac611253565b6001600160a01b03168152602001826060015181525091505090565b600060008051602061494783398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610937573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095b919061404c565b1561098c5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024015b60405180910390fd5b3061099f6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa1580156109e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0b919061404c565b610a335760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610983565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa158015610a87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aab9190614074565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b60008080610add608c612ad9565b9250925092506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b479190613fc0565b604051634793b4ab60e01b81526001600160601b03881660048201529091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa158015610b9a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610bc29190810190614111565b80516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c44919061404c565b610c905760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a504c532d3031303a42554e444c455f554e4b4e4f574e000000006044820152606401610983565b610c9e858260000151612d09565b610cf55760405162461bcd60e51b815260206004820152602260248201527f4552524f523a504c532d3031313a42554e444c455f504f4f4c5f4d49534d4154604482015261086960f31b6064820152608401610983565b60208101869052604051632cc2921360e11b81526001600160a01b03841690635985242690610d2d908a90859060ff906004016142dc565b600060405180830381600087803b158015610d4757600080fd5b505af1158015610d5b573d6000803e3d6000fd5b5050505050505050505050565b610d70612d1f565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610d9d612d1f565b610da78287612a62565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101610e178382614357565b5050505050505050565b73__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__63a123b37c610e4361068a565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610e83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea79190614416565b6000805160206149878339815191528054600160401b900460ff1680610eda575080546001600160401b03808416911610155b15610ef85760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610f2283612d58565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161067d565b610f6e612d1f565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6000805160206149878339815191528054600160401b810460ff1615906001600160401b0316600081158015610fdf5750825b90506000826001600160401b03166001148015610ffb5750303b155b905081158015611009575080155b156110275760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561105157845460ff60401b1916600160401b1785555b61105b8787612d60565b83156110a257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b6110b3612d1f565b806001600160a01b03163b6000036110e95760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610983565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015611163575060408051601f3d908101601f191682019092526111609181019061404c565b60015b61118b5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610983565b806111b45760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610983565b505b50565b336111d9600080516020614967833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146112145760405162d1953b60e31b81526001600160a01b0382166004820152602401610983565b816001600160a01b03163b60000361124a576040516361798f2f60e11b81526001600160a01b0383166004820152602401610983565b6111b482612e81565b60008060008051602061494783398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156112c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e7919061404c565b15611374576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561134a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136e9190613fc0565b91505090565b54600160601b90046001600160a01b0316919050565b611392612d1f565b61141283846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f89190614074565b603c60008560405180602001604052806000815250610d95565b6001600160a01b0382161561142f5761142a82612ee2565b61159e565b60006114436001546001600160a01b031690565b6001600160a01b031663d39e60436028604051632392b61b60e21b81526003600482015273__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af41580156114a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c79190614455565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801561150c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115309190613fc0565b905061159c816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611573573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115979190613fc0565b612ee2565b505b6115ae634a531f3360e01b610d68565b6115be63b68d180960e01b610d68565b505050565b600080516020614967833981519152805460009190600160a01b900460ff166115ed57600061136e565b638fb3603760e01b91505090565b3361160e6001546001600160a01b031690565b604051632b91e0a960e01b81526001600160a01b0383811660048301529190911690632b91e0a990602401602060405180830381865afa158015611656573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167a919061404c565b6116965760405162461bcd60e51b815260040161098390614472565b6000846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116fa9190613fc0565b604051634793b4ab60e01b81526001600160601b03861660048201529091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa15801561174d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526117759190810190614111565b905061178386868387612ef3565b505050505050565b3361179e6001546001600160a01b031690565b604051632b91e0a960e01b81526001600160a01b0383811660048301529190911690632b91e0a990602401602060405180830381865afa1580156117e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180a919061404c565b6118265760405162461bcd60e51b815260040161098390614472565b6000866001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611866573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188a9190613fc0565b905060006001600160a01b03821663a5961b4c73__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b038a1660dc6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af415801561190f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611933919061449d565b6040518263ffffffff1660e01b815260040161195191815260200190565b60a060405180830381865afa15801561196e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199291906144ca565b60200151604051634793b4ab60e01b81526001600160601b03881660048201529091506000906001600160a01b03841690634793b4ab90602401600060405180830381865afa1580156119e9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611a119190810190614111565b905060ff82166064141580611aa55750611aa58160e0015173__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611a72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a96919061455d565b64ffffffffff90811691161090565b15611aea5760e081015160405163bf5b8f0960e01b81526001600160601b038916600482015260ff8416602482015264ffffffffff9091166044820152606401610983565b608081015160405163046e44af60e11b81526001600160601b03909116600482015260009073__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__906308dc895e90602401602060405180830381865af4158015611b4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6f919061449d565b606083015160405163046e44af60e11b81526001600160601b039091166004820152879073__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__906308dc895e90602401602060405180830381865af4158015611bcf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf3919061449d565b611bfd9190614590565b611c0791906145a3565b905086811015611c4357604051634a94e79160e11b81526001600160601b03891660048201526024810182905260448101889052606401610983565b608082015160405163046e44af60e11b81526001600160601b03909116600482015273__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__90634c41dd9690899083906308dc895e90602401602060405180830381865af4158015611cab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ccf919061449d565b611cd99190614590565b6040518263ffffffff1660e01b8152600401611cf791815260200190565b602060405180830381865af4158015611d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d389190614074565b6001600160601b03166080830152611d528a898489612ef3565b611d5c8a8a6131cc565b50505050505050505050565b33611d7b6001546001600160a01b031690565b604051632b91e0a960e01b81526001600160a01b0383811660048301529190911690632b91e0a990602401602060405180830381865afa158015611dc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611de7919061404c565b611e035760405162461bcd60e51b815260040161098390614472565b6000856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e679190613fc0565b604051634793b4ab60e01b81526001600160601b03861660048201529091506000906001600160a01b03831690634793b4ab90602401600060405180830381865afa158015611eba573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611ee29190810190614111565b608081015160405163046e44af60e11b81526001600160601b03909116600482015290915073__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__90634c41dd9690869083906308dc895e90602401602060405180830381865af4158015611f4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f71919061449d565b611f7b91906145a3565b6040518263ffffffff1660e01b8152600401611f9991815260200190565b602060405180830381865af4158015611fb6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fda9190614074565b6001600160601b03166080820152604051632cc2921360e11b81526001600160a01b03881690635985242690612019908890859060ff906004016142dc565b600060405180830381600087803b15801561203357600080fd5b505af1158015612047573d6000803e3d6000fd5b505050506110a28787613482565b6001600160a01b03821663fe1f18d68260c86040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401600060405180830381600087803b1580156120b057600080fd5b505af11580156120c4573d6000803e3d6000fd5b505050506000826001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa158015612108573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061212c9190613fc0565b6040516322cc1d4560e11b81526001600160601b03841660048201529091506000906001600160a01b038316906345983a8a90602401602060405180830381865afa15801561217f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121a3919061449d565b905080156121d6576040516356a410b760e01b81526001600160601b038416600482015260248101829052604401610983565b60405163b5346af560e01b81526001600160601b03841660048201526001600160a01b0383169063b5346af5906024015b600060405180830381600087803b15801561222157600080fd5b505af1158015610e17573d6000803e3d6000fd5b6000612241608c612ad9565b92505050806001600160a01b031663fe1f18d68361225d606e90565b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401600060405180830381600087803b1580156122a657600080fd5b505af11580156122ba573d6000803e3d6000fd5b505050506000816001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123229190613fc0565b60405163b5346af560e01b81526001600160601b03851660048201529091506001600160a01b0382169063b5346af590602401600060405180830381600087803b15801561236f57600080fd5b505af1158015612383573d6000803e3d6000fd5b50506040516001600160601b03861681527f6764112d27879e5bb12f07fde08a48629ec22e603c75c9942ba62a06c95a55f49250602001905061067d565b600061070f6028613706565b600061070f6046613706565b600080896001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561241a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061243e9190613fc0565b905060006040518061012001604052808b6001600160601b0316815260200189815260200186868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050908252506001600160601b0389166020808301919091526040805163bc1b392d60e01b81528151919093019273__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__9263bc1b392d926004808401938290030181865af41580156124ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125239190614074565b6001600160601b0316815260200173__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561257a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061259e9190614074565b6001600160601b031681526020018764ffffffffff16815260200173__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612602573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612626919061455d565b6040516352bcc5a760e11b815264ffffffffff9182166004820152908916602482015273__$d53880c81dc91c20799140d711e5ab8718$__9063a5798b4e90604401602060405180830381865af4158015612685573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126a9919061455d565b64ffffffffff168152600060209091015290506126c46123c1565b6001600160a01b031663c2bf08c86040518060e001604052806126e5600090565b6001600160601b031681526020018d6001600160601b0316815260200161270a60dc90565b60ff16815260200160001515815260200160006001600160a01b031681526020018c6001600160a01b03168152602001604051806020016040528060008152508152506040518263ffffffff1660e01b8152600401612769919061396c565b6020604051808303816000875af1158015612788573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ac9190614074565b6040516397affbf560e01b81529093506001600160a01b038c16906397affbf5906127dd90869085906004016145b6565b600060405180830381600087803b1580156127f757600080fd5b505af115801561280b573d6000803e3d6000fd5b5050505060008b6001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa15801561284f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128739190613fc0565b6040516346f0e8a760e11b81526001600160601b03861660048201529091506001600160a01b03821690638de1d14e90602401600060405180830381600087803b1580156128c057600080fd5b505af11580156128d4573d6000803e3d6000fd5b505060405163f0ea17c360e01b81526001600160601b038e166004820152600092506001600160a01b038616915063f0ea17c390602401600060405180830381865afa158015612928573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261295091908101906145d8565b6040808201516060830151915163046e44af60e11b81526001600160601b038d1660048201529293506001600160a01b03169163beabacc8918e9173__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__906308dc895e90602401602060405180830381865af41580156129c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129eb919061449d565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b158015612a3a57600080fd5b505af1158015612a4e573d6000803e3d6000fd5b505050505050505098975050505050505050565b612a6a612d1f565b612a73816110ab565b612a7b610f66565b6001600160a01b038216612aa25760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061494783398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152600080612b256001546001600160a01b031690565b6040516308b09a5f60e41b81523360048201529091506001600160a01b03821690638b09a5f090602401600060405180830381865afa158015612b6c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612b9491908101906146bd565b9250612baa83604001518660ff90811691161490565b612bec5760405162461bcd60e51b815260206004820152601360248201527213d0929150d517d516541157d2539590531251606a1b6044820152606401610983565b82600001519350612c008360200151613813565b9150816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c649190613fc0565b6080840151604051629b7b3560e61b81526001600160a01b0391821660048201529116906326decd4090602401602060405180830381865afa158015612cae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cd2919061404c565b15612d0157608083015160405163d53987e560e01b81526001600160a01b039091166004820152602401610983565b509193909250565b6001600160601b03828116908216145b92915050565b60008051602061498783398151915254600160401b900460ff16612d5657604051631afcd79f60e31b815260040160405180910390fd5b565b6101fb612d1f565b6000805160206149878339815191528054600160401b810460ff1615906001600160401b0316600081158015612d935750825b90506000826001600160401b03166001148015612daf5750303b155b905081158015612dbd575080155b15612ddb5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612e0557845460ff60401b1916600160401b1785555b60008087806020019051810190612e1c919061475d565b9092509050612e2d8260008b61138a565b612e3d637121af9f60e01b610d68565b505083156110a257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611099565b60008051602061496783398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b612eea612d1f565b6111b6816138a8565b801561319b5760208083015160405163012ebd8360e21b815281516004820152910151602482015260448101829052600090819073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af4158015612f62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f86919061478c565b606086015160405163046e44af60e11b81526001600160601b039091166004820152919350915073__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__90634c41dd9690839083906308dc895e90602401602060405180830381865af4158015612ff3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613017919061449d565b6130219190614590565b6040518263ffffffff1660e01b815260040161303f91815260200190565b602060405180830381865af415801561305c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130809190614074565b6001600160601b0316606085015281156131985760a084015160405163046e44af60e11b81526001600160601b03909116600482015273__$ea4dcf94bcd4a5d2e83a2341ef616bff8d$__90634c41dd9690849083906308dc895e90602401602060405180830381865af41580156130fc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613120919061449d565b61312a9190614590565b6040518263ffffffff1660e01b815260040161314891815260200190565b602060405180830381865af4158015613165573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131899190614074565b6001600160601b031660a08501525b50505b604051632cc2921360e11b81526001600160a01b03851690635985242690612207908690869060ff906004016142dc565b6000826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561320c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132309190613fc0565b60405163bd7d9d8560e01b81526001600160601b03841660048201529091506000906001600160a01b0383169063bd7d9d8590602401600060405180830381865afa158015613283573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526132ab91908101906147da565b6101a0810151604051638d38cd4b60e01b815264ffffffffff909116600482015290915073__$d53880c81dc91c20799140d711e5ab8718$__90638d38cd4b90602401602060405180830381865af415801561330b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061332f919061404c565b80156133885750613388816101a0015173__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611a72573d6000803e3d6000fd5b156133b157604051630cd0c0b560e31b81526001600160601b0384166004820152602401610983565b6000846001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134159190613fc0565b604051630331f98560e21b81526001600160601b03861660048201529091506001600160a01b03821690630cc7e614906024015b600060405180830381600087803b15801561346357600080fd5b505af1158015613477573d6000803e3d6000fd5b505050505050505050565b6000826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134e69190613fc0565b60405163bd7d9d8560e01b81526001600160601b03841660048201529091506000906001600160a01b0383169063bd7d9d8590602401600060405180830381865afa158015613539573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261356191908101906147da565b61016081015190915061ffff16156135a8576101608101516040516309fa740360e41b81526001600160601b038516600482015261ffff9091166024820152604401610983565b61362d73__$d53880c81dc91c20799140d711e5ab8718$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156135f4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613618919061455d565b826101c0015164ffffffffff90811691161090565b801561364157508060800151816101800151105b1561366a576040516389670e9b60e01b81526001600160601b0384166004820152602401610983565b6000846001600160a01b03166361f5f4206040518163ffffffff1660e01b8152600401602060405180830381865afa1580156136aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136ce9190613fc0565b604051631351fccf60e31b81526001600160601b03861660048201529091506001600160a01b03821690639a8fe67890602401613449565b600061371a6001546001600160a01b031690565b6001600160a01b031663d39e60438361373161068a565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015613786573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137aa9190614455565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156137ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d199190613fc0565b60006138276001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa158015613876573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261389e91908101906146bd565b6080015192915050565b6138b0612d1f565b6111b681612e81565b6000602082840312156138cb57600080fd5b81356001600160e01b0319811681146138e357600080fd5b9392505050565b6001600160601b03811681146111b657600080fd5b60006020828403121561391157600080fd5b81356138e3816138ea565b60005b8381101561393757818101518382015260200161391f565b50506000910152565b6000815180845261395881602086016020860161391c565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516139d560c08401826001600160a01b03169052565b5060c083015160e0808401526139ef610100840182613940565b949350505050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613a2f57613a2f6139f7565b60405290565b60405161012081016001600160401b0381118282101715613a2f57613a2f6139f7565b60405160e081016001600160401b0381118282101715613a2f57613a2f6139f7565b60405161020081016001600160401b0381118282101715613a2f57613a2f6139f7565b604051601f8201601f191681016001600160401b0381118282101715613ac557613ac56139f7565b604052919050565b600060408284031215613adf57600080fd5b613ae7613a0d565b9050813581526020820135602082015292915050565b60008060608385031215613b1057600080fd5b8235613b1b816138ea565b9150613b2a8460208501613acd565b90509250929050565b6001600160a01b03811681146111b657600080fd5b60ff811681146111b657600080fd5b80151581146111b657600080fd5b60006001600160401b03821115613b7e57613b7e6139f7565b50601f01601f191660200190565b600082601f830112613b9d57600080fd5b8135613bb0613bab82613b65565b613a9d565b818152846020838601011115613bc557600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c08789031215613bfb57600080fd5b8635613c0681613b33565b95506020870135613c16816138ea565b94506040870135613c2681613b48565b93506060870135613c3681613b57565b92506080870135613c4681613b33565b915060a08701356001600160401b03811115613c6157600080fd5b613c6d89828a01613b8c565b9150509295509295509295565b600060208284031215613c8c57600080fd5b81356001600160401b03811115613ca257600080fd5b6139ef84828501613b8c565b60008060408385031215613cc157600080fd5b8235613ccc81613b33565b915060208301356001600160401b03811115613ce757600080fd5b613cf385828601613b8c565b9150509250929050565b600060208284031215613d0f57600080fd5b81356138e381613b33565b600080600060608486031215613d2f57600080fd5b8335613d3a81613b33565b92506020840135613d4a81613b33565b91506040840135613d5a81613b33565b809150509250925092565b600080600060608486031215613d7a57600080fd5b8335613d8581613b33565b92506020840135613d95816138ea565b929592945050506040919091013590565b6020815260006138e36020830184613940565b600080600080600060a08688031215613dd157600080fd5b8535613ddc81613b33565b94506020860135613dec816138ea565b93506040860135613dfc816138ea565b94979396509394606081013594506080013592915050565b60008060008060808587031215613e2a57600080fd5b8435613e3581613b33565b93506020850135613e45816138ea565b92506040850135613e55816138ea565b9396929550929360600135925050565b60008060408385031215613e7857600080fd5b8235613e8381613b33565b91506020830135613e93816138ea565b809150509250929050565b64ffffffffff811681146111b657600080fd5b600080600080600080600080610100898b031215613ece57600080fd5b8835613ed981613b33565b97506020890135613ee9816138ea565b96506040890135613ef981613b33565b9550613f088a60608b01613acd565b945060a0890135613f18816138ea565b935060c0890135613f2881613e9e565b925060e08901356001600160401b0380821115613f4457600080fd5b818b0191508b601f830112613f5857600080fd5b813581811115613f6757600080fd5b8c6020828501011115613f7957600080fd5b6020830194508093505050509295985092959890939650565b60008060408385031215613fa557600080fd5b8235613fb081613b33565b91506020830135613e9381613b33565b600060208284031215613fd257600080fd5b81516138e381613b33565b600060208284031215613fef57600080fd5b815162ffffff811681146138e357600080fd5b600181811c9082168061401657607f821691505b60208210810361403657634e487b7160e01b600052602260045260246000fd5b50919050565b805161404781613b57565b919050565b60006020828403121561405e57600080fd5b81516138e381613b57565b8051614047816138ea565b60006020828403121561408657600080fd5b81516138e3816138ea565b6000604082840312156140a357600080fd5b6140ab613a0d565b9050815181526020820151602082015292915050565b600082601f8301126140d257600080fd5b81516140e0613bab82613b65565b8181528460208386010111156140f557600080fd5b6139ef82602083016020870161391c565b805161404781613e9e565b60006020828403121561412357600080fd5b81516001600160401b038082111561413a57600080fd5b90830190610140828603121561414f57600080fd5b614157613a35565b61416083614069565b815261416f8660208501614091565b602082015260608301518281111561418657600080fd5b614192878286016140c1565b6040830152506141a460808401614069565b60608201526141b560a08401614069565b60808201526141c660c08401614069565b60a08201526141d760e08401614106565b60c082015261010091506141ec828401614106565b60e08201526141fe6101208401614106565b91810191909152949350505050565b80516001600160601b03168252600061014060208381015180518683015290810151604086015250604083015181606086015261424c82860182613940565b915050606083015161426960808601826001600160601b03169052565b5060808301516001600160601b03811660a08601525060a08301516001600160601b03811660c08601525060c083015164ffffffffff811660e08601525060e08301516101006142c18187018364ffffffffff169052565b84015164ffffffffff81166101208701529050509392505050565b6001600160601b03841681526060602082015260006142fe606083018561420d565b905060ff83166040830152949350505050565b601f8211156115be57600081815260208120601f850160051c810160208610156143385750805b601f850160051c820191505b8181101561178357828155600101614344565b81516001600160401b03811115614370576143706139f7565b6143848161437e8454614002565b84614311565b602080601f8311600181146143b957600084156143a15750858301515b600019600386901b1c1916600185901b178555611783565b600085815260208120601f198616915b828110156143e8578886015182559484019460019091019084016143c9565b50858210156144065787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561442857600080fd5b81516001600160401b03811681146138e357600080fd5b805161404781613b33565b805161404781613b48565b60006020828403121561446757600080fd5b81516138e381613b48565b6020808252601190820152704552524f525f4e4f545f5345525649434560781b604082015260600190565b6000602082840312156144af57600080fd5b5051919050565b805163ffffffff8116811461404757600080fd5b600060a082840312156144dc57600080fd5b60405160a081018181106001600160401b03821117156144fe576144fe6139f7565b604052825161450c81613b48565b8152602083015161451c81613b48565b6020820152604083015161452f81613b33565b6040820152614540606084016144b6565b6060820152614551608084016144b6565b60808201529392505050565b60006020828403121561456f57600080fd5b81516138e381613e9e565b634e487b7160e01b600052601160045260246000fd5b80820180821115612d1957612d1961457a565b81810381811115612d1957612d1961457a565b6001600160601b03831681526040602082015260006139ef604083018461420d565b6000602082840312156145ea57600080fd5b81516001600160401b038082111561460157600080fd5b9083019060e0828603121561461557600080fd5b61461d613a58565b82518281111561462c57600080fd5b614638878286016140c1565b8252506146476020840161443f565b60208201526146586040840161443f565b60408201526146696060840161443f565b606082015261467a60808401614069565b608082015261468b60a08401614069565b60a082015260c0830151828111156146a257600080fd5b6146ae878286016140c1565b60c08301525095945050505050565b6000602082840312156146cf57600080fd5b81516001600160401b03808211156146e657600080fd5b9083019060e082860312156146fa57600080fd5b614702613a58565b61470b83614069565b815261471960208401614069565b602082015261472a6040840161444a565b604082015261473b6060840161403c565b606082015261474c6080840161443f565b608082015261468b60a0840161443f565b6000806040838503121561477057600080fd5b825161477b81613b33565b6020840151909250613e9381613b33565b6000806040838503121561479f57600080fd5b505080516020909101519092909150565b80516001600160c01b03198116811461404757600080fd5b805161ffff8116811461404757600080fd5b6000602082840312156147ec57600080fd5b81516001600160401b038082111561480357600080fd5b90830190610200828603121561481857600080fd5b614820613a7a565b61482983614069565b815261483760208401614069565b6020820152614848604084016147b0565b6040820152614859606084016147b0565b60608201526080830151608082015260a083015160a082015260c083015160c082015261488860e08401614106565b60e082015261010080840151838111156148a157600080fd5b6148ad888287016140c1565b82840152505061012080840151838111156148c757600080fd5b6148d3888287016140c1565b82840152505061014091506148e98284016147c8565b8282015261016091506148fd8284016147c8565b82820152610180915081830151828201526101a0915061491e828401614106565b828201526101c09150614932828401614106565b828201526101e091506141fe82840161410656fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122000b27a86941c44d0ad4b4f0f66b3abcb180e1bf41eafffce686bd6dca1e667e164736f6c63430008140033",
         | 
| 991 | 
            +
              "linkReferences": {
         | 
| 992 | 
            +
                "contracts/types/Amount.sol": {
         | 
| 993 | 
            +
                  "AmountLib": [
         | 
| 994 | 
            +
                    {
         | 
| 995 | 
            +
                      "length": 20,
         | 
| 996 | 
            +
                      "start": 7159
         | 
| 997 | 
            +
                    },
         | 
| 998 | 
            +
                    {
         | 
| 999 | 
            +
                      "length": 20,
         | 
| 1000 | 
            +
                      "start": 7291
         | 
| 1001 | 
            +
                    },
         | 
| 1002 | 
            +
                    {
         | 
| 1003 | 
            +
                      "length": 20,
         | 
| 1004 | 
            +
                      "start": 7501
         | 
| 1005 | 
            +
                    },
         | 
| 1006 | 
            +
                    {
         | 
| 1007 | 
            +
                      "length": 20,
         | 
| 1008 | 
            +
                      "start": 8175
         | 
| 1009 | 
            +
                    },
         | 
| 1010 | 
            +
                    {
         | 
| 1011 | 
            +
                      "length": 20,
         | 
| 1012 | 
            +
                      "start": 9644
         | 
| 1013 | 
            +
                    },
         | 
| 1014 | 
            +
                    {
         | 
| 1015 | 
            +
                      "length": 20,
         | 
| 1016 | 
            +
                      "start": 9753
         | 
| 1017 | 
            +
                    },
         | 
| 1018 | 
            +
                    {
         | 
| 1019 | 
            +
                      "length": 20,
         | 
| 1020 | 
            +
                      "start": 10867
         | 
| 1021 | 
            +
                    },
         | 
| 1022 | 
            +
                    {
         | 
| 1023 | 
            +
                      "length": 20,
         | 
| 1024 | 
            +
                      "start": 12437
         | 
| 1025 | 
            +
                    },
         | 
| 1026 | 
            +
                    {
         | 
| 1027 | 
            +
                      "length": 20,
         | 
| 1028 | 
            +
                      "start": 12702
         | 
| 1029 | 
            +
                    }
         | 
| 1030 | 
            +
                  ]
         | 
| 1031 | 
            +
                },
         | 
| 1032 | 
            +
                "contracts/types/Fee.sol": {
         | 
| 1033 | 
            +
                  "FeeLib": [
         | 
| 1034 | 
            +
                    {
         | 
| 1035 | 
            +
                      "length": 20,
         | 
| 1036 | 
            +
                      "start": 12303
         | 
| 1037 | 
            +
                    }
         | 
| 1038 | 
            +
                  ]
         | 
| 1039 | 
            +
                },
         | 
| 1040 | 
            +
                "contracts/types/NftId.sol": {
         | 
| 1041 | 
            +
                  "NftIdLib": [
         | 
| 1042 | 
            +
                    {
         | 
| 1043 | 
            +
                      "length": 20,
         | 
| 1044 | 
            +
                      "start": 2531
         | 
| 1045 | 
            +
                    },
         | 
| 1046 | 
            +
                    {
         | 
| 1047 | 
            +
                      "length": 20,
         | 
| 1048 | 
            +
                      "start": 3276
         | 
| 1049 | 
            +
                    },
         | 
| 1050 | 
            +
                    {
         | 
| 1051 | 
            +
                      "length": 20,
         | 
| 1052 | 
            +
                      "start": 4975
         | 
| 1053 | 
            +
                    },
         | 
| 1054 | 
            +
                    {
         | 
| 1055 | 
            +
                      "length": 20,
         | 
| 1056 | 
            +
                      "start": 6533
         | 
| 1057 | 
            +
                    }
         | 
| 1058 | 
            +
                  ]
         | 
| 1059 | 
            +
                },
         | 
| 1060 | 
            +
                "contracts/types/Timestamp.sol": {
         | 
| 1061 | 
            +
                  "TimestampLib": [
         | 
| 1062 | 
            +
                    {
         | 
| 1063 | 
            +
                      "length": 20,
         | 
| 1064 | 
            +
                      "start": 6929
         | 
| 1065 | 
            +
                    },
         | 
| 1066 | 
            +
                    {
         | 
| 1067 | 
            +
                      "length": 20,
         | 
| 1068 | 
            +
                      "start": 9889
         | 
| 1069 | 
            +
                    },
         | 
| 1070 | 
            +
                    {
         | 
| 1071 | 
            +
                      "length": 20,
         | 
| 1072 | 
            +
                      "start": 10033
         | 
| 1073 | 
            +
                    },
         | 
| 1074 | 
            +
                    {
         | 
| 1075 | 
            +
                      "length": 20,
         | 
| 1076 | 
            +
                      "start": 13239
         | 
| 1077 | 
            +
                    },
         | 
| 1078 | 
            +
                    {
         | 
| 1079 | 
            +
                      "length": 20,
         | 
| 1080 | 
            +
                      "start": 13351
         | 
| 1081 | 
            +
                    },
         | 
| 1082 | 
            +
                    {
         | 
| 1083 | 
            +
                      "length": 20,
         | 
| 1084 | 
            +
                      "start": 13971
         | 
| 1085 | 
            +
                    }
         | 
| 1086 | 
            +
                  ]
         | 
| 1087 | 
            +
                },
         | 
| 1088 | 
            +
                "contracts/types/Version.sol": {
         | 
| 1089 | 
            +
                  "VersionLib": [
         | 
| 1090 | 
            +
                    {
         | 
| 1091 | 
            +
                      "length": 20,
         | 
| 1092 | 
            +
                      "start": 1943
         | 
| 1093 | 
            +
                    },
         | 
| 1094 | 
            +
                    {
         | 
| 1095 | 
            +
                      "length": 20,
         | 
| 1096 | 
            +
                      "start": 3849
         | 
| 1097 | 
            +
                    },
         | 
| 1098 | 
            +
                    {
         | 
| 1099 | 
            +
                      "length": 20,
         | 
| 1100 | 
            +
                      "start": 14386
         | 
| 1101 | 
            +
                    }
         | 
| 1102 | 
            +
                  ],
         | 
| 1103 | 
            +
                  "VersionPartLib": [
         | 
| 1104 | 
            +
                    {
         | 
| 1105 | 
            +
                      "length": 20,
         | 
| 1106 | 
            +
                      "start": 5455
         | 
| 1107 | 
            +
                    }
         | 
| 1108 | 
            +
                  ]
         | 
| 1109 | 
            +
                }
         | 
| 1110 | 
            +
              },
         | 
| 1111 | 
            +
              "deployedLinkReferences": {
         | 
| 1112 | 
            +
                "contracts/types/Amount.sol": {
         | 
| 1113 | 
            +
                  "AmountLib": [
         | 
| 1114 | 
            +
                    {
         | 
| 1115 | 
            +
                      "length": 20,
         | 
| 1116 | 
            +
                      "start": 6929
         | 
| 1117 | 
            +
                    },
         | 
| 1118 | 
            +
                    {
         | 
| 1119 | 
            +
                      "length": 20,
         | 
| 1120 | 
            +
                      "start": 7061
         | 
| 1121 | 
            +
                    },
         | 
| 1122 | 
            +
                    {
         | 
| 1123 | 
            +
                      "length": 20,
         | 
| 1124 | 
            +
                      "start": 7271
         | 
| 1125 | 
            +
                    },
         | 
| 1126 | 
            +
                    {
         | 
| 1127 | 
            +
                      "length": 20,
         | 
| 1128 | 
            +
                      "start": 7945
         | 
| 1129 | 
            +
                    },
         | 
| 1130 | 
            +
                    {
         | 
| 1131 | 
            +
                      "length": 20,
         | 
| 1132 | 
            +
                      "start": 9414
         | 
| 1133 | 
            +
                    },
         | 
| 1134 | 
            +
                    {
         | 
| 1135 | 
            +
                      "length": 20,
         | 
| 1136 | 
            +
                      "start": 9523
         | 
| 1137 | 
            +
                    },
         | 
| 1138 | 
            +
                    {
         | 
| 1139 | 
            +
                      "length": 20,
         | 
| 1140 | 
            +
                      "start": 10637
         | 
| 1141 | 
            +
                    },
         | 
| 1142 | 
            +
                    {
         | 
| 1143 | 
            +
                      "length": 20,
         | 
| 1144 | 
            +
                      "start": 12207
         | 
| 1145 | 
            +
                    },
         | 
| 1146 | 
            +
                    {
         | 
| 1147 | 
            +
                      "length": 20,
         | 
| 1148 | 
            +
                      "start": 12472
         | 
| 1149 | 
            +
                    }
         | 
| 1150 | 
            +
                  ]
         | 
| 1151 | 
            +
                },
         | 
| 1152 | 
            +
                "contracts/types/Fee.sol": {
         | 
| 1153 | 
            +
                  "FeeLib": [
         | 
| 1154 | 
            +
                    {
         | 
| 1155 | 
            +
                      "length": 20,
         | 
| 1156 | 
            +
                      "start": 12073
         | 
| 1157 | 
            +
                    }
         | 
| 1158 | 
            +
                  ]
         | 
| 1159 | 
            +
                },
         | 
| 1160 | 
            +
                "contracts/types/NftId.sol": {
         | 
| 1161 | 
            +
                  "NftIdLib": [
         | 
| 1162 | 
            +
                    {
         | 
| 1163 | 
            +
                      "length": 20,
         | 
| 1164 | 
            +
                      "start": 2301
         | 
| 1165 | 
            +
                    },
         | 
| 1166 | 
            +
                    {
         | 
| 1167 | 
            +
                      "length": 20,
         | 
| 1168 | 
            +
                      "start": 3046
         | 
| 1169 | 
            +
                    },
         | 
| 1170 | 
            +
                    {
         | 
| 1171 | 
            +
                      "length": 20,
         | 
| 1172 | 
            +
                      "start": 4745
         | 
| 1173 | 
            +
                    },
         | 
| 1174 | 
            +
                    {
         | 
| 1175 | 
            +
                      "length": 20,
         | 
| 1176 | 
            +
                      "start": 6303
         | 
| 1177 | 
            +
                    }
         | 
| 1178 | 
            +
                  ]
         | 
| 1179 | 
            +
                },
         | 
| 1180 | 
            +
                "contracts/types/Timestamp.sol": {
         | 
| 1181 | 
            +
                  "TimestampLib": [
         | 
| 1182 | 
            +
                    {
         | 
| 1183 | 
            +
                      "length": 20,
         | 
| 1184 | 
            +
                      "start": 6699
         | 
| 1185 | 
            +
                    },
         | 
| 1186 | 
            +
                    {
         | 
| 1187 | 
            +
                      "length": 20,
         | 
| 1188 | 
            +
                      "start": 9659
         | 
| 1189 | 
            +
                    },
         | 
| 1190 | 
            +
                    {
         | 
| 1191 | 
            +
                      "length": 20,
         | 
| 1192 | 
            +
                      "start": 9803
         | 
| 1193 | 
            +
                    },
         | 
| 1194 | 
            +
                    {
         | 
| 1195 | 
            +
                      "length": 20,
         | 
| 1196 | 
            +
                      "start": 13009
         | 
| 1197 | 
            +
                    },
         | 
| 1198 | 
            +
                    {
         | 
| 1199 | 
            +
                      "length": 20,
         | 
| 1200 | 
            +
                      "start": 13121
         | 
| 1201 | 
            +
                    },
         | 
| 1202 | 
            +
                    {
         | 
| 1203 | 
            +
                      "length": 20,
         | 
| 1204 | 
            +
                      "start": 13741
         | 
| 1205 | 
            +
                    }
         | 
| 1206 | 
            +
                  ]
         | 
| 1207 | 
            +
                },
         | 
| 1208 | 
            +
                "contracts/types/Version.sol": {
         | 
| 1209 | 
            +
                  "VersionLib": [
         | 
| 1210 | 
            +
                    {
         | 
| 1211 | 
            +
                      "length": 20,
         | 
| 1212 | 
            +
                      "start": 1713
         | 
| 1213 | 
            +
                    },
         | 
| 1214 | 
            +
                    {
         | 
| 1215 | 
            +
                      "length": 20,
         | 
| 1216 | 
            +
                      "start": 3619
         | 
| 1217 | 
            +
                    },
         | 
| 1218 | 
            +
                    {
         | 
| 1219 | 
            +
                      "length": 20,
         | 
| 1220 | 
            +
                      "start": 14156
         | 
| 1221 | 
            +
                    }
         | 
| 1222 | 
            +
                  ],
         | 
| 1223 | 
            +
                  "VersionPartLib": [
         | 
| 1224 | 
            +
                    {
         | 
| 1225 | 
            +
                      "length": 20,
         | 
| 1226 | 
            +
                      "start": 5225
         | 
| 1227 | 
            +
                    }
         | 
| 1228 | 
            +
                  ]
         | 
| 1229 | 
            +
                }
         | 
| 1230 | 
            +
              }
         | 
| 1231 | 
            +
            }
         |