ETH Price: $3,301.11 (-3.87%)
Gas: 20 Gwei

Contract

0xdf8A88212FF229446e003f8f879e263D3616b57A
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Withdraw201367002024-06-21 1:05:3512 days ago1718931935IN
0xdf8A8821...D3616b57A
0 ETH0.000223462.55192685
Withdraw201303192024-06-20 3:40:1113 days ago1718854811IN
0xdf8A8821...D3616b57A
0 ETH0.000455885.20604921
Withdraw200829842024-06-13 12:45:1120 days ago1718282711IN
0xdf8A8821...D3616b57A
0 ETH0.0012741614.55046331
Withdraw200764182024-06-12 14:43:1120 days ago1718203391IN
0xdf8A8821...D3616b57A
0 ETH0.0021416724.4570392
Withdraw200763782024-06-12 14:35:1120 days ago1718202911IN
0xdf8A8821...D3616b57A
0 ETH0.0026376325.64143464
Withdraw199919292024-05-31 19:33:5932 days ago1717184039IN
0xdf8A8821...D3616b57A
0 ETH0.0009159310.45957306
Withdraw199919232024-05-31 19:32:4732 days ago1717183967IN
0xdf8A8821...D3616b57A
0 ETH0.001100610.69936539
Withdraw197204912024-04-23 20:31:1170 days ago1713904271IN
0xdf8A8821...D3616b57A
0 ETH0.0013811815.77252839
Withdraw197204792024-04-23 20:28:4770 days ago1713904127IN
0xdf8A8821...D3616b57A
0 ETH0.0016988316.51503386
Withdraw197134432024-04-22 20:52:3571 days ago1713819155IN
0xdf8A8821...D3616b57A
0 ETH0.0009656411.02720535
Withdraw196993332024-04-20 21:32:5973 days ago1713648779IN
0xdf8A8821...D3616b57A
0 ETH0.001437486.74098402
Withdraw196058362024-04-07 19:16:1186 days ago1712517371IN
0xdf8A8821...D3616b57A
0 ETH0.0015173117.32704296
Withdraw195735652024-04-03 6:48:5991 days ago1712126939IN
0xdf8A8821...D3616b57A
0 ETH0.0018649821.29730874
Withdraw195351712024-03-28 21:23:1196 days ago1711660991IN
0xdf8A8821...D3616b57A
0 ETH0.0033945738.76461243
Withdraw195279912024-03-27 20:41:4797 days ago1711572107IN
0xdf8A8821...D3616b57A
0 ETH0.0032117136.67643582
Withdraw194715752024-03-19 21:49:59105 days ago1710884999IN
0xdf8A8821...D3616b57A
0 ETH0.0028463132.50366167
Withdraw194592182024-03-18 4:10:47107 days ago1710735047IN
0xdf8A8821...D3616b57A
0 ETH0.0051007724.40571851
Withdraw194472802024-03-16 11:52:47109 days ago1710589967IN
0xdf8A8821...D3616b57A
0 ETH0.0026840830.6511041
Withdraw194441142024-03-16 1:10:23109 days ago1710551423IN
0xdf8A8821...D3616b57A
0 ETH0.0029257433.41077406
Withdraw194302322024-03-14 2:17:11111 days ago1710382631IN
0xdf8A8821...D3616b57A
0 ETH0.0049633256.67896273
Withdraw194302092024-03-14 2:12:23111 days ago1710382343IN
0xdf8A8821...D3616b57A
0 ETH0.0036670952.03848347
Withdraw194296882024-03-14 0:26:47111 days ago1710376007IN
0xdf8A8821...D3616b57A
0 ETH0.0021042153.02838383
Withdraw194296882024-03-14 0:26:47111 days ago1710376007IN
0xdf8A8821...D3616b57A
0 ETH0.0021042153.02838383
Withdraw194296872024-03-14 0:26:35111 days ago1710375995IN
0xdf8A8821...D3616b57A
0 ETH0.0051364749.93368266
Withdraw194277142024-03-13 17:45:47111 days ago1710351947IN
0xdf8A8821...D3616b57A
0 ETH0.0065312474.58402762
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:
StakeSeals

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-07
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

interface IPIXL {
    function whitelist_mint(address account, uint256 amount) external;
}

contract StakeSeals is IERC721Receiver, Ownable {
    using EnumerableSet for EnumerableSet.UintSet;

    address public ERC20_CONTRACT;
    address public ERC721_CONTRACT;
    uint256 public EXPIRATION; //expiry block number (avg 15s per block)

    mapping(address => EnumerableSet.UintSet) private _deposits;
    mapping(address => mapping(uint256 => uint256)) public depositBlocks;
    mapping (uint256 => uint256) public tokenRarity;
    uint256[7] public rewardRate;   
    bool started;

    constructor(
        address _erc20,
        address _erc721,
        uint256 _expiration
    ) {
        ERC20_CONTRACT = _erc20;
        ERC721_CONTRACT = _erc721;
        EXPIRATION = block.number + _expiration;
        // number of tokens Per day
        rewardRate = [50, 60, 75, 100, 150, 500, 0];
        started = false;
    }

    function setRate(uint256 _rarity, uint256 _rate) public onlyOwner() {
        rewardRate[_rarity] = _rate;
    }

    function setRarity(uint256 _tokenId, uint256 _rarity) public onlyOwner() {
        tokenRarity[_tokenId] = _rarity;
    }

    function setBatchRarity(uint256[] memory _tokenIds, uint256 _rarity) public onlyOwner() {
        for (uint256 i; i < _tokenIds.length; i++) {
            uint256 tokenId = _tokenIds[i];
            tokenRarity[tokenId] = _rarity;
        }
    }

    function setExpiration(uint256 _expiration) public onlyOwner() {
        EXPIRATION = _expiration;
    }

    
    function toggleStart() public onlyOwner() {
        started = !started;
    }

    function setTokenAddress(address _tokenAddress) public onlyOwner() {
        // Used to change rewards token if needed
        ERC20_CONTRACT = _tokenAddress;
    }

    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external pure override returns (bytes4) {
        return IERC721Receiver.onERC721Received.selector;
    }

    function depositsOf(address account)
        external
        view
        returns (uint256[] memory)
    {
        EnumerableSet.UintSet storage depositSet = _deposits[account];
        uint256[] memory tokenIds = new uint256[](depositSet.length());

        for (uint256 i; i < depositSet.length(); i++) {
            tokenIds[i] = depositSet.at(i);
        }

        return tokenIds;
    }

    function findRate(uint256 tokenId)
        public
        view
        returns (uint256 rate) 
    {
        uint256 rarity = tokenRarity[tokenId];
        uint256 perDay = rewardRate[rarity];
        
        // 6000 blocks per day
        // perDay / 6000 = reward per block

        rate = (perDay * 1e18) / 6000;
        
        return rate;
    }

    function calculateRewards(address account, uint256[] memory tokenIds)
        public
        view
        returns (uint256[] memory rewards)
    {
        rewards = new uint256[](tokenIds.length);

        for (uint256 i; i < tokenIds.length; i++) {
            uint256 tokenId = tokenIds[i];
            uint256 rate = findRate(tokenId);
            rewards[i] =
                rate *
                (_deposits[account].contains(tokenId) ? 1 : 0) *
                (Math.min(block.number, EXPIRATION) -
                    depositBlocks[account][tokenId]);
        }
    }

    function claimRewards(uint256[] calldata tokenIds) public {
        uint256 reward;
        uint256 curblock = Math.min(block.number, EXPIRATION);

        uint256[] memory rewards = calculateRewards(msg.sender, tokenIds);

        for (uint256 i; i < tokenIds.length; i++) {
            reward += rewards[i];
            depositBlocks[msg.sender][tokenIds[i]] = curblock;
        }

        if (reward > 0) {
            IPIXL(ERC20_CONTRACT).whitelist_mint(msg.sender, reward);
        }
    }

    function deposit(uint256[] calldata tokenIds) external {
        require(started, 'StakeSeals: Staking contract not started yet');

        claimRewards(tokenIds);
        

        for (uint256 i; i < tokenIds.length; i++) {
            IERC721(ERC721_CONTRACT).safeTransferFrom(
                msg.sender,
                address(this),
                tokenIds[i],
                ''
            );
            _deposits[msg.sender].add(tokenIds[i]);
        }
    }

    function admin_deposit(uint256[] calldata tokenIds) onlyOwner() external {
        claimRewards(tokenIds);
        

        for (uint256 i; i < tokenIds.length; i++) {
            IERC721(ERC721_CONTRACT).safeTransferFrom(
                msg.sender,
                address(this),
                tokenIds[i],
                ''
            );
            _deposits[msg.sender].add(tokenIds[i]);
        }
    }

    function withdraw(uint256[] calldata tokenIds) external {
        claimRewards(tokenIds);

        for (uint256 i; i < tokenIds.length; i++) {
            require(
                _deposits[msg.sender].contains(tokenIds[i]),
                'StakeSeals: Token not deposited'
            );

            _deposits[msg.sender].remove(tokenIds[i]);

            IERC721(ERC721_CONTRACT).safeTransferFrom(
                address(this),
                msg.sender,
                tokenIds[i],
                ''
            );
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_erc20","type":"address"},{"internalType":"address","name":"_erc721","type":"address"},{"internalType":"uint256","name":"_expiration","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"ERC20_CONTRACT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ERC721_CONTRACT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXPIRATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"admin_deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"calculateRewards","outputs":[{"internalType":"uint256[]","name":"rewards","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"depositBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"depositsOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"findRate","outputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"_rarity","type":"uint256"}],"name":"setBatchRarity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_expiration","type":"uint256"}],"name":"setExpiration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_rarity","type":"uint256"}],"name":"setRarity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rarity","type":"uint256"},{"internalType":"uint256","name":"_rate","type":"uint256"}],"name":"setRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"setTokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenRarity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620029b8380380620029b88339818101604052810190620000379190620002df565b620000576200004b6200017b60201b60201c565b6200018360201b60201c565b82600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508043620000e7919062000335565b6003819055506040518060e00160405280603261ffff168152602001603c61ffff168152602001604b61ffff168152602001606461ffff168152602001609661ffff1681526020016101f461ffff168152602001600061ffff1681525060079060076200015692919062000247565b506000600e60006101000a81548160ff02191690831515021790555050505062000433565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82600781019282156200027f579160200282015b828111156200027e578251829061ffff169055916020019190600101906200025b565b5b5090506200028e919062000292565b5090565b5b80821115620002ad57600081600090555060010162000293565b5090565b600081519050620002c281620003ff565b92915050565b600081519050620002d98162000419565b92915050565b600080600060608486031215620002f557600080fd5b60006200030586828701620002b1565b93505060206200031886828701620002b1565b92505060406200032b86828701620002c8565b9150509250925092565b60006200034282620003c6565b91506200034f83620003c6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003875762000386620003d0565b5b828201905092915050565b60006200039f82620003a6565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6200040a8162000392565b81146200041657600080fd5b50565b6200042481620003c6565b81146200043057600080fd5b50565b61257580620004436000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063b97e439a1161007c578063b97e439a14610374578063bb4b573414610390578063cea01962146103ae578063e3a9db1a146103de578063e984d7941461040e578063f2fde38b1461042a5761014d565b8063715018a6146102b45780638da5cb5b146102be578063940414ce146102dc578063983d95ce1461030c578063a2d0e65014610328578063afb0a369146103445761014d565b806326a4e8d21161011557806326a4e8d21461020a57806346df2ccb14610226578063515a20ba14610242578063598b8e711461025e5780635eac62391461027a5780636b9f69b4146102965761014d565b8063068c526f1461015257806306dfe2d11461018257806311cbef3d146101b2578063150b7a02146101bc57806316c2acb2146101ec575b600080fd5b61016c60048036038101906101679190611cfa565b610446565b604051610179919061212e565b60405180910390f35b61019c60048036038101906101979190611d4e565b610657565b6040516101a991906121eb565b60405180910390f35b6101ba61067c565b005b6101d660048036038101906101d19190611c7a565b610724565b6040516101e39190612150565b60405180910390f35b6101f4610739565b60405161020191906120a0565b60405180910390f35b610224600480360381019061021f9190611c51565b61075f565b005b610240600480360381019061023b9190611e4c565b61081f565b005b61025c60048036038101906102579190611e23565b6108df565b005b61027860048036038101906102739190611d8a565b610965565b005b610294600480360381019061028f9190611d8a565b610b45565b005b61029e610d49565b6040516102ab91906120a0565b60405180910390f35b6102bc610d6f565b005b6102c6610df7565b6040516102d391906120a0565b60405180910390f35b6102f660048036038101906102f19190611e23565b610e20565b60405161030391906121eb565b60405180910390f35b61032660048036038101906103219190611d8a565b610ea3565b005b610342600480360381019061033d9190611dcf565b611103565b005b61035e60048036038101906103599190611e23565b611201565b60405161036b91906121eb565b60405180910390f35b61038e60048036038101906103899190611d8a565b611219565b005b610398611426565b6040516103a591906121eb565b60405180910390f35b6103c860048036038101906103c39190611e23565b61142c565b6040516103d591906121eb565b60405180910390f35b6103f860048036038101906103f39190611c51565b611447565b604051610405919061212e565b60405180910390f35b61042860048036038101906104239190611e4c565b611590565b005b610444600480360381019061043f9190611c51565b611628565b005b6060815167ffffffffffffffff811115610489577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156104b75781602001602082028036833780820191505090505b50905060005b8251811015610650576000838281518110610501577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600061051682610e20565b9050600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000205461057543600354611720565b61057f919061239f565b6105d083600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061173990919063ffffffff16565b6105db5760006105de565b60015b60ff16826105ec9190612345565b6105f69190612345565b84848151811061062f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050505080806106489061243b565b9150506104bd565b5092915050565b6005602052816000526040600020602052806000526040600020600091509150505481565b610684611753565b73ffffffffffffffffffffffffffffffffffffffff166106a2610df7565b73ffffffffffffffffffffffffffffffffffffffff16146106f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ef906121cb565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600063150b7a0260e01b905095945050505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610767611753565b73ffffffffffffffffffffffffffffffffffffffff16610785610df7565b73ffffffffffffffffffffffffffffffffffffffff16146107db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d2906121cb565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610827611753565b73ffffffffffffffffffffffffffffffffffffffff16610845610df7565b73ffffffffffffffffffffffffffffffffffffffff161461089b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610892906121cb565b60405180910390fd5b80600783600781106108d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01819055505050565b6108e7611753565b73ffffffffffffffffffffffffffffffffffffffff16610905610df7565b73ffffffffffffffffffffffffffffffffffffffff161461095b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610952906121cb565b60405180910390fd5b8060038190555050565b600e60009054906101000a900460ff166109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab906121ab565b60405180910390fd5b6109be8282610b45565b60005b82829050811015610b4057600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde3330868686818110610a45577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518463ffffffff1660e01b8152600401610a6a939291906120bb565b600060405180830381600087803b158015610a8457600080fd5b505af1158015610a98573d6000803e3d6000fd5b50505050610b2c838383818110610ad8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061175b90919063ffffffff16565b508080610b389061243b565b9150506109c1565b505050565b600080610b5443600354611720565b90506000610ba333868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050610446565b905060005b85859050811015610ca857818181518110610bec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015184610bff91906122be565b935082600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000888885818110610c7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358152602001908152602001600020819055508080610ca09061243b565b915050610ba8565b506000831115610d4257600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166320e45f6e33856040518363ffffffff1660e01b8152600401610d0f929190612105565b600060405180830381600087803b158015610d2957600080fd5b505af1158015610d3d573d6000803e3d6000fd5b505050505b5050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d77611753565b73ffffffffffffffffffffffffffffffffffffffff16610d95610df7565b73ffffffffffffffffffffffffffffffffffffffff1614610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de2906121cb565b60405180910390fd5b610df56000611775565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060066000848152602001908152602001600020549050600060078260078110610e75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050611770670de0b6b3a764000082610e909190612345565b610e9a9190612314565b92505050919050565b610ead8282610b45565b60005b828290508110156110fe57610f4b838383818110610ef7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061173990919063ffffffff16565b610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f819061216b565b60405180910390fd5b61101a838383818110610fc6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061183990919063ffffffff16565b50600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde3033868686818110611094577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518463ffffffff1660e01b81526004016110b9939291906120bb565b600060405180830381600087803b1580156110d357600080fd5b505af11580156110e7573d6000803e3d6000fd5b5050505080806110f69061243b565b915050610eb0565b505050565b61110b611753565b73ffffffffffffffffffffffffffffffffffffffff16611129610df7565b73ffffffffffffffffffffffffffffffffffffffff161461117f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611176906121cb565b60405180910390fd5b60005b82518110156111fc5760008382815181106111c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508260066000838152602001908152602001600020819055505080806111f49061243b565b915050611182565b505050565b60066020528060005260406000206000915090505481565b611221611753565b73ffffffffffffffffffffffffffffffffffffffff1661123f610df7565b73ffffffffffffffffffffffffffffffffffffffff1614611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c906121cb565b60405180910390fd5b61129f8282610b45565b60005b8282905081101561142157600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde3330868686818110611326577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518463ffffffff1660e01b815260040161134b939291906120bb565b600060405180830381600087803b15801561136557600080fd5b505af1158015611379573d6000803e3d6000fd5b5050505061140d8383838181106113b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061175b90919063ffffffff16565b5080806114199061243b565b9150506112a2565b505050565b60035481565b6007816007811061143c57600080fd5b016000915090505481565b60606000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600061149782611853565b67ffffffffffffffff8111156114d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115045781602001602082028036833780820191505090505b50905060005b61151383611853565b8110156115855761152d818461186890919063ffffffff16565b828281518110611566577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061157d9061243b565b91505061150a565b508092505050919050565b611598611753565b73ffffffffffffffffffffffffffffffffffffffff166115b6610df7565b73ffffffffffffffffffffffffffffffffffffffff161461160c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611603906121cb565b60405180910390fd5b8060066000848152602001908152602001600020819055505050565b611630611753565b73ffffffffffffffffffffffffffffffffffffffff1661164e610df7565b73ffffffffffffffffffffffffffffffffffffffff16146116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b906121cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b9061218b565b60405180910390fd5b61171d81611775565b50565b600081831061172f5781611731565b825b905092915050565b600061174b836000018360001b611882565b905092915050565b600033905090565b600061176d836000018360001b6118a5565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061184b836000018360001b611915565b905092915050565b600061186182600001611a9b565b9050919050565b60006118778360000183611aac565b60001c905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b60006118b18383611882565b61190a57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061190f565b600090505b92915050565b60008083600101600084815260200190815260200160002054905060008114611a8f576000600182611947919061239f565b905060006001866000018054905061195f919061239f565b9050818114611a1a5760008660000182815481106119a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050808760000184815481106119f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611a54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611a95565b60009150505b92915050565b600081600001805490509050919050565b6000826000018281548110611aea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b6000611b10611b0b84612237565b612206565b90508083825260208201905082856020860282011115611b2f57600080fd5b60005b85811015611b5f5781611b458882611c3c565b845260208401935060208301925050600181019050611b32565b5050509392505050565b600081359050611b7881612511565b92915050565b60008083601f840112611b9057600080fd5b8235905067ffffffffffffffff811115611ba957600080fd5b602083019150836020820283011115611bc157600080fd5b9250929050565b600082601f830112611bd957600080fd5b8135611be9848260208601611afd565b91505092915050565b60008083601f840112611c0457600080fd5b8235905067ffffffffffffffff811115611c1d57600080fd5b602083019150836001820283011115611c3557600080fd5b9250929050565b600081359050611c4b81612528565b92915050565b600060208284031215611c6357600080fd5b6000611c7184828501611b69565b91505092915050565b600080600080600060808688031215611c9257600080fd5b6000611ca088828901611b69565b9550506020611cb188828901611b69565b9450506040611cc288828901611c3c565b935050606086013567ffffffffffffffff811115611cdf57600080fd5b611ceb88828901611bf2565b92509250509295509295909350565b60008060408385031215611d0d57600080fd5b6000611d1b85828601611b69565b925050602083013567ffffffffffffffff811115611d3857600080fd5b611d4485828601611bc8565b9150509250929050565b60008060408385031215611d6157600080fd5b6000611d6f85828601611b69565b9250506020611d8085828601611c3c565b9150509250929050565b60008060208385031215611d9d57600080fd5b600083013567ffffffffffffffff811115611db757600080fd5b611dc385828601611b7e565b92509250509250929050565b60008060408385031215611de257600080fd5b600083013567ffffffffffffffff811115611dfc57600080fd5b611e0885828601611bc8565b9250506020611e1985828601611c3c565b9150509250929050565b600060208284031215611e3557600080fd5b6000611e4384828501611c3c565b91505092915050565b60008060408385031215611e5f57600080fd5b6000611e6d85828601611c3c565b9250506020611e7e85828601611c3c565b9150509250929050565b6000611e948383612082565b60208301905092915050565b611ea9816123d3565b82525050565b6000611eba82612273565b611ec4818561228b565b9350611ecf83612263565b8060005b83811015611f00578151611ee78882611e88565b9750611ef28361227e565b925050600181019050611ed3565b5085935050505092915050565b611f16816123e5565b82525050565b6000611f29601f836122ad565b91507f5374616b655365616c733a20546f6b656e206e6f74206465706f7369746564006000830152602082019050919050565b6000611f696026836122ad565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611fcf602c836122ad565b91507f5374616b655365616c733a205374616b696e6720636f6e7472616374206e6f7460008301527f20737461727465642079657400000000000000000000000000000000000000006020830152604082019050919050565b60006120356020836122ad565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061207560008361229c565b9150600082019050919050565b61208b81612431565b82525050565b61209a81612431565b82525050565b60006020820190506120b56000830184611ea0565b92915050565b60006080820190506120d06000830186611ea0565b6120dd6020830185611ea0565b6120ea6040830184612091565b81810360608301526120fb81612068565b9050949350505050565b600060408201905061211a6000830185611ea0565b6121276020830184612091565b9392505050565b600060208201905081810360008301526121488184611eaf565b905092915050565b60006020820190506121656000830184611f0d565b92915050565b6000602082019050818103600083015261218481611f1c565b9050919050565b600060208201905081810360008301526121a481611f5c565b9050919050565b600060208201905081810360008301526121c481611fc2565b9050919050565b600060208201905081810360008301526121e481612028565b9050919050565b60006020820190506122006000830184612091565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561222d5761222c6124e2565b5b8060405250919050565b600067ffffffffffffffff821115612252576122516124e2565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006122c982612431565b91506122d483612431565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561230957612308612484565b5b828201905092915050565b600061231f82612431565b915061232a83612431565b92508261233a576123396124b3565b5b828204905092915050565b600061235082612431565b915061235b83612431565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561239457612393612484565b5b828202905092915050565b60006123aa82612431565b91506123b583612431565b9250828210156123c8576123c7612484565b5b828203905092915050565b60006123de82612411565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061244682612431565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561247957612478612484565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61251a816123d3565b811461252557600080fd5b50565b61253181612431565b811461253c57600080fd5b5056fea26469706673582212202f576229ad0672953679f4b1ad21d6fa257d2381b23145c7f48dc52100b7b38b64736f6c63430008000033000000000000000000000000427a03fb96d9a94a6727fbcfbba143444090dd64000000000000000000000000364c828ee171616a39897688a831c2499ad972ec00000000000000000000000000000000000000000000003635c9adc5dea00000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063b97e439a1161007c578063b97e439a14610374578063bb4b573414610390578063cea01962146103ae578063e3a9db1a146103de578063e984d7941461040e578063f2fde38b1461042a5761014d565b8063715018a6146102b45780638da5cb5b146102be578063940414ce146102dc578063983d95ce1461030c578063a2d0e65014610328578063afb0a369146103445761014d565b806326a4e8d21161011557806326a4e8d21461020a57806346df2ccb14610226578063515a20ba14610242578063598b8e711461025e5780635eac62391461027a5780636b9f69b4146102965761014d565b8063068c526f1461015257806306dfe2d11461018257806311cbef3d146101b2578063150b7a02146101bc57806316c2acb2146101ec575b600080fd5b61016c60048036038101906101679190611cfa565b610446565b604051610179919061212e565b60405180910390f35b61019c60048036038101906101979190611d4e565b610657565b6040516101a991906121eb565b60405180910390f35b6101ba61067c565b005b6101d660048036038101906101d19190611c7a565b610724565b6040516101e39190612150565b60405180910390f35b6101f4610739565b60405161020191906120a0565b60405180910390f35b610224600480360381019061021f9190611c51565b61075f565b005b610240600480360381019061023b9190611e4c565b61081f565b005b61025c60048036038101906102579190611e23565b6108df565b005b61027860048036038101906102739190611d8a565b610965565b005b610294600480360381019061028f9190611d8a565b610b45565b005b61029e610d49565b6040516102ab91906120a0565b60405180910390f35b6102bc610d6f565b005b6102c6610df7565b6040516102d391906120a0565b60405180910390f35b6102f660048036038101906102f19190611e23565b610e20565b60405161030391906121eb565b60405180910390f35b61032660048036038101906103219190611d8a565b610ea3565b005b610342600480360381019061033d9190611dcf565b611103565b005b61035e60048036038101906103599190611e23565b611201565b60405161036b91906121eb565b60405180910390f35b61038e60048036038101906103899190611d8a565b611219565b005b610398611426565b6040516103a591906121eb565b60405180910390f35b6103c860048036038101906103c39190611e23565b61142c565b6040516103d591906121eb565b60405180910390f35b6103f860048036038101906103f39190611c51565b611447565b604051610405919061212e565b60405180910390f35b61042860048036038101906104239190611e4c565b611590565b005b610444600480360381019061043f9190611c51565b611628565b005b6060815167ffffffffffffffff811115610489577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156104b75781602001602082028036833780820191505090505b50905060005b8251811015610650576000838281518110610501577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600061051682610e20565b9050600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000205461057543600354611720565b61057f919061239f565b6105d083600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061173990919063ffffffff16565b6105db5760006105de565b60015b60ff16826105ec9190612345565b6105f69190612345565b84848151811061062f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050505080806106489061243b565b9150506104bd565b5092915050565b6005602052816000526040600020602052806000526040600020600091509150505481565b610684611753565b73ffffffffffffffffffffffffffffffffffffffff166106a2610df7565b73ffffffffffffffffffffffffffffffffffffffff16146106f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ef906121cb565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600063150b7a0260e01b905095945050505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610767611753565b73ffffffffffffffffffffffffffffffffffffffff16610785610df7565b73ffffffffffffffffffffffffffffffffffffffff16146107db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d2906121cb565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610827611753565b73ffffffffffffffffffffffffffffffffffffffff16610845610df7565b73ffffffffffffffffffffffffffffffffffffffff161461089b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610892906121cb565b60405180910390fd5b80600783600781106108d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01819055505050565b6108e7611753565b73ffffffffffffffffffffffffffffffffffffffff16610905610df7565b73ffffffffffffffffffffffffffffffffffffffff161461095b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610952906121cb565b60405180910390fd5b8060038190555050565b600e60009054906101000a900460ff166109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab906121ab565b60405180910390fd5b6109be8282610b45565b60005b82829050811015610b4057600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde3330868686818110610a45577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518463ffffffff1660e01b8152600401610a6a939291906120bb565b600060405180830381600087803b158015610a8457600080fd5b505af1158015610a98573d6000803e3d6000fd5b50505050610b2c838383818110610ad8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061175b90919063ffffffff16565b508080610b389061243b565b9150506109c1565b505050565b600080610b5443600354611720565b90506000610ba333868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050610446565b905060005b85859050811015610ca857818181518110610bec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015184610bff91906122be565b935082600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000888885818110610c7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358152602001908152602001600020819055508080610ca09061243b565b915050610ba8565b506000831115610d4257600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166320e45f6e33856040518363ffffffff1660e01b8152600401610d0f929190612105565b600060405180830381600087803b158015610d2957600080fd5b505af1158015610d3d573d6000803e3d6000fd5b505050505b5050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d77611753565b73ffffffffffffffffffffffffffffffffffffffff16610d95610df7565b73ffffffffffffffffffffffffffffffffffffffff1614610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de2906121cb565b60405180910390fd5b610df56000611775565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060066000848152602001908152602001600020549050600060078260078110610e75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050611770670de0b6b3a764000082610e909190612345565b610e9a9190612314565b92505050919050565b610ead8282610b45565b60005b828290508110156110fe57610f4b838383818110610ef7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061173990919063ffffffff16565b610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f819061216b565b60405180910390fd5b61101a838383818110610fc6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061183990919063ffffffff16565b50600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde3033868686818110611094577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518463ffffffff1660e01b81526004016110b9939291906120bb565b600060405180830381600087803b1580156110d357600080fd5b505af11580156110e7573d6000803e3d6000fd5b5050505080806110f69061243b565b915050610eb0565b505050565b61110b611753565b73ffffffffffffffffffffffffffffffffffffffff16611129610df7565b73ffffffffffffffffffffffffffffffffffffffff161461117f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611176906121cb565b60405180910390fd5b60005b82518110156111fc5760008382815181106111c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508260066000838152602001908152602001600020819055505080806111f49061243b565b915050611182565b505050565b60066020528060005260406000206000915090505481565b611221611753565b73ffffffffffffffffffffffffffffffffffffffff1661123f610df7565b73ffffffffffffffffffffffffffffffffffffffff1614611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c906121cb565b60405180910390fd5b61129f8282610b45565b60005b8282905081101561142157600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b88d4fde3330868686818110611326577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356040518463ffffffff1660e01b815260040161134b939291906120bb565b600060405180830381600087803b15801561136557600080fd5b505af1158015611379573d6000803e3d6000fd5b5050505061140d8383838181106113b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061175b90919063ffffffff16565b5080806114199061243b565b9150506112a2565b505050565b60035481565b6007816007811061143c57600080fd5b016000915090505481565b60606000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600061149782611853565b67ffffffffffffffff8111156114d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115045781602001602082028036833780820191505090505b50905060005b61151383611853565b8110156115855761152d818461186890919063ffffffff16565b828281518110611566577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061157d9061243b565b91505061150a565b508092505050919050565b611598611753565b73ffffffffffffffffffffffffffffffffffffffff166115b6610df7565b73ffffffffffffffffffffffffffffffffffffffff161461160c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611603906121cb565b60405180910390fd5b8060066000848152602001908152602001600020819055505050565b611630611753565b73ffffffffffffffffffffffffffffffffffffffff1661164e610df7565b73ffffffffffffffffffffffffffffffffffffffff16146116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b906121cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b9061218b565b60405180910390fd5b61171d81611775565b50565b600081831061172f5781611731565b825b905092915050565b600061174b836000018360001b611882565b905092915050565b600033905090565b600061176d836000018360001b6118a5565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061184b836000018360001b611915565b905092915050565b600061186182600001611a9b565b9050919050565b60006118778360000183611aac565b60001c905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b60006118b18383611882565b61190a57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061190f565b600090505b92915050565b60008083600101600084815260200190815260200160002054905060008114611a8f576000600182611947919061239f565b905060006001866000018054905061195f919061239f565b9050818114611a1a5760008660000182815481106119a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050808760000184815481106119f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611a54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611a95565b60009150505b92915050565b600081600001805490509050919050565b6000826000018281548110611aea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b6000611b10611b0b84612237565b612206565b90508083825260208201905082856020860282011115611b2f57600080fd5b60005b85811015611b5f5781611b458882611c3c565b845260208401935060208301925050600181019050611b32565b5050509392505050565b600081359050611b7881612511565b92915050565b60008083601f840112611b9057600080fd5b8235905067ffffffffffffffff811115611ba957600080fd5b602083019150836020820283011115611bc157600080fd5b9250929050565b600082601f830112611bd957600080fd5b8135611be9848260208601611afd565b91505092915050565b60008083601f840112611c0457600080fd5b8235905067ffffffffffffffff811115611c1d57600080fd5b602083019150836001820283011115611c3557600080fd5b9250929050565b600081359050611c4b81612528565b92915050565b600060208284031215611c6357600080fd5b6000611c7184828501611b69565b91505092915050565b600080600080600060808688031215611c9257600080fd5b6000611ca088828901611b69565b9550506020611cb188828901611b69565b9450506040611cc288828901611c3c565b935050606086013567ffffffffffffffff811115611cdf57600080fd5b611ceb88828901611bf2565b92509250509295509295909350565b60008060408385031215611d0d57600080fd5b6000611d1b85828601611b69565b925050602083013567ffffffffffffffff811115611d3857600080fd5b611d4485828601611bc8565b9150509250929050565b60008060408385031215611d6157600080fd5b6000611d6f85828601611b69565b9250506020611d8085828601611c3c565b9150509250929050565b60008060208385031215611d9d57600080fd5b600083013567ffffffffffffffff811115611db757600080fd5b611dc385828601611b7e565b92509250509250929050565b60008060408385031215611de257600080fd5b600083013567ffffffffffffffff811115611dfc57600080fd5b611e0885828601611bc8565b9250506020611e1985828601611c3c565b9150509250929050565b600060208284031215611e3557600080fd5b6000611e4384828501611c3c565b91505092915050565b60008060408385031215611e5f57600080fd5b6000611e6d85828601611c3c565b9250506020611e7e85828601611c3c565b9150509250929050565b6000611e948383612082565b60208301905092915050565b611ea9816123d3565b82525050565b6000611eba82612273565b611ec4818561228b565b9350611ecf83612263565b8060005b83811015611f00578151611ee78882611e88565b9750611ef28361227e565b925050600181019050611ed3565b5085935050505092915050565b611f16816123e5565b82525050565b6000611f29601f836122ad565b91507f5374616b655365616c733a20546f6b656e206e6f74206465706f7369746564006000830152602082019050919050565b6000611f696026836122ad565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611fcf602c836122ad565b91507f5374616b655365616c733a205374616b696e6720636f6e7472616374206e6f7460008301527f20737461727465642079657400000000000000000000000000000000000000006020830152604082019050919050565b60006120356020836122ad565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061207560008361229c565b9150600082019050919050565b61208b81612431565b82525050565b61209a81612431565b82525050565b60006020820190506120b56000830184611ea0565b92915050565b60006080820190506120d06000830186611ea0565b6120dd6020830185611ea0565b6120ea6040830184612091565b81810360608301526120fb81612068565b9050949350505050565b600060408201905061211a6000830185611ea0565b6121276020830184612091565b9392505050565b600060208201905081810360008301526121488184611eaf565b905092915050565b60006020820190506121656000830184611f0d565b92915050565b6000602082019050818103600083015261218481611f1c565b9050919050565b600060208201905081810360008301526121a481611f5c565b9050919050565b600060208201905081810360008301526121c481611fc2565b9050919050565b600060208201905081810360008301526121e481612028565b9050919050565b60006020820190506122006000830184612091565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561222d5761222c6124e2565b5b8060405250919050565b600067ffffffffffffffff821115612252576122516124e2565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006122c982612431565b91506122d483612431565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561230957612308612484565b5b828201905092915050565b600061231f82612431565b915061232a83612431565b92508261233a576123396124b3565b5b828204905092915050565b600061235082612431565b915061235b83612431565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561239457612393612484565b5b828202905092915050565b60006123aa82612431565b91506123b583612431565b9250828210156123c8576123c7612484565b5b828203905092915050565b60006123de82612411565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061244682612431565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561247957612478612484565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61251a816123d3565b811461252557600080fd5b50565b61253181612431565b811461253c57600080fd5b5056fea26469706673582212202f576229ad0672953679f4b1ad21d6fa257d2381b23145c7f48dc52100b7b38b64736f6c63430008000033

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

000000000000000000000000427a03fb96d9a94a6727fbcfbba143444090dd64000000000000000000000000364c828ee171616a39897688a831c2499ad972ec00000000000000000000000000000000000000000000003635c9adc5dea00000

-----Decoded View---------------
Arg [0] : _erc20 (address): 0x427A03Fb96D9A94A6727fbcfbBA143444090dd64
Arg [1] : _erc721 (address): 0x364C828eE171616a39897688A831c2499aD972ec
Arg [2] : _expiration (uint256): 1000000000000000000000

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000427a03fb96d9a94a6727fbcfbba143444090dd64
Arg [1] : 000000000000000000000000364c828ee171616a39897688a831c2499ad972ec
Arg [2] : 00000000000000000000000000000000000000000000003635c9adc5dea00000


Deployed Bytecode Sourcemap

20650:5377:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23424:591;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20974:68;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22147:79;;;:::i;:::-;;22409:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20795:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22234:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21515:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22027:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24540:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24023:509;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20759:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19925:94;;;:::i;:::-;;19274:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23050:366;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25467:557;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21768:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21049:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25033:426;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20832:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21103:28;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22636:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21637:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20174:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23424:591;23542:24;23608:8;:15;23594:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23584:40;;23642:9;23637:371;23657:8;:15;23653:1;:19;23637:371;;;23694:15;23712:8;23721:1;23712:11;;;;;;;;;;;;;;;;;;;;;;23694:29;;23738:12;23753:17;23762:7;23753:8;:17::i;:::-;23738:32;;23964:13;:22;23978:7;23964:22;;;;;;;;;;;;;;;:31;23987:7;23964:31;;;;;;;;;;;;23906:34;23915:12;23929:10;;23906:8;:34::i;:::-;:89;;;;:::i;:::-;23840:36;23868:7;23840:9;:18;23850:7;23840:18;;;;;;;;;;;;;;;:27;;:36;;;;:::i;:::-;:44;;23883:1;23840:44;;;23879:1;23840:44;23815:70;;:4;:70;;;;:::i;:::-;:181;;;;:::i;:::-;23785:7;23793:1;23785:10;;;;;;;;;;;;;;;;;;;;;:211;;;;;23637:371;;23674:3;;;;;:::i;:::-;;;;23637:371;;;;23424:591;;;;:::o;20974:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22147:79::-;19505:12;:10;:12::i;:::-;19494:23;;:7;:5;:7::i;:::-;:23;;;19486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22211:7:::1;;;;;;;;;;;22210:8;22200:7;;:18;;;;;;;;;;;;;;;;;;22147:79::o:0;22409:219::-;22553:6;22579:41;;;22572:48;;22409:219;;;;;;;:::o;20795:30::-;;;;;;;;;;;;;:::o;22234:167::-;19505:12;:10;:12::i;:::-;19494:23;;:7;:5;:7::i;:::-;:23;;;19486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22380:13:::1;22363:14;;:30;;;;;;;;;;;;;;;;;;22234:167:::0;:::o;21515:114::-;19505:12;:10;:12::i;:::-;19494:23;;:7;:5;:7::i;:::-;:23;;;19486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21616:5:::1;21594:10;21605:7;21594:19;;;;;;;;;;;;;;;;:27;;;;21515:114:::0;;:::o;22027:106::-;19505:12;:10;:12::i;:::-;19494:23;;:7;:5;:7::i;:::-;:23;;;19486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22114:11:::1;22101:10;:24;;;;22027:106:::0;:::o;24540:485::-;24614:7;;;;;;;;;;;24606:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;24683:22;24696:8;;24683:12;:22::i;:::-;24733:9;24728:290;24748:8;;:15;;24744:1;:19;24728:290;;;24793:15;;;;;;;;;;;24785:41;;;24845:10;24882:4;24906:8;;24915:1;24906:11;;;;;;;;;;;;;;;;;;;;;24785:168;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24968:38;24994:8;;25003:1;24994:11;;;;;;;;;;;;;;;;;;;;;24968:9;:21;24978:10;24968:21;;;;;;;;;;;;;;;:25;;:38;;;;:::i;:::-;;24765:3;;;;;:::i;:::-;;;;24728:290;;;;24540:485;;:::o;24023:509::-;24092:14;24117:16;24136:34;24145:12;24159:10;;24136:8;:34::i;:::-;24117:53;;24183:24;24210:38;24227:10;24239:8;;24210:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:16;:38::i;:::-;24183:65;;24266:9;24261:153;24281:8;;:15;;24277:1;:19;24261:153;;;24328:7;24336:1;24328:10;;;;;;;;;;;;;;;;;;;;;;24318:20;;;;;:::i;:::-;;;24394:8;24353:13;:25;24367:10;24353:25;;;;;;;;;;;;;;;:38;24379:8;;24388:1;24379:11;;;;;;;;;;;;;;;;;;;;;24353:38;;;;;;;;;;;:49;;;;24298:3;;;;;:::i;:::-;;;;24261:153;;;;24439:1;24430:6;:10;24426:99;;;24463:14;;;;;;;;;;;24457:36;;;24494:10;24506:6;24457:56;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24426:99;24023:509;;;;;:::o;20759:29::-;;;;;;;;;;;;;:::o;19925:94::-;19505:12;:10;:12::i;:::-;19494:23;;:7;:5;:7::i;:::-;:23;;;19486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19990:21:::1;20008:1;19990:9;:21::i;:::-;19925:94::o:0;19274:87::-;19320:7;19347:6;;;;;;;;;;;19340:13;;19274:87;:::o;23050:366::-;23133:12;23164:14;23181:11;:20;23193:7;23181:20;;;;;;;;;;;;23164:37;;23212:14;23229:10;23240:6;23229:18;;;;;;;;;;;;;;;;;23212:35;;23372:4;23364;23355:6;:13;;;;:::i;:::-;23354:22;;;;:::i;:::-;23347:29;;23397:11;;23050:366;;;:::o;25467:557::-;25534:22;25547:8;;25534:12;:22::i;:::-;25574:9;25569:448;25589:8;;:15;;25585:1;:19;25569:448;;;25652:43;25683:8;;25692:1;25683:11;;;;;;;;;;;;;;;;;;;;;25652:9;:21;25662:10;25652:21;;;;;;;;;;;;;;;:30;;:43;;;;:::i;:::-;25626:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;25779:41;25808:8;;25817:1;25808:11;;;;;;;;;;;;;;;;;;;;;25779:9;:21;25789:10;25779:21;;;;;;;;;;;;;;;:28;;:41;;;;:::i;:::-;;25845:15;;;;;;;;;;;25837:41;;;25905:4;25929:10;25958:8;;25967:1;25958:11;;;;;;;;;;;;;;;;;;;;;25837:168;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25606:3;;;;;:::i;:::-;;;;25569:448;;;;25467:557;;:::o;21768:251::-;19505:12;:10;:12::i;:::-;19494:23;;:7;:5;:7::i;:::-;:23;;;19486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21872:9:::1;21867:145;21887:9;:16;21883:1;:20;21867:145;;;21925:15;21943:9;21953:1;21943:12;;;;;;;;;;;;;;;;;;;;;;21925:30;;21993:7;21970:11;:20;21982:7;21970:20;;;;;;;;;;;:30;;;;21867:145;21905:3;;;;;:::i;:::-;;;;21867:145;;;;21768:251:::0;;:::o;21049:47::-;;;;;;;;;;;;;;;;;:::o;25033:426::-;19505:12;:10;:12::i;:::-;19494:23;;:7;:5;:7::i;:::-;:23;;;19486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25117:22:::1;25130:8;;25117:12;:22::i;:::-;25167:9;25162:290;25182:8;;:15;;25178:1;:19;25162:290;;;25227:15;;;;;;;;;;;25219:41;;;25279:10;25316:4;25340:8;;25349:1;25340:11;;;;;;;;;;;;;;;;;;;;;25219:168;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;25402:38;25428:8;;25437:1;25428:11;;;;;;;;;;;;;;;;;;;;;25402:9;:21;25412:10;25402:21;;;;;;;;;;;;;;;:25;;:38;;;;:::i;:::-;;25199:3;;;;;:::i;:::-;;;;25162:290;;;;25033:426:::0;;:::o;20832:25::-;;;;:::o;21103:28::-;;;;;;;;;;;;;;;;;;;;:::o;22636:406::-;22723:16;22757:40;22800:9;:18;22810:7;22800:18;;;;;;;;;;;;;;;22757:61;;22829:25;22871:19;:10;:17;:19::i;:::-;22857:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22829:62;;22909:9;22904:103;22924:19;:10;:17;:19::i;:::-;22920:1;:23;22904:103;;;22979:16;22993:1;22979:10;:13;;:16;;;;:::i;:::-;22965:8;22974:1;22965:11;;;;;;;;;;;;;;;;;;;;;:30;;;;;22945:3;;;;;:::i;:::-;;;;22904:103;;;;23026:8;23019:15;;;;22636:406;;;:::o;21637:123::-;19505:12;:10;:12::i;:::-;19494:23;;:7;:5;:7::i;:::-;:23;;;19486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21745:7:::1;21721:11;:21;21733:8;21721:21;;;;;;;;;;;:31;;;;21637:123:::0;;:::o;20174:192::-;19505:12;:10;:12::i;:::-;19494:23;;:7;:5;:7::i;:::-;:23;;;19486:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20283:1:::1;20263:22;;:8;:22;;;;20255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20339:19;20349:8;20339:9;:19::i;:::-;20174:192:::0;:::o;6133:106::-;6191:7;6222:1;6218;:5;:13;;6230:1;6218:13;;;6226:1;6218:13;6211:20;;6133:106;;;;:::o;16967:146::-;17044:4;17068:37;17078:3;:10;;17098:5;17090:14;;17068:9;:37::i;:::-;17061:44;;16967:146;;;;:::o;18657:98::-;18710:7;18737:10;18730:17;;18657:98;:::o;16437:131::-;16504:4;16528:32;16533:3;:10;;16553:5;16545:14;;16528:4;:32::i;:::-;16521:39;;16437:131;;;;:::o;20374:173::-;20430:16;20449:6;;;;;;;;;;;20430:25;;20475:8;20466:6;;:17;;;;;;;;;;;;;;;;;;20530:8;20499:40;;20520:8;20499:40;;;;;;;;;;;;20374:173;;:::o;16744:137::-;16814:4;16838:35;16846:3;:10;;16866:5;16858:14;;16838:7;:35::i;:::-;16831:42;;16744:137;;;;:::o;17199:114::-;17259:7;17286:19;17294:3;:10;;17286:7;:19::i;:::-;17279:26;;17199:114;;;:::o;17667:137::-;17738:7;17773:22;17777:3;:10;;17789:5;17773:3;:22::i;:::-;17765:31;;17758:38;;17667:137;;;;:::o;9930:129::-;10003:4;10050:1;10027:3;:12;;:19;10040:5;10027:19;;;;;;;;;;;;:24;;10020:31;;9930:129;;;;:::o;7834:414::-;7897:4;7919:21;7929:3;7934:5;7919:9;:21::i;:::-;7914:327;;7957:3;:11;;7974:5;7957:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8140:3;:11;;:18;;;;8118:3;:12;;:19;8131:5;8118:19;;;;;;;;;;;:40;;;;8180:4;8173:11;;;;7914:327;8224:5;8217:12;;7834:414;;;;;:::o;8424:1420::-;8490:4;8608:18;8629:3;:12;;:19;8642:5;8629:19;;;;;;;;;;;;8608:40;;8679:1;8665:10;:15;8661:1176;;9040:21;9077:1;9064:10;:14;;;;:::i;:::-;9040:38;;9093:17;9134:1;9113:3;:11;;:18;;;;:22;;;;:::i;:::-;9093:42;;9169:13;9156:9;:26;9152:405;;9203:17;9223:3;:11;;9235:9;9223:22;;;;;;;;;;;;;;;;;;;;;;;;9203:42;;9377:9;9348:3;:11;;9360:13;9348:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;9488:10;9462:3;:12;;:23;9475:9;9462:23;;;;;;;;;;;:36;;;;9152:405;;9638:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9733:3;:12;;:19;9746:5;9733:19;;;;;;;;;;;9726:26;;;9776:4;9769:11;;;;;;;8661:1176;9820:5;9813:12;;;8424:1420;;;;;:::o;10145:109::-;10201:7;10228:3;:11;;:18;;;;10221:25;;10145:109;;;:::o;10608:120::-;10675:7;10702:3;:11;;10714:5;10702:18;;;;;;;;;;;;;;;;;;;;;;;;10695:25;;10608:120;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:139::-;;736:6;723:20;714:29;;752:33;779:5;752:33;:::i;:::-;704:87;;;;:::o;814:367::-;;;947:3;940:4;932:6;928:17;924:27;914:2;;965:1;962;955:12;914:2;1001:6;988:20;978:30;;1031:18;1023:6;1020:30;1017:2;;;1063:1;1060;1053:12;1017:2;1100:4;1092:6;1088:17;1076:29;;1154:3;1146:4;1138:6;1134:17;1124:8;1120:32;1117:41;1114:2;;;1171:1;1168;1161:12;1114:2;904:277;;;;;:::o;1204:303::-;;1324:3;1317:4;1309:6;1305:17;1301:27;1291:2;;1342:1;1339;1332:12;1291:2;1382:6;1369:20;1407:94;1497:3;1489:6;1482:4;1474:6;1470:17;1407:94;:::i;:::-;1398:103;;1281:226;;;;;:::o;1526:351::-;;;1643:3;1636:4;1628:6;1624:17;1620:27;1610:2;;1661:1;1658;1651:12;1610:2;1697:6;1684:20;1674:30;;1727:18;1719:6;1716:30;1713:2;;;1759:1;1756;1749:12;1713:2;1796:4;1788:6;1784:17;1772:29;;1850:3;1842:4;1834:6;1830:17;1820:8;1816:32;1813:41;1810:2;;;1867:1;1864;1857:12;1810:2;1600:277;;;;;:::o;1883:139::-;;1967:6;1954:20;1945:29;;1983:33;2010:5;1983:33;:::i;:::-;1935:87;;;;:::o;2028:262::-;;2136:2;2124:9;2115:7;2111:23;2107:32;2104:2;;;2152:1;2149;2142:12;2104:2;2195:1;2220:53;2265:7;2256:6;2245:9;2241:22;2220:53;:::i;:::-;2210:63;;2166:117;2094:196;;;;:::o;2296:829::-;;;;;;2474:3;2462:9;2453:7;2449:23;2445:33;2442:2;;;2491:1;2488;2481:12;2442:2;2534:1;2559:53;2604:7;2595:6;2584:9;2580:22;2559:53;:::i;:::-;2549:63;;2505:117;2661:2;2687:53;2732:7;2723:6;2712:9;2708:22;2687:53;:::i;:::-;2677:63;;2632:118;2789:2;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2760:118;2945:2;2934:9;2930:18;2917:32;2976:18;2968:6;2965:30;2962:2;;;3008:1;3005;2998:12;2962:2;3044:64;3100:7;3091:6;3080:9;3076:22;3044:64;:::i;:::-;3026:82;;;;2888:230;2432:693;;;;;;;;:::o;3131:550::-;;;3281:2;3269:9;3260:7;3256:23;3252:32;3249:2;;;3297:1;3294;3287:12;3249:2;3340:1;3365:53;3410:7;3401:6;3390:9;3386:22;3365:53;:::i;:::-;3355:63;;3311:117;3495:2;3484:9;3480:18;3467:32;3526:18;3518:6;3515:30;3512:2;;;3558:1;3555;3548:12;3512:2;3586:78;3656:7;3647:6;3636:9;3632:22;3586:78;:::i;:::-;3576:88;;3438:236;3239:442;;;;;:::o;3687:407::-;;;3812:2;3800:9;3791:7;3787:23;3783:32;3780:2;;;3828:1;3825;3818:12;3780:2;3871:1;3896:53;3941:7;3932:6;3921:9;3917:22;3896:53;:::i;:::-;3886:63;;3842:117;3998:2;4024:53;4069:7;4060:6;4049:9;4045:22;4024:53;:::i;:::-;4014:63;;3969:118;3770:324;;;;;:::o;4100:425::-;;;4243:2;4231:9;4222:7;4218:23;4214:32;4211:2;;;4259:1;4256;4249:12;4211:2;4330:1;4319:9;4315:17;4302:31;4360:18;4352:6;4349:30;4346:2;;;4392:1;4389;4382:12;4346:2;4428:80;4500:7;4491:6;4480:9;4476:22;4428:80;:::i;:::-;4410:98;;;;4273:245;4201:324;;;;;:::o;4531:550::-;;;4681:2;4669:9;4660:7;4656:23;4652:32;4649:2;;;4697:1;4694;4687:12;4649:2;4768:1;4757:9;4753:17;4740:31;4798:18;4790:6;4787:30;4784:2;;;4830:1;4827;4820:12;4784:2;4858:78;4928:7;4919:6;4908:9;4904:22;4858:78;:::i;:::-;4848:88;;4711:235;4985:2;5011:53;5056:7;5047:6;5036:9;5032:22;5011:53;:::i;:::-;5001:63;;4956:118;4639:442;;;;;:::o;5087:262::-;;5195:2;5183:9;5174:7;5170:23;5166:32;5163:2;;;5211:1;5208;5201:12;5163:2;5254:1;5279:53;5324:7;5315:6;5304:9;5300:22;5279:53;:::i;:::-;5269:63;;5225:117;5153:196;;;;:::o;5355:407::-;;;5480:2;5468:9;5459:7;5455:23;5451:32;5448:2;;;5496:1;5493;5486:12;5448:2;5539:1;5564:53;5609:7;5600:6;5589:9;5585:22;5564:53;:::i;:::-;5554:63;;5510:117;5666:2;5692:53;5737:7;5728:6;5717:9;5713:22;5692:53;:::i;:::-;5682:63;;5637:118;5438:324;;;;;:::o;5768:179::-;;5858:46;5900:3;5892:6;5858:46;:::i;:::-;5936:4;5931:3;5927:14;5913:28;;5848:99;;;;:::o;5953:118::-;6040:24;6058:5;6040:24;:::i;:::-;6035:3;6028:37;6018:53;;:::o;6107:732::-;;6255:54;6303:5;6255:54;:::i;:::-;6325:86;6404:6;6399:3;6325:86;:::i;:::-;6318:93;;6435:56;6485:5;6435:56;:::i;:::-;6514:7;6545:1;6530:284;6555:6;6552:1;6549:13;6530:284;;;6631:6;6625:13;6658:63;6717:3;6702:13;6658:63;:::i;:::-;6651:70;;6744:60;6797:6;6744:60;:::i;:::-;6734:70;;6590:224;6577:1;6574;6570:9;6565:14;;6530:284;;;6534:14;6830:3;6823:10;;6231:608;;;;;;;:::o;6845:115::-;6930:23;6947:5;6930:23;:::i;:::-;6925:3;6918:36;6908:52;;:::o;6966:329::-;;7129:67;7193:2;7188:3;7129:67;:::i;:::-;7122:74;;7226:33;7222:1;7217:3;7213:11;7206:54;7286:2;7281:3;7277:12;7270:19;;7112:183;;;:::o;7301:370::-;;7464:67;7528:2;7523:3;7464:67;:::i;:::-;7457:74;;7561:34;7557:1;7552:3;7548:11;7541:55;7627:8;7622:2;7617:3;7613:12;7606:30;7662:2;7657:3;7653:12;7646:19;;7447:224;;;:::o;7677:376::-;;7840:67;7904:2;7899:3;7840:67;:::i;:::-;7833:74;;7937:34;7933:1;7928:3;7924:11;7917:55;8003:14;7998:2;7993:3;7989:12;7982:36;8044:2;8039:3;8035:12;8028:19;;7823:230;;;:::o;8059:330::-;;8222:67;8286:2;8281:3;8222:67;:::i;:::-;8215:74;;8319:34;8315:1;8310:3;8306:11;8299:55;8380:2;8375:3;8371:12;8364:19;;8205:184;;;:::o;8395:261::-;;8557:65;8620:1;8615:3;8557:65;:::i;:::-;8550:72;;8648:1;8643:3;8639:11;8632:18;;8540:116;;;:::o;8662:108::-;8739:24;8757:5;8739:24;:::i;:::-;8734:3;8727:37;8717:53;;:::o;8776:118::-;8863:24;8881:5;8863:24;:::i;:::-;8858:3;8851:37;8841:53;;:::o;8900:222::-;;9031:2;9020:9;9016:18;9008:26;;9044:71;9112:1;9101:9;9097:17;9088:6;9044:71;:::i;:::-;8998:124;;;;:::o;9128:748::-;;9415:3;9404:9;9400:19;9392:27;;9429:71;9497:1;9486:9;9482:17;9473:6;9429:71;:::i;:::-;9510:72;9578:2;9567:9;9563:18;9554:6;9510:72;:::i;:::-;9592;9660:2;9649:9;9645:18;9636:6;9592:72;:::i;:::-;9711:9;9705:4;9701:20;9696:2;9685:9;9681:18;9674:48;9739:130;9864:4;9739:130;:::i;:::-;9731:138;;9382:494;;;;;;:::o;9882:332::-;;10041:2;10030:9;10026:18;10018:26;;10054:71;10122:1;10111:9;10107:17;10098:6;10054:71;:::i;:::-;10135:72;10203:2;10192:9;10188:18;10179:6;10135:72;:::i;:::-;10008:206;;;;;:::o;10220:373::-;;10401:2;10390:9;10386:18;10378:26;;10450:9;10444:4;10440:20;10436:1;10425:9;10421:17;10414:47;10478:108;10581:4;10572:6;10478:108;:::i;:::-;10470:116;;10368:225;;;;:::o;10599:218::-;;10728:2;10717:9;10713:18;10705:26;;10741:69;10807:1;10796:9;10792:17;10783:6;10741:69;:::i;:::-;10695:122;;;;:::o;10823:419::-;;11027:2;11016:9;11012:18;11004:26;;11076:9;11070:4;11066:20;11062:1;11051:9;11047:17;11040:47;11104:131;11230:4;11104:131;:::i;:::-;11096:139;;10994:248;;;:::o;11248:419::-;;11452:2;11441:9;11437:18;11429:26;;11501:9;11495:4;11491:20;11487:1;11476:9;11472:17;11465:47;11529:131;11655:4;11529:131;:::i;:::-;11521:139;;11419:248;;;:::o;11673:419::-;;11877:2;11866:9;11862:18;11854:26;;11926:9;11920:4;11916:20;11912:1;11901:9;11897:17;11890:47;11954:131;12080:4;11954:131;:::i;:::-;11946:139;;11844:248;;;:::o;12098:419::-;;12302:2;12291:9;12287:18;12279:26;;12351:9;12345:4;12341:20;12337:1;12326:9;12322:17;12315:47;12379:131;12505:4;12379:131;:::i;:::-;12371:139;;12269:248;;;:::o;12523:222::-;;12654:2;12643:9;12639:18;12631:26;;12667:71;12735:1;12724:9;12720:17;12711:6;12667:71;:::i;:::-;12621:124;;;;:::o;12751:283::-;;12817:2;12811:9;12801:19;;12859:4;12851:6;12847:17;12966:6;12954:10;12951:22;12930:18;12918:10;12915:34;12912:62;12909:2;;;12977:18;;:::i;:::-;12909:2;13017:10;13013:2;13006:22;12791:243;;;;:::o;13040:311::-;;13207:18;13199:6;13196:30;13193:2;;;13229:18;;:::i;:::-;13193:2;13279:4;13271:6;13267:17;13259:25;;13339:4;13333;13329:15;13321:23;;13122:229;;;:::o;13357:132::-;;13447:3;13439:11;;13477:4;13472:3;13468:14;13460:22;;13429:60;;;:::o;13495:114::-;;13596:5;13590:12;13580:22;;13569:40;;;:::o;13615:113::-;;13717:4;13712:3;13708:14;13700:22;;13690:38;;;:::o;13734:184::-;;13867:6;13862:3;13855:19;13907:4;13902:3;13898:14;13883:29;;13845:73;;;;:::o;13924:168::-;;14041:6;14036:3;14029:19;14081:4;14076:3;14072:14;14057:29;;14019:73;;;;:::o;14098:169::-;;14216:6;14211:3;14204:19;14256:4;14251:3;14247:14;14232:29;;14194:73;;;;:::o;14273:305::-;;14332:20;14350:1;14332:20;:::i;:::-;14327:25;;14366:20;14384:1;14366:20;:::i;:::-;14361:25;;14520:1;14452:66;14448:74;14445:1;14442:81;14439:2;;;14526:18;;:::i;:::-;14439:2;14570:1;14567;14563:9;14556:16;;14317:261;;;;:::o;14584:185::-;;14641:20;14659:1;14641:20;:::i;:::-;14636:25;;14675:20;14693:1;14675:20;:::i;:::-;14670:25;;14714:1;14704:2;;14719:18;;:::i;:::-;14704:2;14761:1;14758;14754:9;14749:14;;14626:143;;;;:::o;14775:348::-;;14838:20;14856:1;14838:20;:::i;:::-;14833:25;;14872:20;14890:1;14872:20;:::i;:::-;14867:25;;15060:1;14992:66;14988:74;14985:1;14982:81;14977:1;14970:9;14963:17;14959:105;14956:2;;;15067:18;;:::i;:::-;14956:2;15115:1;15112;15108:9;15097:20;;14823:300;;;;:::o;15129:191::-;;15189:20;15207:1;15189:20;:::i;:::-;15184:25;;15223:20;15241:1;15223:20;:::i;:::-;15218:25;;15262:1;15259;15256:8;15253:2;;;15267:18;;:::i;:::-;15253:2;15312:1;15309;15305:9;15297:17;;15174:146;;;;:::o;15326:96::-;;15392:24;15410:5;15392:24;:::i;:::-;15381:35;;15371:51;;;:::o;15428:149::-;;15504:66;15497:5;15493:78;15482:89;;15472:105;;;:::o;15583:126::-;;15660:42;15653:5;15649:54;15638:65;;15628:81;;;:::o;15715:77::-;;15781:5;15770:16;;15760:32;;;:::o;15798:233::-;;15860:24;15878:5;15860:24;:::i;:::-;15851:33;;15906:66;15899:5;15896:77;15893:2;;;15976:18;;:::i;:::-;15893:2;16023:1;16016:5;16012:13;16005:20;;15841:190;;;:::o;16037:180::-;16085:77;16082:1;16075:88;16182:4;16179:1;16172:15;16206:4;16203:1;16196:15;16223:180;16271:77;16268:1;16261:88;16368:4;16365:1;16358:15;16392:4;16389:1;16382:15;16409:180;16457:77;16454:1;16447:88;16554:4;16551:1;16544:15;16578:4;16575:1;16568:15;16595:122;16668:24;16686:5;16668:24;:::i;:::-;16661:5;16658:35;16648:2;;16707:1;16704;16697:12;16648:2;16638:79;:::o;16723:122::-;16796:24;16814:5;16796:24;:::i;:::-;16789:5;16786:35;16776:2;;16835:1;16832;16825:12;16776:2;16766:79;:::o

Swarm Source

ipfs://2f576229ad0672953679f4b1ad21d6fa257d2381b23145c7f48dc52100b7b38b

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.