ETH Price: $2,974.61 (+3.83%)
Gas: 2 Gwei

Contract

0xab9082a8BBf02cabaA04263Df2063BF314C3b7FA
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer ERC20150323442022-06-27 3:44:22740 days ago1656301462IN
0xab9082a8...314C3b7FA
0 ETH0.0014243654.26989434
Transfer ERC20150291712022-06-26 13:22:01740 days ago1656249721IN
0xab9082a8...314C3b7FA
0 ETH0.0010190240.02772853
Transfer ERC20150291702022-06-26 13:21:43740 days ago1656249703IN
0xab9082a8...314C3b7FA
0 ETH0.0010782437.68753842
Transfer ERC20150291702022-06-26 13:21:43740 days ago1656249703IN
0xab9082a8...314C3b7FA
0 ETH0.0009467237.18753842
Transfer ERC20150291622022-06-26 13:20:07740 days ago1656249607IN
0xab9082a8...314C3b7FA
0 ETH0.001328746.44207876
Transfer ERC20150291422022-06-26 13:14:07740 days ago1656249247IN
0xab9082a8...314C3b7FA
0 ETH0.0014472450.58529761
Transfer ERC20150291412022-06-26 13:13:55740 days ago1656249235IN
0xab9082a8...314C3b7FA
0 ETH0.0014861251.94418835
Transfer ERC20150291392022-06-26 13:13:41740 days ago1656249221IN
0xab9082a8...314C3b7FA
0 ETH0.0016457557.52383079
Transfer ERC20149794072022-06-17 13:27:18749 days ago1655472438IN
0xab9082a8...314C3b7FA
0 ETH0.00097138.14138399
Transfer ERC20149586662022-06-13 23:29:14753 days ago1655162954IN
0xab9082a8...314C3b7FA
0 ETH0.0012631249.61604234
Withdraw149461992022-06-11 20:18:07755 days ago1654978687IN
0xab9082a8...314C3b7FA
0 ETH0.0010194225.74757253
Pause149461352022-06-11 20:04:57755 days ago1654977897IN
0xab9082a8...314C3b7FA
0 ETH0.0013336229.00829128
Transfer ERC20149459612022-06-11 19:20:30755 days ago1654975230IN
0xab9082a8...314C3b7FA
0 ETH0.0007938923.22131029
Transfer ERC20149459602022-06-11 19:20:15755 days ago1654975215IN
0xab9082a8...314C3b7FA
0 ETH0.0019242123.14292844
Transfer ERC20149459592022-06-11 19:20:01755 days ago1654975201IN
0xab9082a8...314C3b7FA
0 ETH0.0019343223.26443511
Transfer ERC20149459582022-06-11 19:19:35755 days ago1654975175IN
0xab9082a8...314C3b7FA
0 ETH0.0017528121.08139658
Transfer ERC20149459582022-06-11 19:19:35755 days ago1654975175IN
0xab9082a8...314C3b7FA
0 ETH0.0017528121.08139658
Transfer ERC20149459552022-06-11 19:19:17755 days ago1654975157IN
0xab9082a8...314C3b7FA
0 ETH0.0019873223.90190364
Transfer ERC20149459552022-06-11 19:19:17755 days ago1654975157IN
0xab9082a8...314C3b7FA
0 ETH0.0008171523.90190364
Transfer ERC20149459542022-06-11 19:18:39755 days ago1654975119IN
0xab9082a8...314C3b7FA
0 ETH0.0017809521.41396626
Transfer ERC20149459532022-06-11 19:18:29755 days ago1654975109IN
0xab9082a8...314C3b7FA
0 ETH0.0018143621.81562737
Transfer ERC20149459522022-06-11 19:18:16755 days ago1654975096IN
0xab9082a8...314C3b7FA
0 ETH0.0006801219.89366043
Transfer ERC20149459512022-06-11 19:18:13755 days ago1654975093IN
0xab9082a8...314C3b7FA
0 ETH0.0018354822.06961568
Transfer ERC20149459502022-06-11 19:18:01755 days ago1654975081IN
0xab9082a8...314C3b7FA
0 ETH0.0018215221.90786755
Transfer ERC20149459482022-06-11 19:17:45755 days ago1654975065IN
0xab9082a8...314C3b7FA
0 ETH0.0018244121.94251336
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-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 = 0xF535dA9e2d54ED1A5CEb18c92c334e1265534719;
    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 transferERC20(IERC20 token,uint256[] memory tokenId) public {
        require(!paused);
        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"}]

60a0604052611b5860025569012d231c7c593eec00006003556901c3bb9b15dfb214000060045569025a5419af66253c00006005556904b4a8335ecc4a7800006006556000600760006101000a81548160ff0219169083151502179055503480156200006a57600080fd5b5060405162001c4e38038062001c4e833981810160405281019062000090919062000125565b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505050620001be565b6000815190506200011f81620001a4565b92915050565b6000602082840312156200013e576200013d6200019f565b5b60006200014e848285016200010e565b91505092915050565b600062000164826200017f565b9050919050565b6000620001788262000157565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b620001af816200016b565b8114620001bb57600080fd5b50565b60805160601c611a71620001dd600039600061092d0152611a716000f3fe6080604052600436106100f75760003560e01c80638c85642c1161008a578063c971366311610059578063c971366314610389578063ce516507146103b4578063d5abeb01146103f1578063f3fef3a31461041c57610150565b80638c85642c146102df5780638da5cb5b1461030a5780638e3ddf8814610335578063b69ef8a81461035e57610150565b806348c14163116100c657806348c141631461020f5780634adfb63d1461024c5780635c975abb146102895780637d0df733146102b457610150565b806302329a291461015557806303f25ae01461017e5780630853a99f146101a95780633f0bf319146101e657610150565b3661015057346001600082825461010e91906116df565b925050819055507ff1b03f708b9c39f453fe3f0cef84164c7d6f7df836df0796e1e9c2bce6ee397e3334604051610146929190611543565b60405180910390a1005b600080fd5b34801561016157600080fd5b5061017c60048036038101906101779190611236565b610445565b005b34801561018a57600080fd5b506101936104f0565b6040516101a09190611629565b60405180910390f35b3480156101b557600080fd5b506101d060048036038101906101cb91906111ed565b6104f6565b6040516101dd919061156c565b60405180910390f35b3480156101f257600080fd5b5061020d600480360381019061020891906111ed565b61063e565b005b34801561021b57600080fd5b5061023660048036038101906102319190611290565b610735565b6040516102439190611629565b60405180910390f35b34801561025857600080fd5b50610273600480360381019061026e9190611359565b6107c7565b604051610280919061158e565b60405180910390f35b34801561029557600080fd5b5061029e6108a6565b6040516102ab919061158e565b60405180910390f35b3480156102c057600080fd5b506102c96108b9565b6040516102d69190611629565b60405180910390f35b3480156102eb57600080fd5b506102f46108bf565b6040516103019190611629565b60405180910390f35b34801561031657600080fd5b5061031f6108c5565b60405161032c91906114f1565b60405180910390f35b34801561034157600080fd5b5061035c600480360381019061035791906112bd565b6108e9565b005b34801561036a57600080fd5b50610373610de4565b6040516103809190611629565b60405180910390f35b34801561039557600080fd5b5061039e610dea565b6040516103ab9190611629565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190611359565b610df0565b6040516103e8919061158e565b60405180910390f35b3480156103fd57600080fd5b50610406610e10565b6040516104139190611629565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190611319565b610e16565b005b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ca90611609565b60405180910390fd5b80600760006101000a81548160ff02191690831515021790555050565b60055481565b606060005b8251811015610635576008600084838151811061051b5761051a61186c565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16806105fd575073f535da9e2d54ed1a5ceb18c92c334e126553471973ffffffffffffffffffffffffffffffffffffffff16634adfb63d8483815181106105885761058761186c565b5b60200260200101516040518263ffffffff1660e01b81526004016105ac9190611629565b60206040518083038186803b1580156105c457600080fd5b505afa1580156105d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105fc9190611263565b5b15610622578281815181106106155761061461186c565b5b6020026020010160008152505b808061062d906117f4565b9150506104fb565b50819050919050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c3906115a9565b60405180910390fd5b60005b8151811015610731576001600860008484815181106106f1576106f061186c565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610729906117f4565b9150506106cf565b5050565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161077091906114f1565b60206040518083038186803b15801561078857600080fd5b505afa15801561079c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c09190611386565b9050919050565b60006008600083815260200190815260200160002060009054906101000a900460ff168061088e575073f535da9e2d54ed1a5ceb18c92c334e126553471973ffffffffffffffffffffffffffffffffffffffff1663ce516507836040518263ffffffff1660e01b815260040161083d9190611629565b60206040518083038186803b15801561085557600080fd5b505afa158015610869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088d9190611263565b5b1561089c57600190506108a1565b600090505b919050565b600760009054906101000a900460ff1681565b60045481565b60065481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900460ff161561090357600080fd5b600080600090505b8251811015610caf573373ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16636352211e85848151811061097a5761097961186c565b5b60200260200101516040518263ffffffff1660e01b815260040161099e9190611629565b60206040518083038186803b1580156109b657600080fd5b505afa1580156109ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ee91906111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610a3b576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60086000848381518110610a5257610a5161186c565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615610aad576040517f1b4e0c3c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73f535da9e2d54ed1a5ceb18c92c334e126553471973ffffffffffffffffffffffffffffffffffffffff16634adfb63d848381518110610af057610aef61186c565b5b60200260200101516040518263ffffffff1660e01b8152600401610b149190611629565b60206040518083038186803b158015610b2c57600080fd5b505afa158015610b40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b649190611263565b15610b9b576040517f1b4e0c3c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610bd691906114f1565b60206040518083038186803b158015610bee57600080fd5b505afa158015610c02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c269190611386565b9050610c4b848381518110610c3e57610c3d61186c565b5b6020026020010151611050565b83610c5691906116df565b925080831115610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c92906115e9565b60405180910390fd5b508080610ca7906117f4565b91505061090b565b508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610ceb929190611543565b602060405180830381600087803b158015610d0557600080fd5b505af1158015610d19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3d9190611263565b507ffda3a3e0e1479b43cb1c701f7576187f4c4ad80768d627387e00184302f7d88e333383604051610d719392919061150c565b60405180910390a160005b8251811015610dde57600160086000858481518110610d9e57610d9d61186c565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610dd6906117f4565b915050610d7c565b50505050565b60015481565b60035481565b60086020528060005260406000206000915054906101000a900460ff1681565b60025481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b906115c9565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610edf91906114f1565b60206040518083038186803b158015610ef757600080fd5b505afa158015610f0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2f9190611386565b905080821115610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b906115e9565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401610faf929190611543565b602060405180830381600087803b158015610fc957600080fd5b505af1158015610fdd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110019190611263565b50818161100e9190611735565b90507ffda3a3e0e1479b43cb1c701f7576187f4c4ad80768d627387e00184302f7d88e3333846040516110439392919061150c565b60405180910390a1505050565b6000610ec4821161106557600354905061109f565b611810821161107857600454905061109f565b611acc821161108b57600554905061109f565b600254821161109e57600654905061109f565b5b919050565b60006110b76110b284611669565b611644565b905080838252602082019050828560208602820111156110da576110d96118cf565b5b60005b8581101561110a57816110f08882611196565b8452602084019350602083019250506001810190506110dd565b5050509392505050565b600081519050611123816119df565b92915050565b600082601f83011261113e5761113d6118ca565b5b813561114e8482602086016110a4565b91505092915050565b600081359050611166816119f6565b92915050565b60008151905061117b816119f6565b92915050565b60008135905061119081611a0d565b92915050565b6000813590506111a581611a24565b92915050565b6000815190506111ba81611a24565b92915050565b6000602082840312156111d6576111d56118d9565b5b60006111e484828501611114565b91505092915050565b600060208284031215611203576112026118d9565b5b600082013567ffffffffffffffff811115611221576112206118d4565b5b61122d84828501611129565b91505092915050565b60006020828403121561124c5761124b6118d9565b5b600061125a84828501611157565b91505092915050565b600060208284031215611279576112786118d9565b5b60006112878482850161116c565b91505092915050565b6000602082840312156112a6576112a56118d9565b5b60006112b484828501611181565b91505092915050565b600080604083850312156112d4576112d36118d9565b5b60006112e285828601611181565b925050602083013567ffffffffffffffff811115611303576113026118d4565b5b61130f85828601611129565b9150509250929050565b600080604083850312156113305761132f6118d9565b5b600061133e85828601611181565b925050602061134f85828601611196565b9150509250929050565b60006020828403121561136f5761136e6118d9565b5b600061137d84828501611196565b91505092915050565b60006020828403121561139c5761139b6118d9565b5b60006113aa848285016111ab565b91505092915050565b60006113bf83836114d3565b60208301905092915050565b6113d481611769565b82525050565b60006113e5826116a5565b6113ef81856116bd565b93506113fa83611695565b8060005b8381101561142b57815161141288826113b3565b975061141d836116b0565b9250506001810190506113fe565b5085935050505092915050565b6114418161177b565b82525050565b60006114546021836116ce565b915061145f826118ef565b604082019050919050565b6000611477601d836116ce565b91506114828261193e565b602082019050919050565b600061149a600e836116ce565b91506114a582611967565b602082019050919050565b60006114bd6024836116ce565b91506114c882611990565b604082019050919050565b6114dc816117b9565b82525050565b6114eb816117b9565b82525050565b600060208201905061150660008301846113cb565b92915050565b600060608201905061152160008301866113cb565b61152e60208301856113cb565b61153b60408301846114e2565b949350505050565b600060408201905061155860008301856113cb565b61156560208301846114e2565b9392505050565b6000602082019050818103600083015261158681846113da565b905092915050565b60006020820190506115a36000830184611438565b92915050565b600060208201905081810360008301526115c281611447565b9050919050565b600060208201905081810360008301526115e28161146a565b9050919050565b600060208201905081810360008301526116028161148d565b9050919050565b60006020820190508181036000830152611622816114b0565b9050919050565b600060208201905061163e60008301846114e2565b92915050565b600061164e61165f565b905061165a82826117c3565b919050565b6000604051905090565b600067ffffffffffffffff8211156116845761168361189b565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006116ea826117b9565b91506116f5836117b9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561172a5761172961183d565b5b828201905092915050565b6000611740826117b9565b915061174b836117b9565b92508282101561175e5761175d61183d565b5b828203905092915050565b600061177482611799565b9050919050565b60008115159050919050565b600061179282611769565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6117cc826118de565b810181811067ffffffffffffffff821117156117eb576117ea61189b565b5b80604052505050565b60006117ff826117b9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156118325761183161183d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f60008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c79206f776e65722063616e2077697468647261772066756e6473000000600082015250565b7f62616c616e6365206973206c6f77000000000000000000000000000000000000600082015250565b7f4f6e6c79206f776e65722063616e206368616e676520636f6e7472616374207360008201527f7461746500000000000000000000000000000000000000000000000000000000602082015250565b6119e881611769565b81146119f357600080fd5b50565b6119ff8161177b565b8114611a0a57600080fd5b50565b611a1681611787565b8114611a2157600080fd5b50565b611a2d816117b9565b8114611a3857600080fd5b5056fea26469706673582212201aa168a9f137d93defe638045309d1082a7bc349c32eca9b504d2d7f7bce44f664736f6c63430008070033000000000000000000000000bfce321046aaf5879c74cc4555db8fd9629fde92

Deployed Bytecode

0x6080604052600436106100f75760003560e01c80638c85642c1161008a578063c971366311610059578063c971366314610389578063ce516507146103b4578063d5abeb01146103f1578063f3fef3a31461041c57610150565b80638c85642c146102df5780638da5cb5b1461030a5780638e3ddf8814610335578063b69ef8a81461035e57610150565b806348c14163116100c657806348c141631461020f5780634adfb63d1461024c5780635c975abb146102895780637d0df733146102b457610150565b806302329a291461015557806303f25ae01461017e5780630853a99f146101a95780633f0bf319146101e657610150565b3661015057346001600082825461010e91906116df565b925050819055507ff1b03f708b9c39f453fe3f0cef84164c7d6f7df836df0796e1e9c2bce6ee397e3334604051610146929190611543565b60405180910390a1005b600080fd5b34801561016157600080fd5b5061017c60048036038101906101779190611236565b610445565b005b34801561018a57600080fd5b506101936104f0565b6040516101a09190611629565b60405180910390f35b3480156101b557600080fd5b506101d060048036038101906101cb91906111ed565b6104f6565b6040516101dd919061156c565b60405180910390f35b3480156101f257600080fd5b5061020d600480360381019061020891906111ed565b61063e565b005b34801561021b57600080fd5b5061023660048036038101906102319190611290565b610735565b6040516102439190611629565b60405180910390f35b34801561025857600080fd5b50610273600480360381019061026e9190611359565b6107c7565b604051610280919061158e565b60405180910390f35b34801561029557600080fd5b5061029e6108a6565b6040516102ab919061158e565b60405180910390f35b3480156102c057600080fd5b506102c96108b9565b6040516102d69190611629565b60405180910390f35b3480156102eb57600080fd5b506102f46108bf565b6040516103019190611629565b60405180910390f35b34801561031657600080fd5b5061031f6108c5565b60405161032c91906114f1565b60405180910390f35b34801561034157600080fd5b5061035c600480360381019061035791906112bd565b6108e9565b005b34801561036a57600080fd5b50610373610de4565b6040516103809190611629565b60405180910390f35b34801561039557600080fd5b5061039e610dea565b6040516103ab9190611629565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190611359565b610df0565b6040516103e8919061158e565b60405180910390f35b3480156103fd57600080fd5b50610406610e10565b6040516104139190611629565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190611319565b610e16565b005b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ca90611609565b60405180910390fd5b80600760006101000a81548160ff02191690831515021790555050565b60055481565b606060005b8251811015610635576008600084838151811061051b5761051a61186c565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16806105fd575073f535da9e2d54ed1a5ceb18c92c334e126553471973ffffffffffffffffffffffffffffffffffffffff16634adfb63d8483815181106105885761058761186c565b5b60200260200101516040518263ffffffff1660e01b81526004016105ac9190611629565b60206040518083038186803b1580156105c457600080fd5b505afa1580156105d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105fc9190611263565b5b15610622578281815181106106155761061461186c565b5b6020026020010160008152505b808061062d906117f4565b9150506104fb565b50819050919050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c3906115a9565b60405180910390fd5b60005b8151811015610731576001600860008484815181106106f1576106f061186c565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610729906117f4565b9150506106cf565b5050565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161077091906114f1565b60206040518083038186803b15801561078857600080fd5b505afa15801561079c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c09190611386565b9050919050565b60006008600083815260200190815260200160002060009054906101000a900460ff168061088e575073f535da9e2d54ed1a5ceb18c92c334e126553471973ffffffffffffffffffffffffffffffffffffffff1663ce516507836040518263ffffffff1660e01b815260040161083d9190611629565b60206040518083038186803b15801561085557600080fd5b505afa158015610869573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088d9190611263565b5b1561089c57600190506108a1565b600090505b919050565b600760009054906101000a900460ff1681565b60045481565b60065481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900460ff161561090357600080fd5b600080600090505b8251811015610caf573373ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000bfce321046aaf5879c74cc4555db8fd9629fde9273ffffffffffffffffffffffffffffffffffffffff16636352211e85848151811061097a5761097961186c565b5b60200260200101516040518263ffffffff1660e01b815260040161099e9190611629565b60206040518083038186803b1580156109b657600080fd5b505afa1580156109ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ee91906111c0565b73ffffffffffffffffffffffffffffffffffffffff1614610a3b576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60086000848381518110610a5257610a5161186c565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615610aad576040517f1b4e0c3c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73f535da9e2d54ed1a5ceb18c92c334e126553471973ffffffffffffffffffffffffffffffffffffffff16634adfb63d848381518110610af057610aef61186c565b5b60200260200101516040518263ffffffff1660e01b8152600401610b149190611629565b60206040518083038186803b158015610b2c57600080fd5b505afa158015610b40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b649190611263565b15610b9b576040517f1b4e0c3c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610bd691906114f1565b60206040518083038186803b158015610bee57600080fd5b505afa158015610c02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c269190611386565b9050610c4b848381518110610c3e57610c3d61186c565b5b6020026020010151611050565b83610c5691906116df565b925080831115610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c92906115e9565b60405180910390fd5b508080610ca7906117f4565b91505061090b565b508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610ceb929190611543565b602060405180830381600087803b158015610d0557600080fd5b505af1158015610d19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3d9190611263565b507ffda3a3e0e1479b43cb1c701f7576187f4c4ad80768d627387e00184302f7d88e333383604051610d719392919061150c565b60405180910390a160005b8251811015610dde57600160086000858481518110610d9e57610d9d61186c565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610dd6906117f4565b915050610d7c565b50505050565b60015481565b60035481565b60086020528060005260406000206000915054906101000a900460ff1681565b60025481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b906115c9565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610edf91906114f1565b60206040518083038186803b158015610ef757600080fd5b505afa158015610f0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2f9190611386565b905080821115610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b906115e9565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401610faf929190611543565b602060405180830381600087803b158015610fc957600080fd5b505af1158015610fdd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110019190611263565b50818161100e9190611735565b90507ffda3a3e0e1479b43cb1c701f7576187f4c4ad80768d627387e00184302f7d88e3333846040516110439392919061150c565b60405180910390a1505050565b6000610ec4821161106557600354905061109f565b611810821161107857600454905061109f565b611acc821161108b57600554905061109f565b600254821161109e57600654905061109f565b5b919050565b60006110b76110b284611669565b611644565b905080838252602082019050828560208602820111156110da576110d96118cf565b5b60005b8581101561110a57816110f08882611196565b8452602084019350602083019250506001810190506110dd565b5050509392505050565b600081519050611123816119df565b92915050565b600082601f83011261113e5761113d6118ca565b5b813561114e8482602086016110a4565b91505092915050565b600081359050611166816119f6565b92915050565b60008151905061117b816119f6565b92915050565b60008135905061119081611a0d565b92915050565b6000813590506111a581611a24565b92915050565b6000815190506111ba81611a24565b92915050565b6000602082840312156111d6576111d56118d9565b5b60006111e484828501611114565b91505092915050565b600060208284031215611203576112026118d9565b5b600082013567ffffffffffffffff811115611221576112206118d4565b5b61122d84828501611129565b91505092915050565b60006020828403121561124c5761124b6118d9565b5b600061125a84828501611157565b91505092915050565b600060208284031215611279576112786118d9565b5b60006112878482850161116c565b91505092915050565b6000602082840312156112a6576112a56118d9565b5b60006112b484828501611181565b91505092915050565b600080604083850312156112d4576112d36118d9565b5b60006112e285828601611181565b925050602083013567ffffffffffffffff811115611303576113026118d4565b5b61130f85828601611129565b9150509250929050565b600080604083850312156113305761132f6118d9565b5b600061133e85828601611181565b925050602061134f85828601611196565b9150509250929050565b60006020828403121561136f5761136e6118d9565b5b600061137d84828501611196565b91505092915050565b60006020828403121561139c5761139b6118d9565b5b60006113aa848285016111ab565b91505092915050565b60006113bf83836114d3565b60208301905092915050565b6113d481611769565b82525050565b60006113e5826116a5565b6113ef81856116bd565b93506113fa83611695565b8060005b8381101561142b57815161141288826113b3565b975061141d836116b0565b9250506001810190506113fe565b5085935050505092915050565b6114418161177b565b82525050565b60006114546021836116ce565b915061145f826118ef565b604082019050919050565b6000611477601d836116ce565b91506114828261193e565b602082019050919050565b600061149a600e836116ce565b91506114a582611967565b602082019050919050565b60006114bd6024836116ce565b91506114c882611990565b604082019050919050565b6114dc816117b9565b82525050565b6114eb816117b9565b82525050565b600060208201905061150660008301846113cb565b92915050565b600060608201905061152160008301866113cb565b61152e60208301856113cb565b61153b60408301846114e2565b949350505050565b600060408201905061155860008301856113cb565b61156560208301846114e2565b9392505050565b6000602082019050818103600083015261158681846113da565b905092915050565b60006020820190506115a36000830184611438565b92915050565b600060208201905081810360008301526115c281611447565b9050919050565b600060208201905081810360008301526115e28161146a565b9050919050565b600060208201905081810360008301526116028161148d565b9050919050565b60006020820190508181036000830152611622816114b0565b9050919050565b600060208201905061163e60008301846114e2565b92915050565b600061164e61165f565b905061165a82826117c3565b919050565b6000604051905090565b600067ffffffffffffffff8211156116845761168361189b565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006116ea826117b9565b91506116f5836117b9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561172a5761172961183d565b5b828201905092915050565b6000611740826117b9565b915061174b836117b9565b92508282101561175e5761175d61183d565b5b828203905092915050565b600061177482611799565b9050919050565b60008115159050919050565b600061179282611769565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6117cc826118de565b810181811067ffffffffffffffff821117156117eb576117ea61189b565b5b80604052505050565b60006117ff826117b9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156118325761183161183d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f60008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c79206f776e65722063616e2077697468647261772066756e6473000000600082015250565b7f62616c616e6365206973206c6f77000000000000000000000000000000000000600082015250565b7f4f6e6c79206f776e65722063616e206368616e676520636f6e7472616374207360008201527f7461746500000000000000000000000000000000000000000000000000000000602082015250565b6119e881611769565b81146119f357600080fd5b50565b6119ff8161177b565b8114611a0a57600080fd5b50565b611a1681611787565b8114611a2157600080fd5b50565b611a2d816117b9565b8114611a3857600080fd5b5056fea26469706673582212201aa168a9f137d93defe638045309d1082a7bc349c32eca9b504d2d7f7bce44f664736f6c63430008070033

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

23440:4093:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24488:9;24477:7;;:20;;;;;;;:::i;:::-;;;;;;;;24513:39;24530:10;24542:9;24513:39;;;;;;;:::i;:::-;;;;;;;;23440:4093;;;;;24572:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23874:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25991:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26403:253;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25573:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25711:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23996:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23815:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23933:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23602:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26668:858;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23629:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23754:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24234:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23716:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25134:433;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24572:148;24640:5;;;;;;;;;;24626:19;;:10;:19;;;24618:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24706:6;24697;;:15;;;;;;;;;;;;;;;;;;24572:148;:::o;23874:52::-;;;;:::o;25991:404::-;26061:24;26103:9;26098:264;26122:8;:15;26118:1;:19;26098:264;;;26163:10;:23;26174:8;26183:1;26174:11;;;;;;;;:::i;:::-;;;;;;;;26163:23;;;;;;;;;;;;;;;;;;;;;:81;;;;23517:42;26190:41;;;26232:8;26241:1;26232:11;;;;;;;;:::i;:::-;;;;;;;;26190:54;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26163:81;26159:191;;;26323:8;26332:1;26323:11;;;;;;;;:::i;:::-;;;;;;;26316:18;;;;26159:191;26139:3;;;;;:::i;:::-;;;;26098:264;;;;26379:8;26372:15;;25991:404;;;:::o;26403:253::-;26493:5;;;;;;;;;;26479:19;;:10;:19;;;26471:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;26553:9;26548:101;26572:7;:14;26568:1;:18;26548:101;;;26633:4;26608:10;:22;26619:7;26627:1;26619:10;;;;;;;;:::i;:::-;;;;;;;;26608:22;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;26588:3;;;;;:::i;:::-;;;;26548:101;;;;26403:253;:::o;25573:126::-;25628:13;25661:5;:15;;;25685:4;25661:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25654:37;;25573:126;;;:::o;25711:274::-;25769:15;25801:10;:19;25812:7;25801:19;;;;;;;;;;;;;;;;;;;;;:74;;;;23517:42;25824;;;25867:7;25824:51;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25801:74;25797:181;;;25909:4;25902:11;;;;25797:181;25961:5;25954:12;;25711:274;;;;:::o;23996:26::-;;;;;;;;;;;;;:::o;23815:52::-;;;;:::o;23933:56::-;;;;:::o;23602:20::-;;;;;;;;;;;;:::o;26668:858::-;26757:6;;;;;;;;;;;26756:7;26748:16;;;;;;26775:19;26810:9;26822:1;26810:13;;26805:488;26829:7;:14;26825:1;:18;26805:488;;;26896:10;26869:37;;:3;:11;;;26881:7;26889:1;26881:10;;;;;;;;:::i;:::-;;;;;;;;26869:23;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;;;26865:60;;26915:10;;;;;;;;;;;;;;26865:60;26944:10;:22;26955:7;26963:1;26955:10;;;;;;;;:::i;:::-;;;;;;;;26944:22;;;;;;;;;;;;;;;;;;;;;26940:52;;;26975:17;;;;;;;;;;;;;;26940:52;23517:42;27011:41;;;27053:7;27061:1;27053:10;;;;;;;;:::i;:::-;;;;;;;;27011:53;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27007:83;;;27073:17;;;;;;;;;;;;;;27007:83;27105:20;27128:5;:15;;;27152:4;27128:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27105:53;;27188:24;27201:7;27209:1;27201:10;;;;;;;;:::i;:::-;;;;;;;;27188:12;:24::i;:::-;27173:39;;;;;:::i;:::-;;;27250:12;27235:11;:27;;27227:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;26850:443;26845:3;;;;;:::i;:::-;;;;26805:488;;;;27303:5;:14;;;27318:10;27330:11;27303:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27358:49;27371:10;27383;27395:11;27358:49;;;;;;;;:::i;:::-;;;;;;;;27423:9;27418:101;27442:7;:14;27438:1;:18;27418:101;;;27503:4;27478:10;:22;27489:7;27497:1;27489:10;;;;;;;;:::i;:::-;;;;;;;;27478:22;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;27458:3;;;;;:::i;:::-;;;;27418:101;;;;26737:789;26668:858;;:::o;23629:22::-;;;;:::o;23754:54::-;;;;:::o;24234:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;23716:31::-;;;;:::o;25134:433::-;25229:5;;;;;;;;;;25215:19;;:10;:19;;;25207:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;25280:20;25303:5;:15;;;25327:4;25303:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25280:53;;25369:12;25352:13;:29;;25344:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;25411:5;:14;;;25426:10;25438:13;25411:41;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25479:13;25463:29;;;;;:::i;:::-;;;25508:51;25521:10;25533;25545:13;25508:51;;;;;;;;:::i;:::-;;;;;;;;25196:371;25134:433;;:::o;24728:398::-;24790:13;24830:4;24819:7;:15;24816:68;;24858:14;;24851:21;;;;24816:68;24908:4;24897:7;:15;24894:66;;24936:12;;24929:19;;;;24894:66;24984:4;24973:7;:15;24970:65;;25012:11;;25005:18;;;;24970:65;25059:9;;25048:7;:20;25045:74;;25092:15;;25085:22;;;;25045:74;24728: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:108::-;8663:24;8681:5;8663:24;:::i;:::-;8658:3;8651:37;8586:108;;:::o;8700:118::-;8787:24;8805:5;8787:24;:::i;:::-;8782:3;8775:37;8700:118;;:::o;8824:222::-;8917:4;8955:2;8944:9;8940:18;8932:26;;8968:71;9036:1;9025:9;9021:17;9012:6;8968:71;:::i;:::-;8824:222;;;;:::o;9052:442::-;9201:4;9239:2;9228:9;9224:18;9216:26;;9252:71;9320:1;9309:9;9305:17;9296:6;9252:71;:::i;:::-;9333:72;9401:2;9390:9;9386:18;9377:6;9333:72;:::i;:::-;9415;9483:2;9472:9;9468:18;9459:6;9415:72;:::i;:::-;9052:442;;;;;;:::o;9500:332::-;9621:4;9659:2;9648:9;9644:18;9636:26;;9672:71;9740:1;9729:9;9725:17;9716:6;9672:71;:::i;:::-;9753:72;9821:2;9810:9;9806:18;9797:6;9753:72;:::i;:::-;9500:332;;;;;:::o;9838:373::-;9981:4;10019:2;10008:9;10004:18;9996:26;;10068:9;10062:4;10058:20;10054:1;10043:9;10039:17;10032:47;10096:108;10199:4;10190:6;10096:108;:::i;:::-;10088:116;;9838:373;;;;:::o;10217:210::-;10304:4;10342:2;10331:9;10327:18;10319:26;;10355:65;10417:1;10406:9;10402:17;10393:6;10355:65;:::i;:::-;10217:210;;;;:::o;10433:419::-;10599:4;10637:2;10626:9;10622:18;10614:26;;10686:9;10680:4;10676:20;10672:1;10661:9;10657:17;10650:47;10714:131;10840:4;10714:131;:::i;:::-;10706:139;;10433:419;;;:::o;10858:::-;11024:4;11062:2;11051:9;11047:18;11039:26;;11111:9;11105:4;11101:20;11097:1;11086:9;11082:17;11075:47;11139:131;11265:4;11139:131;:::i;:::-;11131:139;;10858:419;;;:::o;11283:::-;11449:4;11487:2;11476:9;11472:18;11464:26;;11536:9;11530:4;11526:20;11522:1;11511:9;11507:17;11500:47;11564:131;11690:4;11564:131;:::i;:::-;11556:139;;11283:419;;;:::o;11708:::-;11874:4;11912:2;11901:9;11897:18;11889:26;;11961:9;11955:4;11951:20;11947:1;11936:9;11932:17;11925:47;11989:131;12115:4;11989:131;:::i;:::-;11981:139;;11708:419;;;:::o;12133:222::-;12226:4;12264:2;12253:9;12249:18;12241:26;;12277:71;12345:1;12334:9;12330:17;12321:6;12277:71;:::i;:::-;12133:222;;;;:::o;12361:129::-;12395:6;12422:20;;:::i;:::-;12412:30;;12451:33;12479:4;12471:6;12451:33;:::i;:::-;12361:129;;;:::o;12496:75::-;12529:6;12562:2;12556:9;12546:19;;12496:75;:::o;12577:311::-;12654:4;12744:18;12736:6;12733:30;12730:56;;;12766:18;;:::i;:::-;12730:56;12816:4;12808:6;12804:17;12796:25;;12876:4;12870;12866:15;12858:23;;12577:311;;;:::o;12894:132::-;12961:4;12984:3;12976:11;;13014:4;13009:3;13005:14;12997:22;;12894:132;;;:::o;13032:114::-;13099:6;13133:5;13127:12;13117:22;;13032:114;;;:::o;13152:113::-;13222:4;13254;13249:3;13245:14;13237:22;;13152:113;;;:::o;13271:184::-;13370:11;13404:6;13399:3;13392:19;13444:4;13439:3;13435:14;13420:29;;13271:184;;;;:::o;13461:169::-;13545:11;13579:6;13574:3;13567:19;13619:4;13614:3;13610:14;13595:29;;13461:169;;;;:::o;13636:305::-;13676:3;13695:20;13713:1;13695:20;:::i;:::-;13690:25;;13729:20;13747:1;13729:20;:::i;:::-;13724:25;;13883:1;13815:66;13811:74;13808:1;13805:81;13802:107;;;13889:18;;:::i;:::-;13802:107;13933:1;13930;13926:9;13919:16;;13636:305;;;;:::o;13947:191::-;13987:4;14007:20;14025:1;14007:20;:::i;:::-;14002:25;;14041:20;14059:1;14041:20;:::i;:::-;14036:25;;14080:1;14077;14074:8;14071:34;;;14085:18;;:::i;:::-;14071:34;14130:1;14127;14123:9;14115:17;;13947:191;;;;:::o;14144:96::-;14181:7;14210:24;14228:5;14210:24;:::i;:::-;14199:35;;14144:96;;;:::o;14246:90::-;14280:7;14323:5;14316:13;14309:21;14298:32;;14246:90;;;:::o;14342:110::-;14393:7;14422:24;14440:5;14422:24;:::i;:::-;14411:35;;14342:110;;;:::o;14458:126::-;14495:7;14535:42;14528:5;14524:54;14513:65;;14458:126;;;:::o;14590:77::-;14627:7;14656:5;14645:16;;14590:77;;;:::o;14673:281::-;14756:27;14778:4;14756:27;:::i;:::-;14748:6;14744:40;14886:6;14874:10;14871:22;14850:18;14838:10;14835:34;14832:62;14829:88;;;14897:18;;:::i;:::-;14829:88;14937:10;14933:2;14926:22;14716:238;14673:281;;:::o;14960:233::-;14999:3;15022:24;15040:5;15022:24;:::i;:::-;15013:33;;15068:66;15061:5;15058:77;15055:103;;;15138:18;;:::i;:::-;15055:103;15185:1;15178:5;15174:13;15167:20;;14960:233;;;:::o;15199:180::-;15247:77;15244:1;15237:88;15344:4;15341:1;15334:15;15368:4;15365:1;15358:15;15385:180;15433:77;15430:1;15423:88;15530:4;15527:1;15520:15;15554:4;15551:1;15544:15;15571:180;15619:77;15616:1;15609:88;15716:4;15713:1;15706:15;15740:4;15737:1;15730:15;15757:117;15866:1;15863;15856:12;15880:117;15989:1;15986;15979:12;16003:117;16112:1;16109;16102:12;16126:117;16235:1;16232;16225:12;16249:102;16290:6;16341:2;16337:7;16332:2;16325:5;16321:14;16317:28;16307:38;;16249:102;;;:::o;16357:220::-;16497:34;16493:1;16485:6;16481:14;16474:58;16566:3;16561:2;16553:6;16549:15;16542:28;16357:220;:::o;16583:179::-;16723:31;16719:1;16711:6;16707:14;16700:55;16583:179;:::o;16768:164::-;16908:16;16904:1;16896:6;16892:14;16885:40;16768:164;:::o;16938:223::-;17078:34;17074:1;17066:6;17062:14;17055:58;17147:6;17142:2;17134:6;17130:15;17123:31;16938:223;:::o;17167:122::-;17240:24;17258:5;17240:24;:::i;:::-;17233:5;17230:35;17220:63;;17279:1;17276;17269:12;17220:63;17167:122;:::o;17295:116::-;17365:21;17380:5;17365:21;:::i;:::-;17358:5;17355:32;17345:60;;17401:1;17398;17391:12;17345:60;17295:116;:::o;17417:150::-;17504:38;17536:5;17504:38;:::i;:::-;17497:5;17494:49;17484:77;;17557:1;17554;17547:12;17484:77;17417:150;:::o;17573:122::-;17646:24;17664:5;17646:24;:::i;:::-;17639:5;17636:35;17626:63;;17685:1;17682;17675:12;17626:63;17573:122;:::o

Swarm Source

ipfs://1aa168a9f137d93defe638045309d1082a7bc349c32eca9b504d2d7f7bce44f6

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.