ETH Price: $2,515.35 (-0.08%)

Contract

0x7005D9011F4275747D5cb38bC3deB0C46EdbD105
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve208402772024-09-27 6:50:3535 days ago1727419835IN
0x7005D901...46EdbD105
0 ETH0.000302212.42126574
Approve208402752024-09-27 6:50:1135 days ago1727419811IN
0x7005D901...46EdbD105
0 ETH0.0003430914.10192275
Approve208402702024-09-27 6:49:1135 days ago1727419751IN
0x7005D901...46EdbD105
0 ETH0.0003170213.03038633
Approve181949952023-09-23 0:37:35405 days ago1695429455IN
0x7005D901...46EdbD105
0 ETH0.000370628.00027479
Approve179828732023-08-24 6:47:59435 days ago1692859679IN
0x7005D901...46EdbD105
0 ETH0.0004078416.76320067
Approve179826852023-08-24 6:09:59435 days ago1692857399IN
0x7005D901...46EdbD105
0 ETH0.0003068412.61169368
Approve168736612023-03-21 4:32:23591 days ago1679373143IN
0x7005D901...46EdbD105
0 ETH0.000317513.05005813
Approve168736602023-03-21 4:32:11591 days ago1679373131IN
0x7005D901...46EdbD105
0 ETH0.0003066312.60336279
Approve166586122023-02-18 22:54:47621 days ago1676760887IN
0x7005D901...46EdbD105
0 ETH0.000587624.15135037
Approve160855882022-11-30 21:49:47701 days ago1669844987IN
0x7005D901...46EdbD105
0 ETH0.0006656314.27972478
Approve160298552022-11-23 2:56:11709 days ago1669172171IN
0x7005D901...46EdbD105
0 ETH0.0003336813.71508591
Approve156443152022-09-30 6:18:47763 days ago1664518727IN
0x7005D901...46EdbD105
0 ETH0.000253739.59751046
Approve156443142022-09-30 6:18:35763 days ago1664518715IN
0x7005D901...46EdbD105
0 ETH0.000407498.79407369
Approve156359022022-09-29 2:04:59764 days ago1664417099IN
0x7005D901...46EdbD105
0 ETH0.000426829.21121367
Approve156314812022-09-28 11:16:59765 days ago1664363819IN
0x7005D901...46EdbD105
0 ETH0.0004976910.7432473
Approve156274232022-09-27 21:40:23765 days ago1664314823IN
0x7005D901...46EdbD105
0 ETH0.000461949.96892607
Approve156229742022-09-27 6:41:47766 days ago1664260907IN
0x7005D901...46EdbD105
0 ETH0.000435419.39647872
Approve156219952022-09-27 3:25:23766 days ago1664249123IN
0x7005D901...46EdbD105
0 ETH0.0005473511.8122893
Approve156218812022-09-27 3:02:35766 days ago1664247755IN
0x7005D901...46EdbD105
0 ETH0.0005641412.17459472
Approve156217972022-09-27 2:45:47766 days ago1664246747IN
0x7005D901...46EdbD105
0 ETH0.000462399.97884835
Approve156197222022-09-26 19:47:59767 days ago1664221679IN
0x7005D901...46EdbD105
0 ETH0.0003642313.77689084
Approve156197192022-09-26 19:47:23767 days ago1664221643IN
0x7005D901...46EdbD105
0 ETH0.0005778512.4704687
Approve156155972022-09-26 5:55:59767 days ago1664171759IN
0x7005D901...46EdbD105
0 ETH0.000293786.34004951
Approve156152532022-09-26 4:46:47767 days ago1664167607IN
0x7005D901...46EdbD105
0 ETH0.000283846.12549072
Approve156147942022-09-26 3:14:47767 days ago1664162087IN
0x7005D901...46EdbD105
0 ETH0.000284086.13066801
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
X7005

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-23
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;

/*

 x7005.sol

This contract will NOT be renounced.

The following are the only functions that can be called on the contract that affect the contract:

    function setLiquidityHub(address liquidityHub_) external onlyOwner {
        liquidityHub = ILiquidityHub(liquidityHub_);
    }

    function setTradingPass(address tradingPassAddress) external onlyOwner {
        tradingPass = IERC721(tradingPassAddress);
    }

    function setDAOBalanceTradingPass(uint256 newThreshold) external onlyOwner {
        DAOBalanceTradingPass = newThreshold;
    }

    function setAMM(address ammAddress, bool isAMM) external {
        require(msg.sender == address(liquidityHub) || msg.sender == owner(), "Only the owner or the liquidity hub may add a new pair");
        ammPair[ammAddress] = isAMM;
    }

    function setOffRampPair(address ammAddress) external {
        require(msg.sender == address(liquidityHub) || msg.sender == owner(), "Only the owner or the liquidity hub may add a new pair");
        offRampPair = ammAddress;
    }

These functions will be passed to DAO governance once the ecosystem stabilizes.

*/

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

/**
 * @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;
    }
}

/**
 * @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(address owner_) {
        _transferOwnership(owner_);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

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

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

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

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

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

/**
 * @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);
}

/**
 * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
    unchecked {
        _balances[from] = fromBalance - amount;
    }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

/**
 * @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);
}

/**
 * @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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    payable
    returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
    external
    returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
    external
    payable
    returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

interface ILiquidityHub {
    function processFees(address) external;
}

contract X7005 is ERC20, Ownable {

    IERC20 public dao = IERC20(0x7105AA393b9cF9b2497b460837313EA3dBA67Da0);
    IERC721 public tradingPass;
    uint256 public DAOBalanceTradingPass = 50000 * 10**18;

    ILiquidityHub public liquidityHub = ILiquidityHub(0x700000F7c2C71CAaB6b250CA85237117FF702ebb);

    mapping(address => bool) public ammPair;
    address public offRampPair;

    // 2 % fee
    uint256 public feeNumerator = 200;
    uint256 public discountFeeNumerator = 100;
    uint256 public feeDenominator = 10000;

    uint256 public tradingStartTime;
    uint256 public rampUpSeconds = 600;
    uint256 public liveTime;

    uint256 public rampUpMaxWalletPercent = 300;
    uint256 public rampUpMaxTransactionPercent = 100;
    uint256 public rampUpLimitsDenominator = 10000;
    uint256 public rampUpMinimumDAOBalance = 20000 * 10**18;

    constructor() ERC20("X7005", "X7005") Ownable(address(0x7000a09c425ABf5173FF458dF1370C25d1C58105)) {
        _mint(address(liquidityHub), 100000000 * 10**18);
    }

    function startTrading() external {
        require(tradingStartTime == 0, "Trading may only begin once.");
        require(msg.sender == address(liquidityHub), "Only the liquidity hub may start trading.");
        tradingStartTime = block.timestamp;
        liveTime = block.timestamp + rampUpSeconds;
    }

    function setLiquidityHub(address liquidityHub_) external onlyOwner {
        liquidityHub = ILiquidityHub(liquidityHub_);
    }

    function setTradingPass(address tradingPassAddress) external onlyOwner {
        tradingPass = IERC721(tradingPassAddress);
    }

    function setDAOBalanceTradingPass(uint256 newThreshold) external onlyOwner {
        DAOBalanceTradingPass = newThreshold;
    }

    function setAMM(address ammAddress, bool isAMM) external {
        require(msg.sender == address(liquidityHub) || msg.sender == owner(), "Only the owner or the liquidity hub may add a new pair");
        ammPair[ammAddress] = isAMM;
    }

    function setOffRampPair(address ammAddress) external {
        require(msg.sender == address(liquidityHub) || msg.sender == owner(), "Only the owner or the liquidity hub may add a new pair");
        offRampPair = ammAddress;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        uint256 transferAmount = amount;

        if (
            from == address(liquidityHub)
            || to == address(liquidityHub)
        ) {
            super._transfer(from, to, amount);
            return;
        }

        if (block.timestamp <= liveTime) {
            require(amount <= totalSupply() * rampUpMaxTransactionPercent / rampUpLimitsDenominator, "Transaction too large for ramp up period");

            if (from == offRampPair && !ammPair[to]) {
                require(balanceOf(to) + amount <= totalSupply() * rampUpMaxWalletPercent / rampUpLimitsDenominator, "Transaction would exceed ramp up max wallet limit");
                require(dao.balanceOf(to) >= rampUpMinimumDAOBalance, "Must hold a minimum of 20,000 X7DAO to trade during 10 minute ramp up period");
            } else if (to == offRampPair && !ammPair[from]) {
                require(dao.balanceOf(from) >= rampUpMinimumDAOBalance, "Must hold a minimum of 20,000 X7DAO to trade during 10 minute ramp up period");
            }
        }

        if (
            (from == offRampPair && !ammPair[to])
            || (to == offRampPair && !ammPair[from])
        ) {
            uint256 effectiveFeeNumerator;

            if (
                (
                from == offRampPair
                && (
                dao.balanceOf(to) >= DAOBalanceTradingPass
                || (tradingPass != IERC721(address(0)) && tradingPass.balanceOf(to) > 0)
                )
                ) || (
            to == offRampPair
            && (
            dao.balanceOf(from) >= DAOBalanceTradingPass
            || (tradingPass != IERC721(address(0)) && tradingPass.balanceOf(from) > 0)
            )
            )
            ) {
                effectiveFeeNumerator = discountFeeNumerator;
            } else {
                effectiveFeeNumerator = feeNumerator;
            }

            uint256 feeAmount = amount * feeNumerator / feeDenominator;

            super._transfer(from, address(liquidityHub), feeAmount);
            transferAmount = amount - feeAmount;
        }

        if (
            to == offRampPair
        ) {
            liquidityHub.processFees(address(this));
        }

        super._transfer(from, to, transferAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"DAOBalanceTradingPass","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":"","type":"address"}],"name":"ammPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"dao","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"discountFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeNumerator","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":[],"name":"liquidityHub","outputs":[{"internalType":"contract ILiquidityHub","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liveTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"offRampPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rampUpLimitsDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rampUpMaxTransactionPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rampUpMaxWalletPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rampUpMinimumDAOBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rampUpSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ammAddress","type":"address"},{"internalType":"bool","name":"isAMM","type":"bool"}],"name":"setAMM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"setDAOBalanceTradingPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidityHub_","type":"address"}],"name":"setLiquidityHub","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ammAddress","type":"address"}],"name":"setOffRampPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tradingPassAddress","type":"address"}],"name":"setTradingPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingPass","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600680546001600160a01b0319908116737105aa393b9cf9b2497b460837313ea3dba67da017909155690a968163f0a57b4000006008556009805490911673700000f7c2c71caab6b250ca85237117ff702ebb17905560c8600c556064600d819055612710600e81905561025860105561012c60125560139190915560145569043c33c19375648000006015553480156200009e57600080fd5b50604080518082018252600580825264583730303560d81b6020808401829052845180860190955291845290830152737000a09c425abf5173ff458df1370c25d1c58105916003620000f1838262000321565b50600462000100828262000321565b50505062000114816200013e60201b60201c565b5060095462000138906001600160a01b03166a52b7d2dcc80cd2e400000062000190565b62000414565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001ff9190620003ed565b90915550506001600160a01b038216600090815260208190526040812080548392906200022e908490620003ed565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002a857607f821691505b602082108103620002c957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200027857600081815260208120601f850160051c81016020861015620002f85750805b601f850160051c820191505b81811015620003195782815560010162000304565b505050505050565b81516001600160401b038111156200033d576200033d6200027d565b62000355816200034e845462000293565b84620002cf565b602080601f8311600181146200038d5760008415620003745750858301515b600019600386901b1c1916600185901b17855562000319565b600085815260208120601f198616915b82811015620003be578886015182559484019460019091019084016200039d565b5085821015620003dd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082198211156200040f57634e487b7160e01b600052601160045260246000fd5b500190565b6116da80620004246000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c80637b31bd7811610125578063a9d3cd8a116100ad578063dd62ed3e1161007c578063dd62ed3e1461044b578063e86dea4a1461045e578063f2fde38b14610467578063f42535831461047a578063f710b4551461048357600080fd5b8063a9d3cd8a14610409578063ab04a6bb1461041c578063bc49abd81461042f578063be1c71421461043857600080fd5b80639b85a573116100f45780639b85a573146103c85780639e112ce8146103d1578063a128a9e9146103da578063a457c2d7146103e3578063a9059cbb146103f657600080fd5b80637b31bd78146103795780638da5cb5b1461038c57806395d89b411461039d57806398e2ebbf146103a557600080fd5b806339509351116101a857806368480f9f1161017757806368480f9f14610323578063707392431461033657806370a082311461033f57806370b7b80c14610368578063715018a61461037157600080fd5b806339509351146102bf5780634162169f146102d25780634639139d146102fd5780634c22b1dd1461031057600080fd5b80632102f58b116101ef5780632102f58b1461028157806323b872dd1461028a578063293230b81461029d57806329ddde41146102a7578063313ce567146102b057600080fd5b806306fdde0314610221578063095ea7b31461023f578063180b0d7e1461026257806318160ddd14610279575b600080fd5b610229610496565b6040516102369190611382565b60405180910390f35b61025261024d3660046113f3565b610528565b6040519015158152602001610236565b61026b600e5481565b604051908152602001610236565b60025461026b565b61026b60125481565b61025261029836600461141d565b610540565b6102a5610564565b005b61026b60105481565b60405160128152602001610236565b6102526102cd3660046113f3565b61063c565b6006546102e5906001600160a01b031681565b6040516001600160a01b039091168152602001610236565b6009546102e5906001600160a01b031681565b6102a561031e366004611459565b61065e565b6007546102e5906001600160a01b031681565b61026b60085481565b61026b61034d366004611472565b6001600160a01b031660009081526020819052604090205490565b61026b600f5481565b6102a561066b565b600b546102e5906001600160a01b031681565b6005546001600160a01b03166102e5565b61022961067f565b6102526103b3366004611472565b600a6020526000908152604090205460ff1681565b61026b600d5481565b61026b60155481565b61026b60145481565b6102526103f13660046113f3565b61068e565b6102526104043660046113f3565b610709565b6102a5610417366004611494565b610717565b6102a561042a366004611472565b610781565b61026b60115481565b6102a5610446366004611472565b6107ab565b61026b6104593660046114d0565b61080c565b61026b600c5481565b6102a5610475366004611472565b610837565b61026b60135481565b6102a5610491366004611472565b6108b0565b6060600380546104a590611503565b80601f01602080910402602001604051908101604052809291908181526020018280546104d190611503565b801561051e5780601f106104f35761010080835404028352916020019161051e565b820191906000526020600020905b81548152906001019060200180831161050157829003601f168201915b5050505050905090565b6000336105368185856108da565b5060019392505050565b60003361054e8582856109fe565b610559858585610a78565b506001949350505050565b600f54156105b95760405162461bcd60e51b815260206004820152601c60248201527f54726164696e67206d6179206f6e6c7920626567696e206f6e63652e0000000060448201526064015b60405180910390fd5b6009546001600160a01b031633146106255760405162461bcd60e51b815260206004820152602960248201527f4f6e6c7920746865206c697175696469747920687562206d6179207374617274604482015268103a3930b234b7339760b91b60648201526084016105b0565b42600f81905560105461063791611553565b601155565b60003361053681858561064f838361080c565b6106599190611553565b6108da565b610666611108565b600855565b610673611108565b61067d6000611162565b565b6060600480546104a590611503565b6000338161069c828661080c565b9050838110156106fc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105b0565b61055982868684036108da565b600033610536818585610a78565b6009546001600160a01b031633148061073a57506005546001600160a01b031633145b6107565760405162461bcd60e51b81526004016105b09061156b565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b610789611108565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b03163314806107ce57506005546001600160a01b031633145b6107ea5760405162461bcd60e51b81526004016105b09061156b565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61083f611108565b6001600160a01b0381166108a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b0565b6108ad81611162565b50565b6108b8611108565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661093c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105b0565b6001600160a01b03821661099d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105b0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a0a848461080c565b90506000198114610a725781811015610a655760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105b0565b610a7284848484036108da565b50505050565b60095481906001600160a01b0385811691161480610aa357506009546001600160a01b038481169116145b15610ab357610a728484846111b4565b6011544211610d8157601454601354600254610acf91906115c1565b610ad991906115e0565b821115610b395760405162461bcd60e51b815260206004820152602860248201527f5472616e73616374696f6e20746f6f206c6172676520666f722072616d7020756044820152671c081c195c9a5bd960c21b60648201526084016105b0565b600b546001600160a01b038581169116148015610b6f57506001600160a01b0383166000908152600a602052604090205460ff16155b15610cb757601454601254600254610b8791906115c1565b610b9191906115e0565b82610bb1856001600160a01b031660009081526020819052604090205490565b610bbb9190611553565b1115610c235760405162461bcd60e51b815260206004820152603160248201527f5472616e73616374696f6e20776f756c64206578636565642072616d70207570604482015270081b585e081dd85b1b195d081b1a5b5a5d607a1b60648201526084016105b0565b6015546006546040516370a0823160e01b81526001600160a01b038681166004830152909116906370a0823190602401602060405180830381865afa158015610c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c949190611602565b1015610cb25760405162461bcd60e51b81526004016105b09061161b565b610d81565b600b546001600160a01b038481169116148015610ced57506001600160a01b0384166000908152600a602052604090205460ff16155b15610d81576015546006546040516370a0823160e01b81526001600160a01b038781166004830152909116906370a0823190602401602060405180830381865afa158015610d3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d639190611602565b1015610d815760405162461bcd60e51b81526004016105b09061161b565b600b546001600160a01b038581169116148015610db757506001600160a01b0383166000908152600a602052604090205460ff16155b80610df35750600b546001600160a01b038481169116148015610df357506001600160a01b0384166000908152600a602052604090205460ff16155b1561108957600b546000906001600160a01b038681169116148015610f1257506008546006546040516370a0823160e01b81526001600160a01b038781166004830152909116906370a0823190602401602060405180830381865afa158015610e60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e849190611602565b101580610f1257506007546001600160a01b031615801590610f1257506007546040516370a0823160e01b81526001600160a01b03868116600483015260009216906370a0823190602401602060405180830381865afa158015610eec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f109190611602565b115b8061102f5750600b546001600160a01b03858116911614801561102f57506008546006546040516370a0823160e01b81526001600160a01b038881166004830152909116906370a0823190602401602060405180830381865afa158015610f7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa19190611602565b10158061102f57506007546001600160a01b03161580159061102f57506007546040516370a0823160e01b81526001600160a01b03878116600483015260009216906370a0823190602401602060405180830381865afa158015611009573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102d9190611602565b115b1561103d5750600d54611042565b50600c545b6000600e54600c548561105591906115c1565b61105f91906115e0565b60095490915061107a9087906001600160a01b0316836111b4565b611084818561168d565b925050505b600b546001600160a01b03908116908416036110fd576009546040516330ac175560e11b81523060048201526001600160a01b03909116906361582eaa90602401600060405180830381600087803b1580156110e457600080fd5b505af11580156110f8573d6000803e3d6000fd5b505050505b610a728484836111b4565b6005546001600160a01b0316331461067d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b0565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166112185760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105b0565b6001600160a01b03821661127a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105b0565b6001600160a01b038316600090815260208190526040902054818110156112f25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105b0565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611329908490611553565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161137591815260200190565b60405180910390a3610a72565b600060208083528351808285015260005b818110156113af57858101830151858201604001528201611393565b818111156113c1576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146113ee57600080fd5b919050565b6000806040838503121561140657600080fd5b61140f836113d7565b946020939093013593505050565b60008060006060848603121561143257600080fd5b61143b846113d7565b9250611449602085016113d7565b9150604084013590509250925092565b60006020828403121561146b57600080fd5b5035919050565b60006020828403121561148457600080fd5b61148d826113d7565b9392505050565b600080604083850312156114a757600080fd5b6114b0836113d7565b9150602083013580151581146114c557600080fd5b809150509250929050565b600080604083850312156114e357600080fd5b6114ec836113d7565b91506114fa602084016113d7565b90509250929050565b600181811c9082168061151757607f821691505b60208210810361153757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156115665761156661153d565b500190565b60208082526036908201527f4f6e6c7920746865206f776e6572206f7220746865206c697175696469747920604082015275343ab11036b0bc9030b2321030903732bb903830b4b960511b606082015260800190565b60008160001904831182151516156115db576115db61153d565b500290565b6000826115fd57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561161457600080fd5b5051919050565b6020808252604c908201527f4d75737420686f6c642061206d696e696d756d206f662032302c30303020583760408201527f44414f20746f20747261646520647572696e67203130206d696e75746520726160608201526b1b5c081d5c081c195c9a5bd960a21b608082015260a00190565b60008282101561169f5761169f61153d565b50039056fea26469706673582212201b1e30124b58ec45a6c90e49959ddd8383c22e8198f25b9d83018e84f67b723864736f6c634300080f0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021c5760003560e01c80637b31bd7811610125578063a9d3cd8a116100ad578063dd62ed3e1161007c578063dd62ed3e1461044b578063e86dea4a1461045e578063f2fde38b14610467578063f42535831461047a578063f710b4551461048357600080fd5b8063a9d3cd8a14610409578063ab04a6bb1461041c578063bc49abd81461042f578063be1c71421461043857600080fd5b80639b85a573116100f45780639b85a573146103c85780639e112ce8146103d1578063a128a9e9146103da578063a457c2d7146103e3578063a9059cbb146103f657600080fd5b80637b31bd78146103795780638da5cb5b1461038c57806395d89b411461039d57806398e2ebbf146103a557600080fd5b806339509351116101a857806368480f9f1161017757806368480f9f14610323578063707392431461033657806370a082311461033f57806370b7b80c14610368578063715018a61461037157600080fd5b806339509351146102bf5780634162169f146102d25780634639139d146102fd5780634c22b1dd1461031057600080fd5b80632102f58b116101ef5780632102f58b1461028157806323b872dd1461028a578063293230b81461029d57806329ddde41146102a7578063313ce567146102b057600080fd5b806306fdde0314610221578063095ea7b31461023f578063180b0d7e1461026257806318160ddd14610279575b600080fd5b610229610496565b6040516102369190611382565b60405180910390f35b61025261024d3660046113f3565b610528565b6040519015158152602001610236565b61026b600e5481565b604051908152602001610236565b60025461026b565b61026b60125481565b61025261029836600461141d565b610540565b6102a5610564565b005b61026b60105481565b60405160128152602001610236565b6102526102cd3660046113f3565b61063c565b6006546102e5906001600160a01b031681565b6040516001600160a01b039091168152602001610236565b6009546102e5906001600160a01b031681565b6102a561031e366004611459565b61065e565b6007546102e5906001600160a01b031681565b61026b60085481565b61026b61034d366004611472565b6001600160a01b031660009081526020819052604090205490565b61026b600f5481565b6102a561066b565b600b546102e5906001600160a01b031681565b6005546001600160a01b03166102e5565b61022961067f565b6102526103b3366004611472565b600a6020526000908152604090205460ff1681565b61026b600d5481565b61026b60155481565b61026b60145481565b6102526103f13660046113f3565b61068e565b6102526104043660046113f3565b610709565b6102a5610417366004611494565b610717565b6102a561042a366004611472565b610781565b61026b60115481565b6102a5610446366004611472565b6107ab565b61026b6104593660046114d0565b61080c565b61026b600c5481565b6102a5610475366004611472565b610837565b61026b60135481565b6102a5610491366004611472565b6108b0565b6060600380546104a590611503565b80601f01602080910402602001604051908101604052809291908181526020018280546104d190611503565b801561051e5780601f106104f35761010080835404028352916020019161051e565b820191906000526020600020905b81548152906001019060200180831161050157829003601f168201915b5050505050905090565b6000336105368185856108da565b5060019392505050565b60003361054e8582856109fe565b610559858585610a78565b506001949350505050565b600f54156105b95760405162461bcd60e51b815260206004820152601c60248201527f54726164696e67206d6179206f6e6c7920626567696e206f6e63652e0000000060448201526064015b60405180910390fd5b6009546001600160a01b031633146106255760405162461bcd60e51b815260206004820152602960248201527f4f6e6c7920746865206c697175696469747920687562206d6179207374617274604482015268103a3930b234b7339760b91b60648201526084016105b0565b42600f81905560105461063791611553565b601155565b60003361053681858561064f838361080c565b6106599190611553565b6108da565b610666611108565b600855565b610673611108565b61067d6000611162565b565b6060600480546104a590611503565b6000338161069c828661080c565b9050838110156106fc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105b0565b61055982868684036108da565b600033610536818585610a78565b6009546001600160a01b031633148061073a57506005546001600160a01b031633145b6107565760405162461bcd60e51b81526004016105b09061156b565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b610789611108565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b03163314806107ce57506005546001600160a01b031633145b6107ea5760405162461bcd60e51b81526004016105b09061156b565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61083f611108565b6001600160a01b0381166108a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b0565b6108ad81611162565b50565b6108b8611108565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661093c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105b0565b6001600160a01b03821661099d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105b0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a0a848461080c565b90506000198114610a725781811015610a655760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105b0565b610a7284848484036108da565b50505050565b60095481906001600160a01b0385811691161480610aa357506009546001600160a01b038481169116145b15610ab357610a728484846111b4565b6011544211610d8157601454601354600254610acf91906115c1565b610ad991906115e0565b821115610b395760405162461bcd60e51b815260206004820152602860248201527f5472616e73616374696f6e20746f6f206c6172676520666f722072616d7020756044820152671c081c195c9a5bd960c21b60648201526084016105b0565b600b546001600160a01b038581169116148015610b6f57506001600160a01b0383166000908152600a602052604090205460ff16155b15610cb757601454601254600254610b8791906115c1565b610b9191906115e0565b82610bb1856001600160a01b031660009081526020819052604090205490565b610bbb9190611553565b1115610c235760405162461bcd60e51b815260206004820152603160248201527f5472616e73616374696f6e20776f756c64206578636565642072616d70207570604482015270081b585e081dd85b1b195d081b1a5b5a5d607a1b60648201526084016105b0565b6015546006546040516370a0823160e01b81526001600160a01b038681166004830152909116906370a0823190602401602060405180830381865afa158015610c70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c949190611602565b1015610cb25760405162461bcd60e51b81526004016105b09061161b565b610d81565b600b546001600160a01b038481169116148015610ced57506001600160a01b0384166000908152600a602052604090205460ff16155b15610d81576015546006546040516370a0823160e01b81526001600160a01b038781166004830152909116906370a0823190602401602060405180830381865afa158015610d3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d639190611602565b1015610d815760405162461bcd60e51b81526004016105b09061161b565b600b546001600160a01b038581169116148015610db757506001600160a01b0383166000908152600a602052604090205460ff16155b80610df35750600b546001600160a01b038481169116148015610df357506001600160a01b0384166000908152600a602052604090205460ff16155b1561108957600b546000906001600160a01b038681169116148015610f1257506008546006546040516370a0823160e01b81526001600160a01b038781166004830152909116906370a0823190602401602060405180830381865afa158015610e60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e849190611602565b101580610f1257506007546001600160a01b031615801590610f1257506007546040516370a0823160e01b81526001600160a01b03868116600483015260009216906370a0823190602401602060405180830381865afa158015610eec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f109190611602565b115b8061102f5750600b546001600160a01b03858116911614801561102f57506008546006546040516370a0823160e01b81526001600160a01b038881166004830152909116906370a0823190602401602060405180830381865afa158015610f7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa19190611602565b10158061102f57506007546001600160a01b03161580159061102f57506007546040516370a0823160e01b81526001600160a01b03878116600483015260009216906370a0823190602401602060405180830381865afa158015611009573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102d9190611602565b115b1561103d5750600d54611042565b50600c545b6000600e54600c548561105591906115c1565b61105f91906115e0565b60095490915061107a9087906001600160a01b0316836111b4565b611084818561168d565b925050505b600b546001600160a01b03908116908416036110fd576009546040516330ac175560e11b81523060048201526001600160a01b03909116906361582eaa90602401600060405180830381600087803b1580156110e457600080fd5b505af11580156110f8573d6000803e3d6000fd5b505050505b610a728484836111b4565b6005546001600160a01b0316331461067d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b0565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166112185760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105b0565b6001600160a01b03821661127a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105b0565b6001600160a01b038316600090815260208190526040902054818110156112f25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105b0565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611329908490611553565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161137591815260200190565b60405180910390a3610a72565b600060208083528351808285015260005b818110156113af57858101830151858201604001528201611393565b818111156113c1576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146113ee57600080fd5b919050565b6000806040838503121561140657600080fd5b61140f836113d7565b946020939093013593505050565b60008060006060848603121561143257600080fd5b61143b846113d7565b9250611449602085016113d7565b9150604084013590509250925092565b60006020828403121561146b57600080fd5b5035919050565b60006020828403121561148457600080fd5b61148d826113d7565b9392505050565b600080604083850312156114a757600080fd5b6114b0836113d7565b9150602083013580151581146114c557600080fd5b809150509250929050565b600080604083850312156114e357600080fd5b6114ec836113d7565b91506114fa602084016113d7565b90509250929050565b600181811c9082168061151757607f821691505b60208210810361153757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156115665761156661153d565b500190565b60208082526036908201527f4f6e6c7920746865206f776e6572206f7220746865206c697175696469747920604082015275343ab11036b0bc9030b2321030903732bb903830b4b960511b606082015260800190565b60008160001904831182151516156115db576115db61153d565b500290565b6000826115fd57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561161457600080fd5b5051919050565b6020808252604c908201527f4d75737420686f6c642061206d696e696d756d206f662032302c30303020583760408201527f44414f20746f20747261646520647572696e67203130206d696e75746520726160608201526b1b5c081d5c081c195c9a5bd960a21b608082015260a00190565b60008282101561169f5761169f61153d565b50039056fea26469706673582212201b1e30124b58ec45a6c90e49959ddd8383c22e8198f25b9d83018e84f67b723864736f6c634300080f0033

Deployed Bytecode Sourcemap

34026:4711:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9834:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12185:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;12185:201:0;1053:187:1;34527:37:0;;;;;;;;;1391:25:1;;;1379:2;1364:18;34527:37:0;1245:177:1;10954:108:0;11042:12;;10954:108;;34684:43;;;;;;12966:295;;;;;;:::i;:::-;;:::i;35080:312::-;;;:::i;:::-;;34611:34;;;;;;10796:93;;;10879:2;1902:36:1;;1890:2;1875:18;10796:93:0;1760:184:1;13670:238:0;;;;;;:::i;:::-;;:::i;34068:70::-;;;;;-1:-1:-1;;;;;34068:70:0;;;;;;-1:-1:-1;;;;;2127:32:1;;;2109:51;;2097:2;2082:18;34068:70:0;1949:217:1;34240:93:0;;;;;-1:-1:-1;;;;;34240:93:0;;;35676:130;;;;;;:::i;:::-;;:::i;34145:26::-;;;;;-1:-1:-1;;;;;34145:26:0;;;34178:53;;;;;;11125:127;;;;;;:::i;:::-;-1:-1:-1;;;;;11226:18:0;11199:7;11226:18;;;;;;;;;;;;11125:127;34573:31;;;;;;3778:103;;;:::i;34388:26::-;;;;;-1:-1:-1;;;;;34388:26:0;;;3130:87;3203:6;;-1:-1:-1;;;;;3203:6:0;3130:87;;10053:104;;;:::i;34342:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;34479:41;;;;;;34842:55;;;;;;34789:46;;;;;;14411:424;;;;;;:::i;:::-;;:::i;11458:193::-;;;;;;:::i;:::-;;:::i;35814:241::-;;;;;;:::i;:::-;;:::i;35400:129::-;;;;;;:::i;:::-;;:::i;34652:23::-;;;;;;36063:234;;;;;;:::i;:::-;;:::i;11714:151::-;;;;;;:::i;:::-;;:::i;34439:33::-;;;;;;4036:201;;;;;;:::i;:::-;;:::i;34734:48::-;;;;;;35537:131;;;;;;:::i;:::-;;:::i;9834:100::-;9888:13;9921:5;9914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9834:100;:::o;12185:201::-;12268:4;1911:10;12324:32;1911:10;12340:7;12349:6;12324:8;:32::i;:::-;-1:-1:-1;12374:4:0;;12185:201;-1:-1:-1;;;12185:201:0:o;12966:295::-;13097:4;1911:10;13155:38;13171:4;1911:10;13186:6;13155:15;:38::i;:::-;13204:27;13214:4;13220:2;13224:6;13204:9;:27::i;:::-;-1:-1:-1;13249:4:0;;12966:295;-1:-1:-1;;;;12966:295:0:o;35080:312::-;35132:16;;:21;35124:62;;;;-1:-1:-1;;;35124:62:0;;4412:2:1;35124:62:0;;;4394:21:1;4451:2;4431:18;;;4424:30;4490;4470:18;;;4463:58;4538:18;;35124:62:0;;;;;;;;;35227:12;;-1:-1:-1;;;;;35227:12:0;35205:10;:35;35197:89;;;;-1:-1:-1;;;35197:89:0;;4769:2:1;35197:89:0;;;4751:21:1;4808:2;4788:18;;;4781:30;4847:34;4827:18;;;4820:62;-1:-1:-1;;;4898:18:1;;;4891:39;4947:19;;35197:89:0;4567:405:1;35197:89:0;35316:15;35297:16;:34;;;35371:13;;35353:31;;;:::i;:::-;35342:8;:42;35080:312::o;13670:238::-;13758:4;1911:10;13814:64;1911:10;13830:7;13867:10;13839:25;1911:10;13830:7;13839:9;:25::i;:::-;:38;;;;:::i;:::-;13814:8;:64::i;35676:130::-;3016:13;:11;:13::i;:::-;35762:21:::1;:36:::0;35676:130::o;3778:103::-;3016:13;:11;:13::i;:::-;3843:30:::1;3870:1;3843:18;:30::i;:::-;3778:103::o:0;10053:104::-;10109:13;10142:7;10135:14;;;;;:::i;14411:424::-;14504:4;1911:10;14504:4;14587:25;1911:10;14604:7;14587:9;:25::i;:::-;14560:52;;14651:15;14631:16;:35;;14623:85;;;;-1:-1:-1;;;14623:85:0;;5444:2:1;14623:85:0;;;5426:21:1;5483:2;5463:18;;;5456:30;5522:34;5502:18;;;5495:62;-1:-1:-1;;;5573:18:1;;;5566:35;5618:19;;14623:85:0;5242:401:1;14623:85:0;14736:60;14745:5;14752:7;14780:15;14761:16;:34;14736:8;:60::i;11458:193::-;11537:4;1911:10;11593:28;1911:10;11610:2;11614:6;11593:9;:28::i;35814:241::-;35912:12;;-1:-1:-1;;;;;35912:12:0;35890:10;:35;;:60;;-1:-1:-1;3203:6:0;;-1:-1:-1;;;;;3203:6:0;35929:10;:21;35890:60;35882:127;;;;-1:-1:-1;;;35882:127:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36020:19:0;;;;;;;;:7;:19;;;;;:27;;-1:-1:-1;;36020:27:0;;;;;;;;;;35814:241::o;35400:129::-;3016:13;:11;:13::i;:::-;35478:12:::1;:43:::0;;-1:-1:-1;;;;;;35478:43:0::1;-1:-1:-1::0;;;;;35478:43:0;;;::::1;::::0;;;::::1;::::0;;35400:129::o;36063:234::-;36157:12;;-1:-1:-1;;;;;36157:12:0;36135:10;:35;;:60;;-1:-1:-1;3203:6:0;;-1:-1:-1;;;;;3203:6:0;36174:10;:21;36135:60;36127:127;;;;-1:-1:-1;;;36127:127:0;;;;;;;:::i;:::-;36265:11;:24;;-1:-1:-1;;;;;;36265:24:0;-1:-1:-1;;;;;36265:24:0;;;;;;;;;;36063:234::o;11714:151::-;-1:-1:-1;;;;;11830:18:0;;;11803:7;11830:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11714:151::o;4036:201::-;3016:13;:11;:13::i;:::-;-1:-1:-1;;;;;4125:22:0;::::1;4117:73;;;::::0;-1:-1:-1;;;4117:73:0;;6273:2:1;4117:73:0::1;::::0;::::1;6255:21:1::0;6312:2;6292:18;;;6285:30;6351:34;6331:18;;;6324:62;-1:-1:-1;;;6402:18:1;;;6395:36;6448:19;;4117:73:0::1;6071:402:1::0;4117:73:0::1;4201:28;4220:8;4201:18;:28::i;:::-;4036:201:::0;:::o;35537:131::-;3016:13;:11;:13::i;:::-;35619:11:::1;:41:::0;;-1:-1:-1;;;;;;35619:41:0::1;-1:-1:-1::0;;;;;35619:41:0;;;::::1;::::0;;;::::1;::::0;;35537:131::o;18000:380::-;-1:-1:-1;;;;;18136:19:0;;18128:68;;;;-1:-1:-1;;;18128:68:0;;6680:2:1;18128:68:0;;;6662:21:1;6719:2;6699:18;;;6692:30;6758:34;6738:18;;;6731:62;-1:-1:-1;;;6809:18:1;;;6802:34;6853:19;;18128:68:0;6478:400:1;18128:68:0;-1:-1:-1;;;;;18215:21:0;;18207:68;;;;-1:-1:-1;;;18207:68:0;;7085:2:1;18207:68:0;;;7067:21:1;7124:2;7104:18;;;7097:30;7163:34;7143:18;;;7136:62;-1:-1:-1;;;7214:18:1;;;7207:32;7256:19;;18207:68:0;6883:398:1;18207:68:0;-1:-1:-1;;;;;18288:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18340:32;;1391:25:1;;;18340:32:0;;1364:18:1;18340:32:0;;;;;;;18000:380;;;:::o;18671:441::-;18806:24;18833:25;18843:5;18850:7;18833:9;:25::i;:::-;18806:52;;-1:-1:-1;;18873:16:0;:37;18869:236;;18955:6;18935:16;:26;;18927:68;;;;-1:-1:-1;;;18927:68:0;;7488:2:1;18927:68:0;;;7470:21:1;7527:2;7507:18;;;7500:30;7566:31;7546:18;;;7539:59;7615:18;;18927:68:0;7286:353:1;18927:68:0;19031:51;19040:5;19047:7;19075:6;19056:16;:25;19031:8;:51::i;:::-;18795:317;18671:441;;;:::o;36305:2429::-;36507:12;;36454:6;;-1:-1:-1;;;;;36491:29:0;;;36507:12;;36491:29;;:73;;-1:-1:-1;36551:12:0;;-1:-1:-1;;;;;36537:27:0;;;36551:12;;36537:27;36491:73;36473:184;;;36591:33;36607:4;36613:2;36617:6;36591:15;:33::i;36473:184::-;36692:8;;36673:15;:27;36669:805;;36781:23;;36751:27;;11042:12;;36735:43;;;;:::i;:::-;:69;;;;:::i;:::-;36725:6;:79;;36717:132;;;;-1:-1:-1;;;36717:132:0;;8241:2:1;36717:132:0;;;8223:21:1;8280:2;8260:18;;;8253:30;8319:34;8299:18;;;8292:62;-1:-1:-1;;;8370:18:1;;;8363:38;8418:19;;36717:132:0;8039:404:1;36717:132:0;36878:11;;-1:-1:-1;;;;;36870:19:0;;;36878:11;;36870:19;:35;;;;-1:-1:-1;;;;;;36894:11:0;;;;;;:7;:11;;;;;;;;36893:12;36870:35;36866:597;;;37001:23;;36976:22;;11042:12;;36960:38;;;;:::i;:::-;:64;;;;:::i;:::-;36950:6;36934:13;36944:2;-1:-1:-1;;;;;11226:18:0;11199:7;11226:18;;;;;;;;;;;;11125:127;36934:13;:22;;;;:::i;:::-;:90;;36926:152;;;;-1:-1:-1;;;36926:152:0;;8650:2:1;36926:152:0;;;8632:21:1;8689:2;8669:18;;;8662:30;8728:34;8708:18;;;8701:62;-1:-1:-1;;;8779:18:1;;;8772:47;8836:19;;36926:152:0;8448:413:1;36926:152:0;37126:23;;37105:3;;:17;;-1:-1:-1;;;37105:17:0;;-1:-1:-1;;;;;2127:32:1;;;37105:17:0;;;2109:51:1;37105:3:0;;;;:13;;2082:18:1;;37105:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;;37097:133;;;;-1:-1:-1;;;37097:133:0;;;;;;;:::i;:::-;36866:597;;;37262:11;;-1:-1:-1;;;;;37256:17:0;;;37262:11;;37256:17;:35;;;;-1:-1:-1;;;;;;37278:13:0;;;;;;:7;:13;;;;;;;;37277:14;37256:35;37252:211;;;37343:23;;37320:3;;:19;;-1:-1:-1;;;37320:19:0;;-1:-1:-1;;;;;2127:32:1;;;37320:19:0;;;2109:51:1;37320:3:0;;;;:13;;2082:18:1;;37320:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:46;;37312:135;;;;-1:-1:-1;;;37312:135:0;;;;;;;:::i;:::-;37513:11;;-1:-1:-1;;;;;37505:19:0;;;37513:11;;37505:19;:35;;;;-1:-1:-1;;;;;;37529:11:0;;;;;;:7;:11;;;;;;;;37528:12;37505:35;37504:91;;;-1:-1:-1;37565:11:0;;-1:-1:-1;;;;;37559:17:0;;;37565:11;;37559:17;:35;;;;-1:-1:-1;;;;;;37581:13:0;;;;;;:7;:13;;;;;;;;37580:14;37559:35;37486:1062;;;37717:11;;37622:29;;-1:-1:-1;;;;;37709:19:0;;;37717:11;;37709:19;:210;;;;-1:-1:-1;37789:21:0;;37768:3;;:17;;-1:-1:-1;;;37768:17:0;;-1:-1:-1;;;;;2127:32:1;;;37768:17:0;;;2109:51:1;37768:3:0;;;;:13;;2082:18:1;;37768:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:42;;:132;;;-1:-1:-1;37832:11:0;;-1:-1:-1;;;;;37832:11:0;:34;;;;:67;;-1:-1:-1;37870:11:0;;:25;;-1:-1:-1;;;37870:25:0;;-1:-1:-1;;;;;2127:32:1;;;37870:25:0;;;2109:51:1;37898:1:0;;37870:11;;:21;;2082:18:1;;37870:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;37832:67;37690:478;;;-1:-1:-1;37963:11:0;;-1:-1:-1;;;;;37957:17:0;;;37963:11;;37957:17;:196;;;;-1:-1:-1;38029:21:0;;38006:3;;:19;;-1:-1:-1;;;38006:19:0;;-1:-1:-1;;;;;2127:32:1;;;38006:19:0;;;2109:51:1;38006:3:0;;;;:13;;2082:18:1;;38006:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;;:132;;;-1:-1:-1;38068:11:0;;-1:-1:-1;;;;;38068:11:0;:34;;;;:69;;-1:-1:-1;38106:11:0;;:27;;-1:-1:-1;;;38106:27:0;;-1:-1:-1;;;;;2127:32:1;;;38106:27:0;;;2109:51:1;38136:1:0;;38106:11;;:21;;2082:18:1;;38106:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:31;38068:69;37668:672;;;-1:-1:-1;38227:20:0;;37668:672;;;-1:-1:-1;38312:12:0;;37668:672;38356:17;38400:14;;38385:12;;38376:6;:21;;;;:::i;:::-;:38;;;;:::i;:::-;38461:12;;38356:58;;-1:-1:-1;38431:55:0;;38447:4;;-1:-1:-1;;;;;38461:12:0;38356:58;38431:15;:55::i;:::-;38518:18;38527:9;38518:6;:18;:::i;:::-;38501:35;;37607:941;;37486:1062;38584:11;;-1:-1:-1;;;;;38584:11:0;;;38578:17;;;;38560:113;;38622:12;;:39;;-1:-1:-1;;;38622:39:0;;38655:4;38622:39;;;2109:51:1;-1:-1:-1;;;;;38622:12:0;;;;:24;;2082:18:1;;38622:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38560:113;38685:41;38701:4;38707:2;38711:14;38685:15;:41::i;3295:132::-;3203:6;;-1:-1:-1;;;;;3203:6:0;1911:10;3359:23;3351:68;;;;-1:-1:-1;;;3351:68:0;;9872:2:1;3351:68:0;;;9854:21:1;;;9891:18;;;9884:30;9950:34;9930:18;;;9923:62;10002:18;;3351:68:0;9670:356:1;4397:191:0;4490:6;;;-1:-1:-1;;;;;4507:17:0;;;-1:-1:-1;;;;;;4507:17:0;;;;;;;4540:40;;4490:6;;;4507:17;4490:6;;4540:40;;4471:16;;4540:40;4460:128;4397:191;:::o;15305:659::-;-1:-1:-1;;;;;15436:18:0;;15428:68;;;;-1:-1:-1;;;15428:68:0;;10233:2:1;15428:68:0;;;10215:21:1;10272:2;10252:18;;;10245:30;10311:34;10291:18;;;10284:62;-1:-1:-1;;;10362:18:1;;;10355:35;10407:19;;15428:68:0;10031:401:1;15428:68:0;-1:-1:-1;;;;;15515:16:0;;15507:64;;;;-1:-1:-1;;;15507:64:0;;10639:2:1;15507:64:0;;;10621:21:1;10678:2;10658:18;;;10651:30;10717:34;10697:18;;;10690:62;-1:-1:-1;;;10768:18:1;;;10761:33;10811:19;;15507:64:0;10437:399:1;15507:64:0;-1:-1:-1;;;;;15657:15:0;;15635:19;15657:15;;;;;;;;;;;15691:21;;;;15683:72;;;;-1:-1:-1;;;15683:72:0;;11043:2:1;15683:72:0;;;11025:21:1;11082:2;11062:18;;;11055:30;11121:34;11101:18;;;11094:62;-1:-1:-1;;;11172:18:1;;;11165:36;11218:19;;15683:72:0;10841:402:1;15683:72:0;-1:-1:-1;;;;;15783:15:0;;;:9;:15;;;;;;;;;;;15801:20;;;15783:38;;15839:13;;;;;;;;:23;;15815:6;;15783:9;15839:23;;15815:6;;15839:23;:::i;:::-;;;;;;;;15895:2;-1:-1:-1;;;;;15880:26:0;15889:4;-1:-1:-1;;;;;15880:26:0;;15899:6;15880:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;15880:26:0;;;;;;;;15919:37;19712:125;14:597:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;2401:180::-;2460:6;2513:2;2501:9;2492:7;2488:23;2484:32;2481:52;;;2529:1;2526;2519:12;2481:52;-1:-1:-1;2552:23:1;;2401:180;-1:-1:-1;2401:180:1:o;2809:186::-;2868:6;2921:2;2909:9;2900:7;2896:23;2892:32;2889:52;;;2937:1;2934;2927:12;2889:52;2960:29;2979:9;2960:29;:::i;:::-;2950:39;2809:186;-1:-1:-1;;;2809:186:1:o;3208:347::-;3273:6;3281;3334:2;3322:9;3313:7;3309:23;3305:32;3302:52;;;3350:1;3347;3340:12;3302:52;3373:29;3392:9;3373:29;:::i;:::-;3363:39;;3452:2;3441:9;3437:18;3424:32;3499:5;3492:13;3485:21;3478:5;3475:32;3465:60;;3521:1;3518;3511:12;3465:60;3544:5;3534:15;;;3208:347;;;;;:::o;3560:260::-;3628:6;3636;3689:2;3677:9;3668:7;3664:23;3660:32;3657:52;;;3705:1;3702;3695:12;3657:52;3728:29;3747:9;3728:29;:::i;:::-;3718:39;;3776:38;3810:2;3799:9;3795:18;3776:38;:::i;:::-;3766:48;;3560:260;;;;;:::o;3825:380::-;3904:1;3900:12;;;;3947;;;3968:61;;4022:4;4014:6;4010:17;4000:27;;3968:61;4075:2;4067:6;4064:14;4044:18;4041:38;4038:161;;4121:10;4116:3;4112:20;4109:1;4102:31;4156:4;4153:1;4146:15;4184:4;4181:1;4174:15;4038:161;;3825:380;;;:::o;4977:127::-;5038:10;5033:3;5029:20;5026:1;5019:31;5069:4;5066:1;5059:15;5093:4;5090:1;5083:15;5109:128;5149:3;5180:1;5176:6;5173:1;5170:13;5167:39;;;5186:18;;:::i;:::-;-1:-1:-1;5222:9:1;;5109:128::o;5648:418::-;5850:2;5832:21;;;5889:2;5869:18;;;5862:30;5928:34;5923:2;5908:18;;5901:62;-1:-1:-1;;;5994:2:1;5979:18;;5972:52;6056:3;6041:19;;5648:418::o;7644:168::-;7684:7;7750:1;7746;7742:6;7738:14;7735:1;7732:21;7727:1;7720:9;7713:17;7709:45;7706:71;;;7757:18;;:::i;:::-;-1:-1:-1;7797:9:1;;7644:168::o;7817:217::-;7857:1;7883;7873:132;;7927:10;7922:3;7918:20;7915:1;7908:31;7962:4;7959:1;7952:15;7990:4;7987:1;7980:15;7873:132;-1:-1:-1;8019:9:1;;7817:217::o;8866:184::-;8936:6;8989:2;8977:9;8968:7;8964:23;8960:32;8957:52;;;9005:1;9002;8995:12;8957:52;-1:-1:-1;9028:16:1;;8866:184;-1:-1:-1;8866:184:1:o;9055:480::-;9257:2;9239:21;;;9296:2;9276:18;;;9269:30;9335:34;9330:2;9315:18;;9308:62;9406:34;9401:2;9386:18;;9379:62;-1:-1:-1;;;9472:3:1;9457:19;;9450:43;9525:3;9510:19;;9055:480::o;9540:125::-;9580:4;9608:1;9605;9602:8;9599:34;;;9613:18;;:::i;:::-;-1:-1:-1;9650:9:1;;9540:125::o

Swarm Source

ipfs://1b1e30124b58ec45a6c90e49959ddd8383c22e8198f25b9d83018e84f67b7238

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.