ETH Price: $3,396.54 (+5.93%)
 

Overview

Max Total Supply

50.919999999999979632 HARVEST

Holders

1

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
dancube.eth
Balance
50.919999999999979632 HARVEST

Value
$0.00
0x40415c1c0e7a8ff3e184b51a94a2fc5b92df9434
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Harvest

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-14
*/

// Sources flattened with hardhat v2.6.5 https://hardhat.org

// File @openzeppelin/contracts/token/ERC20/[email protected]

    // SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

    

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

    

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

    

pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

    

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}


// File @openzeppelin/contracts/access/[email protected]

    

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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);
    }
}


// File @openzeppelin/contracts/utils/math/[email protected]

    

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]

    

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
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);
}


// File @openzeppelin/contracts/token/ERC721/[email protected]

    

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
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;
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

    

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File @openzeppelin/contracts/token/ERC721/[email protected]

    

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
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);
}


// File @openzeppelin/contracts/utils/structs/[email protected]

    

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
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;
    }
}


// File @openzeppelin/contracts/security/[email protected]

    

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


// File @openzeppelin/contracts/utils/math/[email protected]

    

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
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);
    }
}


// File contracts/Harvest.sol

    
pragma solidity ^0.8.6;








contract Harvest is ERC20Burnable, Ownable, IERC721Receiver, ReentrancyGuard {
    using EnumerableSet for EnumerableSet.UintSet;

    //addresses
    address nullAddress = 0x0000000000000000000000000000000000000000;
    address public nftCollectionAddress;

    //uint256's
    uint256 public expiration;
    //rate governs how often you receive Tokens
    uint256 public rate;

    // mappings
    mapping(address => EnumerableSet.UintSet) private _deposits;
    mapping(address => mapping(uint256 => uint256)) public _depositBlocks;

    constructor(
      string memory name_,
      string memory symbol_,
      address _collection,
      uint256 _rate,
      uint256 _expiration
    ) ERC20(name_, symbol_)
    {
        nftCollectionAddress = _collection;
        rate = _rate;
        expiration = block.number + _expiration;
    }

  /* Tokens */

    uint256 public teamMintValue;
    mapping(address => bool) private whitelist;

    function setWhitelist(address[] calldata minters) external onlyOwner {
        for (uint256 i; i < minters.length; i++) {
            whitelist[minters[i]] = true;
        }

        whitelist[address(this)] = true;
    }

    function mint(address account, uint256 amount) external {
        require(whitelist[msg.sender], 'GET OUT YOU NOT WHITELISTED, SER.');
        _mint(account, amount);
    }

    function teamMint(address account, uint256 amount) external onlyOwner {
        require((totalSupply() + amount) / (teamMintValue + amount) >= 10,'TOO MUCH STACK');
        _mint(account, amount);
        teamMintValue += amount;
    }



    //alter rate and expiration
    function setRateExpiration(uint256 _rate, uint256 _expiration) public onlyOwner() {
      rate = _rate;
      expiration = _expiration;
    }

    //check deposit amount.
    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;
    }

    //reward amount by address/tokenIds[]
    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];

        rewards[i] =
          rate *
          (_deposits[account].contains(tokenId) ? 1 : 0) *
          (Math.min(block.number, expiration) -
            _depositBlocks[account][tokenId]);
      }

      return rewards;
    }

    //reward claim function
    function claimRewards(uint256[] calldata tokenIds) public {
      uint256 reward;
      uint256 actualBlock = 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]] = actualBlock;
      }

      if (reward > 0) {
        _mint(msg.sender, reward);
      }
    }

    //deposit function.
    function deposit(uint256[] calldata tokenIds) external {
        claimRewards(tokenIds);

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

            _deposits[msg.sender].add(tokenIds[i]);
        }
    }

    //withdrawal function.
    function withdraw(uint256[] calldata tokenIds) external nonReentrant() {
        claimRewards(tokenIds);

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_collection","type":"address"},{"internalType":"uint256","name":"_rate","type":"uint256"},{"internalType":"uint256","name":"_expiration","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"depositsOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"expiration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftCollectionAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rate","type":"uint256"},{"internalType":"uint256","name":"_expiration","type":"uint256"}],"name":"setRateExpiration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"minters","type":"address[]"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMintValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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"}]

6080604052600780546001600160a01b03191690553480156200002157600080fd5b506040516200284f3803806200284f833981016040819052620000449162000283565b8451859085906200005d90600390602085019062000126565b5080516200007390600490602084019062000126565b505050620000906200008a620000d060201b60201c565b620000d4565b6001600655600880546001600160a01b0319166001600160a01b038516179055600a829055620000c1814362000321565b600955506200039b9350505050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001349062000348565b90600052602060002090601f016020900481019282620001585760008555620001a3565b82601f106200017357805160ff1916838001178555620001a3565b82800160010185558215620001a3579182015b82811115620001a357825182559160200191906001019062000186565b50620001b1929150620001b5565b5090565b5b80821115620001b15760008155600101620001b6565b600082601f830112620001de57600080fd5b81516001600160401b0380821115620001fb57620001fb62000385565b604051601f8301601f19908116603f0116810190828211818310171562000226576200022662000385565b816040528381526020925086838588010111156200024357600080fd5b600091505b8382101562000267578582018301518183018401529082019062000248565b83821115620002795760008385830101525b9695505050505050565b600080600080600060a086880312156200029c57600080fd5b85516001600160401b0380821115620002b457600080fd5b620002c289838a01620001cc565b96506020880151915080821115620002d957600080fd5b50620002e888828901620001cc565b604088015190955090506001600160a01b03811681146200030857600080fd5b6060870151608090970151959894975095949392505050565b600082198211156200034357634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200035d57607f821691505b602082108114156200037f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6124a480620003ab6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a457c2d7116100a2578063dd62ed3e11610071578063dd62ed3e146104aa578063e3a9db1a146104f0578063f2fde38b14610503578063f42176481461051657600080fd5b8063a457c2d714610446578063a9059cbb14610459578063add5a4fa1461046c578063b343ae141461047f57600080fd5b806383a2325d116100de57806383a2325d146103c85780638da5cb5b1461040d57806395d89b411461042b578063983d95ce1461043357600080fd5b806370a082311461036e578063715018a6146103a457806379cc6790146103ac5780638353b6bb146103bf57600080fd5b8063313ce567116101875780634665096d116101565780634665096d1461032c578063598b8e71146103355780635eac6239146103485780636c1527001461035b57600080fd5b8063313ce567146102e257806339509351146102f157806340c10f191461030457806342966c681461031957600080fd5b8063150b7a02116101c3578063150b7a021461024b57806318160ddd146102b457806323b872dd146102c65780632c4e722e146102d957600080fd5b8063068c526f146101ea57806306fdde0314610213578063095ea7b314610228575b600080fd5b6101fd6101f836600461202a565b610529565b60405161020a91906121c7565b60405180910390f35b61021b610691565b60405161020a919061220b565b61023b610236366004612120565b610723565b604051901515815260200161020a565b610283610259366004611f8f565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517fffffffff00000000000000000000000000000000000000000000000000000000909116815260200161020a565b6002545b60405190815260200161020a565b61023b6102d4366004611f53565b610739565b6102b8600a5481565b6040516012815260200161020a565b61023b6102ff366004612120565b610824565b610317610312366004612120565b61086d565b005b61031761032736600461218c565b61091a565b6102b860095481565b61031761034336600461214a565b610927565b61031761035636600461214a565b610a5b565b6103176103693660046121a5565b610b48565b6102b861037c366004611f05565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b610317610bd4565b6103176103ba366004612120565b610c61565b6102b8600d5481565b6008546103e89073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161020a565b60055473ffffffffffffffffffffffffffffffffffffffff166103e8565b61021b610d15565b61031761044136600461214a565b610d24565b61023b610454366004612120565b610f69565b61023b610467366004612120565b611041565b61031761047a366004612120565b61104e565b6102b861048d366004612120565b600c60209081526000928352604080842090915290825290205481565b6102b86104b8366004611f20565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6101fd6104fe366004611f05565b61118a565b610317610511366004611f05565b611253565b61031761052436600461214a565b611380565b6060815167ffffffffffffffff8111156105455761054561243f565b60405190808252806020026020018201604052801561056e578160200160208202803683370190505b50905060005b825181101561068957600083828151811061059157610591612410565b60200260200101519050600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828152602001908152602001600020546105f8436009546114db565b610602919061230e565b73ffffffffffffffffffffffffffffffffffffffff86166000908152600b6020526040902061063190836114f3565b61063c57600061063f565b60015b60ff16600a5461064f91906122d1565b61065991906122d1565b83838151811061066b5761066b612410565b6020908102919091010152508061068181612379565b915050610574565b505b92915050565b6060600380546106a090612325565b80601f01602080910402602001604051908101604052809291908181526020018280546106cc90612325565b80156107195780601f106106ee57610100808354040283529160200191610719565b820191906000526020600020905b8154815290600101906020018083116106fc57829003601f168201915b5050505050905090565b600061073033848461150b565b50600192915050565b60006107468484846116be565b73ffffffffffffffffffffffffffffffffffffffff841660009081526001602090815260408083203384529091529020548281101561080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610819853385840361150b565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161073091859061086890869061227e565b61150b565b336000908152600e602052604090205460ff1661090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f474554204f555420594f55204e4f542057484954454c49535445442c2053455260448201527f2e000000000000000000000000000000000000000000000000000000000000006064820152608401610803565b6109168282611972565b5050565b6109243382611a92565b50565b6109318282610a5b565b60005b81811015610a565760085473ffffffffffffffffffffffffffffffffffffffff1663b88d4fde333086868681811061096e5761096e612410565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b16815273ffffffffffffffffffffffffffffffffffffffff958616600482015294909316602485015250602090910201356044820152608060648201526000608482015260a401600060405180830381600087803b1580156109f857600080fd5b505af1158015610a0c573d6000803e3d6000fd5b50505050610a43838383818110610a2557610a25612410565b336000908152600b6020908152604090912093910201359050611c7f565b5080610a4e81612379565b915050610934565b505050565b600080610a6a436009546114db565b90506000610aab3386868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061052992505050565b905060005b84811015610b3057818181518110610aca57610aca612410565b602002602001015184610add919061227e565b336000908152600c60205260408120919550849190888885818110610b0457610b04612410565b905060200201358152602001908152602001600020819055508080610b2890612379565b915050610ab0565b508215610b4157610b413384611972565b5050505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610bc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b600a91909155600955565b60055473ffffffffffffffffffffffffffffffffffffffff163314610c55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b610c5f6000611c8b565b565b6000610c6d83336104b8565b905081811015610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610803565b610d0b833384840361150b565b610a568383611a92565b6060600480546106a090612325565b60026006541415610d91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610803565b6002600655610da08282610a5b565b60005b81811015610f5f57610dde838383818110610dc057610dc0612410565b336000908152600b60209081526040909120939102013590506114f3565b610e44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f5374616b696e673a20746f6b656e206e6f74206465706f7369746564000000006044820152606401610803565b610e77838383818110610e5957610e59612410565b336000908152600b6020908152604090912093910201359050611d02565b5060085473ffffffffffffffffffffffffffffffffffffffff1663b88d4fde3033868686818110610eaa57610eaa612410565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b16815273ffffffffffffffffffffffffffffffffffffffff958616600482015294909316602485015250602090910201356044820152608060648201526000608482015260a401600060405180830381600087803b158015610f3457600080fd5b505af1158015610f48573d6000803e3d6000fd5b505050508080610f5790612379565b915050610da3565b5050600160065550565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561102a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610803565b611037338585840361150b565b5060019392505050565b60006107303384846116be565b60055473ffffffffffffffffffffffffffffffffffffffff1633146110cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b600a81600d546110df919061227e565b826110e960025490565b6110f3919061227e565b6110fd9190612296565b1015611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f544f4f204d55434820535441434b0000000000000000000000000000000000006044820152606401610803565b61116f8282611972565b80600d6000828254611181919061227e565b90915550505050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600b602052604081206060916111bb82611d0e565b67ffffffffffffffff8111156111d3576111d361243f565b6040519080825280602002602001820160405280156111fc578160200160208202803683370190505b50905060005b61120b83611d0e565b81101561124b5761121c8382611d18565b82828151811061122e5761122e612410565b60209081029190910101528061124381612379565b915050611202565b509392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146112d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b73ffffffffffffffffffffffffffffffffffffffff8116611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610803565b61092481611c8b565b60055473ffffffffffffffffffffffffffffffffffffffff163314611401576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b60005b8181101561149e576001600e600085858581811061142457611424612410565b90506020020160208101906114399190611f05565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061149681612379565b915050611404565b5050306000908152600e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905550565b60008183106114ea57816114ec565b825b9392505050565b600081815260018301602052604081205415156114ec565b73ffffffffffffffffffffffffffffffffffffffff83166115ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff8216611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff8216611804576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156118ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906118fe90849061227e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161196491815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff82166119ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610803565b8060026000828254611a01919061227e565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290611a3b90849061227e565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216611b35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015611beb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290611c2790849061230e565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60006114ec8383611d24565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006114ec8383611d73565b600061068b825490565b60006114ec8383611e66565b6000818152600183016020526040812054611d6b5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561068b565b50600061068b565b60008181526001830160205260408120548015611e5c576000611d9760018361230e565b8554909150600090611dab9060019061230e565b9050818114611e10576000866000018281548110611dcb57611dcb612410565b9060005260206000200154905080876000018481548110611dee57611dee612410565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611e2157611e216123e1565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061068b565b600091505061068b565b6000826000018281548110611e7d57611e7d612410565b9060005260206000200154905092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611eb457600080fd5b919050565b60008083601f840112611ecb57600080fd5b50813567ffffffffffffffff811115611ee357600080fd5b6020830191508360208260051b8501011115611efe57600080fd5b9250929050565b600060208284031215611f1757600080fd5b6114ec82611e90565b60008060408385031215611f3357600080fd5b611f3c83611e90565b9150611f4a60208401611e90565b90509250929050565b600080600060608486031215611f6857600080fd5b611f7184611e90565b9250611f7f60208501611e90565b9150604084013590509250925092565b600080600080600060808688031215611fa757600080fd5b611fb086611e90565b9450611fbe60208701611e90565b935060408601359250606086013567ffffffffffffffff80821115611fe257600080fd5b818801915088601f830112611ff657600080fd5b81358181111561200557600080fd5b89602082850101111561201757600080fd5b9699959850939650602001949392505050565b6000806040838503121561203d57600080fd5b61204683611e90565b915060208084013567ffffffffffffffff8082111561206457600080fd5b818601915086601f83011261207857600080fd5b81358181111561208a5761208a61243f565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811085821117156120cd576120cd61243f565b604052828152858101935084860182860187018b10156120ec57600080fd5b600095505b8386101561210f5780358552600195909501949386019386016120f1565b508096505050505050509250929050565b6000806040838503121561213357600080fd5b61213c83611e90565b946020939093013593505050565b6000806020838503121561215d57600080fd5b823567ffffffffffffffff81111561217457600080fd5b61218085828601611eb9565b90969095509350505050565b60006020828403121561219e57600080fd5b5035919050565b600080604083850312156121b857600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b818110156121ff578351835292840192918401916001016121e3565b50909695505050505050565b600060208083528351808285015260005b818110156122385785810183015185820160400152820161221c565b8181111561224a576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115612291576122916123b2565b500190565b6000826122cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612309576123096123b2565b500290565b600082821015612320576123206123b2565b500390565b600181811c9082168061233957607f821691505b60208210811415612373577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156123ab576123ab6123b2565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea264697066735822122073090498963e632255ad661b01d381e01a4c97b67653f1dde7ee9e5e7dee5d7d64736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000002282655d950940532f4c49fd3d4bf3c0e1e0ab9d0000000000000000000000000000000000000000000000000005ebd312a02aaa000000000000000000000000000000000000000000000000000000000036ee80000000000000000000000000000000000000000000000000000000000000000d4861727665737420746f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074841525645535400000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f578063a457c2d7116100a2578063dd62ed3e11610071578063dd62ed3e146104aa578063e3a9db1a146104f0578063f2fde38b14610503578063f42176481461051657600080fd5b8063a457c2d714610446578063a9059cbb14610459578063add5a4fa1461046c578063b343ae141461047f57600080fd5b806383a2325d116100de57806383a2325d146103c85780638da5cb5b1461040d57806395d89b411461042b578063983d95ce1461043357600080fd5b806370a082311461036e578063715018a6146103a457806379cc6790146103ac5780638353b6bb146103bf57600080fd5b8063313ce567116101875780634665096d116101565780634665096d1461032c578063598b8e71146103355780635eac6239146103485780636c1527001461035b57600080fd5b8063313ce567146102e257806339509351146102f157806340c10f191461030457806342966c681461031957600080fd5b8063150b7a02116101c3578063150b7a021461024b57806318160ddd146102b457806323b872dd146102c65780632c4e722e146102d957600080fd5b8063068c526f146101ea57806306fdde0314610213578063095ea7b314610228575b600080fd5b6101fd6101f836600461202a565b610529565b60405161020a91906121c7565b60405180910390f35b61021b610691565b60405161020a919061220b565b61023b610236366004612120565b610723565b604051901515815260200161020a565b610283610259366004611f8f565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517fffffffff00000000000000000000000000000000000000000000000000000000909116815260200161020a565b6002545b60405190815260200161020a565b61023b6102d4366004611f53565b610739565b6102b8600a5481565b6040516012815260200161020a565b61023b6102ff366004612120565b610824565b610317610312366004612120565b61086d565b005b61031761032736600461218c565b61091a565b6102b860095481565b61031761034336600461214a565b610927565b61031761035636600461214a565b610a5b565b6103176103693660046121a5565b610b48565b6102b861037c366004611f05565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b610317610bd4565b6103176103ba366004612120565b610c61565b6102b8600d5481565b6008546103e89073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161020a565b60055473ffffffffffffffffffffffffffffffffffffffff166103e8565b61021b610d15565b61031761044136600461214a565b610d24565b61023b610454366004612120565b610f69565b61023b610467366004612120565b611041565b61031761047a366004612120565b61104e565b6102b861048d366004612120565b600c60209081526000928352604080842090915290825290205481565b6102b86104b8366004611f20565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6101fd6104fe366004611f05565b61118a565b610317610511366004611f05565b611253565b61031761052436600461214a565b611380565b6060815167ffffffffffffffff8111156105455761054561243f565b60405190808252806020026020018201604052801561056e578160200160208202803683370190505b50905060005b825181101561068957600083828151811061059157610591612410565b60200260200101519050600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828152602001908152602001600020546105f8436009546114db565b610602919061230e565b73ffffffffffffffffffffffffffffffffffffffff86166000908152600b6020526040902061063190836114f3565b61063c57600061063f565b60015b60ff16600a5461064f91906122d1565b61065991906122d1565b83838151811061066b5761066b612410565b6020908102919091010152508061068181612379565b915050610574565b505b92915050565b6060600380546106a090612325565b80601f01602080910402602001604051908101604052809291908181526020018280546106cc90612325565b80156107195780601f106106ee57610100808354040283529160200191610719565b820191906000526020600020905b8154815290600101906020018083116106fc57829003601f168201915b5050505050905090565b600061073033848461150b565b50600192915050565b60006107468484846116be565b73ffffffffffffffffffffffffffffffffffffffff841660009081526001602090815260408083203384529091529020548281101561080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610819853385840361150b565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161073091859061086890869061227e565b61150b565b336000908152600e602052604090205460ff1661090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f474554204f555420594f55204e4f542057484954454c49535445442c2053455260448201527f2e000000000000000000000000000000000000000000000000000000000000006064820152608401610803565b6109168282611972565b5050565b6109243382611a92565b50565b6109318282610a5b565b60005b81811015610a565760085473ffffffffffffffffffffffffffffffffffffffff1663b88d4fde333086868681811061096e5761096e612410565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b16815273ffffffffffffffffffffffffffffffffffffffff958616600482015294909316602485015250602090910201356044820152608060648201526000608482015260a401600060405180830381600087803b1580156109f857600080fd5b505af1158015610a0c573d6000803e3d6000fd5b50505050610a43838383818110610a2557610a25612410565b336000908152600b6020908152604090912093910201359050611c7f565b5080610a4e81612379565b915050610934565b505050565b600080610a6a436009546114db565b90506000610aab3386868080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061052992505050565b905060005b84811015610b3057818181518110610aca57610aca612410565b602002602001015184610add919061227e565b336000908152600c60205260408120919550849190888885818110610b0457610b04612410565b905060200201358152602001908152602001600020819055508080610b2890612379565b915050610ab0565b508215610b4157610b413384611972565b5050505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610bc9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b600a91909155600955565b60055473ffffffffffffffffffffffffffffffffffffffff163314610c55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b610c5f6000611c8b565b565b6000610c6d83336104b8565b905081811015610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e6365000000000000000000000000000000000000000000000000000000006064820152608401610803565b610d0b833384840361150b565b610a568383611a92565b6060600480546106a090612325565b60026006541415610d91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610803565b6002600655610da08282610a5b565b60005b81811015610f5f57610dde838383818110610dc057610dc0612410565b336000908152600b60209081526040909120939102013590506114f3565b610e44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f5374616b696e673a20746f6b656e206e6f74206465706f7369746564000000006044820152606401610803565b610e77838383818110610e5957610e59612410565b336000908152600b6020908152604090912093910201359050611d02565b5060085473ffffffffffffffffffffffffffffffffffffffff1663b88d4fde3033868686818110610eaa57610eaa612410565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b16815273ffffffffffffffffffffffffffffffffffffffff958616600482015294909316602485015250602090910201356044820152608060648201526000608482015260a401600060405180830381600087803b158015610f3457600080fd5b505af1158015610f48573d6000803e3d6000fd5b505050508080610f5790612379565b915050610da3565b5050600160065550565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561102a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610803565b611037338585840361150b565b5060019392505050565b60006107303384846116be565b60055473ffffffffffffffffffffffffffffffffffffffff1633146110cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b600a81600d546110df919061227e565b826110e960025490565b6110f3919061227e565b6110fd9190612296565b1015611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f544f4f204d55434820535441434b0000000000000000000000000000000000006044820152606401610803565b61116f8282611972565b80600d6000828254611181919061227e565b90915550505050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600b602052604081206060916111bb82611d0e565b67ffffffffffffffff8111156111d3576111d361243f565b6040519080825280602002602001820160405280156111fc578160200160208202803683370190505b50905060005b61120b83611d0e565b81101561124b5761121c8382611d18565b82828151811061122e5761122e612410565b60209081029190910101528061124381612379565b915050611202565b509392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146112d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b73ffffffffffffffffffffffffffffffffffffffff8116611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610803565b61092481611c8b565b60055473ffffffffffffffffffffffffffffffffffffffff163314611401576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610803565b60005b8181101561149e576001600e600085858581811061142457611424612410565b90506020020160208101906114399190611f05565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061149681612379565b915050611404565b5050306000908152600e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905550565b60008183106114ea57816114ec565b825b9392505050565b600081815260018301602052604081205415156114ec565b73ffffffffffffffffffffffffffffffffffffffff83166115ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff8216611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff8216611804576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156118ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906118fe90849061227e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161196491815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff82166119ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610803565b8060026000828254611a01919061227e565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290611a3b90849061227e565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216611b35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015611beb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610803565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290611c2790849061230e565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60006114ec8383611d24565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006114ec8383611d73565b600061068b825490565b60006114ec8383611e66565b6000818152600183016020526040812054611d6b5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561068b565b50600061068b565b60008181526001830160205260408120548015611e5c576000611d9760018361230e565b8554909150600090611dab9060019061230e565b9050818114611e10576000866000018281548110611dcb57611dcb612410565b9060005260206000200154905080876000018481548110611dee57611dee612410565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611e2157611e216123e1565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061068b565b600091505061068b565b6000826000018281548110611e7d57611e7d612410565b9060005260206000200154905092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611eb457600080fd5b919050565b60008083601f840112611ecb57600080fd5b50813567ffffffffffffffff811115611ee357600080fd5b6020830191508360208260051b8501011115611efe57600080fd5b9250929050565b600060208284031215611f1757600080fd5b6114ec82611e90565b60008060408385031215611f3357600080fd5b611f3c83611e90565b9150611f4a60208401611e90565b90509250929050565b600080600060608486031215611f6857600080fd5b611f7184611e90565b9250611f7f60208501611e90565b9150604084013590509250925092565b600080600080600060808688031215611fa757600080fd5b611fb086611e90565b9450611fbe60208701611e90565b935060408601359250606086013567ffffffffffffffff80821115611fe257600080fd5b818801915088601f830112611ff657600080fd5b81358181111561200557600080fd5b89602082850101111561201757600080fd5b9699959850939650602001949392505050565b6000806040838503121561203d57600080fd5b61204683611e90565b915060208084013567ffffffffffffffff8082111561206457600080fd5b818601915086601f83011261207857600080fd5b81358181111561208a5761208a61243f565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811085821117156120cd576120cd61243f565b604052828152858101935084860182860187018b10156120ec57600080fd5b600095505b8386101561210f5780358552600195909501949386019386016120f1565b508096505050505050509250929050565b6000806040838503121561213357600080fd5b61213c83611e90565b946020939093013593505050565b6000806020838503121561215d57600080fd5b823567ffffffffffffffff81111561217457600080fd5b61218085828601611eb9565b90969095509350505050565b60006020828403121561219e57600080fd5b5035919050565b600080604083850312156121b857600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b818110156121ff578351835292840192918401916001016121e3565b50909695505050505050565b600060208083528351808285015260005b818110156122385785810183015185820160400152820161221c565b8181111561224a576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115612291576122916123b2565b500190565b6000826122cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612309576123096123b2565b500290565b600082821015612320576123206123b2565b500390565b600181811c9082168061233957607f821691505b60208210811415612373577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156123ab576123ab6123b2565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea264697066735822122073090498963e632255ad661b01d381e01a4c97b67653f1dde7ee9e5e7dee5d7d64736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000002282655d950940532f4c49fd3d4bf3c0e1e0ab9d0000000000000000000000000000000000000000000000000005ebd312a02aaa000000000000000000000000000000000000000000000000000000000036ee80000000000000000000000000000000000000000000000000000000000000000d4861727665737420746f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074841525645535400000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Harvest token
Arg [1] : symbol_ (string): HARVEST
Arg [2] : _collection (address): 0x2282655d950940532f4C49fd3D4bF3c0E1e0AB9D
Arg [3] : _rate (uint256): 1666666666666666
Arg [4] : _expiration (uint256): 3600000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000002282655d950940532f4c49fd3d4bf3c0e1e0ab9d
Arg [3] : 0000000000000000000000000000000000000000000000000005ebd312a02aaa
Arg [4] : 000000000000000000000000000000000000000000000000000000000036ee80
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [6] : 4861727665737420746f6b656e00000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [8] : 4841525645535400000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51239:4596:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53535:526;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6543:100;;;:::i;:::-;;;;;;;:::i;8710:169::-;;;;;;:::i;:::-;;:::i;:::-;;;6650:14:1;;6643:22;6625:41;;6613:2;6598:18;8710:169:0;6580:92:1;55613:219:0;;;;;;:::i;:::-;55783:41;55613:219;;;;;;;;;;;6851:66:1;6839:79;;;6821:98;;6809:2;6794:18;55613:219:0;6776:149:1;7663:108:0;7751:12;;7663:108;;;14377:25:1;;;14365:2;14350:18;7663:108:0;14332:76:1;9361:492:0;;;;;;:::i;:::-;;:::i;51607:19::-;;;;;;7505:93;;;7588:2;14555:36:1;;14543:2;14528:18;7505:93:0;14510:87:1;10262:215:0;;;;;;:::i;:::-;;:::i;52451:175::-;;;;;;:::i;:::-;;:::i;:::-;;17005:91;;;;;;:::i;:::-;;:::i;51526:25::-;;;;;;54590:405;;;;;;:::i;:::-;;:::i;54098:459::-;;;;;;:::i;:::-;;:::i;52918:144::-;;;;;;:::i;:::-;;:::i;7834:127::-;;;;;;:::i;:::-;7935:18;;7908:7;7935:18;;;;;;;;;;;;7834:127;19449:94;;;:::i;17415:368::-;;;;;;:::i;:::-;;:::i;52130:28::-;;;;;;51465:35;;;;;;;;;;;;5210:42:1;5198:55;;;5180:74;;5168:2;5153:18;51465:35:0;5135:125:1;18798:87:0;18871:6;;;;18798:87;;6762:104;;;:::i;55031:574::-;;;;;;:::i;:::-;;:::i;10980:413::-;;;;;;:::i;:::-;;:::i;8174:175::-;;;;;;:::i;:::-;;:::i;52634:239::-;;;;;;:::i;:::-;;:::i;51718:69::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;8412:151;;;;;;:::i;:::-;8528:18;;;;8501:7;8528:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8412:151;53099:385;;;;;;:::i;:::-;;:::i;19698:192::-;;;;;;:::i;:::-;;:::i;52216:227::-;;;;;;:::i;:::-;;:::i;53535:526::-;53647:24;53711:8;:15;53697:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53697:30:0;;53687:40;;53743:9;53738:291;53758:8;:15;53754:1;:19;53738:291;;;53791:15;53809:8;53818:1;53809:11;;;;;;;;:::i;:::-;;;;;;;53791:29;;53986:14;:23;54001:7;53986:23;;;;;;;;;;;;;;;:32;54010:7;53986:32;;;;;;;;;;;;53936:34;53945:12;53959:10;;53936:8;:34::i;:::-;:82;;;;:::i;:::-;53876:18;;;;;;;:9;:18;;;;;:36;;53904:7;53876:27;:36::i;:::-;:44;;53919:1;53876:44;;;53915:1;53876:44;53857:64;;:4;;:64;;;;:::i;:::-;:162;;;;:::i;:::-;53833:7;53841:1;53833:10;;;;;;;;:::i;:::-;;;;;;;;;;:186;-1:-1:-1;53775:3:0;;;;:::i;:::-;;;;53738:291;;;;53535:526;;;;;:::o;6543:100::-;6597:13;6630:5;6623:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6543:100;:::o;8710:169::-;8793:4;8810:39;4326:10;8833:7;8842:6;8810:8;:39::i;:::-;-1:-1:-1;8867:4:0;8710:169;;;;:::o;9361:492::-;9501:4;9518:36;9528:6;9536:9;9547:6;9518:9;:36::i;:::-;9594:19;;;9567:24;9594:19;;;:11;:19;;;;;;;;4326:10;9594:33;;;;;;;;9646:26;;;;9638:79;;;;;;;10562:2:1;9638:79:0;;;10544:21:1;10601:2;10581:18;;;10574:30;10640:34;10620:18;;;10613:62;10711:10;10691:18;;;10684:38;10739:19;;9638:79:0;;;;;;;;;9753:57;9762:6;4326:10;9803:6;9784:16;:25;9753:8;:57::i;:::-;-1:-1:-1;9841:4:0;;9361:492;-1:-1:-1;;;;9361:492:0:o;10262:215::-;4326:10;10350:4;10399:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;10350:4;;10367:80;;10390:7;;10399:47;;10436:10;;10399:47;:::i;:::-;10367:8;:80::i;52451:175::-;52536:10;52526:21;;;;:9;:21;;;;;;;;52518:67;;;;;;;10160:2:1;52518:67:0;;;10142:21:1;10199:2;10179:18;;;10172:30;10238:34;10218:18;;;10211:62;10309:3;10289:18;;;10282:31;10330:19;;52518:67:0;10132:223:1;52518:67:0;52596:22;52602:7;52611:6;52596:5;:22::i;:::-;52451:175;;:::o;17005:91::-;17061:27;4326:10;17081:6;17061:5;:27::i;:::-;17005:91;:::o;54590:405::-;54656:22;54669:8;;54656:12;:22::i;:::-;54696:9;54691:297;54707:19;;;54691:297;;;54756:20;;;;54748:46;54813:10;54850:4;54874:8;;54883:1;54874:11;;;;;;;:::i;:::-;54748:173;;;;;;;;;;5542:42:1;5611:15;;;54748:173:0;;;5593:34:1;5663:15;;;;5643:18;;;5636:43;-1:-1:-1;54874:11:0;;;;;;5695:18:1;;;5688:34;5758:3;5738:18;;;5731:31;-1:-1:-1;5778:19:1;;;5771:30;5818:19;;54748:173:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54938:38;54964:8;;54973:1;54964:11;;;;;;;:::i;:::-;54948:10;54938:21;;;;:9;54964:11;54938:21;;;;;;;;54964:11;;;;;-1:-1:-1;54938:25:0;:38::i;:::-;-1:-1:-1;54728:3:0;;;;:::i;:::-;;;;54691:297;;;;54590:405;;:::o;54098:459::-;54165:14;54188:19;54210:34;54219:12;54233:10;;54210:8;:34::i;:::-;54188:56;;54255:24;54282:38;54299:10;54311:8;;54282:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54282:16:0;;-1:-1:-1;;;54282:38:0:i;:::-;54255:65;;54336:9;54331:147;54347:19;;;54331:147;;;54394:7;54402:1;54394:10;;;;;;;;:::i;:::-;;;;;;;54384:20;;;;;:::i;:::-;54430:10;54415:26;;;;:14;:26;;;;;54384:20;;-1:-1:-1;54457:11:0;;54415:26;54442:8;;54451:1;54442:11;;;;;;;:::i;:::-;;;;;;;54415:39;;;;;;;;;;;:53;;;;54368:3;;;;;:::i;:::-;;;;54331:147;;;-1:-1:-1;54492:10:0;;54488:62;;54515:25;54521:10;54533:6;54515:5;:25::i;:::-;54156:401;;;54098:459;;:::o;52918:144::-;18871:6;;19018:23;18871:6;4326:10;19018:23;19010:68;;;;;;;10971:2:1;19010:68:0;;;10953:21:1;;;10990:18;;;10983:30;11049:34;11029:18;;;11022:62;11101:18;;19010:68:0;10943:182:1;19010:68:0;53009:4:::1;:12:::0;;;;53030:10:::1;:24:::0;52918:144::o;19449:94::-;18871:6;;19018:23;18871:6;4326:10;19018:23;19010:68;;;;;;;10971:2:1;19010:68:0;;;10953:21:1;;;10990:18;;;10983:30;11049:34;11029:18;;;11022:62;11101:18;;19010:68:0;10943:182:1;19010:68:0;19514:21:::1;19532:1;19514:9;:21::i;:::-;19449:94::o:0;17415:368::-;17492:24;17519:32;17529:7;4326:10;8412:151;:::i;17519:32::-;17492:59;;17590:6;17570:16;:26;;17562:75;;;;;;;11332:2:1;17562:75:0;;;11314:21:1;11371:2;11351:18;;;11344:30;11410:34;11390:18;;;11383:62;11481:6;11461:18;;;11454:34;11505:19;;17562:75:0;11304:226:1;17562:75:0;17673:58;17682:7;4326:10;17724:6;17705:16;:25;17673:8;:58::i;:::-;17753:22;17759:7;17768:6;17753:5;:22::i;6762:104::-;6818:13;6851:7;6844:14;;;;;:::i;55031:574::-;48974:1;49570:7;;:19;;49562:63;;;;;;;13307:2:1;49562:63:0;;;13289:21:1;13346:2;13326:18;;;13319:30;13385:33;13365:18;;;13358:61;13436:18;;49562:63:0;13279:181:1;49562:63:0;48974:1;49703:7;:18;55113:22:::1;55126:8:::0;;55113:12:::1;:22::i;:::-;55153:9;55148:450;55164:19:::0;;::::1;55148:450;;;55231:43;55262:8;;55271:1;55262:11;;;;;;;:::i;:::-;55241:10;55231:21;::::0;;;:9:::1;55262:11;55231:21:::0;;;;;;;;55262:11;::::1;;;::::0;-1:-1:-1;55231:30:0::1;:43::i;:::-;55205:133;;;::::0;::::1;::::0;;11737:2:1;55205:133:0::1;::::0;::::1;11719:21:1::0;11776:2;11756:18;;;11749:30;11815;11795:18;;;11788:58;11863:18;;55205:133:0::1;11709:178:1::0;55205:133:0::1;55355:41;55384:8;;55393:1;55384:11;;;;;;;:::i;:::-;55365:10;55355:21;::::0;;;:9:::1;55384:11;55355:21:::0;;;;;;;;55384:11;::::1;;;::::0;-1:-1:-1;55355:28:0::1;:41::i;:::-;-1:-1:-1::0;55421:20:0::1;::::0;::::1;;55413:46;55486:4;55510:10;55539:8:::0;;55548:1;55539:11;;::::1;;;;;:::i;:::-;55413:173;::::0;;::::1;::::0;;;;;;5542:42:1;5611:15;;;55413:173:0::1;::::0;::::1;5593:34:1::0;5663:15;;;;5643:18;;;5636:43;-1:-1:-1;55539:11:0::1;::::0;;::::1;;;5695:18:1::0;;;5688:34;5758:3;5738:18;;;5731:31;-1:-1:-1;5778:19:1;;;5771:30;5818:19;;55413:173:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;55185:3;;;;;:::i;:::-;;;;55148:450;;;-1:-1:-1::0;;48930:1:0;49882:7;:22;-1:-1:-1;55031:574:0:o;10980:413::-;4326:10;11073:4;11117:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;11170:35;;;;11162:85;;;;;;;13667:2:1;11162:85:0;;;13649:21:1;13706:2;13686:18;;;13679:30;13745:34;13725:18;;;13718:62;13816:7;13796:18;;;13789:35;13841:19;;11162:85:0;13639:227:1;11162:85:0;11283:67;4326:10;11306:7;11334:15;11315:16;:34;11283:8;:67::i;:::-;-1:-1:-1;11381:4:0;;10980:413;-1:-1:-1;;;10980:413:0:o;8174:175::-;8260:4;8277:42;4326:10;8301:9;8312:6;8277:9;:42::i;52634:239::-;18871:6;;19018:23;18871:6;4326:10;19018:23;19010:68;;;;;;;10971:2:1;19010:68:0;;;10953:21:1;;;10990:18;;;10983:30;11049:34;11029:18;;;11022:62;11101:18;;19010:68:0;10943:182:1;19010:68:0;52778:2:::1;52767:6;52751:13;;:22;;;;:::i;:::-;52740:6;52724:13;7751:12:::0;;;7663:108;52724:13:::1;:22;;;;:::i;:::-;52723:51;;;;:::i;:::-;:57;;52715:83;;;::::0;::::1;::::0;;8600:2:1;52715:83:0::1;::::0;::::1;8582:21:1::0;8639:2;8619:18;;;8612:30;8678:16;8658:18;;;8651:44;8712:18;;52715:83:0::1;8572:164:1::0;52715:83:0::1;52809:22;52815:7;52824:6;52809:5;:22::i;:::-;52859:6;52842:13;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;52634:239:0:o;53099:385::-;53255:18;;;53212:40;53255:18;;;:9;:18;;;;;53180:16;;53325:19;53255:18;53325:17;:19::i;:::-;53310:35;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53310:35:0;;53282:63;;53361:9;53356:95;53374:19;:10;:17;:19::i;:::-;53372:1;:21;53356:95;;;53425:16;:10;53439:1;53425:13;:16::i;:::-;53411:8;53420:1;53411:11;;;;;;;;:::i;:::-;;;;;;;;;;:30;53395:3;;;;:::i;:::-;;;;53356:95;;;-1:-1:-1;53468:8:0;53099:385;-1:-1:-1;;;53099:385:0:o;19698:192::-;18871:6;;19018:23;18871:6;4326:10;19018:23;19010:68;;;;;;;10971:2:1;19010:68:0;;;10953:21:1;;;10990:18;;;10983:30;11049:34;11029:18;;;11022:62;11101:18;;19010:68:0;10943:182:1;19010:68:0;19787:22:::1;::::0;::::1;19779:73;;;::::0;::::1;::::0;;8943:2:1;19779:73:0::1;::::0;::::1;8925:21:1::0;8982:2;8962:18;;;8955:30;9021:34;9001:18;;;8994:62;9092:8;9072:18;;;9065:36;9118:19;;19779:73:0::1;8915:228:1::0;19779:73:0::1;19863:19;19873:8;19863:9;:19::i;52216:227::-:0;18871:6;;19018:23;18871:6;4326:10;19018:23;19010:68;;;;;;;10971:2:1;19010:68:0;;;10953:21:1;;;10990:18;;;10983:30;11049:34;11029:18;;;11022:62;11101:18;;19010:68:0;10943:182:1;19010:68:0;52301:9:::1;52296:96;52312:18:::0;;::::1;52296:96;;;52376:4;52352:9;:21;52362:7;;52370:1;52362:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;52352:21;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;52352:21:0;:28;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;52332:3;::::1;::::0;::::1;:::i;:::-;;;;52296:96;;;-1:-1:-1::0;;52422:4:0::1;52404:24;::::0;;;:9:::1;:24;::::0;;;;:31;;;::::1;52431:4;52404:31;::::0;;-1:-1:-1;52216:227:0:o;50365:106::-;50423:7;50454:1;50450;:5;:13;;50462:1;50450:13;;;50458:1;50450:13;50443:20;50365:106;-1:-1:-1;;;50365:106:0:o;45558:146::-;45635:4;38618:19;;;:12;;;:19;;;;;;:24;;45659:37;38521:129;14664:380;14800:19;;;14792:68;;;;;;;12902:2:1;14792:68:0;;;12884:21:1;12941:2;12921:18;;;12914:30;12980:34;12960:18;;;12953:62;13051:6;13031:18;;;13024:34;13075:19;;14792:68:0;12874:226:1;14792:68:0;14879:21;;;14871:68;;;;;;;9350:2:1;14871:68:0;;;9332:21:1;9389:2;9369:18;;;9362:30;9428:34;9408:18;;;9401:62;9499:4;9479:18;;;9472:32;9521:19;;14871:68:0;9322:224:1;14871:68:0;14952:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15004:32;;14377:25:1;;;15004:32:0;;14350:18:1;15004:32:0;;;;;;;14664:380;;;:::o;11883:733::-;12023:20;;;12015:70;;;;;;;12496:2:1;12015:70:0;;;12478:21:1;12535:2;12515:18;;;12508:30;12574:34;12554:18;;;12547:62;12645:7;12625:18;;;12618:35;12670:19;;12015:70:0;12468:227:1;12015:70:0;12104:23;;;12096:71;;;;;;;7793:2:1;12096:71:0;;;7775:21:1;7832:2;7812:18;;;7805:30;7871:34;7851:18;;;7844:62;7942:5;7922:18;;;7915:33;7965:19;;12096:71:0;7765:225:1;12096:71:0;12264:17;;;12240:21;12264:17;;;;;;;;;;;12300:23;;;;12292:74;;;;;;;9753:2:1;12292:74:0;;;9735:21:1;9792:2;9772:18;;;9765:30;9831:34;9811:18;;;9804:62;9902:8;9882:18;;;9875:36;9928:19;;12292:74:0;9725:228:1;12292:74:0;12402:17;;;;:9;:17;;;;;;;;;;;12422:22;;;12402:42;;12466:20;;;;;;;;:30;;12438:6;;12402:9;12466:30;;12438:6;;12466:30;:::i;:::-;;;;;;;;12531:9;12514:35;;12523:6;12514:35;;;12542:6;12514:35;;;;14377:25:1;;14365:2;14350:18;;14332:76;12514:35:0;;;;;;;;12004:612;11883:733;;;:::o;12903:399::-;12987:21;;;12979:65;;;;;;;14073:2:1;12979:65:0;;;14055:21:1;14112:2;14092:18;;;14085:30;14151:33;14131:18;;;14124:61;14202:18;;12979:65:0;14045:181:1;12979:65:0;13135:6;13119:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;13152:18:0;;;:9;:18;;;;;;;;;;:28;;13174:6;;13152:9;:28;;13174:6;;13152:28;:::i;:::-;;;;-1:-1:-1;;13196:37:0;;14377:25:1;;;13196:37:0;;;;13213:1;;13196:37;;14365:2:1;14350:18;13196:37:0;;;;;;;52451:175;;:::o;13635:591::-;13719:21;;;13711:67;;;;;;;12094:2:1;13711:67:0;;;12076:21:1;12133:2;12113:18;;;12106:30;12172:34;12152:18;;;12145:62;12243:3;12223:18;;;12216:31;12264:19;;13711:67:0;12066:223:1;13711:67:0;13878:18;;;13853:22;13878:18;;;;;;;;;;;13915:24;;;;13907:71;;;;;;;8197:2:1;13907:71:0;;;8179:21:1;8236:2;8216:18;;;8209:30;8275:34;8255:18;;;8248:62;8346:4;8326:18;;;8319:32;8368:19;;13907:71:0;8169:224:1;13907:71:0;14014:18;;;:9;:18;;;;;;;;;;14035:23;;;14014:44;;14080:12;:22;;14052:6;;14014:9;14080:22;;14052:6;;14080:22;:::i;:::-;;;;-1:-1:-1;;14120:37:0;;14377:25:1;;;14146:1:0;;14120:37;;;;;;14365:2:1;14350:18;14120:37:0;;;;;;;54691:297;54590:405;;:::o;45028:131::-;45095:4;45119:32;45124:3;45144:5;45119:4;:32::i;19898:173::-;19973:6;;;;19990:17;;;;;;;;;;;20023:40;;19973:6;;;19990:17;19973:6;;20023:40;;19954:16;;20023:40;19943:128;19898:173;:::o;45335:137::-;45405:4;45429:35;45437:3;45457:5;45429:7;:35::i;45790:114::-;45850:7;45877:19;45885:3;38819:18;;38736:109;46258:137;46329:7;46364:22;46368:3;46380:5;46364:3;:22::i;36425:414::-;36488:4;38618:19;;;:12;;;:19;;;;;;36505:327;;-1:-1:-1;36548:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;36731:18;;36709:19;;;:12;;;:19;;;;;;:40;;;;36764:11;;36505:327;-1:-1:-1;36815:5:0;36808:12;;37015:1420;37081:4;37220:19;;;:12;;;:19;;;;;;37256:15;;37252:1176;;37631:21;37655:14;37668:1;37655:10;:14;:::i;:::-;37704:18;;37631:38;;-1:-1:-1;37684:17:0;;37704:22;;37725:1;;37704:22;:::i;:::-;37684:42;;37760:13;37747:9;:26;37743:405;;37794:17;37814:3;:11;;37826:9;37814:22;;;;;;;;:::i;:::-;;;;;;;;;37794:42;;37968:9;37939:3;:11;;37951:13;37939:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;38053:23;;;:12;;;:23;;;;;:36;;;37743:405;38229:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38324:3;:12;;:19;38337:5;38324:19;;;;;;;;;;;38317:26;;;38367:4;38360:11;;;;;;;37252:1176;38411:5;38404:12;;;;;39199:120;39266:7;39293:3;:11;;39305:5;39293:18;;;;;;;;:::i;:::-;;;;;;;;;39286:25;;39199:120;;;;:::o;14:196:1:-;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:367::-;278:8;288:6;342:3;335:4;327:6;323:17;319:27;309:2;;360:1;357;350:12;309:2;-1:-1:-1;383:20:1;;426:18;415:30;;412:2;;;458:1;455;448:12;412:2;495:4;487:6;483:17;471:29;;555:3;548:4;538:6;535:1;531:14;523:6;519:27;515:38;512:47;509:2;;;572:1;569;562:12;509:2;299:283;;;;;:::o;587:186::-;646:6;699:2;687:9;678:7;674:23;670:32;667:2;;;715:1;712;705:12;667:2;738:29;757:9;738:29;:::i;778:260::-;846:6;854;907:2;895:9;886:7;882:23;878:32;875:2;;;923:1;920;913:12;875:2;946:29;965:9;946:29;:::i;:::-;936:39;;994:38;1028:2;1017:9;1013:18;994:38;:::i;:::-;984:48;;865:173;;;;;:::o;1043:328::-;1120:6;1128;1136;1189:2;1177:9;1168:7;1164:23;1160:32;1157:2;;;1205:1;1202;1195:12;1157:2;1228:29;1247:9;1228:29;:::i;:::-;1218:39;;1276:38;1310:2;1299:9;1295:18;1276:38;:::i;:::-;1266:48;;1361:2;1350:9;1346:18;1333:32;1323:42;;1147:224;;;;;:::o;1376:808::-;1473:6;1481;1489;1497;1505;1558:3;1546:9;1537:7;1533:23;1529:33;1526:2;;;1575:1;1572;1565:12;1526:2;1598:29;1617:9;1598:29;:::i;:::-;1588:39;;1646:38;1680:2;1669:9;1665:18;1646:38;:::i;:::-;1636:48;;1731:2;1720:9;1716:18;1703:32;1693:42;;1786:2;1775:9;1771:18;1758:32;1809:18;1850:2;1842:6;1839:14;1836:2;;;1866:1;1863;1856:12;1836:2;1904:6;1893:9;1889:22;1879:32;;1949:7;1942:4;1938:2;1934:13;1930:27;1920:2;;1971:1;1968;1961:12;1920:2;2011;1998:16;2037:2;2029:6;2026:14;2023:2;;;2053:1;2050;2043:12;2023:2;2098:7;2093:2;2084:6;2080:2;2076:15;2072:24;2069:37;2066:2;;;2119:1;2116;2109:12;2066:2;1516:668;;;;-1:-1:-1;1516:668:1;;-1:-1:-1;2150:2:1;2142:11;;2172:6;1516:668;-1:-1:-1;;;1516:668:1:o;2189:1259::-;2282:6;2290;2343:2;2331:9;2322:7;2318:23;2314:32;2311:2;;;2359:1;2356;2349:12;2311:2;2382:29;2401:9;2382:29;:::i;:::-;2372:39;;2430:2;2483;2472:9;2468:18;2455:32;2506:18;2547:2;2539:6;2536:14;2533:2;;;2563:1;2560;2553:12;2533:2;2601:6;2590:9;2586:22;2576:32;;2646:7;2639:4;2635:2;2631:13;2627:27;2617:2;;2668:1;2665;2658:12;2617:2;2704;2691:16;2726:2;2722;2719:10;2716:2;;;2732:18;;:::i;:::-;2778:2;2775:1;2771:10;2810:2;2804:9;2869:66;2864:2;2860;2856:11;2852:84;2844:6;2840:97;2987:6;2975:10;2972:22;2967:2;2955:10;2952:18;2949:46;2946:2;;;2998:18;;:::i;:::-;3034:2;3027:22;3084:18;;;3118:15;;;;-1:-1:-1;3153:11:1;;;3183;;;3179:20;;3176:33;-1:-1:-1;3173:2:1;;;3222:1;3219;3212:12;3173:2;3244:1;3235:10;;3254:163;3268:2;3265:1;3262:9;3254:163;;;3325:17;;3313:30;;3286:1;3279:9;;;;;3363:12;;;;3395;;3254:163;;;3258:3;3436:6;3426:16;;;;;;;;2301:1147;;;;;:::o;3453:254::-;3521:6;3529;3582:2;3570:9;3561:7;3557:23;3553:32;3550:2;;;3598:1;3595;3588:12;3550:2;3621:29;3640:9;3621:29;:::i;:::-;3611:39;3697:2;3682:18;;;;3669:32;;-1:-1:-1;;;3540:167:1:o;3712:437::-;3798:6;3806;3859:2;3847:9;3838:7;3834:23;3830:32;3827:2;;;3875:1;3872;3865:12;3827:2;3915:9;3902:23;3948:18;3940:6;3937:30;3934:2;;;3980:1;3977;3970:12;3934:2;4019:70;4081:7;4072:6;4061:9;4057:22;4019:70;:::i;:::-;4108:8;;3993:96;;-1:-1:-1;3817:332:1;-1:-1:-1;;;;3817:332:1:o;4596:180::-;4655:6;4708:2;4696:9;4687:7;4683:23;4679:32;4676:2;;;4724:1;4721;4714:12;4676:2;-1:-1:-1;4747:23:1;;4666:110;-1:-1:-1;4666:110:1:o;4781:248::-;4849:6;4857;4910:2;4898:9;4889:7;4885:23;4881:32;4878:2;;;4926:1;4923;4916:12;4878:2;-1:-1:-1;;4949:23:1;;;5019:2;5004:18;;;4991:32;;-1:-1:-1;4868:161:1:o;5848:632::-;6019:2;6071:21;;;6141:13;;6044:18;;;6163:22;;;5990:4;;6019:2;6242:15;;;;6216:2;6201:18;;;5990:4;6285:169;6299:6;6296:1;6293:13;6285:169;;;6360:13;;6348:26;;6429:15;;;;6394:12;;;;6321:1;6314:9;6285:169;;;-1:-1:-1;6471:3:1;;5999:481;-1:-1:-1;;;;;;5999:481:1:o;6930:656::-;7042:4;7071:2;7100;7089:9;7082:21;7132:6;7126:13;7175:6;7170:2;7159:9;7155:18;7148:34;7200:1;7210:140;7224:6;7221:1;7218:13;7210:140;;;7319:14;;;7315:23;;7309:30;7285:17;;;7304:2;7281:26;7274:66;7239:10;;7210:140;;;7368:6;7365:1;7362:13;7359:2;;;7438:1;7433:2;7424:6;7413:9;7409:22;7405:31;7398:42;7359:2;-1:-1:-1;7502:2:1;7490:15;7507:66;7486:88;7471:104;;;;7577:2;7467:113;;7051:535;-1:-1:-1;;;7051:535:1:o;14602:128::-;14642:3;14673:1;14669:6;14666:1;14663:13;14660:2;;;14679:18;;:::i;:::-;-1:-1:-1;14715:9:1;;14650:80::o;14735:274::-;14775:1;14801;14791:2;;14836:77;14833:1;14826:88;14937:4;14934:1;14927:15;14965:4;14962:1;14955:15;14791:2;-1:-1:-1;14994:9:1;;14781:228::o;15014:::-;15054:7;15180:1;15112:66;15108:74;15105:1;15102:81;15097:1;15090:9;15083:17;15079:105;15076:2;;;15187:18;;:::i;:::-;-1:-1:-1;15227:9:1;;15066:176::o;15247:125::-;15287:4;15315:1;15312;15309:8;15306:2;;;15320:18;;:::i;:::-;-1:-1:-1;15357:9:1;;15296:76::o;15377:437::-;15456:1;15452:12;;;;15499;;;15520:2;;15574:4;15566:6;15562:17;15552:27;;15520:2;15627;15619:6;15616:14;15596:18;15593:38;15590:2;;;15664:77;15661:1;15654:88;15765:4;15762:1;15755:15;15793:4;15790:1;15783:15;15590:2;;15432:382;;;:::o;15819:195::-;15858:3;15889:66;15882:5;15879:77;15876:2;;;15959:18;;:::i;:::-;-1:-1:-1;16006:1:1;15995:13;;15866:148::o;16019:184::-;16071:77;16068:1;16061:88;16168:4;16165:1;16158:15;16192:4;16189:1;16182:15;16208:184;16260:77;16257:1;16250:88;16357:4;16354:1;16347:15;16381:4;16378:1;16371:15;16397:184;16449:77;16446:1;16439:88;16546:4;16543:1;16536:15;16570:4;16567:1;16560:15;16586:184;16638:77;16635:1;16628:88;16735:4;16732:1;16725:15;16759:4;16756:1;16749:15

Swarm Source

ipfs://73090498963e632255ad661b01d381e01a4c97b67653f1dde7ee9e5e7dee5d7d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.