@etherisc/gif-next 0.0.2-e1f23dc-329 → 0.0.2-e2a57af-971
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +63 -1
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +656 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +318 -87
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{shared/RegisterableUpgradable.sol/RegisterableUpgradable.json → components/IComponent.sol/IComponent.json} +171 -158
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +496 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +550 -30
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +596 -5
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +340 -152
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +329 -99
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +1 -1
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +1 -1
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +86 -2
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +327 -2
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +125 -19
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +176 -669
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +231 -114
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +56 -82
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +260 -167
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +41 -76
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/{ComponentServiceBase.sol/ComponentServiceBase.json → ComponentService.sol/ComponentService.json} +124 -61
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +59 -16
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1102 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +449 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +149 -93
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +29 -36
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IBundleService.sol/IBundleService.json} +295 -46
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +13 -18
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +766 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +15 -169
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +17 -225
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1227 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +505 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +148 -268
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +29 -40
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +150 -388
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +29 -64
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +212 -133
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +127 -93
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +224 -234
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +68 -161
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +51 -104
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +13 -29
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +0 -5
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +13 -18
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +19 -6
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +19 -6
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +19 -11
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +26 -18
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +19 -11
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +44 -36
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/contracts/components/Component.sol +216 -0
- package/contracts/components/Distribution.sol +41 -49
- package/contracts/components/IComponent.sol +43 -0
- package/contracts/components/IDistributionComponent.sol +5 -2
- package/contracts/components/IPoolComponent.sol +11 -13
- package/contracts/components/IProductComponent.sol +7 -3
- package/contracts/components/Pool.sol +74 -89
- package/contracts/components/Product.sol +68 -87
- package/contracts/instance/BundleManager.sol +125 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +27 -9
- package/contracts/instance/IInstanceService.sol +15 -4
- package/contracts/instance/Instance.sol +60 -234
- package/contracts/instance/InstanceAccessManager.sol +88 -78
- package/contracts/instance/InstanceReader.sol +3 -25
- package/contracts/instance/InstanceService.sol +347 -103
- package/contracts/instance/InstanceServiceManager.sol +5 -8
- package/contracts/instance/ObjectManager.sol +84 -0
- package/contracts/instance/base/ComponentService.sol +134 -0
- package/contracts/instance/module/IAccess.sol +27 -17
- package/contracts/instance/module/ISetup.sol +3 -1
- package/contracts/instance/service/BundleService.sol +293 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/DistributionService.sol +43 -25
- package/contracts/instance/service/DistributionServiceManager.sol +6 -9
- package/contracts/instance/service/IBundleService.sol +44 -0
- package/contracts/instance/service/IPolicyService.sol +94 -0
- package/contracts/instance/service/IPoolService.sol +4 -25
- package/contracts/instance/service/IProductService.sol +3 -70
- package/contracts/instance/service/PolicyService.sol +538 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +36 -127
- package/contracts/instance/service/PoolServiceManager.sol +5 -8
- package/contracts/instance/service/ProductService.sol +123 -453
- package/contracts/registry/ChainNft.sol +1 -1
- package/contracts/registry/IRegistry.sol +34 -17
- package/contracts/registry/IRegistryService.sol +28 -13
- package/contracts/registry/Registry.sol +214 -210
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +61 -157
- package/contracts/registry/RegistryServiceManager.sol +18 -36
- package/contracts/registry/ReleaseManager.sol +332 -0
- package/contracts/registry/TokenRegistry.sol +8 -7
- package/contracts/shared/IRegisterable.sol +1 -3
- package/contracts/shared/IService.sol +2 -1
- package/contracts/shared/NftOwnable.sol +5 -0
- package/contracts/shared/ProxyManager.sol +1 -1
- package/contracts/shared/Registerable.sol +10 -14
- package/contracts/shared/Service.sol +13 -8
- package/contracts/test/TestService.sol +3 -2
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/RoleId.sol +10 -10
- package/package.json +1 -1
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -327
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
- package/contracts/components/BaseComponent.sol +0 -91
- package/contracts/components/IBaseComponent.sol +0 -25
- package/contracts/instance/AccessManagedSimple.sol +0 -115
- package/contracts/instance/AccessManagerSimple.sol +0 -692
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/base/ComponentServiceBase.sol +0 -134
- package/contracts/instance/base/IInstanceBase.sol +0 -23
- package/contracts/instance/service/ComponentOwnerService.sol +0 -317
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
- package/contracts/shared/RegisterableUpgradable.sol +0 -16
@@ -7,108 +7,166 @@
|
|
7
7
|
"inputs": [
|
8
8
|
{
|
9
9
|
"internalType": "address",
|
10
|
-
"name": "
|
10
|
+
"name": "authority",
|
11
11
|
"type": "address"
|
12
|
-
}
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
13
19
|
{
|
14
|
-
"internalType": "
|
15
|
-
"name": "
|
16
|
-
"type": "
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
17
23
|
},
|
24
|
+
{
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
|
+
"type": "error"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"inputs": [
|
18
35
|
{
|
19
36
|
"internalType": "address",
|
20
|
-
"name": "
|
37
|
+
"name": "caller",
|
21
38
|
"type": "address"
|
22
|
-
}
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
23
46
|
{
|
24
|
-
"internalType": "
|
25
|
-
"name": "
|
26
|
-
"type": "
|
27
|
-
}
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "target",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "AddressEmptyCode",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
28
57
|
{
|
29
|
-
"internalType": "
|
30
|
-
"name": "
|
31
|
-
"type": "
|
32
|
-
}
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "account",
|
60
|
+
"type": "address"
|
61
|
+
}
|
62
|
+
],
|
63
|
+
"name": "AddressInsufficientBalance",
|
64
|
+
"type": "error"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"inputs": [
|
33
68
|
{
|
34
|
-
"internalType": "
|
35
|
-
"name": "
|
36
|
-
"type": "
|
69
|
+
"internalType": "address",
|
70
|
+
"name": "registry",
|
71
|
+
"type": "address"
|
37
72
|
},
|
38
73
|
{
|
39
|
-
"
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
}
|
50
|
-
],
|
51
|
-
"internalType": "struct Fee",
|
52
|
-
"name": "poolFee",
|
53
|
-
"type": "tuple"
|
54
|
-
},
|
74
|
+
"internalType": "NftId",
|
75
|
+
"name": "nftId",
|
76
|
+
"type": "uint96"
|
77
|
+
}
|
78
|
+
],
|
79
|
+
"name": "ErrorAlreadyLinked",
|
80
|
+
"type": "error"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"inputs": [
|
55
84
|
{
|
56
|
-
"
|
57
|
-
|
58
|
-
|
59
|
-
"name": "fractionalFee",
|
60
|
-
"type": "uint256"
|
61
|
-
},
|
62
|
-
{
|
63
|
-
"internalType": "uint256",
|
64
|
-
"name": "fixedFee",
|
65
|
-
"type": "uint256"
|
66
|
-
}
|
67
|
-
],
|
68
|
-
"internalType": "struct Fee",
|
69
|
-
"name": "stakingFee",
|
70
|
-
"type": "tuple"
|
85
|
+
"internalType": "NftId",
|
86
|
+
"name": "instanceNftId",
|
87
|
+
"type": "uint96"
|
71
88
|
},
|
72
89
|
{
|
73
|
-
"
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
"
|
86
|
-
"
|
87
|
-
|
90
|
+
"internalType": "address",
|
91
|
+
"name": "instance",
|
92
|
+
"type": "address"
|
93
|
+
}
|
94
|
+
],
|
95
|
+
"name": "ErrorComponentNotInstance",
|
96
|
+
"type": "error"
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"inputs": [
|
100
|
+
{
|
101
|
+
"internalType": "address",
|
102
|
+
"name": "caller",
|
103
|
+
"type": "address"
|
104
|
+
}
|
105
|
+
],
|
106
|
+
"name": "ErrorComponentNotProductService",
|
107
|
+
"type": "error"
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"inputs": [],
|
111
|
+
"name": "ErrorComponentProductNftAlreadySet",
|
112
|
+
"type": "error"
|
113
|
+
},
|
114
|
+
{
|
115
|
+
"inputs": [
|
116
|
+
{
|
117
|
+
"internalType": "address",
|
118
|
+
"name": "caller",
|
119
|
+
"type": "address"
|
88
120
|
},
|
121
|
+
{
|
122
|
+
"internalType": "uint64",
|
123
|
+
"name": "requiredRoleIdNum",
|
124
|
+
"type": "uint64"
|
125
|
+
}
|
126
|
+
],
|
127
|
+
"name": "ErrorComponentUnauthorized",
|
128
|
+
"type": "error"
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"inputs": [
|
89
132
|
{
|
90
133
|
"internalType": "address",
|
91
|
-
"name": "
|
134
|
+
"name": "newWallet",
|
92
135
|
"type": "address"
|
93
136
|
}
|
94
137
|
],
|
95
|
-
"
|
96
|
-
"type": "
|
138
|
+
"name": "ErrorComponentWalletAddressIsSameAsCurrent",
|
139
|
+
"type": "error"
|
140
|
+
},
|
141
|
+
{
|
142
|
+
"inputs": [],
|
143
|
+
"name": "ErrorComponentWalletAddressZero",
|
144
|
+
"type": "error"
|
97
145
|
},
|
98
146
|
{
|
99
147
|
"inputs": [
|
100
148
|
{
|
101
149
|
"internalType": "address",
|
102
|
-
"name": "
|
150
|
+
"name": "oldWallet",
|
103
151
|
"type": "address"
|
104
152
|
},
|
105
153
|
{
|
106
|
-
"internalType": "
|
107
|
-
"name": "
|
108
|
-
"type": "
|
154
|
+
"internalType": "address",
|
155
|
+
"name": "newWallet",
|
156
|
+
"type": "address"
|
157
|
+
},
|
158
|
+
{
|
159
|
+
"internalType": "uint256",
|
160
|
+
"name": "allowance",
|
161
|
+
"type": "uint256"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"internalType": "uint256",
|
165
|
+
"name": "balance",
|
166
|
+
"type": "uint256"
|
109
167
|
}
|
110
168
|
],
|
111
|
-
"name": "
|
169
|
+
"name": "ErrorComponentWalletAllowanceTooSmall",
|
112
170
|
"type": "error"
|
113
171
|
},
|
114
172
|
{
|
@@ -176,6 +234,11 @@
|
|
176
234
|
"name": "ErrorRegistryNotInitialized",
|
177
235
|
"type": "error"
|
178
236
|
},
|
237
|
+
{
|
238
|
+
"inputs": [],
|
239
|
+
"name": "FailedInnerCall",
|
240
|
+
"type": "error"
|
241
|
+
},
|
179
242
|
{
|
180
243
|
"inputs": [],
|
181
244
|
"name": "InvalidInitialization",
|
@@ -186,6 +249,30 @@
|
|
186
249
|
"name": "NotInitializing",
|
187
250
|
"type": "error"
|
188
251
|
},
|
252
|
+
{
|
253
|
+
"inputs": [
|
254
|
+
{
|
255
|
+
"internalType": "address",
|
256
|
+
"name": "token",
|
257
|
+
"type": "address"
|
258
|
+
}
|
259
|
+
],
|
260
|
+
"name": "SafeERC20FailedOperation",
|
261
|
+
"type": "error"
|
262
|
+
},
|
263
|
+
{
|
264
|
+
"anonymous": false,
|
265
|
+
"inputs": [
|
266
|
+
{
|
267
|
+
"indexed": false,
|
268
|
+
"internalType": "address",
|
269
|
+
"name": "authority",
|
270
|
+
"type": "address"
|
271
|
+
}
|
272
|
+
],
|
273
|
+
"name": "AuthorityUpdated",
|
274
|
+
"type": "event"
|
275
|
+
},
|
189
276
|
{
|
190
277
|
"anonymous": false,
|
191
278
|
"inputs": [
|
@@ -199,6 +286,44 @@
|
|
199
286
|
"name": "Initialized",
|
200
287
|
"type": "event"
|
201
288
|
},
|
289
|
+
{
|
290
|
+
"anonymous": false,
|
291
|
+
"inputs": [
|
292
|
+
{
|
293
|
+
"indexed": false,
|
294
|
+
"internalType": "address",
|
295
|
+
"name": "newWallet",
|
296
|
+
"type": "address"
|
297
|
+
}
|
298
|
+
],
|
299
|
+
"name": "LogComponentWalletAddressChanged",
|
300
|
+
"type": "event"
|
301
|
+
},
|
302
|
+
{
|
303
|
+
"anonymous": false,
|
304
|
+
"inputs": [
|
305
|
+
{
|
306
|
+
"indexed": false,
|
307
|
+
"internalType": "address",
|
308
|
+
"name": "from",
|
309
|
+
"type": "address"
|
310
|
+
},
|
311
|
+
{
|
312
|
+
"indexed": false,
|
313
|
+
"internalType": "address",
|
314
|
+
"name": "to",
|
315
|
+
"type": "address"
|
316
|
+
},
|
317
|
+
{
|
318
|
+
"indexed": false,
|
319
|
+
"internalType": "uint256",
|
320
|
+
"name": "amount",
|
321
|
+
"type": "uint256"
|
322
|
+
}
|
323
|
+
],
|
324
|
+
"name": "LogComponentWalletTokensTransferred",
|
325
|
+
"type": "event"
|
326
|
+
},
|
202
327
|
{
|
203
328
|
"anonymous": false,
|
204
329
|
"inputs": [
|
@@ -226,7 +351,7 @@
|
|
226
351
|
},
|
227
352
|
{
|
228
353
|
"inputs": [],
|
229
|
-
"name": "
|
354
|
+
"name": "CONTRACT_LOCATION_V1",
|
230
355
|
"outputs": [
|
231
356
|
{
|
232
357
|
"internalType": "bytes32",
|
@@ -238,49 +363,29 @@
|
|
238
363
|
"type": "function"
|
239
364
|
},
|
240
365
|
{
|
241
|
-
"inputs": [
|
242
|
-
|
243
|
-
|
244
|
-
{
|
245
|
-
"internalType": "UFixed",
|
246
|
-
"name": "fractionalFee",
|
247
|
-
"type": "uint256"
|
248
|
-
},
|
249
|
-
{
|
250
|
-
"internalType": "uint256",
|
251
|
-
"name": "fixedFee",
|
252
|
-
"type": "uint256"
|
253
|
-
}
|
254
|
-
],
|
255
|
-
"internalType": "struct Fee",
|
256
|
-
"name": "fee",
|
257
|
-
"type": "tuple"
|
258
|
-
},
|
259
|
-
{
|
260
|
-
"internalType": "uint256",
|
261
|
-
"name": "initialAmount",
|
262
|
-
"type": "uint256"
|
263
|
-
},
|
264
|
-
{
|
265
|
-
"internalType": "uint256",
|
266
|
-
"name": "lifetime",
|
267
|
-
"type": "uint256"
|
268
|
-
},
|
366
|
+
"inputs": [],
|
367
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
368
|
+
"outputs": [
|
269
369
|
{
|
270
|
-
"internalType": "
|
271
|
-
"name": "
|
272
|
-
"type": "
|
370
|
+
"internalType": "bytes32",
|
371
|
+
"name": "",
|
372
|
+
"type": "bytes32"
|
273
373
|
}
|
274
374
|
],
|
275
|
-
"
|
375
|
+
"stateMutability": "view",
|
376
|
+
"type": "function"
|
377
|
+
},
|
378
|
+
{
|
379
|
+
"inputs": [],
|
380
|
+
"name": "authority",
|
276
381
|
"outputs": [
|
277
382
|
{
|
278
|
-
"internalType": "
|
279
|
-
"name": "
|
280
|
-
"type": "
|
383
|
+
"internalType": "address",
|
384
|
+
"name": "",
|
385
|
+
"type": "address"
|
281
386
|
}
|
282
387
|
],
|
283
|
-
"stateMutability": "
|
388
|
+
"stateMutability": "view",
|
284
389
|
"type": "function"
|
285
390
|
},
|
286
391
|
{
|
@@ -339,13 +444,21 @@
|
|
339
444
|
}
|
340
445
|
],
|
341
446
|
"internalType": "struct IRegistry.ObjectInfo",
|
342
|
-
"name": "",
|
447
|
+
"name": "info",
|
343
448
|
"type": "tuple"
|
344
|
-
}
|
449
|
+
}
|
450
|
+
],
|
451
|
+
"stateMutability": "view",
|
452
|
+
"type": "function"
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"inputs": [],
|
456
|
+
"name": "getInitialOwner",
|
457
|
+
"outputs": [
|
345
458
|
{
|
346
|
-
"internalType": "
|
459
|
+
"internalType": "address",
|
347
460
|
"name": "",
|
348
|
-
"type": "
|
461
|
+
"type": "address"
|
349
462
|
}
|
350
463
|
],
|
351
464
|
"stateMutability": "view",
|
@@ -364,6 +477,32 @@
|
|
364
477
|
"stateMutability": "view",
|
365
478
|
"type": "function"
|
366
479
|
},
|
480
|
+
{
|
481
|
+
"inputs": [],
|
482
|
+
"name": "getInstanceService",
|
483
|
+
"outputs": [
|
484
|
+
{
|
485
|
+
"internalType": "contract IInstanceService",
|
486
|
+
"name": "",
|
487
|
+
"type": "address"
|
488
|
+
}
|
489
|
+
],
|
490
|
+
"stateMutability": "view",
|
491
|
+
"type": "function"
|
492
|
+
},
|
493
|
+
{
|
494
|
+
"inputs": [],
|
495
|
+
"name": "getName",
|
496
|
+
"outputs": [
|
497
|
+
{
|
498
|
+
"internalType": "string",
|
499
|
+
"name": "name",
|
500
|
+
"type": "string"
|
501
|
+
}
|
502
|
+
],
|
503
|
+
"stateMutability": "view",
|
504
|
+
"type": "function"
|
505
|
+
},
|
367
506
|
{
|
368
507
|
"inputs": [],
|
369
508
|
"name": "getNftId",
|
@@ -403,6 +542,19 @@
|
|
403
542
|
"stateMutability": "view",
|
404
543
|
"type": "function"
|
405
544
|
},
|
545
|
+
{
|
546
|
+
"inputs": [],
|
547
|
+
"name": "getProductService",
|
548
|
+
"outputs": [
|
549
|
+
{
|
550
|
+
"internalType": "contract IProductService",
|
551
|
+
"name": "",
|
552
|
+
"type": "address"
|
553
|
+
}
|
554
|
+
],
|
555
|
+
"stateMutability": "view",
|
556
|
+
"type": "function"
|
557
|
+
},
|
406
558
|
{
|
407
559
|
"inputs": [],
|
408
560
|
"name": "getRegistry",
|
@@ -493,6 +645,11 @@
|
|
493
645
|
"name": "isIntercepting",
|
494
646
|
"type": "bool"
|
495
647
|
},
|
648
|
+
{
|
649
|
+
"internalType": "bool",
|
650
|
+
"name": "isConfirmingApplication",
|
651
|
+
"type": "bool"
|
652
|
+
},
|
496
653
|
{
|
497
654
|
"internalType": "address",
|
498
655
|
"name": "wallet",
|
@@ -535,17 +692,30 @@
|
|
535
692
|
},
|
536
693
|
{
|
537
694
|
"inputs": [],
|
538
|
-
"name": "
|
695
|
+
"name": "isConfirmingApplication",
|
539
696
|
"outputs": [
|
540
697
|
{
|
541
698
|
"internalType": "bool",
|
542
|
-
"name": "
|
699
|
+
"name": "isConfirmingApplication",
|
543
700
|
"type": "bool"
|
544
701
|
}
|
545
702
|
],
|
546
703
|
"stateMutability": "view",
|
547
704
|
"type": "function"
|
548
705
|
},
|
706
|
+
{
|
707
|
+
"inputs": [],
|
708
|
+
"name": "isConsumingScheduledOp",
|
709
|
+
"outputs": [
|
710
|
+
{
|
711
|
+
"internalType": "bytes4",
|
712
|
+
"name": "",
|
713
|
+
"type": "bytes4"
|
714
|
+
}
|
715
|
+
],
|
716
|
+
"stateMutability": "view",
|
717
|
+
"type": "function"
|
718
|
+
},
|
549
719
|
{
|
550
720
|
"inputs": [],
|
551
721
|
"name": "linkToRegisteredNftId",
|
@@ -560,6 +730,19 @@
|
|
560
730
|
"stateMutability": "nonpayable",
|
561
731
|
"type": "function"
|
562
732
|
},
|
733
|
+
{
|
734
|
+
"inputs": [
|
735
|
+
{
|
736
|
+
"internalType": "NftId",
|
737
|
+
"name": "bundleNftId",
|
738
|
+
"type": "uint96"
|
739
|
+
}
|
740
|
+
],
|
741
|
+
"name": "lockBundle",
|
742
|
+
"outputs": [],
|
743
|
+
"stateMutability": "nonpayable",
|
744
|
+
"type": "function"
|
745
|
+
},
|
563
746
|
{
|
564
747
|
"inputs": [
|
565
748
|
{
|
@@ -584,6 +767,19 @@
|
|
584
767
|
"stateMutability": "view",
|
585
768
|
"type": "function"
|
586
769
|
},
|
770
|
+
{
|
771
|
+
"inputs": [
|
772
|
+
{
|
773
|
+
"internalType": "address",
|
774
|
+
"name": "newAuthority",
|
775
|
+
"type": "address"
|
776
|
+
}
|
777
|
+
],
|
778
|
+
"name": "setAuthority",
|
779
|
+
"outputs": [],
|
780
|
+
"stateMutability": "nonpayable",
|
781
|
+
"type": "function"
|
782
|
+
},
|
587
783
|
{
|
588
784
|
"inputs": [
|
589
785
|
{
|
@@ -686,6 +882,19 @@
|
|
686
882
|
"stateMutability": "nonpayable",
|
687
883
|
"type": "function"
|
688
884
|
},
|
885
|
+
{
|
886
|
+
"inputs": [
|
887
|
+
{
|
888
|
+
"internalType": "address",
|
889
|
+
"name": "newWallet",
|
890
|
+
"type": "address"
|
891
|
+
}
|
892
|
+
],
|
893
|
+
"name": "setWallet",
|
894
|
+
"outputs": [],
|
895
|
+
"stateMutability": "nonpayable",
|
896
|
+
"type": "function"
|
897
|
+
},
|
689
898
|
{
|
690
899
|
"inputs": [
|
691
900
|
{
|
@@ -739,44 +948,23 @@
|
|
739
948
|
"outputs": [],
|
740
949
|
"stateMutability": "nonpayable",
|
741
950
|
"type": "function"
|
742
|
-
}
|
743
|
-
|
744
|
-
"bytecode": "0x60806040523480156200001157600080fd5b50604051620023123803806200231283398101604081905262000034916200087e565b898989608c8a856200006c6301ffc9a760e01b6000908152602052600080516020620022f2833981519152805460ff19166001179055565b600280546001600160a01b031916331790556040805160208101909152600081526200009d87878686868662000473565b6000620000b26001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03891660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801562000102573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200012c9190810190620009ef565b6080810151600780546001600160a01b0319166001600160a01b0390921691821790556040516301ffc9a760e01b815263e811631d60e01b6004820152919250906301ffc9a790602401602060405180830381865afa15801562000194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ba919062000ad5565b620001e65760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b600760009054906101000a90046001600160a01b03166001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000260919062000afa565b600380546001600160a01b03199081166001600160a01b0393841617909155600580543090831617905560068054909116918816919091179055634c0cba3d60e11b60009081526020527f8605f84a1fdbc6ff75d8a06315d161884729b429561b502d19c5a33135142c3a805460ff1916600117905550506008805460ff19168d1515179055505050600988905550508451600a5550602080850151600b558351600c5583810151600d558251600e5582810151600f5560075460408051636b9bf08b60e01b815290516001600160a01b0390921692636b9bf08b926004808401938290030181865afa1580156200035c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000382919062000afa565b601080546001600160a01b0319166001600160a01b0392831617905560075460408051634288121d60e01b815290519190921691634288121d9160048083019260209291908290030181865afa158015620003e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000407919062000afa565b601180546001600160a01b0319166001600160a01b0392909216919091179055632d744d3360e11b60009081526020527f8b4532a0111795e202cfc84b9993b64ea185eec29ed9b6b664121b104b35bb00805460ff191660011790555050505050505050505062000c75565b620004a46301ffc9a760e01b6000908152602052600080516020620022f2833981519152805460ff19166001179055565b620004b0828762000575565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d0100000000000000000000000000861515021781559050600181016200052f838262000ba9565b506303fb044760e21b60009081526020527fb43e4f3791bfcdefa3a0fbe2a5555f8d6490b90e01de0ff40c66f18b49b562c5805460ff1916600117905550505050505050565b6001600160a01b038216620005cd5760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401620001dd565b600280546001600160a01b0319166001600160a01b038416179055620005f381620005f7565b5050565b6001546001600160a01b031615620006325760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401620001dd565b6001600160a01b0381166200065a5760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b600003620006925760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001dd565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632eaf856d60e11b60048201526301ffc9a790602401602060405180830381865afa9250505080156200070f575060408051601f3d908101601f191682019092526200070c9181019062000ad5565b60015b620007395760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001dd565b80620005f35760405163fdeac91f60e01b81526001600160a01b0383166004820152602401620001dd565b50565b6001600160a01b03811681146200076457600080fd5b80516200078a8162000767565b919050565b80516001600160601b03811681146200078a57600080fd5b805180151581146200078a57600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b0381118282101715620007f357620007f3620007b8565b60405290565b604051601f8201601f191681016001600160401b0381118282101715620008245762000824620007b8565b604052919050565b6000604082840312156200083f57600080fd5b604080519081016001600160401b0381118282101715620008645762000864620007b8565b604052825181526020928301519281019290925250919050565b6000806000806000806000806000806101a08b8d0312156200089f57600080fd5b8a51620008ac8162000767565b9950620008bc60208c016200078f565b985060408b0151620008ce8162000767565b9750620008de60608c01620007a7565b9650620008ee60808c01620007a7565b955060a08b01519450620009068c60c08d016200082c565b9350620009188c6101008d016200082c565b92506200092a8c6101408d016200082c565b91506101808b01516200093d8162000767565b809150509295989b9194979a5092959850565b805160ff811681146200078a57600080fd5b600082601f8301126200097457600080fd5b81516001600160401b03811115620009905762000990620007b8565b6020620009a6601f8301601f19168201620007f9565b8281528582848701011115620009bb57600080fd5b60005b83811015620009db578581018301518282018401528201620009be565b506000928101909101919091529392505050565b60006020828403121562000a0257600080fd5b81516001600160401b038082111562000a1a57600080fd5b9083019060e0828603121562000a2f57600080fd5b62000a39620007ce565b62000a44836200078f565b815262000a54602084016200078f565b602082015262000a676040840162000950565b604082015262000a7a60608401620007a7565b606082015262000a8d608084016200077d565b608082015262000aa060a084016200077d565b60a082015260c08301518281111562000ab857600080fd5b62000ac68782860162000962565b60c08301525095945050505050565b60006020828403121562000ae857600080fd5b62000af382620007a7565b9392505050565b60006020828403121562000b0d57600080fd5b815162000af38162000767565b600181811c9082168062000b2f57607f821691505b60208210810362000b5057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000ba457600081815260208120601f850160051c8101602086101562000b7f5750805b601f850160051c820191505b8181101562000ba05782815560010162000b8b565b5050505b505050565b81516001600160401b0381111562000bc55762000bc5620007b8565b62000bdd8162000bd6845462000b1a565b8462000b56565b602080601f83116001811462000c15576000841562000bfc5750858301515b600019600386901b1c1916600185901b17855562000ba0565b600085815260208120601f198616915b8281101562000c465788860151825594840194600190910190840162000c25565b508582101562000c655787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61166d8062000c856000396000f3fe608060405234801561001057600080fd5b50600436106101415760003560e01c8063644c45e0116100b8578063a69df4b51161007c578063a69df4b5146102cf578063c200b809146102d7578063d7f5e609146102ec578063dab12325146102ff578063de7b5d1414610315578063f83d08ba1461032657600080fd5b8063644c45e01461027e57806365effc1a1461029657806382678766146102a957806387ef9ba0146102bc578063893d20e8146102c757600080fd5b80631eff4b221161010a5780631eff4b22146101f957806321df0da71461022e5780632a65c6881461023f57806354afef63146102525780635ab1bd531461025a578063636450f51461026b57600080fd5b806251884a1461014657806301ffc9a7146101775780630fec111c146101b457806313299604146101ca578063138461e0146101ef575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b6101a4610185366004610f47565b6001600160e01b03191660009081526020819052604090205460ff1690565b604051901515815260200161016e565b6101bc61032e565b60405161016e929190610fbe565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161016e565b6101f7610439565b005b6102207f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161016e565b6006546001600160a01b03166101d7565b6101f761024d36600461107d565b61065b565b600954610220565b6001546001600160a01b03166101d7565b6101f761027936600461112d565b6107aa565b600154600160a01b90046001600160601b031661015a565b6101f76102a43660046111f0565b610812565b6101f76102b736600461126e565b610888565b60085460ff166101a4565b6101d7610950565b6101f7610a6e565b6102df610b03565b60405161016e91906112b4565b61015a6102fa366004611359565b610c7e565b6101a461030d3660046113bb565b600192915050565b6007546001600160a01b03166101d7565b6101f7610d08565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082018190529091610371610d73565b506040805161010081018252600754600160a01b90046001600160601b031681526006546001600160a01b039081166020808401919091526009548385015283518085018552600a548152600b5481830152606084015283518085018552600c548152600d5481830152608084015283518085018552600e548152600f548183015260a084015260085460ff16151560c084015260055490911660e08301529151929350839261042192016112b4565b60405160208183030381529060405292509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561049b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104bf9190611434565b15610506576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b031661052f5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610578573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061059c9190611434565b6105c4576040516372657a5160e01b81526001600160a01b03821660048201526024016104fd565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561060e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610632919061145a565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b610663610950565b6001600160a01b0316336001600160a01b0316146106965760405163700dd81160e01b81523360048201526024016104fd565b60075473__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90600160a01b90046001600160601b031660006040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015610712573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107369190611434565b6107825760405162461bcd60e51b815260206004820152601a60248201527f70726f64756374206e667420696420616c72656164792073657400000000000060448201526064016104fd565b600780546001600160601b03909216600160a01b026001600160a01b03909216919091179055565b60105460405163636450f560e01b81526001600160a01b039091169063636450f5906107dc9085908590600401611477565b600060405180830381600087803b1580156107f657600080fd5b505af115801561080a573d6000803e3d6000fd5b505050505050565b6011546001600160a01b031633146108765760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504f4c2d3030323a4e4f545f50524f445543545f5345525649436044820152604560f81b60648201526084016104fd565b61088284848484610ef9565b50505050565b610890610950565b6001600160a01b0316336001600160a01b0316146108c35760405163700dd81160e01b81523360048201526024016104fd565b601054604051634133c3b360e11b8152845160048201526020808601516024830152845160448301528085015160648301528351608483015283015160a48201526001600160a01b039091169063826787669060c401600060405180830381600087803b15801561093357600080fd5b505af1158015610947573d6000803e3d6000fd5b50505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156109b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d99190611434565b15610a5e57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610a35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5991906114be565b905090565b506002546001600160a01b031690565b610a76610950565b6001600160a01b0316336001600160a01b031614610aa95760405163700dd81160e01b81523360048201526024016104fd565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b158015610aef57600080fd5b505af1158015610882573d6000803e3d6000fd5b610b7660408051610100810182526000808252602080830182905282840182905283518085018552828152808201839052606084015283518085018552828152808201839052608084015283518085019094528184528301529060a0820190815260006020820181905260409091015290565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa158015610bc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be491906114be565b9050806001600160a01b03166355e343a9610c0f6001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161016060405180830381865afa158015610c54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c78919061150b565b91505090565b60105460405163e3458d5360e01b815260009133916001600160a01b039091169063e3458d5390610cbb9084908a908a908a908a906004016115ad565b6020604051808303816000875af1158015610cda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfe919061145a565b9695505050505050565b610d10610950565b6001600160a01b0316336001600160a01b031614610d435760405163700dd81160e01b81523360048201526024016104fd565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a790602401610ad5565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610dfa6001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610e42610950565b6001600160a01b03168152602001826001018054610e5f906115fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8b906115fd565b8015610ed85780601f10610ead57610100808354040283529160200191610ed8565b820191906000526020600020905b815481529060010190602001808311610ebb57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b604080516001600160601b038616815260208101839052308183015290517ffa749b7f8c958183586325608c5d122eb3a8beb56a4d6ac2c88b78193e9facb99181900360600190a150505050565b600060208284031215610f5957600080fd5b81356001600160e01b031981168114610f7157600080fd5b9392505050565b6000815180845260005b81811015610f9e57602081850181015186830182015201610f82565b506000602082860101526020601f19601f83011685010191505092915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff6040850151166080830152606084015161100260a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152611048610120840182610f78565b9050828103602084015261105c8185610f78565b95945050505050565b6001600160601b038116811461107a57600080fd5b50565b60006020828403121561108f57600080fd5b8135610f7181611065565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff811182821017156110d3576110d361109a565b60405290565b604051610100810167ffffffffffffffff811182821017156110d3576110d361109a565b60006040828403121561110f57600080fd5b6111176110b0565b9050813581526020820135602082015292915050565b6000806060838503121561114057600080fd5b823561114b81611065565b915061115a84602085016110fd565b90509250929050565b600082601f83011261117457600080fd5b813567ffffffffffffffff8082111561118f5761118f61109a565b604051601f8301601f19908116603f011681019082821181831017156111b7576111b761109a565b816040528381528660208588010111156111d057600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000806080858703121561120657600080fd5b843561121181611065565b9350602085013567ffffffffffffffff8082111561122e57600080fd5b61123a88838901611163565b9450604087013591508082111561125057600080fd5b5061125d87828801611163565b949793965093946060013593505050565b600080600060c0848603121561128357600080fd5b61128d85856110fd565b925061129c85604086016110fd565b91506112ab85608086016110fd565b90509250925092565b81516001600160601b031681526020808301516001600160a01b031690820152604080830151908201526060808301516101608301916113009084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151151561012083015260e08301516001600160a01b0381166101408401525092915050565b60008060008060a0858703121561136f57600080fd5b61137986866110fd565b93506040850135925060608501359150608085013567ffffffffffffffff8111156113a357600080fd5b6113af87828801611163565b91505092959194509250565b600080604083850312156113ce57600080fd5b823567ffffffffffffffff808211156113e657600080fd5b6113f286838701611163565b9350602085013591508082111561140857600080fd5b5061141585828601611163565b9150509250929050565b8051801515811461142f57600080fd5b919050565b60006020828403121561144657600080fd5b610f718261141f565b805161142f81611065565b60006020828403121561146c57600080fd5b8151610f7181611065565b6001600160601b038316815260608101610f71602083018480518252602090810151910152565b6001600160a01b038116811461107a57600080fd5b805161142f8161149e565b6000602082840312156114d057600080fd5b8151610f718161149e565b6000604082840312156114ed57600080fd5b6114f56110b0565b9050815181526020820151602082015292915050565b6000610160828403121561151e57600080fd5b6115266110d9565b61152f8361144f565b815261153d602084016114b3565b60208201526040830151604082015261155984606085016114db565b606082015261156b8460a085016114db565b608082015261157d8460e085016114db565b60a082015261158f610120840161141f565b60c08201526115a161014084016114b3565b60e08201529392505050565b6001600160a01b03861681526115d0602082018680518252602090810151910152565b83606082015282608082015260c060a082015260006115f260c0830184610f78565b979650505050505050565b600181811c9082168061161157607f821691505b60208210810361163157634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220bba07ffea5bc4249af1d665a6ef57f9f19c940ae92315cb1fb061e7a7459af8464736f6c6343000814003367be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5",
|
745
|
-
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101415760003560e01c8063644c45e0116100b8578063a69df4b51161007c578063a69df4b5146102cf578063c200b809146102d7578063d7f5e609146102ec578063dab12325146102ff578063de7b5d1414610315578063f83d08ba1461032657600080fd5b8063644c45e01461027e57806365effc1a1461029657806382678766146102a957806387ef9ba0146102bc578063893d20e8146102c757600080fd5b80631eff4b221161010a5780631eff4b22146101f957806321df0da71461022e5780632a65c6881461023f57806354afef63146102525780635ab1bd531461025a578063636450f51461026b57600080fd5b806251884a1461014657806301ffc9a7146101775780630fec111c146101b457806313299604146101ca578063138461e0146101ef575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b6101a4610185366004610f47565b6001600160e01b03191660009081526020819052604090205460ff1690565b604051901515815260200161016e565b6101bc61032e565b60405161016e929190610fbe565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161016e565b6101f7610439565b005b6102207f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161016e565b6006546001600160a01b03166101d7565b6101f761024d36600461107d565b61065b565b600954610220565b6001546001600160a01b03166101d7565b6101f761027936600461112d565b6107aa565b600154600160a01b90046001600160601b031661015a565b6101f76102a43660046111f0565b610812565b6101f76102b736600461126e565b610888565b60085460ff166101a4565b6101d7610950565b6101f7610a6e565b6102df610b03565b60405161016e91906112b4565b61015a6102fa366004611359565b610c7e565b6101a461030d3660046113bb565b600192915050565b6007546001600160a01b03166101d7565b6101f7610d08565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082018190529091610371610d73565b506040805161010081018252600754600160a01b90046001600160601b031681526006546001600160a01b039081166020808401919091526009548385015283518085018552600a548152600b5481830152606084015283518085018552600c548152600d5481830152608084015283518085018552600e548152600f548183015260a084015260085460ff16151560c084015260055490911660e08301529151929350839261042192016112b4565b60405160208183030381529060405292509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561049b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104bf9190611434565b15610506576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b031661052f5760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610578573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061059c9190611434565b6105c4576040516372657a5160e01b81526001600160a01b03821660048201526024016104fd565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa15801561060e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610632919061145a565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b610663610950565b6001600160a01b0316336001600160a01b0316146106965760405163700dd81160e01b81523360048201526024016104fd565b60075473__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90600160a01b90046001600160601b031660006040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af4158015610712573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107369190611434565b6107825760405162461bcd60e51b815260206004820152601a60248201527f70726f64756374206e667420696420616c72656164792073657400000000000060448201526064016104fd565b600780546001600160601b03909216600160a01b026001600160a01b03909216919091179055565b60105460405163636450f560e01b81526001600160a01b039091169063636450f5906107dc9085908590600401611477565b600060405180830381600087803b1580156107f657600080fd5b505af115801561080a573d6000803e3d6000fd5b505050505050565b6011546001600160a01b031633146108765760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504f4c2d3030323a4e4f545f50524f445543545f5345525649436044820152604560f81b60648201526084016104fd565b61088284848484610ef9565b50505050565b610890610950565b6001600160a01b0316336001600160a01b0316146108c35760405163700dd81160e01b81523360048201526024016104fd565b601054604051634133c3b360e11b8152845160048201526020808601516024830152845160448301528085015160648301528351608483015283015160a48201526001600160a01b039091169063826787669060c401600060405180830381600087803b15801561093357600080fd5b505af1158015610947573d6000803e3d6000fd5b50505050505050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156109b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d99190611434565b15610a5e57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610a35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5991906114be565b905090565b506002546001600160a01b031690565b610a76610950565b6001600160a01b0316336001600160a01b031614610aa95760405163700dd81160e01b81523360048201526024016104fd565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b158015610aef57600080fd5b505af1158015610882573d6000803e3d6000fd5b610b7660408051610100810182526000808252602080830182905282840182905283518085018552828152808201839052606084015283518085018552828152808201839052608084015283518085019094528184528301529060a0820190815260006020820181905260409091015290565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa158015610bc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be491906114be565b9050806001600160a01b03166355e343a9610c0f6001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240161016060405180830381865afa158015610c54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c78919061150b565b91505090565b60105460405163e3458d5360e01b815260009133916001600160a01b039091169063e3458d5390610cbb9084908a908a908a908a906004016115ad565b6020604051808303816000875af1158015610cda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfe919061145a565b9695505050505050565b610d10610950565b6001600160a01b0316336001600160a01b031614610d435760405163700dd81160e01b81523360048201526024016104fd565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a790602401610ad5565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610dfa6001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610e42610950565b6001600160a01b03168152602001826001018054610e5f906115fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8b906115fd565b8015610ed85780601f10610ead57610100808354040283529160200191610ed8565b820191906000526020600020905b815481529060010190602001808311610ebb57829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b604080516001600160601b038616815260208101839052308183015290517ffa749b7f8c958183586325608c5d122eb3a8beb56a4d6ac2c88b78193e9facb99181900360600190a150505050565b600060208284031215610f5957600080fd5b81356001600160e01b031981168114610f7157600080fd5b9392505050565b6000815180845260005b81811015610f9e57602081850181015186830182015201610f82565b506000602082860101526020601f19601f83011685010191505092915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff6040850151166080830152606084015161100260a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152611048610120840182610f78565b9050828103602084015261105c8185610f78565b95945050505050565b6001600160601b038116811461107a57600080fd5b50565b60006020828403121561108f57600080fd5b8135610f7181611065565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff811182821017156110d3576110d361109a565b60405290565b604051610100810167ffffffffffffffff811182821017156110d3576110d361109a565b60006040828403121561110f57600080fd5b6111176110b0565b9050813581526020820135602082015292915050565b6000806060838503121561114057600080fd5b823561114b81611065565b915061115a84602085016110fd565b90509250929050565b600082601f83011261117457600080fd5b813567ffffffffffffffff8082111561118f5761118f61109a565b604051601f8301601f19908116603f011681019082821181831017156111b7576111b761109a565b816040528381528660208588010111156111d057600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000806080858703121561120657600080fd5b843561121181611065565b9350602085013567ffffffffffffffff8082111561122e57600080fd5b61123a88838901611163565b9450604087013591508082111561125057600080fd5b5061125d87828801611163565b949793965093946060013593505050565b600080600060c0848603121561128357600080fd5b61128d85856110fd565b925061129c85604086016110fd565b91506112ab85608086016110fd565b90509250925092565b81516001600160601b031681526020808301516001600160a01b031690820152604080830151908201526060808301516101608301916113009084018280518252602090810151910152565b506080830151805160a0840152602081015160c08401525060a0830151805160e084015260208101516101008401525060c0830151151561012083015260e08301516001600160a01b0381166101408401525092915050565b60008060008060a0858703121561136f57600080fd5b61137986866110fd565b93506040850135925060608501359150608085013567ffffffffffffffff8111156113a357600080fd5b6113af87828801611163565b91505092959194509250565b600080604083850312156113ce57600080fd5b823567ffffffffffffffff808211156113e657600080fd5b6113f286838701611163565b9350602085013591508082111561140857600080fd5b5061141585828601611163565b9150509250929050565b8051801515811461142f57600080fd5b919050565b60006020828403121561144657600080fd5b610f718261141f565b805161142f81611065565b60006020828403121561146c57600080fd5b8151610f7181611065565b6001600160601b038316815260608101610f71602083018480518252602090810151910152565b6001600160a01b038116811461107a57600080fd5b805161142f8161149e565b6000602082840312156114d057600080fd5b8151610f718161149e565b6000604082840312156114ed57600080fd5b6114f56110b0565b9050815181526020820151602082015292915050565b6000610160828403121561151e57600080fd5b6115266110d9565b61152f8361144f565b815261153d602084016114b3565b60208201526040830151604082015261155984606085016114db565b606082015261156b8460a085016114db565b608082015261157d8460e085016114db565b60a082015261158f610120840161141f565b60c08201526115a161014084016114b3565b60e08201529392505050565b6001600160a01b03861681526115d0602082018680518252602090810151910152565b83606082015282608082015260c060a082015260006115f260c0830184610f78565b979650505050505050565b600181811c9082168061161157607f821691505b60208210810361163157634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220bba07ffea5bc4249af1d665a6ef57f9f19c940ae92315cb1fb061e7a7459af8464736f6c63430008140033",
|
746
|
-
"linkReferences": {
|
747
|
-
"contracts/types/NftId.sol": {
|
748
|
-
"NftIdLib": [
|
749
|
-
{
|
750
|
-
"length": 20,
|
751
|
-
"start": 4326
|
752
|
-
},
|
753
|
-
{
|
754
|
-
"length": 20,
|
755
|
-
"start": 4896
|
756
|
-
},
|
757
|
-
{
|
758
|
-
"length": 20,
|
759
|
-
"start": 5632
|
760
|
-
}
|
761
|
-
]
|
762
|
-
}
|
763
|
-
},
|
764
|
-
"deployedLinkReferences": {
|
765
|
-
"contracts/types/NftId.sol": {
|
766
|
-
"NftIdLib": [
|
767
|
-
{
|
768
|
-
"length": 20,
|
769
|
-
"start": 1121
|
770
|
-
},
|
771
|
-
{
|
772
|
-
"length": 20,
|
773
|
-
"start": 1691
|
774
|
-
},
|
951
|
+
},
|
952
|
+
{
|
953
|
+
"inputs": [
|
775
954
|
{
|
776
|
-
"
|
777
|
-
"
|
955
|
+
"internalType": "NftId",
|
956
|
+
"name": "bundleNftId",
|
957
|
+
"type": "uint96"
|
778
958
|
}
|
779
|
-
]
|
959
|
+
],
|
960
|
+
"name": "unlockBundle",
|
961
|
+
"outputs": [],
|
962
|
+
"stateMutability": "nonpayable",
|
963
|
+
"type": "function"
|
780
964
|
}
|
781
|
-
|
965
|
+
],
|
966
|
+
"bytecode": "0x",
|
967
|
+
"deployedBytecode": "0x",
|
968
|
+
"linkReferences": {},
|
969
|
+
"deployedLinkReferences": {}
|
782
970
|
}
|