Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 5 from a total of 5 transactions
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Implementation
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// contracts/Implementation.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "./Governance.sol"; import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol"; contract Implementation is Governance { event LogMessagePublished(address indexed sender, uint64 sequence, uint32 nonce, bytes payload, uint8 consistencyLevel); // Publish a message to be attested by the Wormhole network function publishMessage( uint32 nonce, bytes memory payload, uint8 consistencyLevel ) public payable returns (uint64 sequence) { // check fee require(msg.value == messageFee(), "invalid fee"); sequence = useSequence(msg.sender); // emit log emit LogMessagePublished(msg.sender, sequence, nonce, payload, consistencyLevel); } function useSequence(address emitter) internal returns (uint64 sequence) { sequence = nextSequence(emitter); setNextSequence(emitter, sequence + 1); } function initialize(address[] memory initialGuardians, uint16 chainId, uint16 governanceChainId, bytes32 governanceContract) initializer public { require(initialGuardians.length > 0, "no guardians specified"); Structs.GuardianSet memory initialGuardianSet = Structs.GuardianSet({ keys : initialGuardians, expirationTime : 0 }); storeGuardianSet(initialGuardianSet, 0); // initial guardian set index is 0, which is the default value of the storage slot anyways setChainId(chainId); setGovernanceChainId(governanceChainId); setGovernanceContract(governanceContract); } modifier initializer() { address implementation = ERC1967Upgrade._getImplementation(); require( !isInitialized(implementation), "already initialized" ); setInitialized(implementation); _; } fallback() external payable {revert("unsupported");} receive() external payable {revert("the Wormhole contract does not accept assets");} }
// contracts/Getters.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; import "./State.sol"; contract Getters is State { function getGuardianSet(uint32 index) public view returns (Structs.GuardianSet memory) { return _state.guardianSets[index]; } function getCurrentGuardianSetIndex() public view returns (uint32) { return _state.guardianSetIndex; } function getGuardianSetExpiry() public view returns (uint32) { return _state.guardianSetExpiry; } function governanceActionIsConsumed(bytes32 hash) public view returns (bool) { return _state.consumedGovernanceActions[hash]; } function isInitialized(address impl) public view returns (bool) { return _state.initializedImplementations[impl]; } function chainId() public view returns (uint16) { return _state.provider.chainId; } function governanceChainId() public view returns (uint16){ return _state.provider.governanceChainId; } function governanceContract() public view returns (bytes32){ return _state.provider.governanceContract; } function messageFee() public view returns (uint256) { return _state.messageFee; } function nextSequence(address emitter) public view returns (uint64) { return _state.sequences[emitter]; } }
// contracts/Governance.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; import "./Structs.sol"; import "./GovernanceStructs.sol"; import "./Messages.sol"; import "./Setters.sol"; import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol"; abstract contract Governance is GovernanceStructs, Messages, Setters, ERC1967Upgrade { event ContractUpgraded(address indexed oldContract, address indexed newContract); event GuardianSetAdded(uint32 indexed index); // "Core" (left padded) bytes32 constant module = 0x00000000000000000000000000000000000000000000000000000000436f7265; function submitContractUpgrade(bytes memory _vm) public { Structs.VM memory vm = parseVM(_vm); (bool isValid, string memory reason) = verifyGovernanceVM(vm); require(isValid, reason); GovernanceStructs.ContractUpgrade memory upgrade = parseContractUpgrade(vm.payload); require(upgrade.module == module, "Invalid Module"); require(upgrade.chain == chainId(), "Invalid Chain"); setGovernanceActionConsumed(vm.hash); upgradeImplementation(upgrade.newContract); } function submitSetMessageFee(bytes memory _vm) public { Structs.VM memory vm = parseVM(_vm); (bool isValid, string memory reason) = verifyGovernanceVM(vm); require(isValid, reason); GovernanceStructs.SetMessageFee memory upgrade = parseSetMessageFee(vm.payload); require(upgrade.module == module, "Invalid Module"); require(upgrade.chain == chainId(), "Invalid Chain"); setGovernanceActionConsumed(vm.hash); setMessageFee(upgrade.messageFee); } function submitNewGuardianSet(bytes memory _vm) public { Structs.VM memory vm = parseVM(_vm); (bool isValid, string memory reason) = verifyGovernanceVM(vm); require(isValid, reason); GovernanceStructs.GuardianSetUpgrade memory upgrade = parseGuardianSetUpgrade(vm.payload); require(upgrade.module == module, "invalid Module"); require(upgrade.chain == chainId() || upgrade.chain == 0, "invalid Chain"); require(upgrade.newGuardianSet.keys.length > 0, "new guardian set is empty"); require(upgrade.newGuardianSetIndex == getCurrentGuardianSetIndex() + 1, "index must increase in steps of 1"); setGovernanceActionConsumed(vm.hash); expireGuardianSet(getCurrentGuardianSetIndex()); storeGuardianSet(upgrade.newGuardianSet, upgrade.newGuardianSetIndex); updateGuardianSetIndex(upgrade.newGuardianSetIndex); } function submitTransferFees(bytes memory _vm) public { Structs.VM memory vm = parseVM(_vm); (bool isValid, string memory reason) = verifyGovernanceVM(vm); require(isValid, reason); GovernanceStructs.TransferFees memory transfer = parseTransferFees(vm.payload); require(transfer.module == module, "invalid Module"); require(transfer.chain == chainId() || transfer.chain == 0, "invalid Chain"); setGovernanceActionConsumed(vm.hash); address payable recipient = payable(address(uint160(uint256(transfer.recipient)))); recipient.transfer(transfer.amount); } function upgradeImplementation(address newImplementation) internal { address currentImplementation = _getImplementation(); _upgradeTo(newImplementation); // Call initialize function of the new implementation (bool success, bytes memory reason) = newImplementation.delegatecall(abi.encodeWithSignature("initialize()")); require(success, string(reason)); emit ContractUpgraded(currentImplementation, newImplementation); } function verifyGovernanceVM(Structs.VM memory vm) internal view returns (bool, string memory){ // validate vm (bool isValid, string memory reason) = verifyVM(vm); if (!isValid){ return (false, reason); } // only current guardianset can sign governance packets if (vm.guardianSetIndex != getCurrentGuardianSetIndex()) { return (false, "not signed by current guardian set"); } // verify source if (uint16(vm.emitterChainId) != governanceChainId()) { return (false, "wrong governance chain"); } if (vm.emitterAddress != governanceContract()) { return (false, "wrong governance contract"); } // prevent re-entry if (governanceActionIsConsumed(vm.hash)){ return (false, "governance action already consumed"); } return (true, ""); } }
// contracts/GovernanceStructs.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; import "./libraries/external/BytesLib.sol"; import "./Structs.sol"; contract GovernanceStructs { using BytesLib for bytes; enum GovernanceAction { UpgradeContract, UpgradeGuardianset } struct ContractUpgrade { bytes32 module; uint8 action; uint16 chain; address newContract; } struct GuardianSetUpgrade { bytes32 module; uint8 action; uint16 chain; Structs.GuardianSet newGuardianSet; uint32 newGuardianSetIndex; } struct SetMessageFee { bytes32 module; uint8 action; uint16 chain; uint256 messageFee; } struct TransferFees { bytes32 module; uint8 action; uint16 chain; uint256 amount; bytes32 recipient; } function parseContractUpgrade(bytes memory encodedUpgrade) public pure returns (ContractUpgrade memory cu) { uint index = 0; cu.module = encodedUpgrade.toBytes32(index); index += 32; cu.action = encodedUpgrade.toUint8(index); index += 1; require(cu.action == 1, "invalid ContractUpgrade"); cu.chain = encodedUpgrade.toUint16(index); index += 2; cu.newContract = address(uint160(uint256(encodedUpgrade.toBytes32(index)))); index += 32; require(encodedUpgrade.length == index, "invalid ContractUpgrade"); } function parseGuardianSetUpgrade(bytes memory encodedUpgrade) public pure returns (GuardianSetUpgrade memory gsu) { uint index = 0; gsu.module = encodedUpgrade.toBytes32(index); index += 32; gsu.action = encodedUpgrade.toUint8(index); index += 1; require(gsu.action == 2, "invalid GuardianSetUpgrade"); gsu.chain = encodedUpgrade.toUint16(index); index += 2; gsu.newGuardianSetIndex = encodedUpgrade.toUint32(index); index += 4; uint8 guardianLength = encodedUpgrade.toUint8(index); index += 1; gsu.newGuardianSet = Structs.GuardianSet({ keys : new address[](guardianLength), expirationTime : 0 }); for(uint i = 0; i < guardianLength; i++) { gsu.newGuardianSet.keys[i] = encodedUpgrade.toAddress(index); index += 20; } require(encodedUpgrade.length == index, "invalid GuardianSetUpgrade"); } function parseSetMessageFee(bytes memory encodedSetMessageFee) public pure returns (SetMessageFee memory smf) { uint index = 0; smf.module = encodedSetMessageFee.toBytes32(index); index += 32; smf.action = encodedSetMessageFee.toUint8(index); index += 1; require(smf.action == 3, "invalid SetMessageFee"); smf.chain = encodedSetMessageFee.toUint16(index); index += 2; smf.messageFee = encodedSetMessageFee.toUint256(index); index += 32; require(encodedSetMessageFee.length == index, "invalid SetMessageFee"); } function parseTransferFees(bytes memory encodedTransferFees) public pure returns (TransferFees memory tf) { uint index = 0; tf.module = encodedTransferFees.toBytes32(index); index += 32; tf.action = encodedTransferFees.toUint8(index); index += 1; require(tf.action == 4, "invalid TransferFees"); tf.chain = encodedTransferFees.toUint16(index); index += 2; tf.amount = encodedTransferFees.toUint256(index); index += 32; tf.recipient = encodedTransferFees.toBytes32(index); index += 32; require(encodedTransferFees.length == index, "invalid TransferFees"); } }
// contracts/Messages.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "./Getters.sol"; import "./Structs.sol"; import "./libraries/external/BytesLib.sol"; contract Messages is Getters { using BytesLib for bytes; function parseAndVerifyVM(bytes calldata encodedVM) public view returns (Structs.VM memory vm, bool valid, string memory reason) { vm = parseVM(encodedVM); (valid, reason) = verifyVM(vm); } function verifyVM(Structs.VM memory vm) public view returns (bool valid, string memory reason) { Structs.GuardianSet memory guardianSet = getGuardianSet(vm.guardianSetIndex); if(guardianSet.keys.length == 0){ return (false, "invalid guardian set"); } if(vm.guardianSetIndex != getCurrentGuardianSetIndex() && guardianSet.expirationTime < block.timestamp){ return (false, "guardian set has expired"); } // We're using a fixed point number transformation with 1 decimal to deal with rounding. if(((guardianSet.keys.length * 10 / 3) * 2) / 10 + 1 > vm.signatures.length){ return (false, "no quorum"); } // Verify signatures (bool signaturesValid, string memory invalidReason) = verifySignatures(vm.hash, vm.signatures, guardianSet); if(!signaturesValid){ return (false, invalidReason); } return (true, ""); } function verifySignatures(bytes32 hash, Structs.Signature[] memory signatures, Structs.GuardianSet memory guardianSet) public pure returns (bool valid, string memory reason) { uint8 lastIndex = 0; for (uint i = 0; i < signatures.length; i++) { Structs.Signature memory sig = signatures[i]; require(i == 0 || sig.guardianIndex > lastIndex, "signature indices must be ascending"); lastIndex = sig.guardianIndex; if(ecrecover(hash, sig.v, sig.r, sig.s) != guardianSet.keys[sig.guardianIndex]){ return (false, "VM signature invalid"); } } return (true, ""); } function parseVM(bytes memory encodedVM) public pure virtual returns (Structs.VM memory vm) { uint index = 0; vm.version = encodedVM.toUint8(index); index += 1; require(vm.version == 1, "VM version incompatible"); vm.guardianSetIndex = encodedVM.toUint32(index); index += 4; // Parse Signatures uint256 signersLen = encodedVM.toUint8(index); index += 1; vm.signatures = new Structs.Signature[](signersLen); for (uint i = 0; i < signersLen; i++) { vm.signatures[i].guardianIndex = encodedVM.toUint8(index); index += 1; vm.signatures[i].r = encodedVM.toBytes32(index); index += 32; vm.signatures[i].s = encodedVM.toBytes32(index); index += 32; vm.signatures[i].v = encodedVM.toUint8(index) + 27; index += 1; } // Hash the body bytes memory body = encodedVM.slice(index, encodedVM.length - index); vm.hash = keccak256(abi.encodePacked(keccak256(body))); // Parse the body vm.timestamp = encodedVM.toUint32(index); index += 4; vm.nonce = encodedVM.toUint32(index); index += 4; vm.emitterChainId = encodedVM.toUint16(index); index += 2; vm.emitterAddress = encodedVM.toBytes32(index); index += 32; vm.sequence = encodedVM.toUint64(index); index += 8; vm.consistencyLevel = encodedVM.toUint8(index); index += 1; vm.payload = encodedVM.slice(index, encodedVM.length - index); } }
// contracts/Setters.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; import "./State.sol"; contract Setters is State { function updateGuardianSetIndex(uint32 newIndex) internal { _state.guardianSetIndex = newIndex; } function expireGuardianSet(uint32 index) internal { _state.guardianSets[index].expirationTime = uint32(block.timestamp) + 86400; } function storeGuardianSet(Structs.GuardianSet memory set, uint32 index) internal { _state.guardianSets[index] = set; } function setInitialized(address implementatiom) internal { _state.initializedImplementations[implementatiom] = true; } function setGovernanceActionConsumed(bytes32 hash) internal { _state.consumedGovernanceActions[hash] = true; } function setChainId(uint16 chainId) internal { _state.provider.chainId = chainId; } function setGovernanceChainId(uint16 chainId) internal { _state.provider.governanceChainId = chainId; } function setGovernanceContract(bytes32 governanceContract) internal { _state.provider.governanceContract = governanceContract; } function setMessageFee(uint256 newFee) internal { _state.messageFee = newFee; } function setNextSequence(address emitter, uint64 sequence) internal { _state.sequences[emitter] = sequence; } }
// contracts/State.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; import "./Structs.sol"; contract Events { event LogGuardianSetChanged( uint32 oldGuardianIndex, uint32 newGuardianIndex ); event LogMessagePublished( address emitter_address, uint32 nonce, bytes payload ); } contract Storage { struct WormholeState { Structs.Provider provider; // Mapping of guardian_set_index => guardian set mapping(uint32 => Structs.GuardianSet) guardianSets; // Current active guardian set index uint32 guardianSetIndex; // Period for which a guardian set stays active after it has been replaced uint32 guardianSetExpiry; // Sequence numbers per emitter mapping(address => uint64) sequences; // Mapping of consumed governance actions mapping(bytes32 => bool) consumedGovernanceActions; // Mapping of initialized implementations mapping(address => bool) initializedImplementations; uint256 messageFee; } } contract State { Storage.WormholeState _state; }
// contracts/Structs.sol // SPDX-License-Identifier: Apache 2 pragma solidity ^0.8.0; interface Structs { struct Provider { uint16 chainId; uint16 governanceChainId; bytes32 governanceContract; } struct GuardianSet { address[] keys; uint32 expirationTime; } struct Signature { bytes32 r; bytes32 s; uint8 v; uint8 guardianIndex; } struct VM { uint8 version; uint32 timestamp; uint32 nonce; uint16 emitterChainId; bytes32 emitterAddress; uint64 sequence; uint8 consistencyLevel; bytes payload; uint32 guardianSetIndex; Signature[] signatures; bytes32 hash; } }
// SPDX-License-Identifier: Unlicense /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.8.0 <0.9.0; library BytesLib { function concat( bytes memory _preBytes, bytes memory _postBytes ) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore(0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. )) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore( sc, add( and( fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00 ), and(mload(mc), mask) ) ) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint256 _start, uint256 _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1 , "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage( bytes storage _preBytes, bytes memory _postBytes ) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for {} eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "../beacon/IBeacon.sol"; import "../../utils/Address.sol"; import "../../utils/StorageSlot.sol"; /** * @dev This abstract contract provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. * * _Available since v4.1._ * * @custom:oz-upgrades-unsafe-allow delegatecall */ abstract contract ERC1967Upgrade { // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1 bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143; /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Returns the current implementation address. */ function _getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Perform implementation upgrade * * Emits an {Upgraded} event. */ function _upgradeTo(address newImplementation) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /** * @dev Perform implementation upgrade with additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); if (data.length > 0 || forceCall) { Address.functionDelegateCall(newImplementation, data); } } /** * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCallSecure(address newImplementation, bytes memory data, bool forceCall) internal { address oldImplementation = _getImplementation(); // Initial upgrade and setup call _setImplementation(newImplementation); if (data.length > 0 || forceCall) { Address.functionDelegateCall(newImplementation, data); } // Perform rollback test if not already in progress StorageSlot.BooleanSlot storage rollbackTesting = StorageSlot.getBooleanSlot(_ROLLBACK_SLOT); if (!rollbackTesting.value) { // Trigger rollback using upgradeTo from the new implementation rollbackTesting.value = true; Address.functionDelegateCall( newImplementation, abi.encodeWithSignature( "upgradeTo(address)", oldImplementation ) ); rollbackTesting.value = false; // Check rollback was effective require(oldImplementation == _getImplementation(), "ERC1967Upgrade: upgrade breaks further upgrades"); // Finally reset to the new implementation and log the upgrade _setImplementation(newImplementation); emit Upgraded(newImplementation); } } /** * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that). * * Emits a {BeaconUpgraded} event. */ function _upgradeBeaconToAndCall(address newBeacon, bytes memory data, bool forceCall) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0 || forceCall) { Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data); } } /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Returns the current admin. */ function _getAdmin() internal view returns (address) { return StorageSlot.getAddressSlot(_ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { require(newAdmin != address(0), "ERC1967: new admin is the zero address"); StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. */ function _changeAdmin(address newAdmin) internal { emit AdminChanged(_getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor. */ bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Emitted when the beacon is upgraded. */ event BeaconUpgraded(address indexed beacon); /** * @dev Returns the current beacon. */ function _getBeacon() internal view returns (address) { return StorageSlot.getAddressSlot(_BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { require( Address.isContract(newBeacon), "ERC1967: new beacon is not a contract" ); require( Address.isContract(IBeacon(newBeacon).implementation()), "ERC1967: beacon implementation is not a contract" ); StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeacon { /** * @dev Must return an address that can be used as a delegate call target. * * {BeaconProxy} will check that this address is a contract. */ function implementation() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ``` * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { assembly { r.slot := slot } } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldContract","type":"address"},{"indexed":true,"internalType":"address","name":"newContract","type":"address"}],"name":"ContractUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"index","type":"uint32"}],"name":"GuardianSetAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint64","name":"sequence","type":"uint64"},{"indexed":false,"internalType":"uint32","name":"nonce","type":"uint32"},{"indexed":false,"internalType":"bytes","name":"payload","type":"bytes"},{"indexed":false,"internalType":"uint8","name":"consistencyLevel","type":"uint8"}],"name":"LogMessagePublished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"chainId","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentGuardianSetIndex","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"index","type":"uint32"}],"name":"getGuardianSet","outputs":[{"components":[{"internalType":"address[]","name":"keys","type":"address[]"},{"internalType":"uint32","name":"expirationTime","type":"uint32"}],"internalType":"struct Structs.GuardianSet","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGuardianSetExpiry","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"governanceActionIsConsumed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governanceChainId","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governanceContract","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"initialGuardians","type":"address[]"},{"internalType":"uint16","name":"chainId","type":"uint16"},{"internalType":"uint16","name":"governanceChainId","type":"uint16"},{"internalType":"bytes32","name":"governanceContract","type":"bytes32"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"impl","type":"address"}],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"messageFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"emitter","type":"address"}],"name":"nextSequence","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"encodedVM","type":"bytes"}],"name":"parseAndVerifyVM","outputs":[{"components":[{"internalType":"uint8","name":"version","type":"uint8"},{"internalType":"uint32","name":"timestamp","type":"uint32"},{"internalType":"uint32","name":"nonce","type":"uint32"},{"internalType":"uint16","name":"emitterChainId","type":"uint16"},{"internalType":"bytes32","name":"emitterAddress","type":"bytes32"},{"internalType":"uint64","name":"sequence","type":"uint64"},{"internalType":"uint8","name":"consistencyLevel","type":"uint8"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"uint32","name":"guardianSetIndex","type":"uint32"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"uint8","name":"guardianIndex","type":"uint8"}],"internalType":"struct Structs.Signature[]","name":"signatures","type":"tuple[]"},{"internalType":"bytes32","name":"hash","type":"bytes32"}],"internalType":"struct Structs.VM","name":"vm","type":"tuple"},{"internalType":"bool","name":"valid","type":"bool"},{"internalType":"string","name":"reason","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"encodedUpgrade","type":"bytes"}],"name":"parseContractUpgrade","outputs":[{"components":[{"internalType":"bytes32","name":"module","type":"bytes32"},{"internalType":"uint8","name":"action","type":"uint8"},{"internalType":"uint16","name":"chain","type":"uint16"},{"internalType":"address","name":"newContract","type":"address"}],"internalType":"struct GovernanceStructs.ContractUpgrade","name":"cu","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"encodedUpgrade","type":"bytes"}],"name":"parseGuardianSetUpgrade","outputs":[{"components":[{"internalType":"bytes32","name":"module","type":"bytes32"},{"internalType":"uint8","name":"action","type":"uint8"},{"internalType":"uint16","name":"chain","type":"uint16"},{"components":[{"internalType":"address[]","name":"keys","type":"address[]"},{"internalType":"uint32","name":"expirationTime","type":"uint32"}],"internalType":"struct Structs.GuardianSet","name":"newGuardianSet","type":"tuple"},{"internalType":"uint32","name":"newGuardianSetIndex","type":"uint32"}],"internalType":"struct GovernanceStructs.GuardianSetUpgrade","name":"gsu","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"encodedSetMessageFee","type":"bytes"}],"name":"parseSetMessageFee","outputs":[{"components":[{"internalType":"bytes32","name":"module","type":"bytes32"},{"internalType":"uint8","name":"action","type":"uint8"},{"internalType":"uint16","name":"chain","type":"uint16"},{"internalType":"uint256","name":"messageFee","type":"uint256"}],"internalType":"struct GovernanceStructs.SetMessageFee","name":"smf","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"encodedTransferFees","type":"bytes"}],"name":"parseTransferFees","outputs":[{"components":[{"internalType":"bytes32","name":"module","type":"bytes32"},{"internalType":"uint8","name":"action","type":"uint8"},{"internalType":"uint16","name":"chain","type":"uint16"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32","name":"recipient","type":"bytes32"}],"internalType":"struct GovernanceStructs.TransferFees","name":"tf","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"encodedVM","type":"bytes"}],"name":"parseVM","outputs":[{"components":[{"internalType":"uint8","name":"version","type":"uint8"},{"internalType":"uint32","name":"timestamp","type":"uint32"},{"internalType":"uint32","name":"nonce","type":"uint32"},{"internalType":"uint16","name":"emitterChainId","type":"uint16"},{"internalType":"bytes32","name":"emitterAddress","type":"bytes32"},{"internalType":"uint64","name":"sequence","type":"uint64"},{"internalType":"uint8","name":"consistencyLevel","type":"uint8"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"uint32","name":"guardianSetIndex","type":"uint32"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"uint8","name":"guardianIndex","type":"uint8"}],"internalType":"struct Structs.Signature[]","name":"signatures","type":"tuple[]"},{"internalType":"bytes32","name":"hash","type":"bytes32"}],"internalType":"struct Structs.VM","name":"vm","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint32","name":"nonce","type":"uint32"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"uint8","name":"consistencyLevel","type":"uint8"}],"name":"publishMessage","outputs":[{"internalType":"uint64","name":"sequence","type":"uint64"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_vm","type":"bytes"}],"name":"submitContractUpgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_vm","type":"bytes"}],"name":"submitNewGuardianSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_vm","type":"bytes"}],"name":"submitSetMessageFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_vm","type":"bytes"}],"name":"submitTransferFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"uint8","name":"guardianIndex","type":"uint8"}],"internalType":"struct Structs.Signature[]","name":"signatures","type":"tuple[]"},{"components":[{"internalType":"address[]","name":"keys","type":"address[]"},{"internalType":"uint32","name":"expirationTime","type":"uint32"}],"internalType":"struct Structs.GuardianSet","name":"guardianSet","type":"tuple"}],"name":"verifySignatures","outputs":[{"internalType":"bool","name":"valid","type":"bool"},{"internalType":"string","name":"reason","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"uint8","name":"version","type":"uint8"},{"internalType":"uint32","name":"timestamp","type":"uint32"},{"internalType":"uint32","name":"nonce","type":"uint32"},{"internalType":"uint16","name":"emitterChainId","type":"uint16"},{"internalType":"bytes32","name":"emitterAddress","type":"bytes32"},{"internalType":"uint64","name":"sequence","type":"uint64"},{"internalType":"uint8","name":"consistencyLevel","type":"uint8"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"uint32","name":"guardianSetIndex","type":"uint32"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"uint8","name":"guardianIndex","type":"uint8"}],"internalType":"struct Structs.Signature[]","name":"signatures","type":"tuple[]"},{"internalType":"bytes32","name":"hash","type":"bytes32"}],"internalType":"struct Structs.VM","name":"vm","type":"tuple"}],"name":"verifyVM","outputs":[{"internalType":"bool","name":"valid","type":"bool"},{"internalType":"string","name":"reason","type":"string"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b50613091806100206000396000f3fe60806040526004361061014f5760003560e01c80639a8a0592116100b6578063d60b347f1161006f578063d60b347f14610586578063eb8d3f12146105bf578063f42bc641146105e2578063f607901714610602578063f951975a14610622578063fbe3c2cd1461064f576101b6565b80639a8a0592146104ba578063a0cce1b3146104e2578063a9e1189314610502578063b172b2221461052f578063b19a437e14610544578063c0fd8bde14610557576101b6565b80634fdc60fa116101085780634fdc60fa1461036d578063515f3247146103d05780635cb8cae21461042a5780636606b4e01461044c578063875be02a1461046c57806393df337e1461049a576101b6565b80630319e59c146101ec57806304ca84cf1461025e5780631a90a2191461028b5780631cfe7951146102aa5780632c3c02a4146102d65780634cf842b514610316576101b6565b366101b65760405162461bcd60e51b815260206004820152602c60248201527f74686520576f726d686f6c6520636f6e747261637420646f6573206e6f74206160448201526b63636570742061737365747360a01b60648201526084015b60405180910390fd5b60405162461bcd60e51b815260206004820152600b60248201526a1d5b9cdd5c1c1bdc9d195960aa1b60448201526064016101ad565b3480156101f857600080fd5b5061020c610207366004612933565b61066e565b6040516102559190600060a0820190508251825260ff602084015116602083015261ffff6040840151166040830152606083015160608301526080830151608083015292915050565b60405180910390f35b34801561026a57600080fd5b5061027e610279366004612933565b6107c4565b6040516102559190612d29565b34801561029757600080fd5b506007545b604051908152602001610255565b3480156102b657600080fd5b5060035463ffffffff165b60405163ffffffff9091168152602001610255565b3480156102e257600080fd5b506103066102f13660046127f1565b60009081526005602052604090205460ff1690565b6040519015158152602001610255565b34801561032257600080fd5b5061035561033136600461276d565b6001600160a01b03166000908152600460205260409020546001600160401b031690565b6040516001600160401b039091168152602001610255565b34801561037957600080fd5b5061038d610388366004612933565b6109f7565b60405161025591908151815260208083015160ff169082015260408083015161ffff16908201526060918201516001600160a01b03169181019190915260800190565b3480156103dc57600080fd5b506103f06103eb366004612933565b610b33565b60405161025591908151815260208083015160ff169082015260408083015161ffff16908201526060918201519181019190915260800190565b34801561043657600080fd5b5061044a610445366004612933565b610c62565b005b34801561045857600080fd5b5061044a610467366004612933565b610d6a565b34801561047857600080fd5b5061048c61048736600461296d565b610f8a565b604051610255929190612cfb565b3480156104a657600080fd5b5061044a6104b5366004612933565b61111e565b3480156104c657600080fd5b5060005461ffff165b60405161ffff9091168152602001610255565b3480156104ee57600080fd5b5061048c6104fd366004612809565b61126a565b34801561050e57600080fd5b5061052261051d366004612933565b611447565b6040516102559190612d99565b34801561053b57600080fd5b5060015461029c565b610355610552366004612aa6565b611825565b34801561056357600080fd5b506105776105723660046128c7565b6118c5565b60405161025593929190612dac565b34801561059257600080fd5b506103066105a136600461276d565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156105cb57600080fd5b50600354640100000000900463ffffffff166102c1565b3480156105ee57600080fd5b5061044a6105fd366004612933565b611927565b34801561060e57600080fd5b5061044a61061d36600461278e565b611a28565b34801561062e57600080fd5b5061064261063d366004612a8c565b611b81565b6040516102559190612d86565b34801561065b57600080fd5b5060005462010000900461ffff166104cf565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101829052906106a38382611c20565b82526106b0602082612ec3565b90506106bc8382611c7e565b60ff1660208301526106cf600182612ec3565b9050816020015160ff1660041461071f5760405162461bcd60e51b8152602060048201526014602482015273696e76616c6964205472616e736665724665657360601b60448201526064016101ad565b6107298382611cda565b61ffff16604083015261073d600282612ec3565b90506107498382611d37565b6060830152610759602082612ec3565b90506107658382611c20565b6080830152610775602082612ec3565b9050808351146107be5760405162461bcd60e51b8152602060048201526014602482015273696e76616c6964205472616e736665724665657360601b60448201526064016101ad565b50919050565b6107cc612457565b60006107d88382611c20565b82526107e5602082612ec3565b90506107f18382611c7e565b60ff166020830152610804600182612ec3565b9050816020015160ff1660021461085d5760405162461bcd60e51b815260206004820152601a60248201527f696e76616c696420477561726469616e5365745570677261646500000000000060448201526064016101ad565b6108678382611cda565b61ffff16604083015261087b600282612ec3565b90506108878382611d8c565b63ffffffff16608083015261089d600482612ec3565b905060006108ab8483611c7e565b90506108b8600183612ec3565b915060405180604001604052808260ff166001600160401b038111156108ee57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610917578160200160208202803683370190505b5081526000602090910181905260608501919091525b8160ff1681101561099f576109428584611de9565b60608501515180518390811061096857634e487b7160e01b600052603260045260246000fd5b6001600160a01b039092166020928302919091019091015261098b601484612ec3565b92508061099781612fd0565b91505061092d565b50818451146109f05760405162461bcd60e51b815260206004820152601a60248201527f696e76616c696420477561726469616e5365745570677261646500000000000060448201526064016101ad565b5050919050565b604080516080810182526000808252602082018190529181018290526060810182905290610a258382611c20565b8252610a32602082612ec3565b9050610a3e8382611c7e565b60ff166020830152610a51600182612ec3565b9050816020015160ff16600114610aa45760405162461bcd60e51b8152602060048201526017602482015276696e76616c696420436f6e74726163745570677261646560481b60448201526064016101ad565b610aae8382611cda565b61ffff166040830152610ac2600282612ec3565b9050610ace8382611c20565b6001600160a01b03166060830152610ae7602082612ec3565b9050808351146107be5760405162461bcd60e51b8152602060048201526017602482015276696e76616c696420436f6e74726163745570677261646560481b60448201526064016101ad565b604080516080810182526000808252602082018190529181018290526060810182905290610b618382611c20565b8252610b6e602082612ec3565b9050610b7a8382611c7e565b60ff166020830152610b8d600182612ec3565b9050816020015160ff16600314610bde5760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964205365744d65737361676546656560581b60448201526064016101ad565b610be88382611cda565b61ffff166040830152610bfc600282612ec3565b9050610c088382611d37565b6060830152610c18602082612ec3565b9050808351146107be5760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964205365744d65737361676546656560581b60448201526064016101ad565b6000610c6d82611447565b9050600080610c7b83611e4e565b91509150818190610c9f5760405162461bcd60e51b81526004016101ad9190612d16565b506000610caf8460e001516109f7565b805190915063436f726514610cf75760405162461bcd60e51b815260206004820152600e60248201526d496e76616c6964204d6f64756c6560901b60448201526064016101ad565b60005461ffff1661ffff16816040015161ffff1614610d485760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21021b430b4b760991b60448201526064016101ad565b610d56846101400151611fc4565b610d638160600151611fdf565b5050505050565b6000610d7582611447565b9050600080610d8383611e4e565b91509150818190610da75760405162461bcd60e51b81526004016101ad9190612d16565b506000610db78460e001516107c4565b805190915063436f726514610dff5760405162461bcd60e51b815260206004820152600e60248201526d696e76616c6964204d6f64756c6560901b60448201526064016101ad565b60005461ffff1661ffff16816040015161ffff161480610e255750604081015161ffff16155b610e615760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b21021b430b4b760991b60448201526064016101ad565b60608101515151610eb45760405162461bcd60e51b815260206004820152601960248201527f6e657720677561726469616e2073657420697320656d7074790000000000000060448201526064016101ad565b60035463ffffffff16610ec8906001612edb565b63ffffffff16816080015163ffffffff1614610f305760405162461bcd60e51b815260206004820152602160248201527f696e646578206d75737420696e63726561736520696e207374657073206f66206044820152603160f81b60648201526084016101ad565b610f3e846101400151611fc4565b610f55610f5060035463ffffffff1690565b61210c565b610f6781606001518260800151612144565b60808101516003805463ffffffff191663ffffffff909216919091179055610d63565b600060606000610f9e846101000151611b81565b805151909150610fe1576000604051806040016040528060148152602001731a5b9d985b1a590819dd585c991a585b881cd95d60621b8152509250925050915091565b60035463ffffffff1663ffffffff1684610100015163ffffffff1614158015611013575042816020015163ffffffff16105b1561105a5760006040518060400160405280601881526020017f677561726469616e2073657420686173206578706972656400000000000000008152509250925050915091565b61012084015151815151600a906003906110749083612f6a565b61107e9190612f4a565b611089906002612f6a565b6110939190612f4a565b61109e906001612ec3565b11156110d2576000604051806040016040528060098152602001686e6f2071756f72756d60b81b8152509250925050915091565b6000806110ea8661014001518761012001518561126a565b9150915081611100576000969095509350505050565b60016040518060200160405280600081525094509450505050915091565b600061112982611447565b905060008061113783611e4e565b9150915081819061115b5760405162461bcd60e51b81526004016101ad9190612d16565b50600061116b8460e0015161066e565b805190915063436f7265146111b35760405162461bcd60e51b815260206004820152600e60248201526d696e76616c6964204d6f64756c6560901b60448201526064016101ad565b60005461ffff1661ffff16816040015161ffff1614806111d95750604081015161ffff16155b6112155760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b21021b430b4b760991b60448201526064016101ad565b611223846101400151611fc4565b608081015160608201516040516001600160a01b0383169180156108fc02916000818181858888f19350505050158015611261573d6000803e3d6000fd5b50505050505050565b600060606000805b855181101561142657600086828151811061129d57634e487b7160e01b600052603260045260246000fd5b6020026020010151905081600014806112bf57508260ff16816060015160ff16115b6113175760405162461bcd60e51b815260206004820152602360248201527f7369676e617475726520696e6469636573206d75737420626520617363656e64604482015262696e6760e81b60648201526084016101ad565b6060810151865180519194509060ff851690811061134557634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001898360400151846000015185602001516040516000815260200160405260405161139e949392919093845260ff9290921660208401526040830152606082015260800190565b6020604051602081039080840390855afa1580156113c0573d6000803e3d6000fd5b505050602060405103516001600160a01b031614611413576000604051806040016040528060148152602001731593481cda59db985d1d5c99481a5b9d985b1a5960621b8152509450945050505061143f565b508061141e81612fd0565b915050611272565b5060016040518060200160405280600081525092509250505b935093915050565b61144f6124b1565b600061145b8382611c7e565b60ff16825261146b600182612ec3565b9050816000015160ff166001146114c45760405162461bcd60e51b815260206004820152601760248201527f564d2076657273696f6e20696e636f6d70617469626c6500000000000000000060448201526064016101ad565b6114ce8382611d8c565b63ffffffff166101008301526114e5600482612ec3565b905060006114f38483611c7e565b60ff169050611503600183612ec3565b9150806001600160401b0381111561152b57634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561157d57816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816115495790505b5061012084015260005b818110156116ec576115998584611c7e565b84610120015182815181106115be57634e487b7160e01b600052603260045260246000fd5b602090810291909101015160ff9091166060909101526115df600184612ec3565b92506115eb8584611c20565b846101200151828151811061161057634e487b7160e01b600052603260045260246000fd5b6020026020010151600001818152505060208361162d9190612ec3565b92506116398584611c20565b846101200151828151811061165e57634e487b7160e01b600052603260045260246000fd5b6020026020010151602001818152505060208361167b9190612ec3565b92506116878584611c7e565b61169290601b612f25565b84610120015182815181106116b757634e487b7160e01b600052603260045260246000fd5b602090810291909101015160ff9091166040909101526116d8600184612ec3565b9250806116e481612fd0565b915050611587565b506000611708838487516117009190612f89565b879190612198565b9050808051906020012060405160200161172491815260200190565b60408051601f19818403018152919052805160209091012061014085015261174c8584611d8c565b63ffffffff166020850152611762600484612ec3565b925061176e8584611d8c565b63ffffffff166040850152611784600484612ec3565b92506117908584611cda565b61ffff1660608501526117a4600284612ec3565b92506117b08584611c20565b60808501526117c0602084612ec3565b92506117cc85846122a5565b6001600160401b031660a08501526117e5600884612ec3565b92506117f18584611c7e565b60ff1660c0850152611804600184612ec3565b9250611817838487516117009190612f89565b60e085015250919392505050565b600061183060075490565b341461186c5760405162461bcd60e51b815260206004820152600b60248201526a696e76616c69642066656560a81b60448201526064016101ad565b61187533612302565b9050336001600160a01b03167f6eb224fb001ed210e379b335e35efe88672a8ce935d981a6896b27ffdf52a3b2828686866040516118b69493929190612de3565b60405180910390a29392505050565b6118cd6124b1565b6000606061191085858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061144792505050565b925061191b83610f8a565b93969095509293505050565b600061193282611447565b905060008061194083611e4e565b915091508181906119645760405162461bcd60e51b81526004016101ad9190612d16565b5060006119748460e00151610b33565b805190915063436f7265146119bc5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c6964204d6f64756c6560901b60448201526064016101ad565b60005461ffff1661ffff16816040015161ffff1614611a0d5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21021b430b4b760991b60448201526064016101ad565b611a1b846101400151611fc4565b610d638160600151600755565b6000611a5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b9050611a7f816001600160a01b031660009081526006602052604090205460ff1690565b15611ac25760405162461bcd60e51b8152602060048201526013602482015272185b1c9958591e481a5b9a5d1a585b1a5e9959606a1b60448201526064016101ad565b611aea816001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000855111611b345760405162461bcd60e51b81526020600482015260166024820152751b9bc819dd585c991a585b9cc81cdc1958da599a595960521b60448201526064016101ad565b60408051808201909152858152600060208201819052611b55908290612144565b6000805461ffff868116620100000263ffffffff19909216908816171790556001839055505050505050565b60408051808201825260608082526000602080840182905263ffffffff86168252600281529084902084518154928302810184018652948501828152939493909284928491840182828015611bff57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611be1575b50505091835250506001919091015463ffffffff1660209091015292915050565b6000611c2d826020612ec3565b83511015611c755760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b60448201526064016101ad565b50016020015190565b6000611c8b826001612ec3565b83511015611cd15760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b60448201526064016101ad565b50016001015190565b6000611ce7826002612ec3565b83511015611d2e5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b60448201526064016101ad565b50016002015190565b6000611d44826020612ec3565b83511015611c755760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b60448201526064016101ad565b6000611d99826004612ec3565b83511015611de05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b60448201526064016101ad565b50016004015190565b6000611df6826014612ec3565b83511015611e3e5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b60448201526064016101ad565b500160200151600160601b900490565b60006060600080611e5e85610f8a565b9150915081611e735760009590945092505050565b60035463ffffffff1663ffffffff1685610100015163ffffffff1614611eb957600060405180606001604052806022815260200161301860229139935093505050915091565b60005462010000900461ffff1661ffff16856060015161ffff1614611f14576000604051806040016040528060168152602001753bb937b7339033b7bb32b93730b731b29031b430b4b760511b815250935093505050915091565b600154856080015114611f645760006040518060400160405280601981526020017f77726f6e6720676f7665726e616e636520636f6e747261637400000000000000815250935093505050915091565b61014085015160009081526005602052604090205460ff1615611fa757600060405180606001604052806022815260200161303a60229139935093505050915091565b600160405180602001604052806000815250935093505050915091565b6000908152600560205260409020805460ff19166001179055565b60006120127f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905061201d82612372565b60408051600481526024810182526020810180516001600160e01b031663204a7f0760e21b179052905160009182916001600160a01b0386169161206091612cdf565b600060405180830381855af49150503d806000811461209b576040519150601f19603f3d011682016040523d82523d6000602084013e6120a0565b606091505b50915091508181906120c55760405162461bcd60e51b81526004016101ad9190612d16565b50836001600160a01b0316836001600160a01b03167f2e4cc16c100f0b55e2df82ab0b1a7e294aa9cbd01b48fbaf622683fbc0507a4960405160405180910390a350505050565b6121194262015180612edb565b63ffffffff9182166000908152600260205260409020600101805463ffffffff191691909216179055565b63ffffffff8116600090815260026020908152604090912083518051859361217092849291019061250c565b50602091909101516001909101805463ffffffff191663ffffffff9092169190911790555050565b6060816121a681601f612ec3565b10156121e55760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b60448201526064016101ad565b6121ef8284612ec3565b845110156122335760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b60448201526064016101ad565b606082158015612252576040519150600082526020820160405261229c565b6040519150601f8416801560200281840101858101878315602002848b0101015b8183101561228b578051835260209283019201612273565b5050858452601f01601f1916604052505b50949350505050565b60006122b2826008612ec3565b835110156122f95760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b60448201526064016101ad565b50016008015190565b6001600160a01b0381166000908152600460205260409020546001600160401b031661236d82612333836001612f03565b6001600160a01b03919091166000908152600460205260409020805467ffffffffffffffff19166001600160401b03909216919091179055565b919050565b61237b816123b2565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b803b6124165760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b60648201526084016101ad565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6040518060a0016040528060008019168152602001600060ff168152602001600061ffff1681526020016124a4604051806040016040528060608152602001600063ffffffff1681525090565b8152600060209091015290565b604080516101608101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e08201819052610100820183905261012082015261014081019190915290565b828054828255906000526020600020908101928215612561579160200282015b8281111561256157825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019061252c565b5061256d929150612571565b5090565b5b8082111561256d5760008155600101612572565b80356001600160a01b038116811461236d57600080fd5b600082601f8301126125ad578081fd5b813560206125c26125bd83612ea0565b612e70565b80838252828201915082860187848660051b89010111156125e1578586fd5b855b85811015612606576125f482612586565b845292840192908401906001016125e3565b5090979650505050505050565b600082601f830112612623578081fd5b813560206126336125bd83612ea0565b80838252828201915082860187848660071b8901011115612652578586fd5b855b8581101561260657608080838b03121561266c578788fd5b612674612e25565b833581528684013587820152604061268d81860161275c565b90820152606061269e85820161275c565b908201528552938501939190910190600101612654565b600082601f8301126126c5578081fd5b81356001600160401b038111156126de576126de613001565b6126f1601f8201601f1916602001612e70565b818152846020838601011115612705578283fd5b816020850160208301379081016020019190915292915050565b803561ffff8116811461236d57600080fd5b803563ffffffff8116811461236d57600080fd5b80356001600160401b038116811461236d57600080fd5b803560ff8116811461236d57600080fd5b60006020828403121561277e578081fd5b61278782612586565b9392505050565b600080600080608085870312156127a3578283fd5b84356001600160401b038111156127b8578384fd5b6127c48782880161259d565b9450506127d36020860161271f565b92506127e16040860161271f565b9396929550929360600135925050565b600060208284031215612802578081fd5b5035919050565b60008060006060848603121561281d578283fd5b8335925060208401356001600160401b038082111561283a578384fd5b61284687838801612613565b9350604086013591508082111561285b578283fd5b908501906040828803121561286e578283fd5b60405160408101818110838211171561288957612889613001565b60405282358281111561289a578485fd5b6128a68982860161259d565b8252506128b560208401612731565b60208201528093505050509250925092565b600080602083850312156128d9578182fd5b82356001600160401b03808211156128ef578384fd5b818501915085601f830112612902578384fd5b813581811115612910578485fd5b866020828501011115612921578485fd5b60209290920196919550909350505050565b600060208284031215612944578081fd5b81356001600160401b03811115612959578182fd5b612965848285016126b5565b949350505050565b60006020828403121561297e578081fd5b81356001600160401b0380821115612994578283fd5b9083019061016082860312156129a8578283fd5b6129b0612e4d565b6129b98361275c565b81526129c760208401612731565b60208201526129d860408401612731565b60408201526129e96060840161271f565b606082015260808301356080820152612a0460a08401612745565b60a0820152612a1560c0840161275c565b60c082015260e083013582811115612a2b578485fd5b612a37878286016126b5565b60e083015250610100612a4b818501612731565b908201526101208381013583811115612a62578586fd5b612a6e88828701612613565b91830191909152506101409283013592810192909252509392505050565b600060208284031215612a9d578081fd5b61278782612731565b600080600060608486031215612aba578081fd5b612ac384612731565b925060208401356001600160401b03811115612add578182fd5b612ae9868287016126b5565b925050612af86040850161275c565b90509250925092565b6000815180845260208085019450808401835b83811015612b5957815180518852838101518489015260408082015160ff908116918a0191909152606091820151169088015260809096019590820190600101612b14565b509495945050505050565b60008151808452612b7c816020860160208601612fa0565b601f01601f19169290920160200192915050565b805160408084528151908401819052600091602091908201906060860190845b81811015612bd55783516001600160a01b031683529284019291840191600101612bb0565b50509382015163ffffffff16949091019390935250919050565b805160ff16825260006101606020830151612c12602086018263ffffffff169052565b506040830151612c2a604086018263ffffffff169052565b506060830151612c40606086018261ffff169052565b506080830151608085015260a0830151612c6560a08601826001600160401b03169052565b5060c0830151612c7a60c086018260ff169052565b5060e08301518160e0860152612c9282860182612b64565b91505061010080840151612cad8287018263ffffffff169052565b50506101208084015185830382870152612cc78382612b01565b61014095860151969095019590955250919392505050565b60008251612cf1818460208701612fa0565b9190910192915050565b82151581526040602082015260006129656040830184612b64565b6020815260006127876020830184612b64565b602081528151602082015260ff602083015116604082015261ffff60408301511660608201526000606083015160a06080840152612d6a60c0840182612b90565b905063ffffffff60808501511660a08401528091505092915050565b6020815260006127876020830184612b90565b6020815260006127876020830184612bef565b606081526000612dbf6060830186612bef565b84151560208401528281036040840152612dd98185612b64565b9695505050505050565b6001600160401b038516815263ffffffff84166020820152608060408201526000612e116080830185612b64565b905060ff8316606083015295945050505050565b604051608081016001600160401b0381118282101715612e4757612e47613001565b60405290565b60405161016081016001600160401b0381118282101715612e4757612e47613001565b604051601f8201601f191681016001600160401b0381118282101715612e9857612e98613001565b604052919050565b60006001600160401b03821115612eb957612eb9613001565b5060051b60200190565b60008219821115612ed657612ed6612feb565b500190565b600063ffffffff808316818516808303821115612efa57612efa612feb565b01949350505050565b60006001600160401b03808316818516808303821115612efa57612efa612feb565b600060ff821660ff84168060ff03821115612f4257612f42612feb565b019392505050565b600082612f6557634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612f8457612f84612feb565b500290565b600082821015612f9b57612f9b612feb565b500390565b60005b83811015612fbb578181015183820152602001612fa3565b83811115612fca576000848401525b50505050565b6000600019821415612fe457612fe4612feb565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe6e6f74207369676e65642062792063757272656e7420677561726469616e20736574676f7665726e616e636520616374696f6e20616c726561647920636f6e73756d6564a2646970667358221220c8e3bc7d49b80228978c20d660905b525ace8e7c6a7148a5dbcf00fe3c9beefb64736f6c63430008040033
Deployed Bytecode
0x60806040526004361061014f5760003560e01c80639a8a0592116100b6578063d60b347f1161006f578063d60b347f14610586578063eb8d3f12146105bf578063f42bc641146105e2578063f607901714610602578063f951975a14610622578063fbe3c2cd1461064f576101b6565b80639a8a0592146104ba578063a0cce1b3146104e2578063a9e1189314610502578063b172b2221461052f578063b19a437e14610544578063c0fd8bde14610557576101b6565b80634fdc60fa116101085780634fdc60fa1461036d578063515f3247146103d05780635cb8cae21461042a5780636606b4e01461044c578063875be02a1461046c57806393df337e1461049a576101b6565b80630319e59c146101ec57806304ca84cf1461025e5780631a90a2191461028b5780631cfe7951146102aa5780632c3c02a4146102d65780634cf842b514610316576101b6565b366101b65760405162461bcd60e51b815260206004820152602c60248201527f74686520576f726d686f6c6520636f6e747261637420646f6573206e6f74206160448201526b63636570742061737365747360a01b60648201526084015b60405180910390fd5b60405162461bcd60e51b815260206004820152600b60248201526a1d5b9cdd5c1c1bdc9d195960aa1b60448201526064016101ad565b3480156101f857600080fd5b5061020c610207366004612933565b61066e565b6040516102559190600060a0820190508251825260ff602084015116602083015261ffff6040840151166040830152606083015160608301526080830151608083015292915050565b60405180910390f35b34801561026a57600080fd5b5061027e610279366004612933565b6107c4565b6040516102559190612d29565b34801561029757600080fd5b506007545b604051908152602001610255565b3480156102b657600080fd5b5060035463ffffffff165b60405163ffffffff9091168152602001610255565b3480156102e257600080fd5b506103066102f13660046127f1565b60009081526005602052604090205460ff1690565b6040519015158152602001610255565b34801561032257600080fd5b5061035561033136600461276d565b6001600160a01b03166000908152600460205260409020546001600160401b031690565b6040516001600160401b039091168152602001610255565b34801561037957600080fd5b5061038d610388366004612933565b6109f7565b60405161025591908151815260208083015160ff169082015260408083015161ffff16908201526060918201516001600160a01b03169181019190915260800190565b3480156103dc57600080fd5b506103f06103eb366004612933565b610b33565b60405161025591908151815260208083015160ff169082015260408083015161ffff16908201526060918201519181019190915260800190565b34801561043657600080fd5b5061044a610445366004612933565b610c62565b005b34801561045857600080fd5b5061044a610467366004612933565b610d6a565b34801561047857600080fd5b5061048c61048736600461296d565b610f8a565b604051610255929190612cfb565b3480156104a657600080fd5b5061044a6104b5366004612933565b61111e565b3480156104c657600080fd5b5060005461ffff165b60405161ffff9091168152602001610255565b3480156104ee57600080fd5b5061048c6104fd366004612809565b61126a565b34801561050e57600080fd5b5061052261051d366004612933565b611447565b6040516102559190612d99565b34801561053b57600080fd5b5060015461029c565b610355610552366004612aa6565b611825565b34801561056357600080fd5b506105776105723660046128c7565b6118c5565b60405161025593929190612dac565b34801561059257600080fd5b506103066105a136600461276d565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156105cb57600080fd5b50600354640100000000900463ffffffff166102c1565b3480156105ee57600080fd5b5061044a6105fd366004612933565b611927565b34801561060e57600080fd5b5061044a61061d36600461278e565b611a28565b34801561062e57600080fd5b5061064261063d366004612a8c565b611b81565b6040516102559190612d86565b34801561065b57600080fd5b5060005462010000900461ffff166104cf565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101829052906106a38382611c20565b82526106b0602082612ec3565b90506106bc8382611c7e565b60ff1660208301526106cf600182612ec3565b9050816020015160ff1660041461071f5760405162461bcd60e51b8152602060048201526014602482015273696e76616c6964205472616e736665724665657360601b60448201526064016101ad565b6107298382611cda565b61ffff16604083015261073d600282612ec3565b90506107498382611d37565b6060830152610759602082612ec3565b90506107658382611c20565b6080830152610775602082612ec3565b9050808351146107be5760405162461bcd60e51b8152602060048201526014602482015273696e76616c6964205472616e736665724665657360601b60448201526064016101ad565b50919050565b6107cc612457565b60006107d88382611c20565b82526107e5602082612ec3565b90506107f18382611c7e565b60ff166020830152610804600182612ec3565b9050816020015160ff1660021461085d5760405162461bcd60e51b815260206004820152601a60248201527f696e76616c696420477561726469616e5365745570677261646500000000000060448201526064016101ad565b6108678382611cda565b61ffff16604083015261087b600282612ec3565b90506108878382611d8c565b63ffffffff16608083015261089d600482612ec3565b905060006108ab8483611c7e565b90506108b8600183612ec3565b915060405180604001604052808260ff166001600160401b038111156108ee57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610917578160200160208202803683370190505b5081526000602090910181905260608501919091525b8160ff1681101561099f576109428584611de9565b60608501515180518390811061096857634e487b7160e01b600052603260045260246000fd5b6001600160a01b039092166020928302919091019091015261098b601484612ec3565b92508061099781612fd0565b91505061092d565b50818451146109f05760405162461bcd60e51b815260206004820152601a60248201527f696e76616c696420477561726469616e5365745570677261646500000000000060448201526064016101ad565b5050919050565b604080516080810182526000808252602082018190529181018290526060810182905290610a258382611c20565b8252610a32602082612ec3565b9050610a3e8382611c7e565b60ff166020830152610a51600182612ec3565b9050816020015160ff16600114610aa45760405162461bcd60e51b8152602060048201526017602482015276696e76616c696420436f6e74726163745570677261646560481b60448201526064016101ad565b610aae8382611cda565b61ffff166040830152610ac2600282612ec3565b9050610ace8382611c20565b6001600160a01b03166060830152610ae7602082612ec3565b9050808351146107be5760405162461bcd60e51b8152602060048201526017602482015276696e76616c696420436f6e74726163745570677261646560481b60448201526064016101ad565b604080516080810182526000808252602082018190529181018290526060810182905290610b618382611c20565b8252610b6e602082612ec3565b9050610b7a8382611c7e565b60ff166020830152610b8d600182612ec3565b9050816020015160ff16600314610bde5760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964205365744d65737361676546656560581b60448201526064016101ad565b610be88382611cda565b61ffff166040830152610bfc600282612ec3565b9050610c088382611d37565b6060830152610c18602082612ec3565b9050808351146107be5760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964205365744d65737361676546656560581b60448201526064016101ad565b6000610c6d82611447565b9050600080610c7b83611e4e565b91509150818190610c9f5760405162461bcd60e51b81526004016101ad9190612d16565b506000610caf8460e001516109f7565b805190915063436f726514610cf75760405162461bcd60e51b815260206004820152600e60248201526d496e76616c6964204d6f64756c6560901b60448201526064016101ad565b60005461ffff1661ffff16816040015161ffff1614610d485760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21021b430b4b760991b60448201526064016101ad565b610d56846101400151611fc4565b610d638160600151611fdf565b5050505050565b6000610d7582611447565b9050600080610d8383611e4e565b91509150818190610da75760405162461bcd60e51b81526004016101ad9190612d16565b506000610db78460e001516107c4565b805190915063436f726514610dff5760405162461bcd60e51b815260206004820152600e60248201526d696e76616c6964204d6f64756c6560901b60448201526064016101ad565b60005461ffff1661ffff16816040015161ffff161480610e255750604081015161ffff16155b610e615760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b21021b430b4b760991b60448201526064016101ad565b60608101515151610eb45760405162461bcd60e51b815260206004820152601960248201527f6e657720677561726469616e2073657420697320656d7074790000000000000060448201526064016101ad565b60035463ffffffff16610ec8906001612edb565b63ffffffff16816080015163ffffffff1614610f305760405162461bcd60e51b815260206004820152602160248201527f696e646578206d75737420696e63726561736520696e207374657073206f66206044820152603160f81b60648201526084016101ad565b610f3e846101400151611fc4565b610f55610f5060035463ffffffff1690565b61210c565b610f6781606001518260800151612144565b60808101516003805463ffffffff191663ffffffff909216919091179055610d63565b600060606000610f9e846101000151611b81565b805151909150610fe1576000604051806040016040528060148152602001731a5b9d985b1a590819dd585c991a585b881cd95d60621b8152509250925050915091565b60035463ffffffff1663ffffffff1684610100015163ffffffff1614158015611013575042816020015163ffffffff16105b1561105a5760006040518060400160405280601881526020017f677561726469616e2073657420686173206578706972656400000000000000008152509250925050915091565b61012084015151815151600a906003906110749083612f6a565b61107e9190612f4a565b611089906002612f6a565b6110939190612f4a565b61109e906001612ec3565b11156110d2576000604051806040016040528060098152602001686e6f2071756f72756d60b81b8152509250925050915091565b6000806110ea8661014001518761012001518561126a565b9150915081611100576000969095509350505050565b60016040518060200160405280600081525094509450505050915091565b600061112982611447565b905060008061113783611e4e565b9150915081819061115b5760405162461bcd60e51b81526004016101ad9190612d16565b50600061116b8460e0015161066e565b805190915063436f7265146111b35760405162461bcd60e51b815260206004820152600e60248201526d696e76616c6964204d6f64756c6560901b60448201526064016101ad565b60005461ffff1661ffff16816040015161ffff1614806111d95750604081015161ffff16155b6112155760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b21021b430b4b760991b60448201526064016101ad565b611223846101400151611fc4565b608081015160608201516040516001600160a01b0383169180156108fc02916000818181858888f19350505050158015611261573d6000803e3d6000fd5b50505050505050565b600060606000805b855181101561142657600086828151811061129d57634e487b7160e01b600052603260045260246000fd5b6020026020010151905081600014806112bf57508260ff16816060015160ff16115b6113175760405162461bcd60e51b815260206004820152602360248201527f7369676e617475726520696e6469636573206d75737420626520617363656e64604482015262696e6760e81b60648201526084016101ad565b6060810151865180519194509060ff851690811061134557634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001898360400151846000015185602001516040516000815260200160405260405161139e949392919093845260ff9290921660208401526040830152606082015260800190565b6020604051602081039080840390855afa1580156113c0573d6000803e3d6000fd5b505050602060405103516001600160a01b031614611413576000604051806040016040528060148152602001731593481cda59db985d1d5c99481a5b9d985b1a5960621b8152509450945050505061143f565b508061141e81612fd0565b915050611272565b5060016040518060200160405280600081525092509250505b935093915050565b61144f6124b1565b600061145b8382611c7e565b60ff16825261146b600182612ec3565b9050816000015160ff166001146114c45760405162461bcd60e51b815260206004820152601760248201527f564d2076657273696f6e20696e636f6d70617469626c6500000000000000000060448201526064016101ad565b6114ce8382611d8c565b63ffffffff166101008301526114e5600482612ec3565b905060006114f38483611c7e565b60ff169050611503600183612ec3565b9150806001600160401b0381111561152b57634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561157d57816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816115495790505b5061012084015260005b818110156116ec576115998584611c7e565b84610120015182815181106115be57634e487b7160e01b600052603260045260246000fd5b602090810291909101015160ff9091166060909101526115df600184612ec3565b92506115eb8584611c20565b846101200151828151811061161057634e487b7160e01b600052603260045260246000fd5b6020026020010151600001818152505060208361162d9190612ec3565b92506116398584611c20565b846101200151828151811061165e57634e487b7160e01b600052603260045260246000fd5b6020026020010151602001818152505060208361167b9190612ec3565b92506116878584611c7e565b61169290601b612f25565b84610120015182815181106116b757634e487b7160e01b600052603260045260246000fd5b602090810291909101015160ff9091166040909101526116d8600184612ec3565b9250806116e481612fd0565b915050611587565b506000611708838487516117009190612f89565b879190612198565b9050808051906020012060405160200161172491815260200190565b60408051601f19818403018152919052805160209091012061014085015261174c8584611d8c565b63ffffffff166020850152611762600484612ec3565b925061176e8584611d8c565b63ffffffff166040850152611784600484612ec3565b92506117908584611cda565b61ffff1660608501526117a4600284612ec3565b92506117b08584611c20565b60808501526117c0602084612ec3565b92506117cc85846122a5565b6001600160401b031660a08501526117e5600884612ec3565b92506117f18584611c7e565b60ff1660c0850152611804600184612ec3565b9250611817838487516117009190612f89565b60e085015250919392505050565b600061183060075490565b341461186c5760405162461bcd60e51b815260206004820152600b60248201526a696e76616c69642066656560a81b60448201526064016101ad565b61187533612302565b9050336001600160a01b03167f6eb224fb001ed210e379b335e35efe88672a8ce935d981a6896b27ffdf52a3b2828686866040516118b69493929190612de3565b60405180910390a29392505050565b6118cd6124b1565b6000606061191085858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061144792505050565b925061191b83610f8a565b93969095509293505050565b600061193282611447565b905060008061194083611e4e565b915091508181906119645760405162461bcd60e51b81526004016101ad9190612d16565b5060006119748460e00151610b33565b805190915063436f7265146119bc5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c6964204d6f64756c6560901b60448201526064016101ad565b60005461ffff1661ffff16816040015161ffff1614611a0d5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21021b430b4b760991b60448201526064016101ad565b611a1b846101400151611fc4565b610d638160600151600755565b6000611a5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b9050611a7f816001600160a01b031660009081526006602052604090205460ff1690565b15611ac25760405162461bcd60e51b8152602060048201526013602482015272185b1c9958591e481a5b9a5d1a585b1a5e9959606a1b60448201526064016101ad565b611aea816001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000855111611b345760405162461bcd60e51b81526020600482015260166024820152751b9bc819dd585c991a585b9cc81cdc1958da599a595960521b60448201526064016101ad565b60408051808201909152858152600060208201819052611b55908290612144565b6000805461ffff868116620100000263ffffffff19909216908816171790556001839055505050505050565b60408051808201825260608082526000602080840182905263ffffffff86168252600281529084902084518154928302810184018652948501828152939493909284928491840182828015611bff57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611be1575b50505091835250506001919091015463ffffffff1660209091015292915050565b6000611c2d826020612ec3565b83511015611c755760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b60448201526064016101ad565b50016020015190565b6000611c8b826001612ec3565b83511015611cd15760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b60448201526064016101ad565b50016001015190565b6000611ce7826002612ec3565b83511015611d2e5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b60448201526064016101ad565b50016002015190565b6000611d44826020612ec3565b83511015611c755760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b60448201526064016101ad565b6000611d99826004612ec3565b83511015611de05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b60448201526064016101ad565b50016004015190565b6000611df6826014612ec3565b83511015611e3e5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b60448201526064016101ad565b500160200151600160601b900490565b60006060600080611e5e85610f8a565b9150915081611e735760009590945092505050565b60035463ffffffff1663ffffffff1685610100015163ffffffff1614611eb957600060405180606001604052806022815260200161301860229139935093505050915091565b60005462010000900461ffff1661ffff16856060015161ffff1614611f14576000604051806040016040528060168152602001753bb937b7339033b7bb32b93730b731b29031b430b4b760511b815250935093505050915091565b600154856080015114611f645760006040518060400160405280601981526020017f77726f6e6720676f7665726e616e636520636f6e747261637400000000000000815250935093505050915091565b61014085015160009081526005602052604090205460ff1615611fa757600060405180606001604052806022815260200161303a60229139935093505050915091565b600160405180602001604052806000815250935093505050915091565b6000908152600560205260409020805460ff19166001179055565b60006120127f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905061201d82612372565b60408051600481526024810182526020810180516001600160e01b031663204a7f0760e21b179052905160009182916001600160a01b0386169161206091612cdf565b600060405180830381855af49150503d806000811461209b576040519150601f19603f3d011682016040523d82523d6000602084013e6120a0565b606091505b50915091508181906120c55760405162461bcd60e51b81526004016101ad9190612d16565b50836001600160a01b0316836001600160a01b03167f2e4cc16c100f0b55e2df82ab0b1a7e294aa9cbd01b48fbaf622683fbc0507a4960405160405180910390a350505050565b6121194262015180612edb565b63ffffffff9182166000908152600260205260409020600101805463ffffffff191691909216179055565b63ffffffff8116600090815260026020908152604090912083518051859361217092849291019061250c565b50602091909101516001909101805463ffffffff191663ffffffff9092169190911790555050565b6060816121a681601f612ec3565b10156121e55760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b60448201526064016101ad565b6121ef8284612ec3565b845110156122335760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b60448201526064016101ad565b606082158015612252576040519150600082526020820160405261229c565b6040519150601f8416801560200281840101858101878315602002848b0101015b8183101561228b578051835260209283019201612273565b5050858452601f01601f1916604052505b50949350505050565b60006122b2826008612ec3565b835110156122f95760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b60448201526064016101ad565b50016008015190565b6001600160a01b0381166000908152600460205260409020546001600160401b031661236d82612333836001612f03565b6001600160a01b03919091166000908152600460205260409020805467ffffffffffffffff19166001600160401b03909216919091179055565b919050565b61237b816123b2565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b803b6124165760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b60648201526084016101ad565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6040518060a0016040528060008019168152602001600060ff168152602001600061ffff1681526020016124a4604051806040016040528060608152602001600063ffffffff1681525090565b8152600060209091015290565b604080516101608101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e08201819052610100820183905261012082015261014081019190915290565b828054828255906000526020600020908101928215612561579160200282015b8281111561256157825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019061252c565b5061256d929150612571565b5090565b5b8082111561256d5760008155600101612572565b80356001600160a01b038116811461236d57600080fd5b600082601f8301126125ad578081fd5b813560206125c26125bd83612ea0565b612e70565b80838252828201915082860187848660051b89010111156125e1578586fd5b855b85811015612606576125f482612586565b845292840192908401906001016125e3565b5090979650505050505050565b600082601f830112612623578081fd5b813560206126336125bd83612ea0565b80838252828201915082860187848660071b8901011115612652578586fd5b855b8581101561260657608080838b03121561266c578788fd5b612674612e25565b833581528684013587820152604061268d81860161275c565b90820152606061269e85820161275c565b908201528552938501939190910190600101612654565b600082601f8301126126c5578081fd5b81356001600160401b038111156126de576126de613001565b6126f1601f8201601f1916602001612e70565b818152846020838601011115612705578283fd5b816020850160208301379081016020019190915292915050565b803561ffff8116811461236d57600080fd5b803563ffffffff8116811461236d57600080fd5b80356001600160401b038116811461236d57600080fd5b803560ff8116811461236d57600080fd5b60006020828403121561277e578081fd5b61278782612586565b9392505050565b600080600080608085870312156127a3578283fd5b84356001600160401b038111156127b8578384fd5b6127c48782880161259d565b9450506127d36020860161271f565b92506127e16040860161271f565b9396929550929360600135925050565b600060208284031215612802578081fd5b5035919050565b60008060006060848603121561281d578283fd5b8335925060208401356001600160401b038082111561283a578384fd5b61284687838801612613565b9350604086013591508082111561285b578283fd5b908501906040828803121561286e578283fd5b60405160408101818110838211171561288957612889613001565b60405282358281111561289a578485fd5b6128a68982860161259d565b8252506128b560208401612731565b60208201528093505050509250925092565b600080602083850312156128d9578182fd5b82356001600160401b03808211156128ef578384fd5b818501915085601f830112612902578384fd5b813581811115612910578485fd5b866020828501011115612921578485fd5b60209290920196919550909350505050565b600060208284031215612944578081fd5b81356001600160401b03811115612959578182fd5b612965848285016126b5565b949350505050565b60006020828403121561297e578081fd5b81356001600160401b0380821115612994578283fd5b9083019061016082860312156129a8578283fd5b6129b0612e4d565b6129b98361275c565b81526129c760208401612731565b60208201526129d860408401612731565b60408201526129e96060840161271f565b606082015260808301356080820152612a0460a08401612745565b60a0820152612a1560c0840161275c565b60c082015260e083013582811115612a2b578485fd5b612a37878286016126b5565b60e083015250610100612a4b818501612731565b908201526101208381013583811115612a62578586fd5b612a6e88828701612613565b91830191909152506101409283013592810192909252509392505050565b600060208284031215612a9d578081fd5b61278782612731565b600080600060608486031215612aba578081fd5b612ac384612731565b925060208401356001600160401b03811115612add578182fd5b612ae9868287016126b5565b925050612af86040850161275c565b90509250925092565b6000815180845260208085019450808401835b83811015612b5957815180518852838101518489015260408082015160ff908116918a0191909152606091820151169088015260809096019590820190600101612b14565b509495945050505050565b60008151808452612b7c816020860160208601612fa0565b601f01601f19169290920160200192915050565b805160408084528151908401819052600091602091908201906060860190845b81811015612bd55783516001600160a01b031683529284019291840191600101612bb0565b50509382015163ffffffff16949091019390935250919050565b805160ff16825260006101606020830151612c12602086018263ffffffff169052565b506040830151612c2a604086018263ffffffff169052565b506060830151612c40606086018261ffff169052565b506080830151608085015260a0830151612c6560a08601826001600160401b03169052565b5060c0830151612c7a60c086018260ff169052565b5060e08301518160e0860152612c9282860182612b64565b91505061010080840151612cad8287018263ffffffff169052565b50506101208084015185830382870152612cc78382612b01565b61014095860151969095019590955250919392505050565b60008251612cf1818460208701612fa0565b9190910192915050565b82151581526040602082015260006129656040830184612b64565b6020815260006127876020830184612b64565b602081528151602082015260ff602083015116604082015261ffff60408301511660608201526000606083015160a06080840152612d6a60c0840182612b90565b905063ffffffff60808501511660a08401528091505092915050565b6020815260006127876020830184612b90565b6020815260006127876020830184612bef565b606081526000612dbf6060830186612bef565b84151560208401528281036040840152612dd98185612b64565b9695505050505050565b6001600160401b038516815263ffffffff84166020820152608060408201526000612e116080830185612b64565b905060ff8316606083015295945050505050565b604051608081016001600160401b0381118282101715612e4757612e47613001565b60405290565b60405161016081016001600160401b0381118282101715612e4757612e47613001565b604051601f8201601f191681016001600160401b0381118282101715612e9857612e98613001565b604052919050565b60006001600160401b03821115612eb957612eb9613001565b5060051b60200190565b60008219821115612ed657612ed6612feb565b500190565b600063ffffffff808316818516808303821115612efa57612efa612feb565b01949350505050565b60006001600160401b03808316818516808303821115612efa57612efa612feb565b600060ff821660ff84168060ff03821115612f4257612f42612feb565b019392505050565b600082612f6557634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612f8457612f84612feb565b500290565b600082821015612f9b57612f9b612feb565b500390565b60005b83811015612fbb578181015183820152602001612fa3565b83811115612fca576000848401525b50505050565b6000600019821415612fe457612fe4612feb565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe6e6f74207369676e65642062792063757272656e7420677561726469616e20736574676f7665726e616e636520616374696f6e20616c726561647920636f6e73756d6564a2646970667358221220c8e3bc7d49b80228978c20d660905b525ace8e7c6a7148a5dbcf00fe3c9beefb64736f6c63430008040033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.