@layerzerolabs/lz-evm-sdk-v1 2.3.9 → 2.3.11
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/CHANGELOG.md +16 -0
- package/artifacts-tron/contracts/Endpoint.sol/Endpoint.json +958 -0
- package/artifacts-tron/contracts/NonceContract.sol/NonceContract.json +88 -0
- package/artifacts-tron/contracts/PriceFeed.sol/PriceFeed.json +531 -0
- package/artifacts-tron/contracts/RelayerV2.sol/RelayerV2.json +1170 -0
- package/artifacts-tron/contracts/UltraLightNode.sol/UltraLightNode.json +1475 -0
- package/artifacts-tron/contracts/UltraLightNodeV2.sol/UltraLightNodeV2.json +1423 -0
- package/artifacts-tron/contracts/interfaces/IContractOne.sol/IContractOne.json +24 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroEndpoint.sol/ILayerZeroEndpoint.json +447 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroMessagingLibrary.sol/ILayerZeroMessagingLibrary.json +160 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroMessagingLibraryV2.sol/ILayerZeroMessagingLibraryV2.json +184 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroOracle.sol/ILayerZeroOracle.json +77 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroOracleV2.sol/ILayerZeroOracleV2.json +97 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroPriceFeed.sol/ILayerZeroPriceFeed.json +107 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroPriceFeedV2.sol/ILayerZeroPriceFeedV2.json +104 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroReceiver.sol/ILayerZeroReceiver.json +39 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroRelayer.sol/ILayerZeroRelayer.json +92 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroRelayerV2.sol/ILayerZeroRelayerV2.json +107 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroRelayerV2PriceData.sol/ILayerZeroRelayerV2PriceData.json +83 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroTreasury.sol/ILayerZeroTreasury.json +40 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroUltraLightNodeV1.sol/ILayerZeroUltraLightNodeV1.json +156 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroUltraLightNodeV2.sol/ILayerZeroUltraLightNodeV2.json +582 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroUserApplicationConfig.sol/ILayerZeroUserApplicationConfig.json +83 -0
- package/artifacts-tron/contracts/interfaces/ILayerZeroValidationLibrary.sol/ILayerZeroValidationLibrary.json +77 -0
- package/artifacts-tron/contracts/interfaces/IValidationLibraryHelper.sol/IValidationLibraryHelper.json +146 -0
- package/artifacts-tron/contracts/interfaces/IValidationLibraryHelperV2.sol/IValidationLibraryHelperV2.json +154 -0
- package/artifacts-tron/contracts/precrime/PreCrime.sol/PreCrime.json +353 -0
- package/artifacts-tron/contracts/precrime/PreCrimeBase.sol/PreCrimeBase.json +259 -0
- package/artifacts-tron/contracts/precrime/PreCrimeView.sol/PreCrimeView.json +318 -0
- package/artifacts-tron/contracts/precrime/interfaces/IPreCrime.sol/IPreCrime.json +162 -0
- package/artifacts-tron/contracts/precrime/interfaces/IPreCrimeBase.sol/IPreCrimeBase.json +116 -0
- package/artifacts-tron/contracts/precrime/interfaces/IPreCrimeView.sol/IPreCrimeView.json +162 -0
- package/artifacts-tron/contracts/proof/FPValidator.sol/FPValidator.json +326 -0
- package/artifacts-tron/contracts/proof/FPValidator.sol/IStargate.json +10 -0
- package/artifacts-tron/contracts/proof/MPTValidator.sol/MPTValidator.json +146 -0
- package/artifacts-tron/contracts/proof/MPTValidator01.sol/IStargate.json +10 -0
- package/artifacts-tron/contracts/proof/MPTValidator01.sol/MPTValidator01.json +339 -0
- package/artifacts-tron/contracts/proof/MPTValidatorStgV3.sol/MPTValidatorStgV3.json +310 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV2.sol/MPTValidatorV2.json +212 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV4.sol/IStargate.json +10 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV4.sol/IUltraLightNode.json +108 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV4.sol/MPTValidatorV4.json +414 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV5.sol/IStargate.json +10 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV5.sol/IUltraLightNode.json +108 -0
- package/artifacts-tron/contracts/proof/MPTValidatorV5.sol/MPTValidatorV5.json +432 -0
- package/artifacts-tron/contracts/proof/utility/Buffer.sol/Buffer.json +10 -0
- package/artifacts-tron/contracts/proof/utility/LayerZeroPacket.sol/LayerZeroPacket.json +10 -0
- package/artifacts-tron/contracts/proof/utility/RLPDecode.sol/RLPDecode.json +10 -0
- package/artifacts-tron/contracts/proof/utility/UltraLightNodeEVMDecoder.sol/UltraLightNodeEVMDecoder.json +10 -0
- package/artifacts-zk/contracts/Endpoint.sol/Endpoint.json +959 -0
- package/artifacts-zk/contracts/NonceContract.sol/NonceContract.json +89 -0
- package/artifacts-zk/contracts/PriceFeed.sol/PriceFeed.json +545 -0
- package/artifacts-zk/contracts/RelayerV2.sol/RelayerV2.json +1020 -0
- package/artifacts-zk/contracts/TreasuryV2.sol/TreasuryV2.json +309 -0
- package/artifacts-zk/contracts/UltraLightNodeV2.sol/UltraLightNodeV2.json +1424 -0
- package/artifacts-zk/contracts/interfaces/IContractOne.sol/IContractOne.json +25 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroEndpoint.sol/ILayerZeroEndpoint.json +448 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroMessagingLibrary.sol/ILayerZeroMessagingLibrary.json +161 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroMessagingLibraryV2.sol/ILayerZeroMessagingLibraryV2.json +185 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroOracleV2.sol/ILayerZeroOracleV2.json +98 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroPriceFeed.sol/ILayerZeroPriceFeed.json +108 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroPriceFeedV2.sol/ILayerZeroPriceFeedV2.json +105 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroReceiver.sol/ILayerZeroReceiver.json +40 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroRelayerV2.sol/ILayerZeroRelayerV2.json +108 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroTreasury.sol/ILayerZeroTreasury.json +41 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroUltraLightNodeV2.sol/ILayerZeroUltraLightNodeV2.json +583 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroUserApplicationConfig.sol/ILayerZeroUserApplicationConfig.json +84 -0
- package/artifacts-zk/contracts/interfaces/ILayerZeroValidationLibrary.sol/ILayerZeroValidationLibrary.json +78 -0
- package/artifacts-zk/contracts/interfaces/IValidationLibraryHelper.sol/IValidationLibraryHelper.json +147 -0
- package/artifacts-zk/contracts/interfaces/IValidationLibraryHelperV2.sol/IValidationLibraryHelperV2.json +155 -0
- package/artifacts-zk/contracts/oracle/OracleV2.sol/OracleV2.json +1527 -0
- package/artifacts-zk/contracts/precrime/PreCrime.sol/PreCrime.json +354 -0
- package/artifacts-zk/contracts/precrime/PreCrimeBase.sol/PreCrimeBase.json +260 -0
- package/artifacts-zk/contracts/precrime/PreCrimeView.sol/PreCrimeView.json +319 -0
- package/artifacts-zk/contracts/precrime/example/inherit/CounterI.sol/CounterI.json +624 -0
- package/artifacts-zk/contracts/precrime/example/inherit/CounterPrecrime.sol/CounterPrecrime.json +458 -0
- package/artifacts-zk/contracts/precrime/example/view/CounterPrecrimeView.sol/CounterPrecrimeView.json +417 -0
- package/artifacts-zk/contracts/precrime/example/view/CounterV.sol/CounterV.json +178 -0
- package/artifacts-zk/contracts/precrime/example/view/CounterView.sol/CounterView.json +166 -0
- package/artifacts-zk/contracts/precrime/interfaces/IPreCrime.sol/IPreCrime.json +163 -0
- package/artifacts-zk/contracts/precrime/interfaces/IPreCrimeBase.sol/IPreCrimeBase.json +117 -0
- package/artifacts-zk/contracts/precrime/interfaces/IPreCrimeView.sol/IPreCrimeView.json +163 -0
- package/artifacts-zk/contracts/proof/FPValidator.sol/FPValidator.json +327 -0
- package/artifacts-zk/contracts/proof/FPValidator.sol/IStargate.json +11 -0
- package/artifacts-zk/contracts/proof/utility/Buffer.sol/Buffer.json +11 -0
- package/artifacts-zk/contracts/proof/utility/LayerZeroPacket.sol/LayerZeroPacket.json +11 -0
- package/artifacts-zk/contracts/proof/utility/RLPDecode.sol/RLPDecode.json +11 -0
- package/artifacts-zk/contracts/proof/utility/UltraLightNodeEVMDecoder.sol/UltraLightNodeEVMDecoder.json +11 -0
- package/artifacts-zk/contracts/proxy/ProxyAdmin.sol/ProxyAdmin.json +172 -0
- package/artifacts-zk/contracts/proxy/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +156 -0
- package/deployments/arbitrum-sandbox-local/DefaultProxyAdmin.json +10 -10
- package/deployments/arbitrum-sandbox-local/Endpoint.json +7 -7
- package/deployments/arbitrum-sandbox-local/FPValidator.json +4 -4
- package/deployments/arbitrum-sandbox-local/MPTValidator01.json +4 -4
- package/deployments/arbitrum-sandbox-local/NonceContract.json +4 -4
- package/deployments/arbitrum-sandbox-local/RelayerV2.json +16 -16
- package/deployments/arbitrum-sandbox-local/RelayerV2_Implementation.json +4 -4
- package/deployments/arbitrum-sandbox-local/RelayerV2_Proxy.json +16 -16
- package/deployments/arbitrum-sandbox-local/TreasuryV2.json +7 -7
- package/deployments/arbitrum-sandbox-local/UltraLightNode.json +7 -7
- package/deployments/arbitrum-sandbox-local/UltraLightNodeV2.json +7 -7
- package/deployments/bsc-sandbox-local/DefaultProxyAdmin.json +10 -10
- package/deployments/bsc-sandbox-local/Endpoint.json +7 -7
- package/deployments/bsc-sandbox-local/FPValidator.json +4 -4
- package/deployments/bsc-sandbox-local/MPTValidator01.json +4 -4
- package/deployments/bsc-sandbox-local/NonceContract.json +4 -4
- package/deployments/bsc-sandbox-local/RelayerV2.json +16 -16
- package/deployments/bsc-sandbox-local/RelayerV2_Implementation.json +4 -4
- package/deployments/bsc-sandbox-local/RelayerV2_Proxy.json +16 -16
- package/deployments/bsc-sandbox-local/TreasuryV2.json +7 -7
- package/deployments/bsc-sandbox-local/UltraLightNode.json +7 -7
- package/deployments/bsc-sandbox-local/UltraLightNodeV2.json +7 -7
- package/deployments/cyber-mainnet/DefaultProxyAdmin.json +273 -0
- package/deployments/cyber-mainnet/Endpoint.json +1282 -0
- package/deployments/cyber-mainnet/FPValidator.json +382 -0
- package/deployments/cyber-mainnet/MPTValidator01.json +395 -0
- package/deployments/cyber-mainnet/NonceContract.json +159 -0
- package/deployments/cyber-mainnet/RelayerV2.json +1415 -0
- package/deployments/cyber-mainnet/RelayerV2_Implementation.json +1612 -0
- package/deployments/cyber-mainnet/RelayerV2_Proxy.json +245 -0
- package/deployments/cyber-mainnet/TreasuryV2.json +458 -0
- package/deployments/cyber-mainnet/UltraLightNodeV2.json +1816 -0
- package/deployments/ethereum-sandbox-local/DefaultProxyAdmin.json +10 -10
- package/deployments/ethereum-sandbox-local/Endpoint.json +7 -7
- package/deployments/ethereum-sandbox-local/FPValidator.json +4 -4
- package/deployments/ethereum-sandbox-local/MPTValidator01.json +4 -4
- package/deployments/ethereum-sandbox-local/NonceContract.json +4 -4
- package/deployments/ethereum-sandbox-local/RelayerV2.json +16 -16
- package/deployments/ethereum-sandbox-local/RelayerV2_Implementation.json +4 -4
- package/deployments/ethereum-sandbox-local/RelayerV2_Proxy.json +16 -16
- package/deployments/ethereum-sandbox-local/TreasuryV2.json +7 -7
- package/deployments/ethereum-sandbox-local/UltraLightNode.json +7 -7
- package/deployments/ethereum-sandbox-local/UltraLightNodeV2.json +7 -7
- package/deployments/iota-mainnet/DefaultProxyAdmin.json +273 -0
- package/deployments/iota-mainnet/Endpoint.json +1282 -0
- package/deployments/iota-mainnet/FPValidator.json +382 -0
- package/deployments/iota-mainnet/MPTValidator01.json +395 -0
- package/deployments/iota-mainnet/NonceContract.json +159 -0
- package/deployments/iota-mainnet/RelayerV2.json +1415 -0
- package/deployments/iota-mainnet/RelayerV2_Implementation.json +1612 -0
- package/deployments/iota-mainnet/RelayerV2_Proxy.json +245 -0
- package/deployments/iota-mainnet/TreasuryV2.json +458 -0
- package/deployments/iota-mainnet/UltraLightNodeV2.json +1816 -0
- package/deployments/polygon-sandbox-local/DefaultProxyAdmin.json +3 -3
- package/deployments/polygon-sandbox-local/Endpoint.json +2 -2
- package/deployments/polygon-sandbox-local/FPValidator.json +1 -1
- package/deployments/polygon-sandbox-local/MPTValidator01.json +1 -1
- package/deployments/polygon-sandbox-local/NonceContract.json +1 -1
- package/deployments/polygon-sandbox-local/RelayerV2.json +5 -5
- package/deployments/polygon-sandbox-local/RelayerV2_Implementation.json +1 -1
- package/deployments/polygon-sandbox-local/RelayerV2_Proxy.json +5 -5
- package/deployments/polygon-sandbox-local/TreasuryV2.json +2 -2
- package/deployments/polygon-sandbox-local/UltraLightNode.json +2 -2
- package/deployments/polygon-sandbox-local/UltraLightNodeV2.json +2 -2
- package/deployments/tron-sandbox-local/DefaultProxyAdmin.json +14 -14
- package/deployments/tron-sandbox-local/Endpoint.json +10 -10
- package/deployments/tron-sandbox-local/FPValidator.json +6 -6
- package/deployments/tron-sandbox-local/MPTValidator01.json +6 -6
- package/deployments/tron-sandbox-local/NonceContract.json +7 -7
- package/deployments/tron-sandbox-local/RelayerV2.json +31 -31
- package/deployments/tron-sandbox-local/RelayerV2_Implementation.json +6 -6
- package/deployments/tron-sandbox-local/RelayerV2_Proxy.json +28 -28
- package/deployments/tron-sandbox-local/TreasuryV2.json +11 -11
- package/deployments/tron-sandbox-local/UltraLightNode.json +11 -11
- package/deployments/tron-sandbox-local/UltraLightNodeV2.json +12 -12
- package/package.json +23 -7
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "IPreCrimeView",
|
|
4
|
+
"sourceName": "contracts/precrime/interfaces/IPreCrimeView.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"components": [
|
|
10
|
+
{
|
|
11
|
+
"internalType": "uint16",
|
|
12
|
+
"name": "srcChainId",
|
|
13
|
+
"type": "uint16"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"internalType": "bytes32",
|
|
17
|
+
"name": "srcAddress",
|
|
18
|
+
"type": "bytes32"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"internalType": "uint64",
|
|
22
|
+
"name": "nonce",
|
|
23
|
+
"type": "uint64"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"internalType": "bytes",
|
|
27
|
+
"name": "payload",
|
|
28
|
+
"type": "bytes"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"internalType": "struct IPreCrimeBase.Packet[]",
|
|
32
|
+
"name": "_packets",
|
|
33
|
+
"type": "tuple[]"
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
"name": "getConfig",
|
|
37
|
+
"outputs": [
|
|
38
|
+
{
|
|
39
|
+
"internalType": "bytes",
|
|
40
|
+
"name": "",
|
|
41
|
+
"type": "bytes"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"stateMutability": "view",
|
|
45
|
+
"type": "function"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"inputs": [
|
|
49
|
+
{
|
|
50
|
+
"components": [
|
|
51
|
+
{
|
|
52
|
+
"internalType": "uint16",
|
|
53
|
+
"name": "srcChainId",
|
|
54
|
+
"type": "uint16"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"internalType": "bytes32",
|
|
58
|
+
"name": "srcAddress",
|
|
59
|
+
"type": "bytes32"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"internalType": "uint64",
|
|
63
|
+
"name": "nonce",
|
|
64
|
+
"type": "uint64"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"internalType": "bytes",
|
|
68
|
+
"name": "payload",
|
|
69
|
+
"type": "bytes"
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
"internalType": "struct IPreCrimeBase.Packet[]",
|
|
73
|
+
"name": "_packets",
|
|
74
|
+
"type": "tuple[]"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"internalType": "bytes[]",
|
|
78
|
+
"name": "_simulation",
|
|
79
|
+
"type": "bytes[]"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"name": "precrime",
|
|
83
|
+
"outputs": [
|
|
84
|
+
{
|
|
85
|
+
"internalType": "uint16",
|
|
86
|
+
"name": "code",
|
|
87
|
+
"type": "uint16"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"internalType": "bytes",
|
|
91
|
+
"name": "reason",
|
|
92
|
+
"type": "bytes"
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
"stateMutability": "view",
|
|
96
|
+
"type": "function"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"inputs": [
|
|
100
|
+
{
|
|
101
|
+
"components": [
|
|
102
|
+
{
|
|
103
|
+
"internalType": "uint16",
|
|
104
|
+
"name": "srcChainId",
|
|
105
|
+
"type": "uint16"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"internalType": "bytes32",
|
|
109
|
+
"name": "srcAddress",
|
|
110
|
+
"type": "bytes32"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"internalType": "uint64",
|
|
114
|
+
"name": "nonce",
|
|
115
|
+
"type": "uint64"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"internalType": "bytes",
|
|
119
|
+
"name": "payload",
|
|
120
|
+
"type": "bytes"
|
|
121
|
+
}
|
|
122
|
+
],
|
|
123
|
+
"internalType": "struct IPreCrimeBase.Packet[]",
|
|
124
|
+
"name": "_packets",
|
|
125
|
+
"type": "tuple[]"
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"name": "simulate",
|
|
129
|
+
"outputs": [
|
|
130
|
+
{
|
|
131
|
+
"internalType": "uint16",
|
|
132
|
+
"name": "code",
|
|
133
|
+
"type": "uint16"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"internalType": "bytes",
|
|
137
|
+
"name": "result",
|
|
138
|
+
"type": "bytes"
|
|
139
|
+
}
|
|
140
|
+
],
|
|
141
|
+
"stateMutability": "view",
|
|
142
|
+
"type": "function"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"inputs": [],
|
|
146
|
+
"name": "version",
|
|
147
|
+
"outputs": [
|
|
148
|
+
{
|
|
149
|
+
"internalType": "uint16",
|
|
150
|
+
"name": "",
|
|
151
|
+
"type": "uint16"
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
"stateMutability": "view",
|
|
155
|
+
"type": "function"
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
"bytecode": "0x",
|
|
159
|
+
"deployedBytecode": "0x",
|
|
160
|
+
"linkReferences": {},
|
|
161
|
+
"deployedLinkReferences": {}
|
|
162
|
+
}
|
|
@@ -0,0 +1,326 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "FPValidator",
|
|
4
|
+
"sourceName": "contracts/proof/FPValidator.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "_stargateBridgeAddress",
|
|
11
|
+
"type": "address"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "address",
|
|
15
|
+
"name": "_stargateTokenAddress",
|
|
16
|
+
"type": "address"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"stateMutability": "nonpayable",
|
|
20
|
+
"type": "constructor"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"inputs": [
|
|
24
|
+
{
|
|
25
|
+
"internalType": "bytes",
|
|
26
|
+
"name": "data",
|
|
27
|
+
"type": "bytes"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"internalType": "uint256",
|
|
31
|
+
"name": "sizeOfSrcAddress",
|
|
32
|
+
"type": "uint256"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"internalType": "bytes32",
|
|
36
|
+
"name": "ulnAddress",
|
|
37
|
+
"type": "bytes32"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"name": "getPacket",
|
|
41
|
+
"outputs": [
|
|
42
|
+
{
|
|
43
|
+
"components": [
|
|
44
|
+
{
|
|
45
|
+
"internalType": "uint16",
|
|
46
|
+
"name": "srcChainId",
|
|
47
|
+
"type": "uint16"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"internalType": "uint16",
|
|
51
|
+
"name": "dstChainId",
|
|
52
|
+
"type": "uint16"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"internalType": "uint64",
|
|
56
|
+
"name": "nonce",
|
|
57
|
+
"type": "uint64"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"internalType": "address",
|
|
61
|
+
"name": "dstAddress",
|
|
62
|
+
"type": "address"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"internalType": "bytes",
|
|
66
|
+
"name": "srcAddress",
|
|
67
|
+
"type": "bytes"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"internalType": "bytes32",
|
|
71
|
+
"name": "ulnAddress",
|
|
72
|
+
"type": "bytes32"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"internalType": "bytes",
|
|
76
|
+
"name": "payload",
|
|
77
|
+
"type": "bytes"
|
|
78
|
+
}
|
|
79
|
+
],
|
|
80
|
+
"internalType": "struct LayerZeroPacket.Packet",
|
|
81
|
+
"name": "",
|
|
82
|
+
"type": "tuple"
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
"stateMutability": "pure",
|
|
86
|
+
"type": "function"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"inputs": [],
|
|
90
|
+
"name": "getProofType",
|
|
91
|
+
"outputs": [
|
|
92
|
+
{
|
|
93
|
+
"internalType": "uint8",
|
|
94
|
+
"name": "",
|
|
95
|
+
"type": "uint8"
|
|
96
|
+
}
|
|
97
|
+
],
|
|
98
|
+
"stateMutability": "view",
|
|
99
|
+
"type": "function"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"inputs": [],
|
|
103
|
+
"name": "getUtilsVersion",
|
|
104
|
+
"outputs": [
|
|
105
|
+
{
|
|
106
|
+
"internalType": "uint8",
|
|
107
|
+
"name": "",
|
|
108
|
+
"type": "uint8"
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
"stateMutability": "view",
|
|
112
|
+
"type": "function"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"inputs": [
|
|
116
|
+
{
|
|
117
|
+
"internalType": "bytes32",
|
|
118
|
+
"name": "",
|
|
119
|
+
"type": "bytes32"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"internalType": "uint256[]",
|
|
123
|
+
"name": "",
|
|
124
|
+
"type": "uint256[]"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"internalType": "uint256",
|
|
128
|
+
"name": "",
|
|
129
|
+
"type": "uint256"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"internalType": "bytes[]",
|
|
133
|
+
"name": "proof",
|
|
134
|
+
"type": "bytes[]"
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
"name": "getVerifyLog",
|
|
138
|
+
"outputs": [
|
|
139
|
+
{
|
|
140
|
+
"components": [
|
|
141
|
+
{
|
|
142
|
+
"internalType": "bytes32",
|
|
143
|
+
"name": "contractAddress",
|
|
144
|
+
"type": "bytes32"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"internalType": "bytes32",
|
|
148
|
+
"name": "topicZeroSig",
|
|
149
|
+
"type": "bytes32"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"internalType": "bytes",
|
|
153
|
+
"name": "data",
|
|
154
|
+
"type": "bytes"
|
|
155
|
+
}
|
|
156
|
+
],
|
|
157
|
+
"internalType": "struct IValidationLibraryHelperV2.ULNLog",
|
|
158
|
+
"name": "log",
|
|
159
|
+
"type": "tuple"
|
|
160
|
+
}
|
|
161
|
+
],
|
|
162
|
+
"stateMutability": "pure",
|
|
163
|
+
"type": "function"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"inputs": [],
|
|
167
|
+
"name": "proofType",
|
|
168
|
+
"outputs": [
|
|
169
|
+
{
|
|
170
|
+
"internalType": "uint8",
|
|
171
|
+
"name": "",
|
|
172
|
+
"type": "uint8"
|
|
173
|
+
}
|
|
174
|
+
],
|
|
175
|
+
"stateMutability": "view",
|
|
176
|
+
"type": "function"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"inputs": [
|
|
180
|
+
{
|
|
181
|
+
"internalType": "bytes",
|
|
182
|
+
"name": "_payload",
|
|
183
|
+
"type": "bytes"
|
|
184
|
+
}
|
|
185
|
+
],
|
|
186
|
+
"name": "secureStgPayload",
|
|
187
|
+
"outputs": [
|
|
188
|
+
{
|
|
189
|
+
"internalType": "bytes",
|
|
190
|
+
"name": "",
|
|
191
|
+
"type": "bytes"
|
|
192
|
+
}
|
|
193
|
+
],
|
|
194
|
+
"stateMutability": "view",
|
|
195
|
+
"type": "function"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"inputs": [
|
|
199
|
+
{
|
|
200
|
+
"internalType": "bytes",
|
|
201
|
+
"name": "_payload",
|
|
202
|
+
"type": "bytes"
|
|
203
|
+
}
|
|
204
|
+
],
|
|
205
|
+
"name": "secureStgTokenPayload",
|
|
206
|
+
"outputs": [
|
|
207
|
+
{
|
|
208
|
+
"internalType": "bytes",
|
|
209
|
+
"name": "",
|
|
210
|
+
"type": "bytes"
|
|
211
|
+
}
|
|
212
|
+
],
|
|
213
|
+
"stateMutability": "pure",
|
|
214
|
+
"type": "function"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"inputs": [],
|
|
218
|
+
"name": "stargateBridgeAddress",
|
|
219
|
+
"outputs": [
|
|
220
|
+
{
|
|
221
|
+
"internalType": "address",
|
|
222
|
+
"name": "",
|
|
223
|
+
"type": "address"
|
|
224
|
+
}
|
|
225
|
+
],
|
|
226
|
+
"stateMutability": "view",
|
|
227
|
+
"type": "function"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"inputs": [],
|
|
231
|
+
"name": "stargateTokenAddress",
|
|
232
|
+
"outputs": [
|
|
233
|
+
{
|
|
234
|
+
"internalType": "address",
|
|
235
|
+
"name": "",
|
|
236
|
+
"type": "address"
|
|
237
|
+
}
|
|
238
|
+
],
|
|
239
|
+
"stateMutability": "view",
|
|
240
|
+
"type": "function"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"inputs": [],
|
|
244
|
+
"name": "utilsVersion",
|
|
245
|
+
"outputs": [
|
|
246
|
+
{
|
|
247
|
+
"internalType": "uint8",
|
|
248
|
+
"name": "",
|
|
249
|
+
"type": "uint8"
|
|
250
|
+
}
|
|
251
|
+
],
|
|
252
|
+
"stateMutability": "view",
|
|
253
|
+
"type": "function"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"inputs": [
|
|
257
|
+
{
|
|
258
|
+
"internalType": "bytes32",
|
|
259
|
+
"name": "_packetHash",
|
|
260
|
+
"type": "bytes32"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"internalType": "bytes",
|
|
264
|
+
"name": "_transactionProof",
|
|
265
|
+
"type": "bytes"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"internalType": "uint256",
|
|
269
|
+
"name": "_remoteAddressSize",
|
|
270
|
+
"type": "uint256"
|
|
271
|
+
}
|
|
272
|
+
],
|
|
273
|
+
"name": "validateProof",
|
|
274
|
+
"outputs": [
|
|
275
|
+
{
|
|
276
|
+
"components": [
|
|
277
|
+
{
|
|
278
|
+
"internalType": "uint16",
|
|
279
|
+
"name": "srcChainId",
|
|
280
|
+
"type": "uint16"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"internalType": "uint16",
|
|
284
|
+
"name": "dstChainId",
|
|
285
|
+
"type": "uint16"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"internalType": "uint64",
|
|
289
|
+
"name": "nonce",
|
|
290
|
+
"type": "uint64"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"internalType": "address",
|
|
294
|
+
"name": "dstAddress",
|
|
295
|
+
"type": "address"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"internalType": "bytes",
|
|
299
|
+
"name": "srcAddress",
|
|
300
|
+
"type": "bytes"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"internalType": "bytes32",
|
|
304
|
+
"name": "ulnAddress",
|
|
305
|
+
"type": "bytes32"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"internalType": "bytes",
|
|
309
|
+
"name": "payload",
|
|
310
|
+
"type": "bytes"
|
|
311
|
+
}
|
|
312
|
+
],
|
|
313
|
+
"internalType": "struct LayerZeroPacket.Packet",
|
|
314
|
+
"name": "packet",
|
|
315
|
+
"type": "tuple"
|
|
316
|
+
}
|
|
317
|
+
],
|
|
318
|
+
"stateMutability": "view",
|
|
319
|
+
"type": "function"
|
|
320
|
+
}
|
|
321
|
+
],
|
|
322
|
+
"bytecode": "0x60c06040526000805461ff001960ff199091166002171661010017905534801561002857600080fd5b50d3801561003557600080fd5b50d2801561004257600080fd5b50604051620013d8380380620013d8833981016040819052610063916100a9565b6001600160601b0319606092831b8116608052911b1660a0526100db565b80516000906001600160a81b038116811461009a578182fd5b6001600160a01b031692915050565b600080604083850312156100bb578182fd5b6100c483610081565b91506100d260208401610081565b90509250929050565b60805160601c60a05160601c6112c96200010f600039806103f6528061047952508061021a528061038b52506112c96000f3fe608060405234801561001057600080fd5b50d3801561001d57600080fd5b50d2801561002a57600080fd5b50600436106100e35760003560e01c80636348d2691161009b578063d633ad6111610075578063d633ad611461019e578063e965c192146101a6578063ea455df9146101ae576100e3565b80636348d2691461016e5780639bcd850f14610183578063b71e0f711461018b576100e3565b80632ff20449116100cc5780632ff204491461012657806347713b39146101465780635711c2a81461014e576100e3565b806305af5d35146100e85780630f222e6514610106575b600080fd5b6100f06101c1565b6040516100fd9190611149565b60405180910390f35b610119610114366004610c9c565b6101ca565b6040516100fd919061111a565b610139610134366004610e11565b6101dc565b6040516100fd919061108a565b6100f06101f7565b61016161015c366004610d99565b610205565b6040516100fd9190610fc1565b610176610218565b6040516100fd9190610fa0565b6100f061023c565b610139610199366004610d1c565b610245565b6100f0610469565b610176610477565b6101616101bc366004610d99565b61049b565b60005460ff1681565b6101d2610a8d565b9695505050505050565b6101e4610aac565b6101ef8484846104a6565b949350505050565b600054610100900460ff1681565b606061021082610680565b90505b919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60005460ff1690565b61024d610aac565b60008211610290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161028790611053565b60405180910390fd5b6020831180156102b657508484846040516102ac929190610f90565b6040518091039020145b6102ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161028790610ff6565b60006102fb602082868861123f565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050506020808301519293506103879150610349908790818a61123f565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508892508591506104a69050565b92507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16836060015173ffffffffffffffffffffffffffffffffffffffff1614156103f4576103ee8360c00151610680565b60c08401525b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16836060015173ffffffffffffffffffffffffffffffffffffffff16141561045f576104598360c00151610765565b60c08401525b5050949350505050565b600054610100900460ff1690565b7f000000000000000000000000000000000000000000000000000000000000000081565b606061021082610765565b6104ae610aac565b835160006104bd85602061080f565b90508082101561052e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4c617965725a65726f5061636b65743a20696e76616c6964207061636b657400604482015290519081900360640190fd5b6008860151600a870151868801600c8101516020909101518486039392919061ffff83166105bd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4c617965725a65726f5061636b65743a20696e76616c6964207061636b657400604482015290519081900360640190fd5b6105c5610aea565b6105cf818c61088c565b506105df8160008e602a8f6108c6565b506105e8610aea565b8615610616576105f8818861088c565b5061061460008e61060a8b602061080f565b849291908b6108c6565b505b6040805160e08101825261ffff968716815294909516602085015267ffffffffffffffff9095169383019390935273ffffffffffffffffffffffffffffffffffffffff1660608201529051608082015260a08101879052905160c082015293505050509392505050565b6020810151606090600160ff8216141561075e576000806000806000806000898060200190518101906106b39190610e5d565b975097509750975097509750975050600081511115610756578151600090156106dd575060148201515b803b80610753576000826040516020016106f79190610f60565b60408051601f198184030181526020838101835260008085529251919450919261072f928f928f928f928f928f928f928b9201611157565b60408051601f198184030181529190529c506102139b505050505050505050505050565b50505b505050505050505b5090919050565b60606000808380602001905181019061077e9190610dcc565b9150915060008083511115610794575060148201515b73ffffffffffffffffffffffffffffffffffffffff81166108065760405161dead906000906107c7908390602001610f60565b604051602081830303815290604052905080846040516020016107eb929190610fd4565b60405160208183030381529060405295505050505050610213565b50929392505050565b60008282018381101561088357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b610894610aea565b60208206156108a95760208206602003820191505b506020828101829052604080518085526000815290920101905290565b6108ce610aea565b856020015182860111156108f8576108f8866108f08860200151888601610982565b600202610999565b6000808751805188602083010193508089870111156109175788860182525b5050508484015b6020841061093d5780518252601f19909301926020918201910161091e565b5181517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60208690036101000a01908116901991909116179052508495945050505050565b600081831115610993575081610886565b50919050565b81516109a5838361088c565b506109b083826109b6565b50505050565b6109be610aea565b610883838460000151518485516109d3610aea565b82518211156109e157600080fd5b84602001518285011115610a0357610a03856108f08760200151878601610982565b600080865180518760208301019350808887011115610a225787860182525b505050602084015b60208410610a495780518252601f199093019260209182019101610a2a565b5181517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60208690036101000a019081169019919091161790525083949350505050565b6040805160608082018352600080835260208301529181019190915290565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820181905260a082019290925260c081019190915290565b604051806040016040528060608152602001600081525090565b60008083601f840112610b15578081fd5b50813567ffffffffffffffff811115610b2c578182fd5b6020830191508360208083028501011115610b4657600080fd5b9250929050565b600082601f830112610b5d578081fd5b8135610b70610b6b8261121d565b6111f9565b818152846020838601011115610b84578283fd5b816020850160208301379081016020019190915292915050565b600082601f830112610bae578081fd5b8151610bbc610b6b8261121d565b818152846020838601011115610bd0578283fd5b6101ef826020830160208701611267565b600060408284031215610bf2578081fd5b6040516040810181811067ffffffffffffffff82111715610c0f57fe5b604052825181526020928301519281019290925250919050565b600060c08284031215610c3a578081fd5b60405160c0810181811067ffffffffffffffff82111715610c5757fe5b8060405250809150825181526020830151602082015260408301516040820152606083015160608201526080830151608082015260a083015160a08201525092915050565b60008060008060008060808789031215610cb4578182fd5b86359550602087013567ffffffffffffffff80821115610cd2578384fd5b610cde8a838b01610b04565b9097509550604089013594506060890135915080821115610cfd578384fd5b50610d0a89828a01610b04565b979a9699509497509295939492505050565b60008060008060608587031215610d31578384fd5b84359350602085013567ffffffffffffffff80821115610d4f578485fd5b818701915087601f830112610d62578485fd5b813581811115610d70578586fd5b886020828501011115610d81578586fd5b95986020929092019750949560400135945092505050565b600060208284031215610daa578081fd5b813567ffffffffffffffff811115610dc0578182fd5b6101ef84828501610b4d565b60008060408385031215610dde578182fd5b825167ffffffffffffffff811115610df4578283fd5b610e0085828601610b9e565b925050602083015190509250929050565b600080600060608486031215610e25578283fd5b833567ffffffffffffffff811115610e3b578384fd5b610e4786828701610b4d565b9660208601359650604090950135949350505050565b6000806000806000806000806101c0898b031215610e79578182fd5b885160ff81168114610e89578283fd5b80985050602089015196506040890151955060608901519450610eaf8a60808b01610be1565b9350610ebe8a60c08b01610c29565b925061018089015167ffffffffffffffff80821115610edb578384fd5b610ee78c838d01610b9e565b93506101a08b0151915080821115610efd578283fd5b50610f0a8b828c01610b9e565b9150509295985092959890939650565b73ffffffffffffffffffffffffffffffffffffffff169052565b60008151808452610f4c816020860160208601611267565b601f01601f19169290920160200192915050565b60609190911b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016815260140190565b6000828483379101908152919050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b6000602082526108836020830184610f34565b600060408252610fe76040830185610f34565b90508260208301529392505050565b60208082526023908201527f50726f6f664c69623a20696e76616c6964207472616e73616374696f6e20707260408201527f6f6f660000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601e908201527f50726f6f664c69623a20696e76616c696420616464726573732073697a650000604082015260600190565b60006020825261ffff8084511660208401528060208501511660408401525067ffffffffffffffff604084015116606083015260608301516110cf6080840182610f1a565b50608083015160e060a08401526110ea610100840182610f34565b905060a084015160c084015260c0840151601f198483030160e08501526111118282610f34565b95945050505050565b600060208252825160208301526020830151604083015260408301516060808401526101ef6080840182610f34565b60ff91909116815260200190565b60006101c060ff8b16835289602084015288604084015287606084015286516080840152602087015160a0840152855160c0840152602086015160e084015260408601516101008401526060860151610120840152608086015161014084015260a0860151610160840152806101808401526111d581840186610f34565b90508281036101a08401526111ea8185610f34565b9b9a5050505050505050505050565b60405181810167ffffffffffffffff8111828210171561121557fe5b604052919050565b600067ffffffffffffffff82111561123157fe5b50601f01601f191660200190565b6000808585111561124e578182fd5b8386111561125a578182fd5b5050820193919092039150565b60005b8381101561128257818101518382015260200161126a565b838111156109b0575050600091015256fea2646970667358221220a0c21c09c303fa259140ade99ad184f0ec1744e2182f5b994fbabbdac833d10764736f6c63430007060033",
|
|
323
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50d3801561001d57600080fd5b50d2801561002a57600080fd5b50600436106100e35760003560e01c80636348d2691161009b578063d633ad6111610075578063d633ad611461019e578063e965c192146101a6578063ea455df9146101ae576100e3565b80636348d2691461016e5780639bcd850f14610183578063b71e0f711461018b576100e3565b80632ff20449116100cc5780632ff204491461012657806347713b39146101465780635711c2a81461014e576100e3565b806305af5d35146100e85780630f222e6514610106575b600080fd5b6100f06101c1565b6040516100fd9190611149565b60405180910390f35b610119610114366004610c9c565b6101ca565b6040516100fd919061111a565b610139610134366004610e11565b6101dc565b6040516100fd919061108a565b6100f06101f7565b61016161015c366004610d99565b610205565b6040516100fd9190610fc1565b610176610218565b6040516100fd9190610fa0565b6100f061023c565b610139610199366004610d1c565b610245565b6100f0610469565b610176610477565b6101616101bc366004610d99565b61049b565b60005460ff1681565b6101d2610a8d565b9695505050505050565b6101e4610aac565b6101ef8484846104a6565b949350505050565b600054610100900460ff1681565b606061021082610680565b90505b919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60005460ff1690565b61024d610aac565b60008211610290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161028790611053565b60405180910390fd5b6020831180156102b657508484846040516102ac929190610f90565b6040518091039020145b6102ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161028790610ff6565b60006102fb602082868861123f565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050506020808301519293506103879150610349908790818a61123f565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508892508591506104a69050565b92507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16836060015173ffffffffffffffffffffffffffffffffffffffff1614156103f4576103ee8360c00151610680565b60c08401525b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16836060015173ffffffffffffffffffffffffffffffffffffffff16141561045f576104598360c00151610765565b60c08401525b5050949350505050565b600054610100900460ff1690565b7f000000000000000000000000000000000000000000000000000000000000000081565b606061021082610765565b6104ae610aac565b835160006104bd85602061080f565b90508082101561052e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4c617965725a65726f5061636b65743a20696e76616c6964207061636b657400604482015290519081900360640190fd5b6008860151600a870151868801600c8101516020909101518486039392919061ffff83166105bd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4c617965725a65726f5061636b65743a20696e76616c6964207061636b657400604482015290519081900360640190fd5b6105c5610aea565b6105cf818c61088c565b506105df8160008e602a8f6108c6565b506105e8610aea565b8615610616576105f8818861088c565b5061061460008e61060a8b602061080f565b849291908b6108c6565b505b6040805160e08101825261ffff968716815294909516602085015267ffffffffffffffff9095169383019390935273ffffffffffffffffffffffffffffffffffffffff1660608201529051608082015260a08101879052905160c082015293505050509392505050565b6020810151606090600160ff8216141561075e576000806000806000806000898060200190518101906106b39190610e5d565b975097509750975097509750975050600081511115610756578151600090156106dd575060148201515b803b80610753576000826040516020016106f79190610f60565b60408051601f198184030181526020838101835260008085529251919450919261072f928f928f928f928f928f928f928b9201611157565b60408051601f198184030181529190529c506102139b505050505050505050505050565b50505b505050505050505b5090919050565b60606000808380602001905181019061077e9190610dcc565b9150915060008083511115610794575060148201515b73ffffffffffffffffffffffffffffffffffffffff81166108065760405161dead906000906107c7908390602001610f60565b604051602081830303815290604052905080846040516020016107eb929190610fd4565b60405160208183030381529060405295505050505050610213565b50929392505050565b60008282018381101561088357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b610894610aea565b60208206156108a95760208206602003820191505b506020828101829052604080518085526000815290920101905290565b6108ce610aea565b856020015182860111156108f8576108f8866108f08860200151888601610982565b600202610999565b6000808751805188602083010193508089870111156109175788860182525b5050508484015b6020841061093d5780518252601f19909301926020918201910161091e565b5181517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60208690036101000a01908116901991909116179052508495945050505050565b600081831115610993575081610886565b50919050565b81516109a5838361088c565b506109b083826109b6565b50505050565b6109be610aea565b610883838460000151518485516109d3610aea565b82518211156109e157600080fd5b84602001518285011115610a0357610a03856108f08760200151878601610982565b600080865180518760208301019350808887011115610a225787860182525b505050602084015b60208410610a495780518252601f199093019260209182019101610a2a565b5181517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60208690036101000a019081169019919091161790525083949350505050565b6040805160608082018352600080835260208301529181019190915290565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820181905260a082019290925260c081019190915290565b604051806040016040528060608152602001600081525090565b60008083601f840112610b15578081fd5b50813567ffffffffffffffff811115610b2c578182fd5b6020830191508360208083028501011115610b4657600080fd5b9250929050565b600082601f830112610b5d578081fd5b8135610b70610b6b8261121d565b6111f9565b818152846020838601011115610b84578283fd5b816020850160208301379081016020019190915292915050565b600082601f830112610bae578081fd5b8151610bbc610b6b8261121d565b818152846020838601011115610bd0578283fd5b6101ef826020830160208701611267565b600060408284031215610bf2578081fd5b6040516040810181811067ffffffffffffffff82111715610c0f57fe5b604052825181526020928301519281019290925250919050565b600060c08284031215610c3a578081fd5b60405160c0810181811067ffffffffffffffff82111715610c5757fe5b8060405250809150825181526020830151602082015260408301516040820152606083015160608201526080830151608082015260a083015160a08201525092915050565b60008060008060008060808789031215610cb4578182fd5b86359550602087013567ffffffffffffffff80821115610cd2578384fd5b610cde8a838b01610b04565b9097509550604089013594506060890135915080821115610cfd578384fd5b50610d0a89828a01610b04565b979a9699509497509295939492505050565b60008060008060608587031215610d31578384fd5b84359350602085013567ffffffffffffffff80821115610d4f578485fd5b818701915087601f830112610d62578485fd5b813581811115610d70578586fd5b886020828501011115610d81578586fd5b95986020929092019750949560400135945092505050565b600060208284031215610daa578081fd5b813567ffffffffffffffff811115610dc0578182fd5b6101ef84828501610b4d565b60008060408385031215610dde578182fd5b825167ffffffffffffffff811115610df4578283fd5b610e0085828601610b9e565b925050602083015190509250929050565b600080600060608486031215610e25578283fd5b833567ffffffffffffffff811115610e3b578384fd5b610e4786828701610b4d565b9660208601359650604090950135949350505050565b6000806000806000806000806101c0898b031215610e79578182fd5b885160ff81168114610e89578283fd5b80985050602089015196506040890151955060608901519450610eaf8a60808b01610be1565b9350610ebe8a60c08b01610c29565b925061018089015167ffffffffffffffff80821115610edb578384fd5b610ee78c838d01610b9e565b93506101a08b0151915080821115610efd578283fd5b50610f0a8b828c01610b9e565b9150509295985092959890939650565b73ffffffffffffffffffffffffffffffffffffffff169052565b60008151808452610f4c816020860160208601611267565b601f01601f19169290920160200192915050565b60609190911b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016815260140190565b6000828483379101908152919050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b6000602082526108836020830184610f34565b600060408252610fe76040830185610f34565b90508260208301529392505050565b60208082526023908201527f50726f6f664c69623a20696e76616c6964207472616e73616374696f6e20707260408201527f6f6f660000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601e908201527f50726f6f664c69623a20696e76616c696420616464726573732073697a650000604082015260600190565b60006020825261ffff8084511660208401528060208501511660408401525067ffffffffffffffff604084015116606083015260608301516110cf6080840182610f1a565b50608083015160e060a08401526110ea610100840182610f34565b905060a084015160c084015260c0840151601f198483030160e08501526111118282610f34565b95945050505050565b600060208252825160208301526020830151604083015260408301516060808401526101ef6080840182610f34565b60ff91909116815260200190565b60006101c060ff8b16835289602084015288604084015287606084015286516080840152602087015160a0840152855160c0840152602086015160e084015260408601516101008401526060860151610120840152608086015161014084015260a0860151610160840152806101808401526111d581840186610f34565b90508281036101a08401526111ea8185610f34565b9b9a5050505050505050505050565b60405181810167ffffffffffffffff8111828210171561121557fe5b604052919050565b600067ffffffffffffffff82111561123157fe5b50601f01601f191660200190565b6000808585111561124e578182fd5b8386111561125a578182fd5b5050820193919092039150565b60005b8381101561128257818101518382015260200161126a565b838111156109b0575050600091015256fea2646970667358221220a0c21c09c303fa259140ade99ad184f0ec1744e2182f5b994fbabbdac833d10764736f6c63430007060033",
|
|
324
|
+
"linkReferences": {},
|
|
325
|
+
"deployedLinkReferences": {}
|
|
326
|
+
}
|