ETH Price: $2,602.77 (-0.41%)

Contract

0x5c325B9A935c2ad374BF236cDD647D44013FF2B4
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Withdraw149816022022-06-17 22:25:31852 days ago1655504731IN
0x5c325B9A...4013FF2B4
0 ETH0.0010919927.58049389
Transfer ERC20149815652022-06-17 22:16:45852 days ago1655504205IN
0x5c325B9A...4013FF2B4
0 ETH0.0031974335.69605272
Transfer ERC20149812762022-06-17 20:59:42853 days ago1655499582IN
0x5c325B9A...4013FF2B4
0 ETH0.0022028120.65000526
Transfer ERC20149811792022-06-17 20:37:53853 days ago1655498273IN
0x5c325B9A...4013FF2B4
0 ETH0.0035883324.92696813
Transfer ERC20149811522022-06-17 20:31:59853 days ago1655497919IN
0x5c325B9A...4013FF2B4
0 ETH0.001941821.68379244
Transfer ERC20149811452022-06-17 20:30:40853 days ago1655497840IN
0x5c325B9A...4013FF2B4
0 ETH0.0023096825.7852665
Transfer ERC20149807882022-06-17 19:06:31853 days ago1655492791IN
0x5c325B9A...4013FF2B4
0 ETH0.0148865549.89743454
Transfer ERC20149807172022-06-17 18:47:05853 days ago1655491625IN
0x5c325B9A...4013FF2B4
0 ETH0.0056872353.30268511
Transfer ERC20149805542022-06-17 18:06:32853 days ago1655489192IN
0x5c325B9A...4013FF2B4
0 ETH0.0049926555.75207854
Transfer ERC20149805522022-06-17 18:06:01853 days ago1655489161IN
0x5c325B9A...4013FF2B4
0 ETH0.0051713757.74783751
Transfer ERC20149805492022-06-17 18:05:00853 days ago1655489100IN
0x5c325B9A...4013FF2B4
0 ETH0.0051596157.61646175
Transfer ERC20149805482022-06-17 18:04:47853 days ago1655489087IN
0x5c325B9A...4013FF2B4
0 ETH0.0017911351.92290256
Transfer ERC20149805482022-06-17 18:04:47853 days ago1655489087IN
0x5c325B9A...4013FF2B4
0 ETH0.0046497451.92290256
Transfer ERC20149805412022-06-17 18:02:59853 days ago1655488979IN
0x5c325B9A...4013FF2B4
0 ETH0.0062590269.89343798
Transfer ERC20149805402022-06-17 18:02:43853 days ago1655488963IN
0x5c325B9A...4013FF2B4
0 ETH0.0057999864.76734474
Transfer ERC20149805382022-06-17 18:01:44853 days ago1655488904IN
0x5c325B9A...4013FF2B4
0 ETH0.0056974663.62257385
Transfer ERC20149805352022-06-17 18:00:59853 days ago1655488859IN
0x5c325B9A...4013FF2B4
0 ETH0.0055607762.09621979
Transfer ERC20149805272022-06-17 17:58:53853 days ago1655488733IN
0x5c325B9A...4013FF2B4
0 ETH0.0056811463.44031491
Transfer ERC20149805262022-06-17 17:58:45853 days ago1655488725IN
0x5c325B9A...4013FF2B4
0 ETH0.0053056659.24740483
Transfer ERC20149805252022-06-17 17:57:44853 days ago1655488664IN
0x5c325B9A...4013FF2B4
0 ETH0.0047317652.83877669
Transfer ERC20149805232022-06-17 17:56:43853 days ago1655488603IN
0x5c325B9A...4013FF2B4
0 ETH0.0038379342.8574985
Transfer ERC20149805192022-06-17 17:56:01853 days ago1655488561IN
0x5c325B9A...4013FF2B4
0 ETH0.001797152.09607428
Transfer ERC20149805172022-06-17 17:55:32853 days ago1655488532IN
0x5c325B9A...4013FF2B4
0 ETH0.0040592845.32934892
Transfer ERC20149805172022-06-17 17:55:32853 days ago1655488532IN
0x5c325B9A...4013FF2B4
0 ETH0.0040727245.47934892
Transfer ERC20149805062022-06-17 17:52:53853 days ago1655488373IN
0x5c325B9A...4013FF2B4
0 ETH0.0037046841.36959165
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
WAItokenclaim

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-16
*/

// File: updatedclaim.sol

/**
 *Submitted for verification at Etherscan.io on 2022-06-07
*/

// File: latestclaim.sol

/**
 *Submitted for verification at Etherscan.io on 2022-05-20
*/

// File: WAItokenclaim.sol

pragma solidity >=0.8.0;

/// @notice Modern, minimalist, and gas efficient ERC-721 implementation.
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC721.sol)
abstract contract ERC721 {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event Transfer(address indexed from, address indexed to, uint256 indexed id);

    event Approval(address indexed owner, address indexed spender, uint256 indexed id);

    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /*//////////////////////////////////////////////////////////////
                         METADATA STORAGE/LOGIC
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    function tokenURI(uint256 id) public view virtual returns (string memory);

    /*//////////////////////////////////////////////////////////////
                      ERC721 BALANCE/OWNER STORAGE
    //////////////////////////////////////////////////////////////*/

    mapping(uint256 => address) internal _ownerOf;

    mapping(address => uint256) internal _balanceOf;

    function ownerOf(uint256 id) public view virtual returns (address owner) {
        require((owner = _ownerOf[id]) != address(0), "NOT_MINTED");
    }

    function balanceOf(address owner) public view virtual returns (uint256) {
        require(owner != address(0), "ZERO_ADDRESS");

        return _balanceOf[owner];
    }

    /*//////////////////////////////////////////////////////////////
                         ERC721 APPROVAL STORAGE
    //////////////////////////////////////////////////////////////*/

    mapping(uint256 => address) public getApproved;

    mapping(address => mapping(address => bool)) public isApprovedForAll;

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(string memory _name, string memory _symbol) {
        name = _name;
        symbol = _symbol;
    }

    /*//////////////////////////////////////////////////////////////
                              ERC721 LOGIC
    //////////////////////////////////////////////////////////////*/

    function approve(address spender, uint256 id) public virtual {
        address owner = _ownerOf[id];

        require(msg.sender == owner || isApprovedForAll[owner][msg.sender], "NOT_AUTHORIZED");

        getApproved[id] = spender;

        emit Approval(owner, spender, id);
    }

    function setApprovalForAll(address operator, bool approved) public virtual {
        isApprovedForAll[msg.sender][operator] = approved;

        emit ApprovalForAll(msg.sender, operator, approved);
    }

    function transferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        require(from == _ownerOf[id], "WRONG_FROM");

        require(to != address(0), "INVALID_RECIPIENT");

        require(
            msg.sender == from || isApprovedForAll[from][msg.sender] || msg.sender == getApproved[id],
            "NOT_AUTHORIZED"
        );

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _balanceOf[from]--;

            _balanceOf[to]++;
        }

        _ownerOf[id] = to;

        delete getApproved[id];

        emit Transfer(from, to, id);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        transferFrom(from, to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, from, id, "") ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes calldata data
    ) public virtual {
        transferFrom(from, to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, from, id, data) ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    /*//////////////////////////////////////////////////////////////
                              ERC165 LOGIC
    //////////////////////////////////////////////////////////////*/

    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return
            interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165
            interfaceId == 0x80ac58cd || // ERC165 Interface ID for ERC721
            interfaceId == 0x5b5e139f; // ERC165 Interface ID for ERC721Metadata
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(address to, uint256 id) internal virtual {
        require(to != address(0), "INVALID_RECIPIENT");

        require(_ownerOf[id] == address(0), "ALREADY_MINTED");

        // Counter overflow is incredibly unrealistic.
        unchecked {
            _balanceOf[to]++;
        }

        _ownerOf[id] = to;

        emit Transfer(address(0), to, id);
    }

    function _burn(uint256 id) internal virtual {
        address owner = _ownerOf[id];

        require(owner != address(0), "NOT_MINTED");

        // Ownership check above ensures no underflow.
        unchecked {
            _balanceOf[owner]--;
        }

        delete _ownerOf[id];

        delete getApproved[id];

        emit Transfer(owner, address(0), id);
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL SAFE MINT LOGIC
    //////////////////////////////////////////////////////////////*/

    function _safeMint(address to, uint256 id) internal virtual {
        _mint(to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, address(0), id, "") ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function _safeMint(
        address to,
        uint256 id,
        bytes memory data
    ) internal virtual {
        _mint(to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, address(0), id, data) ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }
}

/// @notice A generic interface for a contract which properly accepts ERC721 tokens.
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC721.sol)
abstract contract ERC721TokenReceiver {
    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC721TokenReceiver.onERC721Received.selector;
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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");

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.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: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: transfer.sol
//SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

interface oldcontract {
        function isclaimed (uint256 tokenId) external view returns (bool claimednft);
        function isClaimedArray (uint[] memory _nftlist) external view returns (uint[] memory _unclaimed);
        function hasClaimed(uint256 key) view external returns (bool);
    }


contract WAItokenclaim  {
    address private constant oldcontractaddress = 0xab9082a8BBf02cabaA04263Df2063BF314C3b7FA;
    ERC721 internal immutable nft;
    address public owner;
    uint256 public balance;
    //uint256 public amount = 1000000000000000000;
    
    uint256 public maxSupply = 7000;
    uint256 public standardAmount = 5555000000000000000000;
    uint256 public deluxeAmount = 8333000000000000000000;
    uint256 public villaAmount = 11111000000000000000000;
    uint256 public executiveAmount = 22222000000000000000000;
    bool public paused = false;

    event TransferReceived(address _from, uint _amount);
    event TransferSent(address _from, address _destAddr, uint _amount);
    event Claimed(uint256 indexed tokenId, address indexed claimer);

    mapping(uint256 => bool) public hasClaimed;
    error NotOwner();
    error AlreadyRedeemed();
    

    constructor(ERC721 _nft) {
        owner = msg.sender;
        nft = _nft;
    }
    
    receive() payable external {
        balance += msg.value;
        emit TransferReceived(msg.sender, msg.value);
    }    

    function pause(bool _state) public {
        require(msg.sender == owner, "Only owner can change contract state");
        paused = _state;
    }

    function updateAmount(uint256 _supply) internal view returns (uint256 _cost) {
        if(_supply <= 3780) {
            return standardAmount;
        }
        if(_supply <= 6160) {
            return deluxeAmount;
        }
        if(_supply <= 6860) {
            return villaAmount;
        }
        if(_supply <= maxSupply) {
            return executiveAmount;
        }
    }

    function withdraw(IERC20 token, uint256 withrawamount) public {
        require(msg.sender == owner, "Only owner can withdraw funds"); 
        uint256 erc20balance = token.balanceOf(address(this));
        require(withrawamount <= erc20balance, "balance is low");
        token.transfer(msg.sender, withrawamount);
        erc20balance -= withrawamount;
        emit TransferSent(msg.sender, msg.sender, withrawamount);
    }
    function ercbalance(IERC20 token) public view returns (uint cbalance) {
        return token.balanceOf(address(this));
    }
    
    function isclaimed (uint256 tokenId) public view returns (bool claimednft) {
        if (hasClaimed[tokenId] || oldcontract(oldcontractaddress).hasClaimed(tokenId)) 
        {
            return true;
        }
        else{
            return false;
        }
    }
    function isClaimedArray (uint[] memory _nftlist) public view returns (uint[] memory _unclaimed) {
        for (uint256 i = 0; i < _nftlist.length; i++) {
            if (hasClaimed[_nftlist[i]] || oldcontract(oldcontractaddress).isclaimed(_nftlist[i])){
                //unclaimedlist.push(_nftlist[i]);
                delete _nftlist[i];
            } 
        }
        return _nftlist;
    }

    function alreadyclaimed(uint256[] memory tokenId) public {
        require(msg.sender == owner, "Only owner can call this function"); 
        for (uint256 i = 0; i < tokenId.length; i++) {
            hasClaimed[tokenId[i]] = true;
        }
    }
    
    function hasDuplicate(uint256[] memory A) internal pure returns (bool) {
        if (A.length == 0) {
            return false;
        }
        for (uint256 i = 0; i < A.length - 1; i++) {
            for (uint256 j = i + 1; j < A.length; j++) {
                if (A[i] == A[j]) {
                    return true;
                }
            }
        }
    }
    function transferERC20(IERC20 token,uint256[] memory tokenId) public {
        require(!paused);
        require(!hasDuplicate(tokenId), "ids has duplicates");
        uint256 totalamount;
        for (uint256 i = 0; i < tokenId.length; i++) {
            if (nft.ownerOf(tokenId[i]) != msg.sender) revert NotOwner();
            if (hasClaimed[tokenId[i]]) revert AlreadyRedeemed();
            if (oldcontract(oldcontractaddress).isclaimed(tokenId[i])) revert AlreadyRedeemed();
            uint256 erc20balance = token.balanceOf(address(this));
            totalamount += updateAmount(tokenId[i]);
            require(totalamount <= erc20balance, "balance is low");
        }
        token.transfer(msg.sender, totalamount);
        emit TransferSent(msg.sender, msg.sender, totalamount);
        for (uint256 i = 0; i < tokenId.length; i++) {
            hasClaimed[tokenId[i]] = true;
        }
    }    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract ERC721","name":"_nft","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyRedeemed","type":"error"},{"inputs":[],"name":"NotOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"claimer","type":"address"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"TransferReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"address","name":"_destAddr","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"TransferSent","type":"event"},{"inputs":[{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"}],"name":"alreadyclaimed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deluxeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"ercbalance","outputs":[{"internalType":"uint256","name":"cbalance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"executiveAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_nftlist","type":"uint256[]"}],"name":"isClaimedArray","outputs":[{"internalType":"uint256[]","name":"_unclaimed","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isclaimed","outputs":[{"internalType":"bool","name":"claimednft","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"standardAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"}],"name":"transferERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"villaAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"withrawamount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052611b5860025569012d231c7c593eec00006003556901c3bb9b15dfb214000060045569025a5419af66253c00006005556904b4a8335ecc4a7800006006556000600760006101000a81548160ff0219169083151502179055503480156200006a57600080fd5b5060405162001dbf38038062001dbf833981810160405281019062000090919062000125565b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505050620001be565b6000815190506200011f81620001a4565b92915050565b6000602082840312156200013e576200013d6200019f565b5b60006200014e848285016200010e565b91505092915050565b600062000164826200017f565b9050919050565b6000620001788262000157565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b620001af816200016b565b8114620001bb57600080fd5b50565b60805160601c611be2620001dd60003960006109760152611be26000f3fe6080604052600436106100f75760003560e01c80638c85642c1161008a578063c971366311610059578063c971366314610389578063ce516507146103b4578063d5abeb01146103f1578063f3fef3a31461041c57610150565b80638c85642c146102df5780638da5cb5b1461030a5780638e3ddf8814610335578063b69ef8a81461035e57610150565b806348c14163116100c657806348c141631461020f5780634adfb63d1461024c5780635c975abb146102895780637d0df733146102b457610150565b806302329a291461015557806303f25ae01461017e5780630853a99f146101a95780633f0bf319146101e657610150565b3661015057346001600082825461010e9190611827565b925050819055507ff1b03f708b9c39f453fe3f0cef84164c7d6f7df836df0796e1e9c2bce6ee397e333460405161014692919061166b565b60405180910390a1005b600080fd5b34801561016157600080fd5b5061017c6004803603810190610177919061133b565b610445565b005b34801561018a57600080fd5b506101936104f0565b6040516101a09190611771565b60405180910390f35b3480156101b557600080fd5b506101d060048036038101906101cb91906112f2565b6104f6565b6040516101dd9190611694565b60405180910390f35b3480156101f257600080fd5b5061020d600480360381019061020891906112f2565b61063e565b005b34801561021b57600080fd5b5061023660048036038101906102319190611395565b610735565b6040516102439190611771565b60405180910390f35b34801561025857600080fd5b50610273600480360381019061026e919061145e565b6107c7565b60405161028091906116b6565b60405180910390f35b34801561029557600080fd5b5061029e6108a6565b6040516102ab91906116b6565b60405180910390f35b3480156102c057600080fd5b506102c96108b9565b6040516102d69190611771565b60405180910390f35b3480156102eb57600080fd5b506102f46108bf565b6040516103019190611771565b60405180910390f35b34801561031657600080fd5b5061031f6108c5565b60405161032c9190611619565b60405180910390f35b34801561034157600080fd5b5061035c600480360381019061035791906113c2565b6108e9565b005b34801561036a57600080fd5b50610373610e2d565b6040516103809190611771565b60405180910390f35b34801561039557600080fd5b5061039e610e33565b6040516103ab9190611771565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d6919061145e565b610e39565b6040516103e891906116b6565b60405180910390f35b3480156103fd57600080fd5b50610406610e59565b6040516104139190611771565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e919061141e565b610e5f565b005b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ca90611751565b60405180910390fd5b80600760006101000a81548160ff02191690831515021790555050565b60055481565b606060005b8251811015610635576008600084838151811061051b5761051a6119b4565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16806105fd575073ab9082a8bbf02cabaa04263df2063bf314c3b7fa73ffffffffffffffffffffffffffffffffffffffff16634adfb63d848381518110610588576105876119b4565b5b60200260200101516040518263ffffffff1660e01b81526004016105ac9190611771565b60206040518083038186803b1580156105c457600080fd5b505afa1580156105d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105fc9190611368565b5b1561062257828181518110610615576106146119b4565b5b6020026020010160008152505b808061062d9061193c565b9150506104fb565b50819050919050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c3906116d1565b60405180910390fd5b60005b8151811015610731576001600860008484815181106106f1576106f06119b4565b5b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107299061193c565b9150506106cf565b5050565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107709190611619565b60206040518083038186803b15801561078857600080fd5b505afa15801561079c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c0919061148b565b9050919050565b60006008600083815260200190815260200160002060009054906101000a900460ff168061088e575073ab9082a8bbf02cabaa04263df2063bf314c3b7fa73ffffffffffffffffffffffffffffffffffffffff1663ce516507836040518263ffffffff1660e01b815260040161083d9190611771565b60206040518083038186803b15801561085557600080fd5b505afa158015610869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088d9190611368565b5b1561089c57600190506108a1565b600090505b919050565b600760009054906101000a900460ff1681565b60045481565b60065481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900460ff161561090357600080fd5b61090c81611099565b1561094c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094390611711565b60405180910390fd5b600080600090505b8251811015610cf8573373ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16636352211e8584815181106109c3576109c26119b4565b5b60200260200101516040518263ffffffff1660e01b81526004016109e79190611771565b60206040518083038186803b1580156109ff57600080fd5b505afa158015610a13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3791906112c5565b73ffffffffffffffffffffffffffffffffffffffff1614610a84576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60086000848381518110610a9b57610a9a6119b4565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615610af6576040517f1b4e0c3c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ab9082a8bbf02cabaa04263df2063bf314c3b7fa73ffffffffffffffffffffffffffffffffffffffff16634adfb63d848381518110610b3957610b386119b4565b5b60200260200101516040518263ffffffff1660e01b8152600401610b5d9190611771565b60206040518083038186803b158015610b7557600080fd5b505afa158015610b89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bad9190611368565b15610be4576040517f1b4e0c3c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c1f9190611619565b60206040518083038186803b158015610c3757600080fd5b505afa158015610c4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6f919061148b565b9050610c94848381518110610c8757610c866119b4565b5b6020026020010151611155565b83610c9f9190611827565b925080831115610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb90611731565b60405180910390fd5b508080610cf09061193c565b915050610954565b508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610d3492919061166b565b602060405180830381600087803b158015610d4e57600080fd5b505af1158015610d62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d869190611368565b507ffda3a3e0e1479b43cb1c701f7576187f4c4ad80768d627387e00184302f7d88e333383604051610dba93929190611634565b60405180910390a160005b8251811015610e2757600160086000858481518110610de757610de66119b4565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e1f9061193c565b915050610dc5565b50505050565b60015481565b60035481565b60086020528060005260406000206000915054906101000a900460ff1681565b60025481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee4906116f1565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f289190611619565b60206040518083038186803b158015610f4057600080fd5b505afa158015610f54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f78919061148b565b905080821115610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490611731565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401610ff892919061166b565b602060405180830381600087803b15801561101257600080fd5b505af1158015611026573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104a9190611368565b508181611057919061187d565b90507ffda3a3e0e1479b43cb1c701f7576187f4c4ad80768d627387e00184302f7d88e33338460405161108c93929190611634565b60405180910390a1505050565b600080825114156110ad5760009050611150565b60005b600183516110be919061187d565b81101561114e5760006001826110d49190611827565b90505b835181101561113a578381815181106110f3576110f26119b4565b5b602002602001015184838151811061110e5761110d6119b4565b5b6020026020010151141561112757600192505050611150565b80806111329061193c565b9150506110d7565b5080806111469061193c565b9150506110b0565b505b919050565b6000610ec4821161116a5760035490506111a4565b611810821161117d5760045490506111a4565b611acc82116111905760055490506111a4565b60025482116111a35760065490506111a4565b5b919050565b60006111bc6111b7846117b1565b61178c565b905080838252602082019050828560208602820111156111df576111de611a17565b5b60005b8581101561120f57816111f5888261129b565b8452602084019350602083019250506001810190506111e2565b5050509392505050565b60008151905061122881611b50565b92915050565b600082601f83011261124357611242611a12565b5b81356112538482602086016111a9565b91505092915050565b60008135905061126b81611b67565b92915050565b60008151905061128081611b67565b92915050565b60008135905061129581611b7e565b92915050565b6000813590506112aa81611b95565b92915050565b6000815190506112bf81611b95565b92915050565b6000602082840312156112db576112da611a21565b5b60006112e984828501611219565b91505092915050565b60006020828403121561130857611307611a21565b5b600082013567ffffffffffffffff81111561132657611325611a1c565b5b6113328482850161122e565b91505092915050565b60006020828403121561135157611350611a21565b5b600061135f8482850161125c565b91505092915050565b60006020828403121561137e5761137d611a21565b5b600061138c84828501611271565b91505092915050565b6000602082840312156113ab576113aa611a21565b5b60006113b984828501611286565b91505092915050565b600080604083850312156113d9576113d8611a21565b5b60006113e785828601611286565b925050602083013567ffffffffffffffff81111561140857611407611a1c565b5b6114148582860161122e565b9150509250929050565b6000806040838503121561143557611434611a21565b5b600061144385828601611286565b92505060206114548582860161129b565b9150509250929050565b60006020828403121561147457611473611a21565b5b60006114828482850161129b565b91505092915050565b6000602082840312156114a1576114a0611a21565b5b60006114af848285016112b0565b91505092915050565b60006114c483836115fb565b60208301905092915050565b6114d9816118b1565b82525050565b60006114ea826117ed565b6114f48185611805565b93506114ff836117dd565b8060005b8381101561153057815161151788826114b8565b9750611522836117f8565b925050600181019050611503565b5085935050505092915050565b611546816118c3565b82525050565b6000611559602183611816565b915061156482611a37565b604082019050919050565b600061157c601d83611816565b915061158782611a86565b602082019050919050565b600061159f601283611816565b91506115aa82611aaf565b602082019050919050565b60006115c2600e83611816565b91506115cd82611ad8565b602082019050919050565b60006115e5602483611816565b91506115f082611b01565b604082019050919050565b61160481611901565b82525050565b61161381611901565b82525050565b600060208201905061162e60008301846114d0565b92915050565b600060608201905061164960008301866114d0565b61165660208301856114d0565b611663604083018461160a565b949350505050565b600060408201905061168060008301856114d0565b61168d602083018461160a565b9392505050565b600060208201905081810360008301526116ae81846114df565b905092915050565b60006020820190506116cb600083018461153d565b92915050565b600060208201905081810360008301526116ea8161154c565b9050919050565b6000602082019050818103600083015261170a8161156f565b9050919050565b6000602082019050818103600083015261172a81611592565b9050919050565b6000602082019050818103600083015261174a816115b5565b9050919050565b6000602082019050818103600083015261176a816115d8565b9050919050565b6000602082019050611786600083018461160a565b92915050565b60006117966117a7565b90506117a2828261190b565b919050565b6000604051905090565b600067ffffffffffffffff8211156117cc576117cb6119e3565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061183282611901565b915061183d83611901565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561187257611871611985565b5b828201905092915050565b600061188882611901565b915061189383611901565b9250828210156118a6576118a5611985565b5b828203905092915050565b60006118bc826118e1565b9050919050565b60008115159050919050565b60006118da826118b1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b61191482611a26565b810181811067ffffffffffffffff82111715611933576119326119e3565b5b80604052505050565b600061194782611901565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561197a57611979611985565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f60008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c79206f776e65722063616e2077697468647261772066756e6473000000600082015250565b7f69647320686173206475706c6963617465730000000000000000000000000000600082015250565b7f62616c616e6365206973206c6f77000000000000000000000000000000000000600082015250565b7f4f6e6c79206f776e65722063616e206368616e676520636f6e7472616374207360008201527f7461746500000000000000000000000000000000000000000000000000000000602082015250565b611b59816118b1565b8114611b6457600080fd5b50565b611b70816118c3565b8114611b7b57600080fd5b50565b611b87816118cf565b8114611b9257600080fd5b50565b611b9e81611901565b8114611ba957600080fd5b5056fea26469706673582212201b39d270e35522f3b75dc3f7c0c3a1cc2b76c7cdb5bc8d32a4bdaabd861d11f664736f6c63430008070033000000000000000000000000bfce321046aaf5879c74cc4555db8fd9629fde92

Deployed Bytecode

0x6080604052600436106100f75760003560e01c80638c85642c1161008a578063c971366311610059578063c971366314610389578063ce516507146103b4578063d5abeb01146103f1578063f3fef3a31461041c57610150565b80638c85642c146102df5780638da5cb5b1461030a5780638e3ddf8814610335578063b69ef8a81461035e57610150565b806348c14163116100c657806348c141631461020f5780634adfb63d1461024c5780635c975abb146102895780637d0df733146102b457610150565b806302329a291461015557806303f25ae01461017e5780630853a99f146101a95780633f0bf319146101e657610150565b3661015057346001600082825461010e9190611827565b925050819055507ff1b03f708b9c39f453fe3f0cef84164c7d6f7df836df0796e1e9c2bce6ee397e333460405161014692919061166b565b60405180910390a1005b600080fd5b34801561016157600080fd5b5061017c6004803603810190610177919061133b565b610445565b005b34801561018a57600080fd5b506101936104f0565b6040516101a09190611771565b60405180910390f35b3480156101b557600080fd5b506101d060048036038101906101cb91906112f2565b6104f6565b6040516101dd9190611694565b60405180910390f35b3480156101f257600080fd5b5061020d600480360381019061020891906112f2565b61063e565b005b34801561021b57600080fd5b5061023660048036038101906102319190611395565b610735565b6040516102439190611771565b60405180910390f35b34801561025857600080fd5b50610273600480360381019061026e919061145e565b6107c7565b60405161028091906116b6565b60405180910390f35b34801561029557600080fd5b5061029e6108a6565b6040516102ab91906116b6565b60405180910390f35b3480156102c057600080fd5b506102c96108b9565b6040516102d69190611771565b60405180910390f35b3480156102eb57600080fd5b506102f46108bf565b6040516103019190611771565b60405180910390f35b34801561031657600080fd5b5061031f6108c5565b60405161032c9190611619565b60405180910390f35b34801561034157600080fd5b5061035c600480360381019061035791906113c2565b6108e9565b005b34801561036a57600080fd5b50610373610e2d565b6040516103809190611771565b60405180910390f35b34801561039557600080fd5b5061039e610e33565b6040516103ab9190611771565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d6919061145e565b610e39565b6040516103e891906116b6565b60405180910390f35b3480156103fd57600080fd5b50610406610e59565b6040516104139190611771565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e919061141e565b610e5f565b005b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ca90611751565b60405180910390fd5b80600760006101000a81548160ff02191690831515021790555050565b60055481565b606060005b8251811015610635576008600084838151811061051b5761051a6119b4565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16806105fd575073ab9082a8bbf02cabaa04263df2063bf314c3b7fa73ffffffffffffffffffffffffffffffffffffffff16634adfb63d848381518110610588576105876119b4565b5b60200260200101516040518263ffffffff1660e01b81526004016105ac9190611771565b60206040518083038186803b1580156105c457600080fd5b505afa1580156105d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105fc9190611368565b5b1561062257828181518110610615576106146119b4565b5b6020026020010160008152505b808061062d9061193c565b9150506104fb565b50819050919050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c3906116d1565b60405180910390fd5b60005b8151811015610731576001600860008484815181106106f1576106f06119b4565b5b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107299061193c565b9150506106cf565b5050565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107709190611619565b60206040518083038186803b15801561078857600080fd5b505afa15801561079c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c0919061148b565b9050919050565b60006008600083815260200190815260200160002060009054906101000a900460ff168061088e575073ab9082a8bbf02cabaa04263df2063bf314c3b7fa73ffffffffffffffffffffffffffffffffffffffff1663ce516507836040518263ffffffff1660e01b815260040161083d9190611771565b60206040518083038186803b15801561085557600080fd5b505afa158015610869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088d9190611368565b5b1561089c57600190506108a1565b600090505b919050565b600760009054906101000a900460ff1681565b60045481565b60065481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900460ff161561090357600080fd5b61090c81611099565b1561094c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094390611711565b60405180910390fd5b600080600090505b8251811015610cf8573373ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000bfce321046aaf5879c74cc4555db8fd9629fde9273ffffffffffffffffffffffffffffffffffffffff16636352211e8584815181106109c3576109c26119b4565b5b60200260200101516040518263ffffffff1660e01b81526004016109e79190611771565b60206040518083038186803b1580156109ff57600080fd5b505afa158015610a13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3791906112c5565b73ffffffffffffffffffffffffffffffffffffffff1614610a84576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60086000848381518110610a9b57610a9a6119b4565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615610af6576040517f1b4e0c3c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ab9082a8bbf02cabaa04263df2063bf314c3b7fa73ffffffffffffffffffffffffffffffffffffffff16634adfb63d848381518110610b3957610b386119b4565b5b60200260200101516040518263ffffffff1660e01b8152600401610b5d9190611771565b60206040518083038186803b158015610b7557600080fd5b505afa158015610b89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bad9190611368565b15610be4576040517f1b4e0c3c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c1f9190611619565b60206040518083038186803b158015610c3757600080fd5b505afa158015610c4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6f919061148b565b9050610c94848381518110610c8757610c866119b4565b5b6020026020010151611155565b83610c9f9190611827565b925080831115610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb90611731565b60405180910390fd5b508080610cf09061193c565b915050610954565b508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610d3492919061166b565b602060405180830381600087803b158015610d4e57600080fd5b505af1158015610d62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d869190611368565b507ffda3a3e0e1479b43cb1c701f7576187f4c4ad80768d627387e00184302f7d88e333383604051610dba93929190611634565b60405180910390a160005b8251811015610e2757600160086000858481518110610de757610de66119b4565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e1f9061193c565b915050610dc5565b50505050565b60015481565b60035481565b60086020528060005260406000206000915054906101000a900460ff1681565b60025481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee4906116f1565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f289190611619565b60206040518083038186803b158015610f4057600080fd5b505afa158015610f54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f78919061148b565b905080821115610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490611731565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401610ff892919061166b565b602060405180830381600087803b15801561101257600080fd5b505af1158015611026573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104a9190611368565b508181611057919061187d565b90507ffda3a3e0e1479b43cb1c701f7576187f4c4ad80768d627387e00184302f7d88e33338460405161108c93929190611634565b60405180910390a1505050565b600080825114156110ad5760009050611150565b60005b600183516110be919061187d565b81101561114e5760006001826110d49190611827565b90505b835181101561113a578381815181106110f3576110f26119b4565b5b602002602001015184838151811061110e5761110d6119b4565b5b6020026020010151141561112757600192505050611150565b80806111329061193c565b9150506110d7565b5080806111469061193c565b9150506110b0565b505b919050565b6000610ec4821161116a5760035490506111a4565b611810821161117d5760045490506111a4565b611acc82116111905760055490506111a4565b60025482116111a35760065490506111a4565b5b919050565b60006111bc6111b7846117b1565b61178c565b905080838252602082019050828560208602820111156111df576111de611a17565b5b60005b8581101561120f57816111f5888261129b565b8452602084019350602083019250506001810190506111e2565b5050509392505050565b60008151905061122881611b50565b92915050565b600082601f83011261124357611242611a12565b5b81356112538482602086016111a9565b91505092915050565b60008135905061126b81611b67565b92915050565b60008151905061128081611b67565b92915050565b60008135905061129581611b7e565b92915050565b6000813590506112aa81611b95565b92915050565b6000815190506112bf81611b95565b92915050565b6000602082840312156112db576112da611a21565b5b60006112e984828501611219565b91505092915050565b60006020828403121561130857611307611a21565b5b600082013567ffffffffffffffff81111561132657611325611a1c565b5b6113328482850161122e565b91505092915050565b60006020828403121561135157611350611a21565b5b600061135f8482850161125c565b91505092915050565b60006020828403121561137e5761137d611a21565b5b600061138c84828501611271565b91505092915050565b6000602082840312156113ab576113aa611a21565b5b60006113b984828501611286565b91505092915050565b600080604083850312156113d9576113d8611a21565b5b60006113e785828601611286565b925050602083013567ffffffffffffffff81111561140857611407611a1c565b5b6114148582860161122e565b9150509250929050565b6000806040838503121561143557611434611a21565b5b600061144385828601611286565b92505060206114548582860161129b565b9150509250929050565b60006020828403121561147457611473611a21565b5b60006114828482850161129b565b91505092915050565b6000602082840312156114a1576114a0611a21565b5b60006114af848285016112b0565b91505092915050565b60006114c483836115fb565b60208301905092915050565b6114d9816118b1565b82525050565b60006114ea826117ed565b6114f48185611805565b93506114ff836117dd565b8060005b8381101561153057815161151788826114b8565b9750611522836117f8565b925050600181019050611503565b5085935050505092915050565b611546816118c3565b82525050565b6000611559602183611816565b915061156482611a37565b604082019050919050565b600061157c601d83611816565b915061158782611a86565b602082019050919050565b600061159f601283611816565b91506115aa82611aaf565b602082019050919050565b60006115c2600e83611816565b91506115cd82611ad8565b602082019050919050565b60006115e5602483611816565b91506115f082611b01565b604082019050919050565b61160481611901565b82525050565b61161381611901565b82525050565b600060208201905061162e60008301846114d0565b92915050565b600060608201905061164960008301866114d0565b61165660208301856114d0565b611663604083018461160a565b949350505050565b600060408201905061168060008301856114d0565b61168d602083018461160a565b9392505050565b600060208201905081810360008301526116ae81846114df565b905092915050565b60006020820190506116cb600083018461153d565b92915050565b600060208201905081810360008301526116ea8161154c565b9050919050565b6000602082019050818103600083015261170a8161156f565b9050919050565b6000602082019050818103600083015261172a81611592565b9050919050565b6000602082019050818103600083015261174a816115b5565b9050919050565b6000602082019050818103600083015261176a816115d8565b9050919050565b6000602082019050611786600083018461160a565b92915050565b60006117966117a7565b90506117a2828261190b565b919050565b6000604051905090565b600067ffffffffffffffff8211156117cc576117cb6119e3565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061183282611901565b915061183d83611901565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561187257611871611985565b5b828201905092915050565b600061188882611901565b915061189383611901565b9250828210156118a6576118a5611985565b5b828203905092915050565b60006118bc826118e1565b9050919050565b60008115159050919050565b60006118da826118b1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b61191482611a26565b810181811067ffffffffffffffff82111715611933576119326119e3565b5b80604052505050565b600061194782611901565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561197a57611979611985565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f60008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c79206f776e65722063616e2077697468647261772066756e6473000000600082015250565b7f69647320686173206475706c6963617465730000000000000000000000000000600082015250565b7f62616c616e6365206973206c6f77000000000000000000000000000000000000600082015250565b7f4f6e6c79206f776e65722063616e206368616e676520636f6e7472616374207360008201527f7461746500000000000000000000000000000000000000000000000000000000602082015250565b611b59816118b1565b8114611b6457600080fd5b50565b611b70816118c3565b8114611b7b57600080fd5b50565b611b87816118cf565b8114611b9257600080fd5b50565b611b9e81611901565b8114611ba957600080fd5b5056fea26469706673582212201b39d270e35522f3b75dc3f7c0c3a1cc2b76c7cdb5bc8d32a4bdaabd861d11f664736f6c63430008070033

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

000000000000000000000000bfce321046aaf5879c74cc4555db8fd9629fde92

-----Decoded View---------------
Arg [0] : _nft (address): 0xBfcE321046aaf5879c74cc4555Db8fd9629fde92

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000bfce321046aaf5879c74cc4555db8fd9629fde92


Deployed Bytecode Sourcemap

23540:4538:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24588:9;24577:7;;:20;;;;;;;:::i;:::-;;;;;;;;24613:39;24630:10;24642:9;24613:39;;;;;;;:::i;:::-;;;;;;;;23540:4538;;;;;24672:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23974:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26091:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26503:253;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25673:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25811:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24096:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23915:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24033:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23702:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27149:922;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23729:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23854:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24334:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23816:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25234:433;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24672:148;24740:5;;;;;;;;;;24726:19;;:10;:19;;;24718:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24806:6;24797;;:15;;;;;;;;;;;;;;;;;;24672:148;:::o;23974:52::-;;;;:::o;26091:404::-;26161:24;26203:9;26198:264;26222:8;:15;26218:1;:19;26198:264;;;26263:10;:23;26274:8;26283:1;26274:11;;;;;;;;:::i;:::-;;;;;;;;26263:23;;;;;;;;;;;;;;;;;;;;;:81;;;;23617:42;26290:41;;;26332:8;26341:1;26332:11;;;;;;;;:::i;:::-;;;;;;;;26290:54;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26263:81;26259:191;;;26423:8;26432:1;26423:11;;;;;;;;:::i;:::-;;;;;;;26416:18;;;;26259:191;26239:3;;;;;:::i;:::-;;;;26198:264;;;;26479:8;26472:15;;26091:404;;;:::o;26503:253::-;26593:5;;;;;;;;;;26579:19;;:10;:19;;;26571:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;26653:9;26648:101;26672:7;:14;26668:1;:18;26648:101;;;26733:4;26708:10;:22;26719:7;26727:1;26719:10;;;;;;;;:::i;:::-;;;;;;;;26708:22;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;26688:3;;;;;:::i;:::-;;;;26648:101;;;;26503:253;:::o;25673:126::-;25728:13;25761:5;:15;;;25785:4;25761:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25754:37;;25673:126;;;:::o;25811:274::-;25869:15;25901:10;:19;25912:7;25901:19;;;;;;;;;;;;;;;;;;;;;:74;;;;23617:42;25924;;;25967:7;25924:51;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25901:74;25897:181;;;26009:4;26002:11;;;;25897:181;26061:5;26054:12;;25811:274;;;;:::o;24096:26::-;;;;;;;;;;;;;:::o;23915:52::-;;;;:::o;24033:56::-;;;;:::o;23702:20::-;;;;;;;;;;;;:::o;27149:922::-;27238:6;;;;;;;;;;;27237:7;27229:16;;;;;;27265:21;27278:7;27265:12;:21::i;:::-;27264:22;27256:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;27320:19;27355:9;27367:1;27355:13;;27350:488;27374:7;:14;27370:1;:18;27350:488;;;27441:10;27414:37;;:3;:11;;;27426:7;27434:1;27426:10;;;;;;;;:::i;:::-;;;;;;;;27414:23;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;;;27410:60;;27460:10;;;;;;;;;;;;;;27410:60;27489:10;:22;27500:7;27508:1;27500:10;;;;;;;;:::i;:::-;;;;;;;;27489:22;;;;;;;;;;;;;;;;;;;;;27485:52;;;27520:17;;;;;;;;;;;;;;27485:52;23617:42;27556:41;;;27598:7;27606:1;27598:10;;;;;;;;:::i;:::-;;;;;;;;27556:53;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27552:83;;;27618:17;;;;;;;;;;;;;;27552:83;27650:20;27673:5;:15;;;27697:4;27673:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27650:53;;27733:24;27746:7;27754:1;27746:10;;;;;;;;:::i;:::-;;;;;;;;27733:12;:24::i;:::-;27718:39;;;;;:::i;:::-;;;27795:12;27780:11;:27;;27772:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;27395:443;27390:3;;;;;:::i;:::-;;;;27350:488;;;;27848:5;:14;;;27863:10;27875:11;27848:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27903:49;27916:10;27928;27940:11;27903:49;;;;;;;;:::i;:::-;;;;;;;;27968:9;27963:101;27987:7;:14;27983:1;:18;27963:101;;;28048:4;28023:10;:22;28034:7;28042:1;28034:10;;;;;;;;:::i;:::-;;;;;;;;28023:22;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28003:3;;;;;:::i;:::-;;;;27963:101;;;;27218:853;27149:922;;:::o;23729:22::-;;;;:::o;23854:54::-;;;;:::o;24334:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;23816:31::-;;;;:::o;25234:433::-;25329:5;;;;;;;;;;25315:19;;:10;:19;;;25307:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;25380:20;25403:5;:15;;;25427:4;25403:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25380:53;;25469:12;25452:13;:29;;25444:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;25511:5;:14;;;25526:10;25538:13;25511:41;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25579:13;25563:29;;;;;:::i;:::-;;;25608:51;25621:10;25633;25645:13;25608:51;;;;;;;;:::i;:::-;;;;;;;;25296:371;25234:433;;:::o;26768:375::-;26833:4;26866:1;26854;:8;:13;26850:58;;;26891:5;26884:12;;;;26850:58;26923:9;26918:218;26953:1;26942;:8;:12;;;;:::i;:::-;26938:1;:16;26918:218;;;26981:9;26997:1;26993;:5;;;;:::i;:::-;26981:17;;26976:149;27004:1;:8;27000:1;:12;26976:149;;;27050:1;27052;27050:4;;;;;;;;:::i;:::-;;;;;;;;27042:1;27044;27042:4;;;;;;;;:::i;:::-;;;;;;;;:12;27038:72;;;27086:4;27079:11;;;;;;27038:72;27014:3;;;;;:::i;:::-;;;;26976:149;;;;26956:3;;;;;:::i;:::-;;;;26918:218;;;;26768:375;;;;:::o;24828:398::-;24890:13;24930:4;24919:7;:15;24916:68;;24958:14;;24951:21;;;;24916:68;25008:4;24997:7;:15;24994:66;;25036:12;;25029:19;;;;24994:66;25084:4;25073:7;:15;25070:65;;25112:11;;25105:18;;;;25070:65;25159:9;;25148:7;:20;25145:74;;25192:15;;25185:22;;;;25145:74;24828:398;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:143::-;809:5;840:6;834:13;825:22;;856:33;883:5;856:33;:::i;:::-;752:143;;;;:::o;918:370::-;989:5;1038:3;1031:4;1023:6;1019:17;1015:27;1005:122;;1046:79;;:::i;:::-;1005:122;1163:6;1150:20;1188:94;1278:3;1270:6;1263:4;1255:6;1251:17;1188:94;:::i;:::-;1179:103;;995:293;918:370;;;;:::o;1294:133::-;1337:5;1375:6;1362:20;1353:29;;1391:30;1415:5;1391:30;:::i;:::-;1294:133;;;;:::o;1433:137::-;1487:5;1518:6;1512:13;1503:22;;1534:30;1558:5;1534:30;:::i;:::-;1433:137;;;;:::o;1576:167::-;1636:5;1674:6;1661:20;1652:29;;1690:47;1731:5;1690:47;:::i;:::-;1576:167;;;;:::o;1749:139::-;1795:5;1833:6;1820:20;1811:29;;1849:33;1876:5;1849:33;:::i;:::-;1749:139;;;;:::o;1894:143::-;1951:5;1982:6;1976:13;1967:22;;1998:33;2025:5;1998:33;:::i;:::-;1894:143;;;;:::o;2043:351::-;2113:6;2162:2;2150:9;2141:7;2137:23;2133:32;2130:119;;;2168:79;;:::i;:::-;2130:119;2288:1;2313:64;2369:7;2360:6;2349:9;2345:22;2313:64;:::i;:::-;2303:74;;2259:128;2043:351;;;;:::o;2400:539::-;2484:6;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2687:1;2676:9;2672:17;2659:31;2717:18;2709:6;2706:30;2703:117;;;2739:79;;:::i;:::-;2703:117;2844:78;2914:7;2905:6;2894:9;2890:22;2844:78;:::i;:::-;2834:88;;2630:302;2400:539;;;;:::o;2945:323::-;3001:6;3050:2;3038:9;3029:7;3025:23;3021:32;3018:119;;;3056:79;;:::i;:::-;3018:119;3176:1;3201:50;3243:7;3234:6;3223:9;3219:22;3201:50;:::i;:::-;3191:60;;3147:114;2945:323;;;;:::o;3274:345::-;3341:6;3390:2;3378:9;3369:7;3365:23;3361:32;3358:119;;;3396:79;;:::i;:::-;3358:119;3516:1;3541:61;3594:7;3585:6;3574:9;3570:22;3541:61;:::i;:::-;3531:71;;3487:125;3274:345;;;;:::o;3625:357::-;3698:6;3747:2;3735:9;3726:7;3722:23;3718:32;3715:119;;;3753:79;;:::i;:::-;3715:119;3873:1;3898:67;3957:7;3948:6;3937:9;3933:22;3898:67;:::i;:::-;3888:77;;3844:131;3625:357;;;;:::o;3988:712::-;4095:6;4103;4152:2;4140:9;4131:7;4127:23;4123:32;4120:119;;;4158:79;;:::i;:::-;4120:119;4278:1;4303:67;4362:7;4353:6;4342:9;4338:22;4303:67;:::i;:::-;4293:77;;4249:131;4447:2;4436:9;4432:18;4419:32;4478:18;4470:6;4467:30;4464:117;;;4500:79;;:::i;:::-;4464:117;4605:78;4675:7;4666:6;4655:9;4651:22;4605:78;:::i;:::-;4595:88;;4390:303;3988:712;;;;;:::o;4706:502::-;4788:6;4796;4845:2;4833:9;4824:7;4820:23;4816:32;4813:119;;;4851:79;;:::i;:::-;4813:119;4971:1;4996:67;5055:7;5046:6;5035:9;5031:22;4996:67;:::i;:::-;4986:77;;4942:131;5112:2;5138:53;5183:7;5174:6;5163:9;5159:22;5138:53;:::i;:::-;5128:63;;5083:118;4706:502;;;;;:::o;5214:329::-;5273:6;5322:2;5310:9;5301:7;5297:23;5293:32;5290:119;;;5328:79;;:::i;:::-;5290:119;5448:1;5473:53;5518:7;5509:6;5498:9;5494:22;5473:53;:::i;:::-;5463:63;;5419:117;5214:329;;;;:::o;5549:351::-;5619:6;5668:2;5656:9;5647:7;5643:23;5639:32;5636:119;;;5674:79;;:::i;:::-;5636:119;5794:1;5819:64;5875:7;5866:6;5855:9;5851:22;5819:64;:::i;:::-;5809:74;;5765:128;5549:351;;;;:::o;5906:179::-;5975:10;5996:46;6038:3;6030:6;5996:46;:::i;:::-;6074:4;6069:3;6065:14;6051:28;;5906:179;;;;:::o;6091:118::-;6178:24;6196:5;6178:24;:::i;:::-;6173:3;6166:37;6091:118;;:::o;6245:732::-;6364:3;6393:54;6441:5;6393:54;:::i;:::-;6463:86;6542:6;6537:3;6463:86;:::i;:::-;6456:93;;6573:56;6623:5;6573:56;:::i;:::-;6652:7;6683:1;6668:284;6693:6;6690:1;6687:13;6668:284;;;6769:6;6763:13;6796:63;6855:3;6840:13;6796:63;:::i;:::-;6789:70;;6882:60;6935:6;6882:60;:::i;:::-;6872:70;;6728:224;6715:1;6712;6708:9;6703:14;;6668:284;;;6672:14;6968:3;6961:10;;6369:608;;;6245:732;;;;:::o;6983:109::-;7064:21;7079:5;7064:21;:::i;:::-;7059:3;7052:34;6983:109;;:::o;7098:366::-;7240:3;7261:67;7325:2;7320:3;7261:67;:::i;:::-;7254:74;;7337:93;7426:3;7337:93;:::i;:::-;7455:2;7450:3;7446:12;7439:19;;7098:366;;;:::o;7470:::-;7612:3;7633:67;7697:2;7692:3;7633:67;:::i;:::-;7626:74;;7709:93;7798:3;7709:93;:::i;:::-;7827:2;7822:3;7818:12;7811:19;;7470:366;;;:::o;7842:::-;7984:3;8005:67;8069:2;8064:3;8005:67;:::i;:::-;7998:74;;8081:93;8170:3;8081:93;:::i;:::-;8199:2;8194:3;8190:12;8183:19;;7842:366;;;:::o;8214:::-;8356:3;8377:67;8441:2;8436:3;8377:67;:::i;:::-;8370:74;;8453:93;8542:3;8453:93;:::i;:::-;8571:2;8566:3;8562:12;8555:19;;8214:366;;;:::o;8586:::-;8728:3;8749:67;8813:2;8808:3;8749:67;:::i;:::-;8742:74;;8825:93;8914:3;8825:93;:::i;:::-;8943:2;8938:3;8934:12;8927:19;;8586:366;;;:::o;8958:108::-;9035:24;9053:5;9035:24;:::i;:::-;9030:3;9023:37;8958:108;;:::o;9072:118::-;9159:24;9177:5;9159:24;:::i;:::-;9154:3;9147:37;9072:118;;:::o;9196:222::-;9289:4;9327:2;9316:9;9312:18;9304:26;;9340:71;9408:1;9397:9;9393:17;9384:6;9340:71;:::i;:::-;9196:222;;;;:::o;9424:442::-;9573:4;9611:2;9600:9;9596:18;9588:26;;9624:71;9692:1;9681:9;9677:17;9668:6;9624:71;:::i;:::-;9705:72;9773:2;9762:9;9758:18;9749:6;9705:72;:::i;:::-;9787;9855:2;9844:9;9840:18;9831:6;9787:72;:::i;:::-;9424:442;;;;;;:::o;9872:332::-;9993:4;10031:2;10020:9;10016:18;10008:26;;10044:71;10112:1;10101:9;10097:17;10088:6;10044:71;:::i;:::-;10125:72;10193:2;10182:9;10178:18;10169:6;10125:72;:::i;:::-;9872:332;;;;;:::o;10210:373::-;10353:4;10391:2;10380:9;10376:18;10368:26;;10440:9;10434:4;10430:20;10426:1;10415:9;10411:17;10404:47;10468:108;10571:4;10562:6;10468:108;:::i;:::-;10460:116;;10210:373;;;;:::o;10589:210::-;10676:4;10714:2;10703:9;10699:18;10691:26;;10727:65;10789:1;10778:9;10774:17;10765:6;10727:65;:::i;:::-;10589:210;;;;:::o;10805:419::-;10971:4;11009:2;10998:9;10994:18;10986:26;;11058:9;11052:4;11048:20;11044:1;11033:9;11029:17;11022:47;11086:131;11212:4;11086:131;:::i;:::-;11078:139;;10805:419;;;:::o;11230:::-;11396:4;11434:2;11423:9;11419:18;11411:26;;11483:9;11477:4;11473:20;11469:1;11458:9;11454:17;11447:47;11511:131;11637:4;11511:131;:::i;:::-;11503:139;;11230:419;;;:::o;11655:::-;11821:4;11859:2;11848:9;11844:18;11836:26;;11908:9;11902:4;11898:20;11894:1;11883:9;11879:17;11872:47;11936:131;12062:4;11936:131;:::i;:::-;11928:139;;11655:419;;;:::o;12080:::-;12246:4;12284:2;12273:9;12269:18;12261:26;;12333:9;12327:4;12323:20;12319:1;12308:9;12304:17;12297:47;12361:131;12487:4;12361:131;:::i;:::-;12353:139;;12080:419;;;:::o;12505:::-;12671:4;12709:2;12698:9;12694:18;12686:26;;12758:9;12752:4;12748:20;12744:1;12733:9;12729:17;12722:47;12786:131;12912:4;12786:131;:::i;:::-;12778:139;;12505:419;;;:::o;12930:222::-;13023:4;13061:2;13050:9;13046:18;13038:26;;13074:71;13142:1;13131:9;13127:17;13118:6;13074:71;:::i;:::-;12930:222;;;;:::o;13158:129::-;13192:6;13219:20;;:::i;:::-;13209:30;;13248:33;13276:4;13268:6;13248:33;:::i;:::-;13158:129;;;:::o;13293:75::-;13326:6;13359:2;13353:9;13343:19;;13293:75;:::o;13374:311::-;13451:4;13541:18;13533:6;13530:30;13527:56;;;13563:18;;:::i;:::-;13527:56;13613:4;13605:6;13601:17;13593:25;;13673:4;13667;13663:15;13655:23;;13374:311;;;:::o;13691:132::-;13758:4;13781:3;13773:11;;13811:4;13806:3;13802:14;13794:22;;13691:132;;;:::o;13829:114::-;13896:6;13930:5;13924:12;13914:22;;13829:114;;;:::o;13949:113::-;14019:4;14051;14046:3;14042:14;14034:22;;13949:113;;;:::o;14068:184::-;14167:11;14201:6;14196:3;14189:19;14241:4;14236:3;14232:14;14217:29;;14068:184;;;;:::o;14258:169::-;14342:11;14376:6;14371:3;14364:19;14416:4;14411:3;14407:14;14392:29;;14258:169;;;;:::o;14433:305::-;14473:3;14492:20;14510:1;14492:20;:::i;:::-;14487:25;;14526:20;14544:1;14526:20;:::i;:::-;14521:25;;14680:1;14612:66;14608:74;14605:1;14602:81;14599:107;;;14686:18;;:::i;:::-;14599:107;14730:1;14727;14723:9;14716:16;;14433:305;;;;:::o;14744:191::-;14784:4;14804:20;14822:1;14804:20;:::i;:::-;14799:25;;14838:20;14856:1;14838:20;:::i;:::-;14833:25;;14877:1;14874;14871:8;14868:34;;;14882:18;;:::i;:::-;14868:34;14927:1;14924;14920:9;14912:17;;14744:191;;;;:::o;14941:96::-;14978:7;15007:24;15025:5;15007:24;:::i;:::-;14996:35;;14941:96;;;:::o;15043:90::-;15077:7;15120:5;15113:13;15106:21;15095:32;;15043:90;;;:::o;15139:110::-;15190:7;15219:24;15237:5;15219:24;:::i;:::-;15208:35;;15139:110;;;:::o;15255:126::-;15292:7;15332:42;15325:5;15321:54;15310:65;;15255:126;;;:::o;15387:77::-;15424:7;15453:5;15442:16;;15387:77;;;:::o;15470:281::-;15553:27;15575:4;15553:27;:::i;:::-;15545:6;15541:40;15683:6;15671:10;15668:22;15647:18;15635:10;15632:34;15629:62;15626:88;;;15694:18;;:::i;:::-;15626:88;15734:10;15730:2;15723:22;15513:238;15470:281;;:::o;15757:233::-;15796:3;15819:24;15837:5;15819:24;:::i;:::-;15810:33;;15865:66;15858:5;15855:77;15852:103;;;15935:18;;:::i;:::-;15852:103;15982:1;15975:5;15971:13;15964:20;;15757:233;;;:::o;15996:180::-;16044:77;16041:1;16034:88;16141:4;16138:1;16131:15;16165:4;16162:1;16155:15;16182:180;16230:77;16227:1;16220:88;16327:4;16324:1;16317:15;16351:4;16348:1;16341:15;16368:180;16416:77;16413:1;16406:88;16513:4;16510:1;16503:15;16537:4;16534:1;16527:15;16554:117;16663:1;16660;16653:12;16677:117;16786:1;16783;16776:12;16800:117;16909:1;16906;16899:12;16923:117;17032:1;17029;17022:12;17046:102;17087:6;17138:2;17134:7;17129:2;17122:5;17118:14;17114:28;17104:38;;17046:102;;;:::o;17154:220::-;17294:34;17290:1;17282:6;17278:14;17271:58;17363:3;17358:2;17350:6;17346:15;17339:28;17154:220;:::o;17380:179::-;17520:31;17516:1;17508:6;17504:14;17497:55;17380:179;:::o;17565:168::-;17705:20;17701:1;17693:6;17689:14;17682:44;17565:168;:::o;17739:164::-;17879:16;17875:1;17867:6;17863:14;17856:40;17739:164;:::o;17909:223::-;18049:34;18045:1;18037:6;18033:14;18026:58;18118:6;18113:2;18105:6;18101:15;18094:31;17909:223;:::o;18138:122::-;18211:24;18229:5;18211:24;:::i;:::-;18204:5;18201:35;18191:63;;18250:1;18247;18240:12;18191:63;18138:122;:::o;18266:116::-;18336:21;18351:5;18336:21;:::i;:::-;18329:5;18326:32;18316:60;;18372:1;18369;18362:12;18316:60;18266:116;:::o;18388:150::-;18475:38;18507:5;18475:38;:::i;:::-;18468:5;18465:49;18455:77;;18528:1;18525;18518:12;18455:77;18388:150;:::o;18544:122::-;18617:24;18635:5;18617:24;:::i;:::-;18610:5;18607:35;18597:63;;18656:1;18653;18646:12;18597:63;18544:122;:::o

Swarm Source

ipfs://1b39d270e35522f3b75dc3f7c0c3a1cc2b76c7cdb5bc8d32a4bdaabd861d11f6

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
[ 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.