ETH Price: $1,792.56 (+10.12%)

Contract

0x63D758C3AD4c1BDF3279A3f8fEA04471462952E1
 

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Token Holdings

Multichain Info

No addresses found
Age:180D
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

2 Token Transfers found.

Parent Transaction Hash Block From To
View All Internal Transactions

Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Boost

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 888888 runs

Other Settings:
paris EvmVersion, MIT license
File 1 of 9 : Boost.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import {OwnableTwoSteps} from "@looksrare/contracts-libs/contracts/OwnableTwoSteps.sol";

import {IBlast} from "./interfaces/IBlast.sol";

contract Boost is ERC20("Boost Token", "BOOST"), OwnableTwoSteps {
    bytes32 public immutable MERKLE_ROOT;

    mapping(address user => bool hasClaimed) public hasUserClaimed;
    mapping(address transferrer => bool) public isAllowedToTransfer;

    error NotClaimable();
    error TransferNotAllowed();

    event IsAllowedToTransferUpdated(address indexed transferrer, bool allowed);

    constructor(bytes32 _merkleRoot, address _owner, address _blast) OwnableTwoSteps(_owner) {
        MERKLE_ROOT = _merkleRoot;
        IBlast(_blast).configureClaimableGas();
        IBlast(_blast).configureGovernor(_owner);
    }

    /**
     * @notice Claim BOOST tokens
     * @param amount amount to claim
     * @param merkleProof array containing the merkle proof
     */
    function claim(uint256 amount, bytes32[] calldata merkleProof) external {
        if (!_canClaim(msg.sender, amount, merkleProof)) {
            revert NotClaimable();
        }

        hasUserClaimed[msg.sender] = true;
        _mint(msg.sender, amount);
    }

    /**
     * @notice Burn BOOST tokens to redeem szn 1 points
     * @param amount amount to burn
     */
    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    /**
     * @notice Set whether the transferrer is allowed to transfer, only callable by the owner
     * @param transferrer The token transferrer
     * @param allowed Whether the transferrer is allowed to transfer
     */
    function setIsAllowedToTransfer(address transferrer, bool allowed) external onlyOwner {
        isAllowedToTransfer[transferrer] = allowed;
        emit IsAllowedToTransferUpdated(transferrer, allowed);
    }

    /**
     * @notice Check whether it is possible to claim
     * @param user address of the user
     * @param amount amount to claim
     * @param merkleProof array with the merkle proof
     */
    function canClaim(address user, uint256 amount, bytes32[] calldata merkleProof) external view returns (bool) {
        return _canClaim(user, amount, merkleProof);
    }

    /**
     * @notice Check whether it is possible to claim
     * @param user address of the user
     * @param amount amount to claim
     * @param merkleProof array with the merkle proof
     */
    function _canClaim(address user, uint256 amount, bytes32[] calldata merkleProof) internal view returns (bool) {
        // Compute the node and verify the merkle proof
        bytes32 node = keccak256(bytes.concat(keccak256(abi.encode(user, amount))));
        return MerkleProof.verify(merkleProof, MERKLE_ROOT, node) && !hasUserClaimed[user];
    }

    /**
     * @notice Hook that is called before any transfer of tokens.
     *         Only allows transfer if the sender or recipient is allowed to transfer.
     * @param from sender
     * @param to recipient
     */
    function _beforeTokenTransfer(address from, address to, uint256) internal view override {
        if (from == address(0) || to == address(0)) {
            return;
        }

        if (!isAllowedToTransfer[from] && !isAllowedToTransfer[to]) {
            revert TransferNotAllowed();
        }
    }
}

File 2 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 3 of 9 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 4 of 9 : OwnableTwoSteps.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

// Interfaces
import {IOwnableTwoSteps} from "./interfaces/IOwnableTwoSteps.sol";

/**
 * @title OwnableTwoSteps
 * @notice This contract offers transfer of ownership in two steps with potential owner
 *         having to confirm the transaction to become the owner.
 *         Renouncement of the ownership is also a two-step process since the next potential owner is the address(0).
 * @author LooksRare protocol team (👀,💎)
 */
abstract contract OwnableTwoSteps is IOwnableTwoSteps {
    /**
     * @notice Address of the current owner.
     */
    address public owner;

    /**
     * @notice Address of the potential owner.
     */
    address public potentialOwner;

    /**
     * @notice Ownership status.
     */
    Status public ownershipStatus;

    /**
     * @notice Modifier to wrap functions for contracts that inherit this contract.
     */
    modifier onlyOwner() {
        _onlyOwner();
        _;
    }

    /**
     * @notice Constructor
     * @param _owner The contract's owner
     */
    constructor(address _owner) {
        owner = _owner;
        emit NewOwner(_owner);
    }

    /**
     * @notice This function is used to cancel the ownership transfer.
     * @dev This function can be used for both cancelling a transfer to a new owner and
     *      cancelling the renouncement of the ownership.
     */
    function cancelOwnershipTransfer() external onlyOwner {
        Status _ownershipStatus = ownershipStatus;
        if (_ownershipStatus == Status.NoOngoingTransfer) {
            revert NoOngoingTransferInProgress();
        }

        if (_ownershipStatus == Status.TransferInProgress) {
            delete potentialOwner;
        }

        delete ownershipStatus;

        emit CancelOwnershipTransfer();
    }

    /**
     * @notice This function is used to confirm the ownership renouncement.
     */
    function confirmOwnershipRenouncement() external onlyOwner {
        if (ownershipStatus != Status.RenouncementInProgress) {
            revert RenouncementNotInProgress();
        }

        delete owner;
        delete ownershipStatus;

        emit NewOwner(address(0));
    }

    /**
     * @notice This function is used to confirm the ownership transfer.
     * @dev This function can only be called by the current potential owner.
     */
    function confirmOwnershipTransfer() external {
        if (ownershipStatus != Status.TransferInProgress) {
            revert TransferNotInProgress();
        }

        if (msg.sender != potentialOwner) {
            revert WrongPotentialOwner();
        }

        owner = msg.sender;
        delete ownershipStatus;
        delete potentialOwner;

        emit NewOwner(msg.sender);
    }

    /**
     * @notice This function is used to initiate the transfer of ownership to a new owner.
     * @param newPotentialOwner New potential owner address
     */
    function initiateOwnershipTransfer(address newPotentialOwner) external onlyOwner {
        if (ownershipStatus != Status.NoOngoingTransfer) {
            revert TransferAlreadyInProgress();
        }

        ownershipStatus = Status.TransferInProgress;
        potentialOwner = newPotentialOwner;

        /**
         * @dev This function can only be called by the owner, so msg.sender is the owner.
         *      We don't have to SLOAD the owner again.
         */
        emit InitiateOwnershipTransfer(msg.sender, newPotentialOwner);
    }

    /**
     * @notice This function is used to initiate the ownership renouncement.
     */
    function initiateOwnershipRenouncement() external onlyOwner {
        if (ownershipStatus != Status.NoOngoingTransfer) {
            revert TransferAlreadyInProgress();
        }

        ownershipStatus = Status.RenouncementInProgress;

        emit InitiateOwnershipRenouncement();
    }

    function _onlyOwner() private view {
        if (msg.sender != owner) revert NotOwner();
    }
}

File 5 of 9 : IBlast.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;

interface IBlast {
    function configureClaimableGas() external;

    function configureGovernor(address _governor) external;
}

File 6 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

File 7 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 8 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 9 of 9 : IOwnableTwoSteps.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

/**
 * @title IOwnableTwoSteps
 * @author LooksRare protocol team (👀,💎)
 */
interface IOwnableTwoSteps {
    /**
     * @notice This enum keeps track of the ownership status.
     * @param NoOngoingTransfer The default status when the owner is set
     * @param TransferInProgress The status when a transfer to a new owner is initialized
     * @param RenouncementInProgress The status when a transfer to address(0) is initialized
     */
    enum Status {
        NoOngoingTransfer,
        TransferInProgress,
        RenouncementInProgress
    }

    /**
     * @notice This is returned when there is no transfer of ownership in progress.
     */
    error NoOngoingTransferInProgress();

    /**
     * @notice This is returned when the caller is not the owner.
     */
    error NotOwner();

    /**
     * @notice This is returned when there is no renouncement in progress but
     *         the owner tries to validate the ownership renouncement.
     */
    error RenouncementNotInProgress();

    /**
     * @notice This is returned when the transfer is already in progress but the owner tries
     *         initiate a new ownership transfer.
     */
    error TransferAlreadyInProgress();

    /**
     * @notice This is returned when there is no ownership transfer in progress but the
     *         ownership change tries to be approved.
     */
    error TransferNotInProgress();

    /**
     * @notice This is returned when the ownership transfer is attempted to be validated by the
     *         a caller that is not the potential owner.
     */
    error WrongPotentialOwner();

    /**
     * @notice This is emitted if the ownership transfer is cancelled.
     */
    event CancelOwnershipTransfer();

    /**
     * @notice This is emitted if the ownership renouncement is initiated.
     */
    event InitiateOwnershipRenouncement();

    /**
     * @notice This is emitted if the ownership transfer is initiated.
     * @param previousOwner Previous/current owner
     * @param potentialOwner Potential/future owner
     */
    event InitiateOwnershipTransfer(address previousOwner, address potentialOwner);

    /**
     * @notice This is emitted when there is a new owner.
     */
    event NewOwner(address newOwner);
}

Settings
{
  "remappings": [
    "@chainlink/=node_modules/@chainlink/",
    "@ensdomains/=node_modules/@ensdomains/",
    "@eth-optimism/=node_modules/@eth-optimism/",
    "@looksrare/=node_modules/@looksrare/",
    "@openzeppelin/=node_modules/@openzeppelin/",
    "@uniswap/=node_modules/@uniswap/",
    "base64-sol/=node_modules/base64-sol/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "eth-gas-reporter/=node_modules/eth-gas-reporter/",
    "forge-std/=lib/forge-std/src/",
    "hardhat/=node_modules/hardhat/",
    "vrf-contracts/=lib/vrf-contracts/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 888888
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "viaIR": true,
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_blast","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"NoOngoingTransferInProgress","type":"error"},{"inputs":[],"name":"NotClaimable","type":"error"},{"inputs":[],"name":"NotOwner","type":"error"},{"inputs":[],"name":"RenouncementNotInProgress","type":"error"},{"inputs":[],"name":"TransferAlreadyInProgress","type":"error"},{"inputs":[],"name":"TransferNotAllowed","type":"error"},{"inputs":[],"name":"TransferNotInProgress","type":"error"},{"inputs":[],"name":"WrongPotentialOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"CancelOwnershipTransfer","type":"event"},{"anonymous":false,"inputs":[],"name":"InitiateOwnershipRenouncement","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":false,"internalType":"address","name":"potentialOwner","type":"address"}],"name":"InitiateOwnershipTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"transferrer","type":"address"},{"indexed":false,"internalType":"bool","name":"allowed","type":"bool"}],"name":"IsAllowedToTransferUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"NewOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MERKLE_ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"canClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cancelOwnershipTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"confirmOwnershipRenouncement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"confirmOwnershipTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"hasUserClaimed","outputs":[{"internalType":"bool","name":"hasClaimed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initiateOwnershipRenouncement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPotentialOwner","type":"address"}],"name":"initiateOwnershipTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"transferrer","type":"address"}],"name":"isAllowedToTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownershipStatus","outputs":[{"internalType":"enum IOwnableTwoSteps.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"potentialOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"transferrer","type":"address"},{"internalType":"bool","name":"allowed","type":"bool"}],"name":"setIsAllowedToTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a0346200052257601f6200221338819003918201601f191683019260009290916001600160401b038511838610176200050e5781606092849260409788528339810103126200050a5780519062000067846200005f602084016200056d565b92016200056d565b8451620000748162000551565b600b81526a2137b7b9ba102a37b5b2b760a91b60208201528551906200009a8262000551565b60058252641093d3d4d560da1b60208301528051906001600160401b038211620004f657600354600181811c91168015620004eb575b6020821014620004d7579081601f84931162000464575b50602090601f8311600114620003dc578892620003d0575b50508160011b916000199060031b1c1916176003555b8051906001600160401b038211620003bc57600454600181811c91168015620003b1575b60208210146200039d579081601f8493116200032a575b50602090601f8311600114620002a257879262000296575b50508160011b916000199060031b1c1916176004555b600580546001600160a01b0319166001600160a01b0393841690811790915585518181529093907f3edd90e7770f06fafde38004653b33870066c33bfc923ff6102acd601f85dfbc90602090a16080521690813b1562000272578351634e606c4760e01b8152838160048183875af180156200028c5762000276575b50813b15620002725782916024839286519485938492631d70c8d360e31b845260048401525af1801562000268576200024d575b8251611c909081620005838239608051818181610a870152611b0c0152f35b62000259829162000527565b6200026557806200022e565b80fd5b83513d84823e3d90fd5b8280fd5b620002849093919362000527565b9138620001fa565b85513d86823e3d90fd5b01519050388062000168565b600488527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b9250601f198416885b818110620003115750908460019594939210620002f7575b505050811b016004556200017e565b015160001960f88460031b161c19169055388080620002e8565b92936020600181928786015181550195019301620002d0565b600488529091507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b601f840160051c8101916020851062000392575b90601f859493920160051c01905b81811062000383575062000150565b88815584935060010162000374565b909150819062000366565b634e487b7160e01b87526022600452602487fd5b90607f169062000139565b634e487b7160e01b86526041600452602486fd5b015190503880620000ff565b600389527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b9250601f198416895b8181106200044b575090846001959493921062000431575b505050811b0160035562000115565b015160001960f88460031b161c1916905538808062000422565b929360206001819287860151815501950193016200040a565b600389529091507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b601f840160051c81019160208510620004cc575b90601f859493920160051c01905b818110620004bd5750620000e7565b898155849350600101620004ae565b9091508190620004a0565b634e487b7160e01b88526022600452602488fd5b90607f1690620000d0565b634e487b7160e01b87526041600452602487fd5b5080fd5b634e487b7160e01b84526041600452602484fd5b600080fd5b6001600160401b0381116200053b57604052565b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b038211176200053b57604052565b51906001600160a01b0382168203620005225756fe608060408181526004918236101561001657600080fd5b600092833560e01c91826306fdde031461135b57508163095ea7b31461131357816318160ddd146112d65781631fc8e88c1461120f57816323452b9c1461111057816323b872dd14610fe25781632bb5a9e614610f695781632f52ebb714610df7578163313ce56714610dbd5781633950935114610d435781633e56753914610c4e57816342966c6814610aaa57816351e75e8b14610a515781635b6ac0111461094a57816370a08231146108e95781637200b8291461078a5781637762df25146107375781638da5cb5b146106e457816395d89b411461058a578163a195b69c14610523578163a457c2d714610420578163a9059cbb146103d1578163c0b6f5611461029b578163c3a360a614610234578163dc38bdb5146101b9575063dd62ed3e1461014357600080fd5b346101b557807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b5578060209261017d611507565b61018561152f565b73ffffffffffffffffffffffffffffffffffffffff91821683526001865283832091168252845220549051908152f35b5080fd5b9050346102305760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610230576101f2611507565b926044359067ffffffffffffffff821161022d57509261021a61022492602095369101611552565b9160243590611a0b565b90519015158152f35b80fd5b8280fd5b5050346101b55760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55760ff8160209373ffffffffffffffffffffffffffffffffffffffff610288611507565b1681526008855220541690519015158152f35b9050346102305760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610230576102d4611507565b6102dc6117a4565b6006549160ff8360a01c1660038110156103a55761037e5750740100000000000000000000000000000000000000007fb86c75c9bffca616b2d314cc914f7c3f1d174255b16b941c3f3ededee276d5ef939273ffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffff00000000000000000000000000000000000000000093169283911617176006558151903382526020820152a180f35b83517f74ed79ae000000000000000000000000000000000000000000000000000000008152fd5b6024866021847f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5050346101b557807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55760209061041961040f611507565b60243590336117ef565b5160018152f35b9050823461022d57827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261022d57610459611507565b918360243592338152600160205281812073ffffffffffffffffffffffffffffffffffffffff861682526020522054908282106104a057602085610419858503873361162f565b60849060208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b5050346101b55760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55760ff8160209373ffffffffffffffffffffffffffffffffffffffff610577611507565b1681526007855220541690519015158152f35b8383346101b557817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55780519180938054916001908360011c92600185169485156106da575b60209586861081146106ae5785895290811561066c5750600114610614575b6106108787610606828c0383611583565b51918291826114a1565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610659575050508261061094610606928201019486806105f5565b805486850188015292860192810161063b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168887015250505050151560051b83010192506106068261061086806105f5565b6024846022857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f16936105d6565b5050346101b557817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55760209073ffffffffffffffffffffffffffffffffffffffff600554169051908152f35b5050346101b557817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55760209073ffffffffffffffffffffffffffffffffffffffff600654169051908152f35b90503461023057827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610230576006549060ff8260a01c1660038110156108bd576001036108965773ffffffffffffffffffffffffffffffffffffffff8216330361086f57507f3edd90e7770f06fafde38004653b33870066c33bfc923ff6102acd601f85dfbc917fffffffffffffffffffffff000000000000000000000000000000000000000000602092337fffffffffffffffffffffffff000000000000000000000000000000000000000060055416176005551660065551338152a180f35b82517fafdcfb92000000000000000000000000000000000000000000000000000000008152fd5b82517f5e4f2826000000000000000000000000000000000000000000000000000000008152fd5b6024856021847f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5050346101b55760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b5578060209273ffffffffffffffffffffffffffffffffffffffff61093b611507565b16815280845220549051908152f35b90503461023057827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610230576109826117a4565b6006549160ff8360a01c166003811015610a25576109ff5783740200000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8516176006557f3ff05a45e46337fa1cbf20996d2eeb927280bce099f37252bcca1040609604ec8180a180f35b517f74ed79ae000000000000000000000000000000000000000000000000000000008152fd5b6024856021857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5050346101b557817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b557602090517f00000000000000000000000000000000000000000000000000000000000000008152f35b9190503461023057602090817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c4a578235923315610bc957610af033611b63565b3385528483528185205490848210610b475750917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef918486959433875286845203818620558360025403600255519283523392a380f35b608490848451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152fd5b8260849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152fd5b8380fd5b90503461023057827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261023057610c866117a4565b6006549060ff8260a01c1660038110156108bd57600203610d1c57507f3edd90e7770f06fafde38004653b33870066c33bfc923ff6102acd601f85dfbc917fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff6020927fffffffffffffffffffffffff0000000000000000000000000000000000000000600554166005551660065551838152a180f35b82517f045c5122000000000000000000000000000000000000000000000000000000008152fd5b5050346101b557807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b557610419602092610db6610d84611507565b913381526001865284812073ffffffffffffffffffffffffffffffffffffffff841682528652846024359120546115f3565b903361162f565b5050346101b557817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b5576020905160128152f35b9190503461023057807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102305781359160243567ffffffffffffffff8111610f6557610e4d610e559136908401611552565b908533611a0b565b15610f3e57338452600760205281842060017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008254161790553315610ee25750610ea1826002546115f3565b6002553383528260205280832082815401905551908152817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60203393a380f35b602060649251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b90517f6247a84e000000000000000000000000000000000000000000000000000000008152fd5b8480fd5b8383346101b557817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55760ff60065460a01c169051916003821015610fb657602083838152f35b806021857f4e487b71000000000000000000000000000000000000000000000000000000006024945252fd5b839150346101b55760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55761101c611507565b61102461152f565b91846044359473ffffffffffffffffffffffffffffffffffffffff8416815260016020528181203382526020522054907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361108a575b6020866104198787876117ef565b8482106110b357509183916110a8602096956104199503338361162f565b91939481935061107c565b60649060208751917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b9190503461023057827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610230576111496117a4565b6006549160ff8360a01c169160038310156108bd5782156111e95750506001146111be575b507fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff600654166006557f8eca980489e87f7dba4f26917aa4bfc906eb3f2b4f7b4b9fd0ff2b8bb3e21ae38180a180f35b7fffffffffffffffffffffffff0000000000000000000000000000000000000000166006553861116e565b517fccf69db7000000000000000000000000000000000000000000000000000000008152fd5b5050346101b557807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b557611247611507565b60243590811515809203610c4a577f314498270f14ec3fa68244d7806af7c9b9d28075995772e60756cc2fc46a7dd69173ffffffffffffffffffffffffffffffffffffffff6020926112976117a4565b1693848652600883528086207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0081541660ff841617905551908152a280f35b5050346101b557817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b5576020906002549051908152f35b5050346101b557807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b557602090610419611351611507565b602435903361162f565b92915034610c4a57837ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c4a57600354600181811c9186908281168015611497575b602095868610821461146b575084885290811561142b57506001146113d2575b6106108686610606828b0383611583565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106114185750505082610610946106069282010194386113c1565b80548685018801529286019281016113fb565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001687860152505050151560051b830101925061060682610610386113c1565b8360226024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f16936113a1565b60208082528251818301819052939260005b8581106114f3575050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006040809697860101520116010190565b8181018301518482016040015282016114b3565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361152a57565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361152a57565b9181601f8401121561152a5782359167ffffffffffffffff831161152a576020808501948460051b01011161152a57565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff8211176115c457604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b9190820180921161160057565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff809116918215611721571691821561169d5760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff6005541633036117c557565b60046040517f30cd7471000000000000000000000000000000000000000000000000000000008152fd5b909173ffffffffffffffffffffffffffffffffffffffff918281169283156119875784169384156119035761182391611bed565b60008281528060205260408120549180831061187f57604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b929193604092835160209273ffffffffffffffffffffffffffffffffffffffff84830197169485885286830152858252606082019667ffffffffffffffff90838910828a11176115c457888852835190206080840190815285895260a0840198808a10838b11176115c4578989525190209084116115c4576005988460051b94611a978787018b611583565b895260c09460c085019082019136831161152a578790915b838310611b535750505050946000955b8851871015611b0157868a1b84018501519088600083831015611af257505060005285526001876000205b960195611abf565b90916001938252885220611aea565b9495509650965050507f0000000000000000000000000000000000000000000000000000000000000000149283611b39575b50505090565b60ff93509060079160005252600020541615388080611b33565b8235815291810191889101611aaf565b73ffffffffffffffffffffffffffffffffffffffff1680158015611be5575b611be257600052600860205260ff604060002054161580611bce575b611ba457565b60046040517f8cd22d19000000000000000000000000000000000000000000000000000000008152fd5b506000805260ff6040600020541615611b9e565b50565b506001611b82565b73ffffffffffffffffffffffffffffffffffffffff80911680158015611c50575b611c4b57600052600860205260ff60406000205416159182611c33575b5050611ba457565b9091501660005260ff60406000205416153880611c2b565b505050565b5081831615611c0e56fea26469706673582212208a4b61510de3a78bb23003f908664500bfe6975b94902cd123653fb2bdc2de3964736f6c63430008170033ab541131ce5d84faec5e21ee72d90514a163d518f5db0849ae70080f6b72ab170000000000000000000000002c64e6ee1dd9fc2a0db6a6b1aa2c3f163c7a2c780000000000000000000000004300000000000000000000000000000000000002

Deployed Bytecode

0x608060408181526004918236101561001657600080fd5b600092833560e01c91826306fdde031461135b57508163095ea7b31461131357816318160ddd146112d65781631fc8e88c1461120f57816323452b9c1461111057816323b872dd14610fe25781632bb5a9e614610f695781632f52ebb714610df7578163313ce56714610dbd5781633950935114610d435781633e56753914610c4e57816342966c6814610aaa57816351e75e8b14610a515781635b6ac0111461094a57816370a08231146108e95781637200b8291461078a5781637762df25146107375781638da5cb5b146106e457816395d89b411461058a578163a195b69c14610523578163a457c2d714610420578163a9059cbb146103d1578163c0b6f5611461029b578163c3a360a614610234578163dc38bdb5146101b9575063dd62ed3e1461014357600080fd5b346101b557807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b5578060209261017d611507565b61018561152f565b73ffffffffffffffffffffffffffffffffffffffff91821683526001865283832091168252845220549051908152f35b5080fd5b9050346102305760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610230576101f2611507565b926044359067ffffffffffffffff821161022d57509261021a61022492602095369101611552565b9160243590611a0b565b90519015158152f35b80fd5b8280fd5b5050346101b55760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55760ff8160209373ffffffffffffffffffffffffffffffffffffffff610288611507565b1681526008855220541690519015158152f35b9050346102305760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610230576102d4611507565b6102dc6117a4565b6006549160ff8360a01c1660038110156103a55761037e5750740100000000000000000000000000000000000000007fb86c75c9bffca616b2d314cc914f7c3f1d174255b16b941c3f3ededee276d5ef939273ffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffff00000000000000000000000000000000000000000093169283911617176006558151903382526020820152a180f35b83517f74ed79ae000000000000000000000000000000000000000000000000000000008152fd5b6024866021847f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5050346101b557807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55760209061041961040f611507565b60243590336117ef565b5160018152f35b9050823461022d57827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261022d57610459611507565b918360243592338152600160205281812073ffffffffffffffffffffffffffffffffffffffff861682526020522054908282106104a057602085610419858503873361162f565b60849060208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b5050346101b55760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55760ff8160209373ffffffffffffffffffffffffffffffffffffffff610577611507565b1681526007855220541690519015158152f35b8383346101b557817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55780519180938054916001908360011c92600185169485156106da575b60209586861081146106ae5785895290811561066c5750600114610614575b6106108787610606828c0383611583565b51918291826114a1565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610659575050508261061094610606928201019486806105f5565b805486850188015292860192810161063b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168887015250505050151560051b83010192506106068261061086806105f5565b6024846022857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f16936105d6565b5050346101b557817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55760209073ffffffffffffffffffffffffffffffffffffffff600554169051908152f35b5050346101b557817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55760209073ffffffffffffffffffffffffffffffffffffffff600654169051908152f35b90503461023057827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610230576006549060ff8260a01c1660038110156108bd576001036108965773ffffffffffffffffffffffffffffffffffffffff8216330361086f57507f3edd90e7770f06fafde38004653b33870066c33bfc923ff6102acd601f85dfbc917fffffffffffffffffffffff000000000000000000000000000000000000000000602092337fffffffffffffffffffffffff000000000000000000000000000000000000000060055416176005551660065551338152a180f35b82517fafdcfb92000000000000000000000000000000000000000000000000000000008152fd5b82517f5e4f2826000000000000000000000000000000000000000000000000000000008152fd5b6024856021847f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5050346101b55760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b5578060209273ffffffffffffffffffffffffffffffffffffffff61093b611507565b16815280845220549051908152f35b90503461023057827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610230576109826117a4565b6006549160ff8360a01c166003811015610a25576109ff5783740200000000000000000000000000000000000000007fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8516176006557f3ff05a45e46337fa1cbf20996d2eeb927280bce099f37252bcca1040609604ec8180a180f35b517f74ed79ae000000000000000000000000000000000000000000000000000000008152fd5b6024856021857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5050346101b557817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b557602090517fab541131ce5d84faec5e21ee72d90514a163d518f5db0849ae70080f6b72ab178152f35b9190503461023057602090817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c4a578235923315610bc957610af033611b63565b3385528483528185205490848210610b475750917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef918486959433875286845203818620558360025403600255519283523392a380f35b608490848451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152fd5b8260849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152fd5b8380fd5b90503461023057827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261023057610c866117a4565b6006549060ff8260a01c1660038110156108bd57600203610d1c57507f3edd90e7770f06fafde38004653b33870066c33bfc923ff6102acd601f85dfbc917fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff6020927fffffffffffffffffffffffff0000000000000000000000000000000000000000600554166005551660065551838152a180f35b82517f045c5122000000000000000000000000000000000000000000000000000000008152fd5b5050346101b557807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b557610419602092610db6610d84611507565b913381526001865284812073ffffffffffffffffffffffffffffffffffffffff841682528652846024359120546115f3565b903361162f565b5050346101b557817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b5576020905160128152f35b9190503461023057807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102305781359160243567ffffffffffffffff8111610f6557610e4d610e559136908401611552565b908533611a0b565b15610f3e57338452600760205281842060017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008254161790553315610ee25750610ea1826002546115f3565b6002553383528260205280832082815401905551908152817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60203393a380f35b602060649251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b90517f6247a84e000000000000000000000000000000000000000000000000000000008152fd5b8480fd5b8383346101b557817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55760ff60065460a01c169051916003821015610fb657602083838152f35b806021857f4e487b71000000000000000000000000000000000000000000000000000000006024945252fd5b839150346101b55760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b55761101c611507565b61102461152f565b91846044359473ffffffffffffffffffffffffffffffffffffffff8416815260016020528181203382526020522054907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361108a575b6020866104198787876117ef565b8482106110b357509183916110a8602096956104199503338361162f565b91939481935061107c565b60649060208751917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b9190503461023057827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610230576111496117a4565b6006549160ff8360a01c169160038310156108bd5782156111e95750506001146111be575b507fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff600654166006557f8eca980489e87f7dba4f26917aa4bfc906eb3f2b4f7b4b9fd0ff2b8bb3e21ae38180a180f35b7fffffffffffffffffffffffff0000000000000000000000000000000000000000166006553861116e565b517fccf69db7000000000000000000000000000000000000000000000000000000008152fd5b5050346101b557807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b557611247611507565b60243590811515809203610c4a577f314498270f14ec3fa68244d7806af7c9b9d28075995772e60756cc2fc46a7dd69173ffffffffffffffffffffffffffffffffffffffff6020926112976117a4565b1693848652600883528086207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0081541660ff841617905551908152a280f35b5050346101b557817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b5576020906002549051908152f35b5050346101b557807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101b557602090610419611351611507565b602435903361162f565b92915034610c4a57837ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610c4a57600354600181811c9186908281168015611497575b602095868610821461146b575084885290811561142b57506001146113d2575b6106108686610606828b0383611583565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106114185750505082610610946106069282010194386113c1565b80548685018801529286019281016113fb565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001687860152505050151560051b830101925061060682610610386113c1565b8360226024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f16936113a1565b60208082528251818301819052939260005b8581106114f3575050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006040809697860101520116010190565b8181018301518482016040015282016114b3565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361152a57565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361152a57565b9181601f8401121561152a5782359167ffffffffffffffff831161152a576020808501948460051b01011161152a57565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff8211176115c457604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b9190820180921161160057565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff809116918215611721571691821561169d5760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff6005541633036117c557565b60046040517f30cd7471000000000000000000000000000000000000000000000000000000008152fd5b909173ffffffffffffffffffffffffffffffffffffffff918281169283156119875784169384156119035761182391611bed565b60008281528060205260408120549180831061187f57604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b929193604092835160209273ffffffffffffffffffffffffffffffffffffffff84830197169485885286830152858252606082019667ffffffffffffffff90838910828a11176115c457888852835190206080840190815285895260a0840198808a10838b11176115c4578989525190209084116115c4576005988460051b94611a978787018b611583565b895260c09460c085019082019136831161152a578790915b838310611b535750505050946000955b8851871015611b0157868a1b84018501519088600083831015611af257505060005285526001876000205b960195611abf565b90916001938252885220611aea565b9495509650965050507fab541131ce5d84faec5e21ee72d90514a163d518f5db0849ae70080f6b72ab17149283611b39575b50505090565b60ff93509060079160005252600020541615388080611b33565b8235815291810191889101611aaf565b73ffffffffffffffffffffffffffffffffffffffff1680158015611be5575b611be257600052600860205260ff604060002054161580611bce575b611ba457565b60046040517f8cd22d19000000000000000000000000000000000000000000000000000000008152fd5b506000805260ff6040600020541615611b9e565b50565b506001611b82565b73ffffffffffffffffffffffffffffffffffffffff80911680158015611c50575b611c4b57600052600860205260ff60406000205416159182611c33575b5050611ba457565b9091501660005260ff60406000205416153880611c2b565b505050565b5081831615611c0e56fea26469706673582212208a4b61510de3a78bb23003f908664500bfe6975b94902cd123653fb2bdc2de3964736f6c63430008170033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

ab541131ce5d84faec5e21ee72d90514a163d518f5db0849ae70080f6b72ab170000000000000000000000002c64e6ee1dd9fc2a0db6a6b1aa2c3f163c7a2c780000000000000000000000004300000000000000000000000000000000000002

-----Decoded View---------------
Arg [0] : _merkleRoot (bytes32): 0xab541131ce5d84faec5e21ee72d90514a163d518f5db0849ae70080f6b72ab17
Arg [1] : _owner (address): 0x2C64e6Ee1Dd9Fc2a0Db6a6B1aa2c3f163C7A2C78
Arg [2] : _blast (address): 0x4300000000000000000000000000000000000002

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : ab541131ce5d84faec5e21ee72d90514a163d518f5db0849ae70080f6b72ab17
Arg [1] : 0000000000000000000000002c64e6ee1dd9fc2a0db6a6b1aa2c3f163c7a2c78
Arg [2] : 0000000000000000000000004300000000000000000000000000000000000002


Deployed Bytecode Sourcemap

353:3133:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;4102:11:4;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2357:36;353:3133;;;;;;;:::i;:::-;;;;2357:36;;:::i;:::-;353:3133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;535:63;353:3133;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;926:61:2;;:::i;:::-;3027:15;353:3133:0;;;;;;;;;;;;;3023:108:2;;353:3133:0;;3415:56:2;353:3133:0;;;;;;;;;;;;3027:15:2;353:3133:0;;;3441:10:2;;353:3133:0;;;;;;3415:56:2;353:3133:0;;3023:108:2;353:3133:0;;3093:27:2;;;;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;3894:6:4;353:3133:0;;:::i;:::-;;;719:10:7;;3894:6:4;:::i;:::-;353:3133:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;719:10:7;;353:3133:0;;;;;;;;;;;;;;;;;6792:35:4;;;;353:3133:0;;;;6928:34:4;353:3133:0;;;;719:10:7;6928:34:4;:::i;353:3133:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;467:62;353:3133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;353:3133:0;;;;;;;;-1:-1:-1;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;615:20:2;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;705:29:2;353:3133:0;;;;;;;;;;;;;;;;;;;;;2427:15:2;353:3133:0;;;;;;;;;;;;;2446:25:2;2427:44;2423:105;;353:3133:0;;;2542:10:2;:28;2538:87;;2542:10;2732:20;2542:10;353:3133:0;;2542:10:2;;353:3133:0;2635:18:2;353:3133:0;;;2635:18:2;353:3133:0;;2427:15:2;353:3133:0;;2542:10:2;353:3133:0;;2732:20:2;353:3133:0;;2538:87:2;353:3133:0;;2593:21:2;;;;2423:105;353:3133:0;;2494:23:2;;;;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;926:61:2;;:::i;:::-;3651:15;353:3133:0;;;;;;;;;;;;;3647:108:2;;353:3133:0;;;;;;3651:15:2;353:3133:0;3828:31:2;;;;353:3133:0;;3647:108:2;353:3133:0;3717:27:2;;;;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;;424:36;353:3133;;;;;;;;;;;;;;;;;;;;;1559:10;;9458:21:4;353:3133:0;;;1559:10;353:3133;:::i;:::-;1559:10;353:3133;;;;;;;;;9649:24:4;;;;353:3133:0;;1559:10;;9931:37:4;1559:10:0;;;;;;353:3133;;;;;;;;;;;9883:22:4;353:3133:0;;9883:22:4;353:3133:0;;;;;1559:10;9931:37:4;;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;926:61:2;;:::i;:::-;1991:15;353:3133:0;;;;;;;;;;;;;2010:29:2;1991:48;1987:113;;353:3133:0;2170:20:2;353:3133:0;;;;;2110:12:2;353:3133:0;;2110:12:2;353:3133:0;;1991:15:2;353:3133:0;;;;;2170:20:2;353:3133:0;;1987:113:2;353:3133:0;;2062:27:2;;;;353:3133:0;;;;;;;;;;;;;6021:38:4;353:3133:0;;6021:38:4;353:3133:0;;:::i;:::-;719:10:7;;353:3133:0;;;;;;;;;;;;;;;;;;;;;6021:38:4;:::i;:::-;719:10:7;;6021:38:4;:::i;353:3133:0:-;;;;;;;;;;;;;;;;3186:2:4;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1215:42;353:3133;;;;;;:::i;:::-;1225:10;;;1215:42;:::i;:::-;1214:43;1210:95;;1225:10;353:3133;;1315:14;353:3133;;;;;;;;;;;;;1225:10;8603:21:4;353:3133:0;;;8731:22:4;353:3133:0;8731:22:4;353:3133:0;8731:22:4;:::i;:::-;;353:3133:0;1225:10;353:3133;;;;;;;;;;;;;;;;;;1225:10;8952:37:4;353:3133:0;1225:10;8952:37:4;;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;1210:95;353:3133;;1280:14;;;;353:3133;;;;;;;;;;;;;;;;;;790:29:2;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;719:10:7;353:3133:0;;;;;;11244:37:4;11264:17;11244:37;;11240:243;;353:3133:0;;5424:6:4;;;;;;:::i;11240:243::-;11305:26;;;353:3133:0;;;;;;11432:25:4;353:3133:0;;;5424:6:4;353:3133:0;;719:10:7;11432:25:4;;:::i;:::-;11240:243;;;;;;;;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;926:61:2;;:::i;:::-;1497:15;353:3133:0;;;;;;;;;;;;;;1526:44:2;;1522:111;;1647:45;;353:3133:0;1647:45:2;1643:97;;353:3133:0;;;1497:15:2;353:3133:0;;1497:15:2;353:3133:0;1788:25:2;;;;353:3133:0;;1643:97:2;353:3133:0;;1497:15:2;353:3133:0;1643:97:2;;;1522:111;353:3133:0;1593:29:2;;;;353:3133:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;1971:48;926:61:2;353:3133:0;;926:61:2;;;:::i;:::-;353:3133:0;;;;;1914:19;353:3133;;;;;;;;;;;;;;;;;;;1971:48;353:3133;;;;;;;;;;;;;;;;;3342:12:4;353:3133:0;;;;;;;;;;;;;;;;;;;;;;4606:6:4;353:3133:0;;:::i;:::-;;;719:10:7;;4606:6:4;:::i;353:3133:0:-;;;;;;;;;;;;;;2244:5:4;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;2244:5:4;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;353:3133:0;;;;;;;;-1:-1:-1;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;10457:340:4;353:3133:0;;;;10558:19:4;;;353:3133:0;;;10636:21:4;;;353:3133:0;;;10758:32:4;353:3133:0;;10575:1:4;353:3133:0;10707:11:4;353:3133:0;;;10575:1:4;353:3133:0;;10575:1:4;353:3133:0;;;;;10575:1:4;353:3133:0;;;;;;;10758:32:4;10457:340::o;353:3133:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3872:94:2;353:3133:0;3935:5:2;353:3133:0;;3921:10:2;:19;3917:42;;3872:94::o;3917:42::-;3949:10;353:3133:0;;3949:10:2;;;;7456:788:4;;;353:3133:0;;;;;7552:18:4;;;353:3133:0;;;;7630:16:4;;;353:3133:0;;;;;:::i;:::-;7568:1:4;353:3133:0;;;;;;;;;;7801:21:4;;;;353:3133:0;;;;;8163:26:4;353:3133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8163:26:4;7456:788::o;353:3133:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2605:350;;;;353:3133;;;;2829:24;;353:3133;2829:24;;;353:3133;;;;;;;;;;2829:24;;;353:3133;;;;;;;;;;;;;;;;;;;;2819:35;;353:3133;;;;;;;;;;;;;;;;;;;;;;;;;;2796:60;;353:3133;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;2036:27:8;;;;2078:13;-1:-1:-1;2073:116:8;2111:3;353:3133:0;;2093:16:8;;;;;353:3133:0;;;;;;;;;9294:51:8;-1:-1:-1;9294:5:8;;;;;;9494:119;;-1:-1:-1;9494:119:8;;;353:3133:0;9494:119:8;-1:-1:-1;9494:119:8;9294:51;2111:3;353:3133:0;2078:13:8;;;9294:51;9494:119;;353:3133:0;9494:119:8;;;;;;9294:51;;2093:16;;;;;;;;;;2905:11:0;1270:33:8;2873:75:0;;;;2073:116:8;2866:82:0;;;2605:350;:::o;2873:75::-;353:3133;;;;2928:14;353:3133;-1:-1:-1;353:3133:0;;-1:-1:-1;353:3133:0;;;2927:21;2873:75;;;;;353:3133;;;;;;;;;;;;;;3183:301;353:3133;;3285:18;;:38;;;;3183:301;3281:75;;353:3133;;3371:19;353:3133;;;;;;;;3370:26;:54;;;3183:301;3366:112;;3183:301::o;3366:112::-;3447:20;353:3133;;3447:20;;;;3370:54;353:3133;;;;;;;;;;3400:24;3370:54;;3281:75;3339:7;:::o;3285:38::-;;3307:16;3285:38;;3183:301;353:3133;;;;3285:18;;:38;;;;3183:301;3281:75;;3301:1;353:3133;3371:19;353:3133;;;;3301:1;353:3133;;;3370:26;:54;;;;3183:301;3366:112;;;;3183:301::o;3370:54::-;353:3133;;;;3301:1;353:3133;;;3301:1;353:3133;;;3400:24;3370:54;;;;3281:75;3339:7;;;:::o;3285:38::-;353:3133;;;;3307:16;3285:38;

Swarm Source

ipfs://8a4b61510de3a78bb23003f908664500bfe6975b94902cd123653fb2bdc2de39

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
Loading...
Loading

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.