ETH Price: $3,407.59 (+0.68%)
Gas: 3 Gwei

Token

8x8 (8x8)
 

Overview

Max Total Supply

1,000,000,000 8x8

Holders

106

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,494,241.525704198227625466 8x8

Value
$0.00
0x6fa1974371a909f7daf04f394ea5c9781abe18f0
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:
EIGHT

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-06-19
*/

// SPDX-License-Identifier: MIT



/**

*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

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 generally not needed starting with Solidity 0.8, since 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 subtraction 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/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

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/token/ERC20/ERC20.sol


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

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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 {}
}

pragma solidity 0.8.19;

interface DexFactory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

interface DexRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract EIGHT is ERC20, Ownable {
    struct Tax {
        uint256 marketingTax;
    }

    uint256 private constant _totalSupply = 1000000000 * 1e18;

    //Router
    DexRouter public immutable uniswapRouter;
    address public immutable pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(0);
    Tax public sellTaxes = Tax(0);
    Tax public transferTaxes = Tax(0);



    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 1000000; //after 0.04% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    bool public tradingEnabled = false;
    uint256 public startTradingBlock;
    bool public transferDelayEnabled = true;
    bool public launchTax;


    //Wallets
    address public marketingWallet = 0x3e1b77AF83Df00447F0fBbC0D9cf1F37C376Ad50 ;

    uint256 public maxWalletPercentage = 1;


    //Events
    event BuyFeesUpdated(uint256 indexed _trFee);
    event SellFeesUpdated(uint256 indexed _trFee);
    event marketingWalletChanged(address indexed _trWallet);
    event SwapThresholdUpdated(uint256 indexed _newThreshold);
    event InternalSwapStatusUpdated(bool indexed _status);
    event Whitelist(address indexed _target, bool indexed _status);
    event MaxWChanged(uint256 percentage);

    constructor() ERC20("8x8", "8x8") {

        uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // mainet
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;       
        _mint(msg.sender, _totalSupply);
        launchTax = false;
    }

    function setmarketingWallet(address _newmarketing) external onlyOwner {
        require(
            _newmarketing != address(0),
            "can not set marketing to dead wallet"
        );
        marketingWallet = _newmarketing;
        emit marketingWalletChanged(_newmarketing);
    }


    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        launchTax=true;
        startTradingBlock = block.number;
    }

    function setBuyTaxes(uint256 _marketingTax) external onlyOwner {
        buyTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 98, "Can not set buy fees higher than 98%");
        emit BuyFeesUpdated(_marketingTax);
    }

    function setSellTaxes(uint256 _marketingTax) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 98, "Can not set buy fees higher than 98%");
        emit SellFeesUpdated(_marketingTax);
    }

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(
            _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000,
            "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!"
        );
        swapTokensAtAmount = _newAmount;
        emit SwapThresholdUpdated(swapTokensAtAmount);
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled) ? false : true;
    }

    function setWhitelistStatus(
        address _wallet,
        bool _status
    ) external onlyOwner {
        whitelisted[_wallet] = _status;
        emit Whitelist(_wallet, _status);
    }
    function removeLimits() external onlyOwner{
        maxWalletPercentage =100;
        transferDelayEnabled=false;
        transferTaxes.marketingTax = 0;
    }
    function NormalizeTaxes() external onlyOwner{
        launchTax=false;
    }


    // this function is reponsible for managing tax, if _from or _to is whitelisted, we simply return _amount and skip all the limitations
function _takeTax(
    address _from,
    address _to,
    uint256 _amount
) internal returns (uint256) {
    if (whitelisted[_from] || whitelisted[_to]) {
        return _amount;
    }

    uint256 totalTax = transferTaxes.marketingTax;
    // Check if within the first 50 blocks
    if (launchTax) {
        if (block.number > startTradingBlock + 50) {
            buyTaxes.marketingTax = 0;
            sellTaxes.marketingTax = 0;
            launchTax = false;

        } else if (block.number <= startTradingBlock + 2) {
            buyTaxes.marketingTax = 30;
            sellTaxes.marketingTax = 30;
        } else if (block.number <= startTradingBlock + 20) {
            buyTaxes.marketingTax = 25;
            sellTaxes.marketingTax = 25;
        } else if (block.number <= startTradingBlock + 50) {
            buyTaxes.marketingTax = 20;
            sellTaxes.marketingTax = 20;
        }
    }
    if (_to == pairAddress) {
        totalTax = sellTaxes.marketingTax;
    } else if (_from == pairAddress) {
        totalTax = buyTaxes.marketingTax;
    }

    uint256 tax = 0;
    if (totalTax > 0) {
        tax = (_amount * totalTax) / 100;
        super._transfer(_from, address(this), tax);
    }
    return (_amount - tax);
}

function _transfer(
    address _from,
    address _to,
    uint256 _amount
) internal virtual override {

     if (transferDelayEnabled) {
        if (_to != address(pairAddress) && _to != address(pairAddress)) {
            require(_holderLastTransferTimestamp[tx.origin] < block.number, "Only one transfer per block allowed.");
            _holderLastTransferTimestamp[tx.origin] = block.number;
        }
    }   

    require(_from != address(0), "transfer from address zero");
    require(_to != address(0), "transfer to address zero");
    require(_amount > 0, "Transfer amount must be greater than zero");

    // Calculate the maximum wallet amount based on the total supply and the maximum wallet percentage
    uint256 maxWalletAmount = _totalSupply * maxWalletPercentage / 100;

    // Check if the transaction is within the maximum wallet limit
    if (!whitelisted[_from] && !whitelisted[_to] && _to != address(0) && _to != address(this) && _to != pairAddress) {
        require(balanceOf(_to) + _amount <= maxWalletAmount, "Exceeds maximum wallet amount");
    }

    uint256 toTransfer = _takeTax(_from, _to, _amount);

    bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
    if (!whitelisted[_from] && !whitelisted[_to]) {
        require(tradingEnabled, "Trading not active");
        if (pairAddress == _to && swapAndLiquifyEnabled && canSwap && !isSwapping) {
            internalSwap();
        }
    }
    super._transfer(_from, _to, toTransfer);
}

    function internalSwap() internal {
        isSwapping = true;
        uint256 taxAmount = balanceOf(address(this)); 
        if (taxAmount == 0) {
            return;
        }
        swapToETH(balanceOf(address(this)));
       (bool success, ) = marketingWallet.call{value: address(this).balance}("");
        require(success , "Transfer failed.");
        isSwapping = false;
    }  

    function swapToETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }

    function setMaxWalletPercentage(uint256 _percentage) external onlyOwner {
    require(_percentage > 1, "Percentage must be greater than 1%");
    require(_percentage <= 100, "Percentage must be less than or equal to 100");
    maxWalletPercentage = _percentage;
    emit MaxWChanged(_percentage);
}
    receive() external payable {}
}

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":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"MaxWChanged","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":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"marketingWalletChanged","type":"event"},{"inputs":[],"name":"NormalizeTaxes","outputs":[],"stateMutability":"nonpayable","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":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"enableTrading","outputs":[],"stateMutability":"nonpayable","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":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercentage","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newmarketing","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"},{"inputs":[],"name":"transferTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600060c0819052600681905560e081905260078190556101206040526101008190526008556200003f620f42406b033b2e3c9fd0803ce8000000620003f3565b600b55600c8054600162ffffff199091168117909155600e805461ff01600160b01b031916753e1b77af83df00447f0fbbc0d9cf1f37c376ad500001179055600f553480156200008e57600080fd5b50604080518082018252600380825262070f0760eb1b60208084018290528451808601909552828552840152909190620000c98382620004ba565b506004620000d88282620004ba565b505050620000f5620000ef620002d260201b60201c565b620002d6565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200014b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000171919062000586565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e7919062000586565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000235573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025b919062000586565b6001600160a01b0390811660a052336000818152600960205260408082208054600160ff199182168117909255608051909516835281832080548616821790553083529120805490931617909155620002c1906b033b2e3c9fd0803ce800000062000328565b600e805461ff0019169055620005e0565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003835760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620003979190620005b8565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000826200041157634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200044157607f821691505b6020821081036200046257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003ee57600081815260208120601f850160051c81016020861015620004915750805b601f850160051c820191505b81811015620004b2578281556001016200049d565b505050505050565b81516001600160401b03811115620004d657620004d662000416565b620004ee81620004e784546200042c565b8462000468565b602080601f8311600181146200052657600084156200050d5750858301515b600019600386901b1c1916600185901b178555620004b2565b600085815260208120601f198616915b82811015620005575788860151825594840194600190910190840162000536565b5085821015620005765787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200059957600080fd5b81516001600160a01b0381168114620005b157600080fd5b9392505050565b80820180821115620005da57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a051611e4e62000645600039600081816106050152818161103501528181611072015281816112d60152818161144c015281816116060152611648015260008181610475015281816119ae01528181611a670152611aa30152611e4e6000f3fe6080604052600436106102345760003560e01c806376be96f31161012e578063a8b08982116100ab578063dd62ed3e1161006f578063dd62ed3e146106a0578063e2f45605146106c0578063ef586f71146106d6578063f2fde38b146106eb578063f66895a31461070b57600080fd5b8063a8b08982146105f3578063a9059cbb14610627578063afa4f3b214610647578063b886311514610667578063c876d0b91461068657600080fd5b80638d456754116100f25780638d4567541461056b5780638da5cb5b1461058057806395d89b411461059e578063a3ca847d146105b3578063a457c2d7146105d357600080fd5b806376be96f3146104ea5780637a845ece14610500578063830351ff14610520578063864701a51461053f5780638a8c523c1461055657600080fd5b806339509351116101bc57806370a082311161018057806370a0823114610418578063715018a61461044e578063735de9f714610463578063751039fc146104af57806375f0a874146104c457600080fd5b806339509351146103915780634a74bb02146103b15780634ada218b146103cb5780635331803c146103eb578063599ca3971461040257600080fd5b806318160ddd1161020357806318160ddd146102dd5780631950c218146102fc578063224611731461033557806323b872dd14610355578063313ce5671461037557600080fd5b806306fdde03146102405780630940bbc71461026b578063095ea7b31461028d5780630c424284146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610722565b6040516102629190611b0f565b60405180910390f35b34801561027757600080fd5b5061028b610286366004611b5d565b6107b4565b005b34801561029957600080fd5b506102ad6102a8366004611b8b565b610819565b6040519015158152602001610262565b3480156102c957600080fd5b5061028b6102d8366004611bb7565b610833565b3480156102e957600080fd5b506002545b604051908152602001610262565b34801561030857600080fd5b506102ad610317366004611bf5565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561034157600080fd5b5061028b610350366004611bf5565b61088f565b34801561036157600080fd5b506102ad610370366004611c12565b61094d565b34801561038157600080fd5b5060405160128152602001610262565b34801561039d57600080fd5b506102ad6103ac366004611b8b565b610973565b3480156103bd57600080fd5b50600c546102ad9060ff1681565b3480156103d757600080fd5b50600c546102ad9062010000900460ff1681565b3480156103f757600080fd5b506008546102ee9081565b34801561040e57600080fd5b506102ee600f5481565b34801561042457600080fd5b506102ee610433366004611bf5565b6001600160a01b031660009081526020819052604090205490565b34801561045a57600080fd5b5061028b610995565b34801561046f57600080fd5b506104977f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610262565b3480156104bb57600080fd5b5061028b6109a9565b3480156104d057600080fd5b50600e54610497906201000090046001600160a01b031681565b3480156104f657600080fd5b506102ee600d5481565b34801561050c57600080fd5b5061028b61051b366004611b5d565b6109c7565b34801561052c57600080fd5b50600e546102ad90610100900460ff1681565b34801561054b57600080fd5b506006546102ee9081565b34801561056257600080fd5b5061028b610acb565b34801561057757600080fd5b5061028b610b52565b34801561058c57600080fd5b506005546001600160a01b0316610497565b3480156105aa57600080fd5b50610255610b67565b3480156105bf57600080fd5b5061028b6105ce366004611b5d565b610b76565b3480156105df57600080fd5b506102ad6105ee366004611b8b565b610bd2565b3480156105ff57600080fd5b506104977f000000000000000000000000000000000000000000000000000000000000000081565b34801561063357600080fd5b506102ad610642366004611b8b565b610c58565b34801561065357600080fd5b5061028b610662366004611b5d565b610c66565b34801561067357600080fd5b50600c546102ad90610100900460ff1681565b34801561069257600080fd5b50600e546102ad9060ff1681565b3480156106ac57600080fd5b506102ee6106bb366004611c53565b610d5d565b3480156106cc57600080fd5b506102ee600b5481565b3480156106e257600080fd5b5061028b610d88565b3480156106f757600080fd5b5061028b610706366004611bf5565b610db7565b34801561071757600080fd5b506007546102ee9081565b60606003805461073190611c81565b80601f016020809104026020016040519081016040528092919081815260200182805461075d90611c81565b80156107aa5780601f1061077f576101008083540402835291602001916107aa565b820191906000526020600020905b81548152906001019060200180831161078d57829003601f168201915b5050505050905090565b6107bc610e30565b600781905560628111156107eb5760405162461bcd60e51b81526004016107e290611cbb565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610827818585610e8a565b60019150505b92915050565b61083b610e30565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b610897610e30565b6001600160a01b0381166108f95760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b60648201526084016107e2565b600e805462010000600160b01b031916620100006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b60003361095b858285610fae565b610966858585611028565b60019150505b9392505050565b6000336108278185856109868383610d5d565b6109909190611d15565b610e8a565b61099d610e30565b6109a760006114c0565b565b6109b1610e30565b6064600f55600e805460ff191690556000600855565b6109cf610e30565b60018111610a2a5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b60648201526084016107e2565b6064811115610a905760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b60648201526084016107e2565b600f8190556040518181527f35d0d65816d2618c40bb72544c0686674a06ef8d669a0819ecba314be8292df09060200160405180910390a150565b610ad3610e30565b600c5462010000900460ff1615610b2c5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064016107e2565b600c805462ff0000191662010000179055600e805461ff00191661010017905543600d55565b610b5a610e30565b600e805461ff0019169055565b60606004805461073190611c81565b610b7e610e30565b60068190556062811115610ba45760405162461bcd60e51b81526004016107e290611cbb565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610be08286610d5d565b905083811015610c405760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107e2565b610c4d8286868403610e8a565b506001949350505050565b600033610827818585611028565b610c6e610e30565b600081118015610ca157506103e8610c936b033b2e3c9fd0803ce80000006005611d28565b610c9d9190611d3f565b8111155b610d2a5760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a4016107e2565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d90610e30565b600c5460ff16610da1576001610da4565b60005b600c805460ff1916911515919091179055565b610dbf610e30565b6001600160a01b038116610e245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e2565b610e2d816114c0565b50565b6005546001600160a01b031633146109a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e2565b6001600160a01b038316610eec5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107e2565b6001600160a01b038216610f4d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107e2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610fba8484610d5d565b9050600019811461102257818110156110155760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107e2565b6110228484848403610e8a565b50505050565b600e5460ff1615611129577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141580156110a757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561112957326000908152600a602052604090205443116111165760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b60648201526084016107e2565b326000908152600a602052604090204390555b6001600160a01b03831661117f5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f00000000000060448201526064016107e2565b6001600160a01b0382166111d55760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f000000000000000060448201526064016107e2565b600081116112375760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107e2565b60006064600f546b033b2e3c9fd0803ce80000006112559190611d28565b61125f9190611d3f565b6001600160a01b03851660009081526009602052604090205490915060ff161580156112a457506001600160a01b03831660009081526009602052604090205460ff16155b80156112b857506001600160a01b03831615155b80156112cd57506001600160a01b0383163014155b801561130b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b15611389578082611331856001600160a01b031660009081526020819052604090205490565b61133b9190611d15565b11156113895760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e7400000060448201526064016107e2565b6000611396858585611512565b600b5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff161580156113ee57506001600160a01b03851660009081526009602052604090205460ff16155b156114ad57600c5462010000900460ff166114405760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b60448201526064016107e2565b846001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480156114835750600c5460ff165b801561148c5750805b80156114a05750600c54610100900460ff16155b156114ad576114ad6116c3565b6114b88686846117b3565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061155157506001600160a01b03831660009081526009602052604090205460ff165b1561155d57508061096c565b600854600e54610100900460ff161561160457600d5461157e906032611d15565b43111561159f5760006006819055600755600e805461ff0019169055611604565b600d546115ad906002611d15565b43116115c257601e6006819055600755611604565b600d546115d0906014611d15565b43116115e55760196006819055600755611604565b600d546115f3906032611d15565b431161160457601460068190556007555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036116465750600754611684565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b03160361168457506006545b600081156116af5760646116988386611d28565b6116a29190611d3f565b90506116af8630836117b3565b6116b98185611d61565b9695505050505050565b600c805461ff001916610100179055306000908152602081905260408120549050806000036116ef5750565b3060009081526020819052604090205461170890611957565b600e546040516000916201000090046001600160a01b03169047908381818185875af1925050503d806000811461175b576040519150601f19603f3d011682016040523d82523d6000602084013e611760565b606091505b50509050806117a45760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107e2565b5050600c805461ff0019169055565b6001600160a01b0383166118175760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107e2565b6001600160a01b0382166118795760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107e2565b6001600160a01b038316600090815260208190526040902054818110156118f15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107e2565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611022565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061198c5761198c611d74565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2e9190611d8a565b81600181518110611a4157611a41611d74565b60200260200101906001600160a01b031690816001600160a01b031681525050611a8c307f000000000000000000000000000000000000000000000000000000000000000084610e8a565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611ae1908590600090869030904290600401611da7565b600060405180830381600087803b158015611afb57600080fd5b505af11580156114b8573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611b3c57858101830151858201604001528201611b20565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611b6f57600080fd5b5035919050565b6001600160a01b0381168114610e2d57600080fd5b60008060408385031215611b9e57600080fd5b8235611ba981611b76565b946020939093013593505050565b60008060408385031215611bca57600080fd5b8235611bd581611b76565b915060208301358015158114611bea57600080fd5b809150509250929050565b600060208284031215611c0757600080fd5b813561096c81611b76565b600080600060608486031215611c2757600080fd5b8335611c3281611b76565b92506020840135611c4281611b76565b929592945050506040919091013590565b60008060408385031215611c6657600080fd5b8235611c7181611b76565b91506020830135611bea81611b76565b600181811c90821680611c9557607f821691505b602082108103611cb557634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632039382560e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561082d5761082d611cff565b808202811582820484141761082d5761082d611cff565b600082611d5c57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561082d5761082d611cff565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611d9c57600080fd5b815161096c81611b76565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611df75784516001600160a01b031683529383019391830191600101611dd2565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208f2cf4af8bcb14cc3045c8afc82b50053d3a10210c1023017b6915efd7b947e164736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102345760003560e01c806376be96f31161012e578063a8b08982116100ab578063dd62ed3e1161006f578063dd62ed3e146106a0578063e2f45605146106c0578063ef586f71146106d6578063f2fde38b146106eb578063f66895a31461070b57600080fd5b8063a8b08982146105f3578063a9059cbb14610627578063afa4f3b214610647578063b886311514610667578063c876d0b91461068657600080fd5b80638d456754116100f25780638d4567541461056b5780638da5cb5b1461058057806395d89b411461059e578063a3ca847d146105b3578063a457c2d7146105d357600080fd5b806376be96f3146104ea5780637a845ece14610500578063830351ff14610520578063864701a51461053f5780638a8c523c1461055657600080fd5b806339509351116101bc57806370a082311161018057806370a0823114610418578063715018a61461044e578063735de9f714610463578063751039fc146104af57806375f0a874146104c457600080fd5b806339509351146103915780634a74bb02146103b15780634ada218b146103cb5780635331803c146103eb578063599ca3971461040257600080fd5b806318160ddd1161020357806318160ddd146102dd5780631950c218146102fc578063224611731461033557806323b872dd14610355578063313ce5671461037557600080fd5b806306fdde03146102405780630940bbc71461026b578063095ea7b31461028d5780630c424284146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610722565b6040516102629190611b0f565b60405180910390f35b34801561027757600080fd5b5061028b610286366004611b5d565b6107b4565b005b34801561029957600080fd5b506102ad6102a8366004611b8b565b610819565b6040519015158152602001610262565b3480156102c957600080fd5b5061028b6102d8366004611bb7565b610833565b3480156102e957600080fd5b506002545b604051908152602001610262565b34801561030857600080fd5b506102ad610317366004611bf5565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561034157600080fd5b5061028b610350366004611bf5565b61088f565b34801561036157600080fd5b506102ad610370366004611c12565b61094d565b34801561038157600080fd5b5060405160128152602001610262565b34801561039d57600080fd5b506102ad6103ac366004611b8b565b610973565b3480156103bd57600080fd5b50600c546102ad9060ff1681565b3480156103d757600080fd5b50600c546102ad9062010000900460ff1681565b3480156103f757600080fd5b506008546102ee9081565b34801561040e57600080fd5b506102ee600f5481565b34801561042457600080fd5b506102ee610433366004611bf5565b6001600160a01b031660009081526020819052604090205490565b34801561045a57600080fd5b5061028b610995565b34801561046f57600080fd5b506104977f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610262565b3480156104bb57600080fd5b5061028b6109a9565b3480156104d057600080fd5b50600e54610497906201000090046001600160a01b031681565b3480156104f657600080fd5b506102ee600d5481565b34801561050c57600080fd5b5061028b61051b366004611b5d565b6109c7565b34801561052c57600080fd5b50600e546102ad90610100900460ff1681565b34801561054b57600080fd5b506006546102ee9081565b34801561056257600080fd5b5061028b610acb565b34801561057757600080fd5b5061028b610b52565b34801561058c57600080fd5b506005546001600160a01b0316610497565b3480156105aa57600080fd5b50610255610b67565b3480156105bf57600080fd5b5061028b6105ce366004611b5d565b610b76565b3480156105df57600080fd5b506102ad6105ee366004611b8b565b610bd2565b3480156105ff57600080fd5b506104977f000000000000000000000000c8c02db3adfc9a79c0455b9886142911532b830c81565b34801561063357600080fd5b506102ad610642366004611b8b565b610c58565b34801561065357600080fd5b5061028b610662366004611b5d565b610c66565b34801561067357600080fd5b50600c546102ad90610100900460ff1681565b34801561069257600080fd5b50600e546102ad9060ff1681565b3480156106ac57600080fd5b506102ee6106bb366004611c53565b610d5d565b3480156106cc57600080fd5b506102ee600b5481565b3480156106e257600080fd5b5061028b610d88565b3480156106f757600080fd5b5061028b610706366004611bf5565b610db7565b34801561071757600080fd5b506007546102ee9081565b60606003805461073190611c81565b80601f016020809104026020016040519081016040528092919081815260200182805461075d90611c81565b80156107aa5780601f1061077f576101008083540402835291602001916107aa565b820191906000526020600020905b81548152906001019060200180831161078d57829003601f168201915b5050505050905090565b6107bc610e30565b600781905560628111156107eb5760405162461bcd60e51b81526004016107e290611cbb565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610827818585610e8a565b60019150505b92915050565b61083b610e30565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b610897610e30565b6001600160a01b0381166108f95760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b60648201526084016107e2565b600e805462010000600160b01b031916620100006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b60003361095b858285610fae565b610966858585611028565b60019150505b9392505050565b6000336108278185856109868383610d5d565b6109909190611d15565b610e8a565b61099d610e30565b6109a760006114c0565b565b6109b1610e30565b6064600f55600e805460ff191690556000600855565b6109cf610e30565b60018111610a2a5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b60648201526084016107e2565b6064811115610a905760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b60648201526084016107e2565b600f8190556040518181527f35d0d65816d2618c40bb72544c0686674a06ef8d669a0819ecba314be8292df09060200160405180910390a150565b610ad3610e30565b600c5462010000900460ff1615610b2c5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064016107e2565b600c805462ff0000191662010000179055600e805461ff00191661010017905543600d55565b610b5a610e30565b600e805461ff0019169055565b60606004805461073190611c81565b610b7e610e30565b60068190556062811115610ba45760405162461bcd60e51b81526004016107e290611cbb565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610be08286610d5d565b905083811015610c405760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107e2565b610c4d8286868403610e8a565b506001949350505050565b600033610827818585611028565b610c6e610e30565b600081118015610ca157506103e8610c936b033b2e3c9fd0803ce80000006005611d28565b610c9d9190611d3f565b8111155b610d2a5760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a4016107e2565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d90610e30565b600c5460ff16610da1576001610da4565b60005b600c805460ff1916911515919091179055565b610dbf610e30565b6001600160a01b038116610e245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e2565b610e2d816114c0565b50565b6005546001600160a01b031633146109a75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e2565b6001600160a01b038316610eec5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107e2565b6001600160a01b038216610f4d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107e2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610fba8484610d5d565b9050600019811461102257818110156110155760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107e2565b6110228484848403610e8a565b50505050565b600e5460ff1615611129577f000000000000000000000000c8c02db3adfc9a79c0455b9886142911532b830c6001600160a01b0316826001600160a01b0316141580156110a757507f000000000000000000000000c8c02db3adfc9a79c0455b9886142911532b830c6001600160a01b0316826001600160a01b031614155b1561112957326000908152600a602052604090205443116111165760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b60648201526084016107e2565b326000908152600a602052604090204390555b6001600160a01b03831661117f5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f00000000000060448201526064016107e2565b6001600160a01b0382166111d55760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f000000000000000060448201526064016107e2565b600081116112375760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107e2565b60006064600f546b033b2e3c9fd0803ce80000006112559190611d28565b61125f9190611d3f565b6001600160a01b03851660009081526009602052604090205490915060ff161580156112a457506001600160a01b03831660009081526009602052604090205460ff16155b80156112b857506001600160a01b03831615155b80156112cd57506001600160a01b0383163014155b801561130b57507f000000000000000000000000c8c02db3adfc9a79c0455b9886142911532b830c6001600160a01b0316836001600160a01b031614155b15611389578082611331856001600160a01b031660009081526020819052604090205490565b61133b9190611d15565b11156113895760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e7400000060448201526064016107e2565b6000611396858585611512565b600b5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff161580156113ee57506001600160a01b03851660009081526009602052604090205460ff16155b156114ad57600c5462010000900460ff166114405760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b60448201526064016107e2565b846001600160a01b03167f000000000000000000000000c8c02db3adfc9a79c0455b9886142911532b830c6001600160a01b03161480156114835750600c5460ff165b801561148c5750805b80156114a05750600c54610100900460ff16155b156114ad576114ad6116c3565b6114b88686846117b3565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061155157506001600160a01b03831660009081526009602052604090205460ff165b1561155d57508061096c565b600854600e54610100900460ff161561160457600d5461157e906032611d15565b43111561159f5760006006819055600755600e805461ff0019169055611604565b600d546115ad906002611d15565b43116115c257601e6006819055600755611604565b600d546115d0906014611d15565b43116115e55760196006819055600755611604565b600d546115f3906032611d15565b431161160457601460068190556007555b7f000000000000000000000000c8c02db3adfc9a79c0455b9886142911532b830c6001600160a01b0316846001600160a01b0316036116465750600754611684565b7f000000000000000000000000c8c02db3adfc9a79c0455b9886142911532b830c6001600160a01b0316856001600160a01b03160361168457506006545b600081156116af5760646116988386611d28565b6116a29190611d3f565b90506116af8630836117b3565b6116b98185611d61565b9695505050505050565b600c805461ff001916610100179055306000908152602081905260408120549050806000036116ef5750565b3060009081526020819052604090205461170890611957565b600e546040516000916201000090046001600160a01b03169047908381818185875af1925050503d806000811461175b576040519150601f19603f3d011682016040523d82523d6000602084013e611760565b606091505b50509050806117a45760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107e2565b5050600c805461ff0019169055565b6001600160a01b0383166118175760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107e2565b6001600160a01b0382166118795760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107e2565b6001600160a01b038316600090815260208190526040902054818110156118f15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107e2565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611022565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061198c5761198c611d74565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2e9190611d8a565b81600181518110611a4157611a41611d74565b60200260200101906001600160a01b031690816001600160a01b031681525050611a8c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e8a565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611ae1908590600090869030904290600401611da7565b600060405180830381600087803b158015611afb57600080fd5b505af11580156114b8573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611b3c57858101830151858201604001528201611b20565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611b6f57600080fd5b5035919050565b6001600160a01b0381168114610e2d57600080fd5b60008060408385031215611b9e57600080fd5b8235611ba981611b76565b946020939093013593505050565b60008060408385031215611bca57600080fd5b8235611bd581611b76565b915060208301358015158114611bea57600080fd5b809150509250929050565b600060208284031215611c0757600080fd5b813561096c81611b76565b600080600060608486031215611c2757600080fd5b8335611c3281611b76565b92506020840135611c4281611b76565b929592945050506040919091013590565b60008060408385031215611c6657600080fd5b8235611c7181611b76565b91506020830135611bea81611b76565b600181811c90821680611c9557607f821691505b602082108103611cb557634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632039382560e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561082d5761082d611cff565b808202811582820484141761082d5761082d611cff565b600082611d5c57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561082d5761082d611cff565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611d9c57600080fd5b815161096c81611b76565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611df75784516001600160a01b031683529383019391830191600101611dd2565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208f2cf4af8bcb14cc3045c8afc82b50053d3a10210c1023017b6915efd7b947e164736f6c63430008130033

Deployed Bytecode Sourcemap

28159:8291:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16305:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30952:246;;;;;;;;;;-1:-1:-1;30952:246:0;;;;;:::i;:::-;;:::i;:::-;;18665:201;;;;;;;;;;-1:-1:-1;18665:201:0;;;;;:::i;:::-;;:::i;:::-;;;1373:14:1;;1366:22;1348:41;;1336:2;1321:18;18665:201:0;1208:187:1;31720:195:0;;;;;;;;;;-1:-1:-1;31720:195:0;;;;;:::i;:::-;;:::i;17434:108::-;;;;;;;;;;-1:-1:-1;17522:12:0;;17434:108;;;1967:25:1;;;1955:2;1940:18;17434:108:0;1821:177:1;35985:116:0;;;;;;;;;;-1:-1:-1;35985:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;36073:20:0;36049:4;36073:20;;;:11;:20;;;;;;;;;35985:116;30169:297;;;;;;;;;;-1:-1:-1;30169:297:0;;;;;:::i;:::-;;:::i;19446:261::-;;;;;;;;;;-1:-1:-1;19446:261:0;;;;;:::i;:::-;;:::i;17276:93::-;;;;;;;;;;-1:-1:-1;17276:93:0;;17359:2;2858:36:1;;2846:2;2831:18;17276:93:0;2716:184:1;20116:238:0;;;;;;;;;;-1:-1:-1;20116:238:0;;;;;:::i;:::-;;:::i;28858:40::-;;;;;;;;;;-1:-1:-1;28858:40:0;;;;;;;;28942:34;;;;;;;;;;-1:-1:-1;28942:34:0;;;;;;;;;;;28513:33;;;;;;;;;;-1:-1:-1;28513:33:0;;;;;;29200:38;;;;;;;;;;;;;;;;17605:127;;;;;;;;;;-1:-1:-1;17605:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17706:18:0;17679:7;17706:18;;;;;;;;;;;;17605:127;9760:103;;;;;;;;;;;;;:::i;28337:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3087:32:1;;;3069:51;;3057:2;3042:18;28337:40:0;2905:221:1;31921:163:0;;;;;;;;;;;;;:::i;29115:75::-;;;;;;;;;;-1:-1:-1;29115:75:0;;;;;;;-1:-1:-1;;;;;29115:75:0;;;28983:32;;;;;;;;;;;;;;;;36109:303;;;;;;;;;;-1:-1:-1;36109:303:0;;;;;:::i;:::-;;:::i;29068:21::-;;;;;;;;;;-1:-1:-1;29068:21:0;;;;;;;;;;;28442:28;;;;;;;;;;-1:-1:-1;28442:28:0;;;;;;30476:217;;;;;;;;;;;;;:::i;32090:78::-;;;;;;;;;;;;;:::i;9119:87::-;;;;;;;;;;-1:-1:-1;9192:6:0;;-1:-1:-1;;;;;9192:6:0;9119:87;;16524:104;;;;;;;;;;;;;:::i;30701:243::-;;;;;;;;;;-1:-1:-1;30701:243:0;;;;;:::i;:::-;;:::i;20857:436::-;;;;;;;;;;-1:-1:-1;20857:436:0;;;;;:::i;:::-;;:::i;28384:36::-;;;;;;;;;;;;;;;17938:193;;;;;;;;;;-1:-1:-1;17938:193:0;;;;;:::i;:::-;;:::i;31206:372::-;;;;;;;;;;-1:-1:-1;31206:372:0;;;;;:::i;:::-;;:::i;28905:30::-;;;;;;;;;;-1:-1:-1;28905:30:0;;;;;;;;;;;29022:39;;;;;;;;;;-1:-1:-1;29022:39:0;;;;;;;;18194:151;;;;;;;;;;-1:-1:-1;18194:151:0;;;;;:::i;:::-;;:::i;28752:58::-;;;;;;;;;;;;;;;;31586:126;;;;;;;;;;;;;:::i;10018:201::-;;;;;;;;;;-1:-1:-1;10018:201:0;;;;;:::i;:::-;;:::i;28477:29::-;;;;;;;;;;-1:-1:-1;28477:29:0;;;;;;16305:100;16359:13;16392:5;16385:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16305:100;:::o;30952:246::-;9005:13;:11;:13::i;:::-;31027:9:::1;:38:::0;;;31101:2:::1;31084:19:::0;::::1;;31076:68;;;;-1:-1:-1::0;;;31076:68:0::1;;;;;;;:::i;:::-;;;;;;;;;31160:30;::::0;31176:13;;31160:30:::1;::::0;;;::::1;30952:246:::0;:::o;18665:201::-;18748:4;7750:10;18804:32;7750:10;18820:7;18829:6;18804:8;:32::i;:::-;18854:4;18847:11;;;18665:201;;;;;:::o;31720:195::-;9005:13;:11;:13::i;:::-;-1:-1:-1;;;;;31834:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;31834:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31880:27;;31834:30;;:20;31880:27:::1;::::0;::::1;31720:195:::0;;:::o;30169:297::-;9005:13;:11;:13::i;:::-;-1:-1:-1;;;;;30272:27:0;::::1;30250:113;;;::::0;-1:-1:-1;;;30250:113:0;;4724:2:1;30250:113:0::1;::::0;::::1;4706:21:1::0;4763:2;4743:18;;;4736:30;4802:34;4782:18;;;4775:62;-1:-1:-1;;;4853:18:1;;;4846:34;4897:19;;30250:113:0::1;4522:400:1::0;30250:113:0::1;30374:15;:31:::0;;-1:-1:-1;;;;;;30374:31:0::1;::::0;-1:-1:-1;;;;;30374:31:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;30421:37:::1;::::0;::::1;::::0;-1:-1:-1;;30421:37:0::1;30169:297:::0;:::o;19446:261::-;19543:4;7750:10;19601:38;19617:4;7750:10;19632:6;19601:15;:38::i;:::-;19650:27;19660:4;19666:2;19670:6;19650:9;:27::i;:::-;19695:4;19688:11;;;19446:261;;;;;;:::o;20116:238::-;20204:4;7750:10;20260:64;7750:10;20276:7;20313:10;20285:25;7750:10;20276:7;20285:9;:25::i;:::-;:38;;;;:::i;:::-;20260:8;:64::i;9760:103::-;9005:13;:11;:13::i;:::-;9825:30:::1;9852:1;9825:18;:30::i;:::-;9760:103::o:0;31921:163::-;9005:13;:11;:13::i;:::-;31995:3:::1;31974:19;:24:::0;32009:20:::1;:26:::0;;-1:-1:-1;;32009:26:0::1;::::0;;32030:5:::1;32046:13;:30:::0;31921:163::o;36109:303::-;9005:13;:11;:13::i;:::-;36210:1:::1;36196:11;:15;36188:62;;;::::0;-1:-1:-1;;;36188:62:0;;5391:2:1;36188:62:0::1;::::0;::::1;5373:21:1::0;5430:2;5410:18;;;5403:30;5469:34;5449:18;;;5442:62;-1:-1:-1;;;5520:18:1;;;5513:32;5562:19;;36188:62:0::1;5189:398:1::0;36188:62:0::1;36280:3;36265:11;:18;;36257:75;;;::::0;-1:-1:-1;;;36257:75:0;;5794:2:1;36257:75:0::1;::::0;::::1;5776:21:1::0;5833:2;5813:18;;;5806:30;5872:34;5852:18;;;5845:62;-1:-1:-1;;;5923:18:1;;;5916:42;5975:19;;36257:75:0::1;5592:408:1::0;36257:75:0::1;36339:19;:33:::0;;;36384:24:::1;::::0;1967:25:1;;;36384:24:0::1;::::0;1955:2:1;1940:18;36384:24:0::1;;;;;;;36109:303:::0;:::o;30476:217::-;9005:13;:11;:13::i;:::-;30540:14:::1;::::0;;;::::1;;;30539:15;30531:54;;;::::0;-1:-1:-1;;;30531:54:0;;6207:2:1;30531:54:0::1;::::0;::::1;6189:21:1::0;6246:2;6226:18;;;6219:30;6285:28;6265:18;;;6258:56;6331:18;;30531:54:0::1;6005:350:1::0;30531:54:0::1;30596:14;:21:::0;;-1:-1:-1;;30596:21:0::1;::::0;::::1;::::0;;30628:9:::1;:14:::0;;-1:-1:-1;;30628:14:0::1;30596:21;30628:14;::::0;;30673:12:::1;30653:17;:32:::0;30476:217::o;32090:78::-;9005:13;:11;:13::i;:::-;32145:9:::1;:15:::0;;-1:-1:-1;;32145:15:0::1;::::0;;32090:78::o;16524:104::-;16580:13;16613:7;16606:14;;;;;:::i;30701:243::-;9005:13;:11;:13::i;:::-;30775:8:::1;:37:::0;;;30848:2:::1;30831:19:::0;::::1;;30823:68;;;;-1:-1:-1::0;;;30823:68:0::1;;;;;;;:::i;:::-;30907:29;::::0;30922:13;;30907:29:::1;::::0;;;::::1;30701:243:::0;:::o;20857:436::-;20950:4;7750:10;20950:4;21033:25;7750:10;21050:7;21033:9;:25::i;:::-;21006:52;;21097:15;21077:16;:35;;21069:85;;;;-1:-1:-1;;;21069:85:0;;6562:2:1;21069:85:0;;;6544:21:1;6601:2;6581:18;;;6574:30;6640:34;6620:18;;;6613:62;-1:-1:-1;;;6691:18:1;;;6684:35;6736:19;;21069:85:0;6360:401:1;21069:85:0;21190:60;21199:5;21206:7;21234:15;21215:16;:34;21190:8;:60::i;:::-;-1:-1:-1;21281:4:0;;20857:436;-1:-1:-1;;;;20857:436:0:o;17938:193::-;18017:4;7750:10;18073:28;7750:10;18090:2;18094:6;18073:9;:28::i;31206:372::-;9005:13;:11;:13::i;:::-;31322:1:::1;31309:10;:14;:57;;;;-1:-1:-1::0;31362:4:0::1;31342:16;28297:17;31357:1;31342:16;:::i;:::-;31341:25;;;;:::i;:::-;31327:10;:39;;31309:57;31287:185;;;::::0;-1:-1:-1;;;31287:185:0;;7363:2:1;31287:185:0::1;::::0;::::1;7345:21:1::0;7402:2;7382:18;;;7375:30;7441:34;7421:18;;;7414:62;7512:34;7492:18;;;7485:62;-1:-1:-1;;;7563:19:1;;;7556:45;7618:19;;31287:185:0::1;7161:482:1::0;31287:185:0::1;31483:18;:31:::0;;;31530:40:::1;::::0;31504:10;;31530:40:::1;::::0;;;::::1;31206:372:::0;:::o;18194:151::-;-1:-1:-1;;;;;18310:18:0;;;18283:7;18310:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18194:151::o;31586:126::-;9005:13;:11;:13::i;:::-;31667:21:::1;::::0;::::1;;31666:38;;31700:4;31666:38;;;31692:5;31666:38;31642:21;:62:::0;;-1:-1:-1;;31642:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31586:126::o;10018:201::-;9005:13;:11;:13::i;:::-;-1:-1:-1;;;;;10107:22:0;::::1;10099:73;;;::::0;-1:-1:-1;;;10099:73:0;;7850:2:1;10099:73:0::1;::::0;::::1;7832:21:1::0;7889:2;7869:18;;;7862:30;7928:34;7908:18;;;7901:62;-1:-1:-1;;;7979:18:1;;;7972:36;8025:19;;10099:73:0::1;7648:402:1::0;10099:73:0::1;10183:28;10202:8;10183:18;:28::i;:::-;10018:201:::0;:::o;9284:132::-;9192:6;;-1:-1:-1;;;;;9192:6:0;7750:10;9348:23;9340:68;;;;-1:-1:-1;;;9340:68:0;;8257:2:1;9340:68:0;;;8239:21:1;;;8276:18;;;8269:30;8335:34;8315:18;;;8308:62;8387:18;;9340:68:0;8055:356:1;24850:346:0;-1:-1:-1;;;;;24952:19:0;;24944:68;;;;-1:-1:-1;;;24944:68:0;;8618:2:1;24944:68:0;;;8600:21:1;8657:2;8637:18;;;8630:30;8696:34;8676:18;;;8669:62;-1:-1:-1;;;8747:18:1;;;8740:34;8791:19;;24944:68:0;8416:400:1;24944:68:0;-1:-1:-1;;;;;25031:21:0;;25023:68;;;;-1:-1:-1;;;25023:68:0;;9023:2:1;25023:68:0;;;9005:21:1;9062:2;9042:18;;;9035:30;9101:34;9081:18;;;9074:62;-1:-1:-1;;;9152:18:1;;;9145:32;9194:19;;25023:68:0;8821:398:1;25023:68:0;-1:-1:-1;;;;;25104:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25156:32;;1967:25:1;;;25156:32:0;;1940:18:1;25156:32:0;;;;;;;24850:346;;;:::o;25487:419::-;25588:24;25615:25;25625:5;25632:7;25615:9;:25::i;:::-;25588:52;;-1:-1:-1;;25655:16:0;:37;25651:248;;25737:6;25717:16;:26;;25709:68;;;;-1:-1:-1;;;25709:68:0;;9426:2:1;25709:68:0;;;9408:21:1;9465:2;9445:18;;;9438:30;9504:31;9484:18;;;9477:59;9553:18;;25709:68:0;9224:353:1;25709:68:0;25821:51;25830:5;25837:7;25865:6;25846:16;:25;25821:8;:51::i;:::-;25577:329;25487:419;;;:::o;33600:1520::-;33722:20;;;;33718:307;;;33774:11;-1:-1:-1;;;;;33759:27:0;:3;-1:-1:-1;;;;;33759:27:0;;;:58;;;;;33805:11;-1:-1:-1;;;;;33790:27:0;:3;-1:-1:-1;;;;;33790:27:0;;;33759:58;33755:263;;;33871:9;33842:39;;;;:28;:39;;;;;;33884:12;-1:-1:-1;33834:103:0;;;;-1:-1:-1;;;33834:103:0;;9784:2:1;33834:103:0;;;9766:21:1;9823:2;9803:18;;;9796:30;9862:34;9842:18;;;9835:62;-1:-1:-1;;;9913:18:1;;;9906:34;9957:19;;33834:103:0;9582:400:1;33834:103:0;33981:9;33952:39;;;;:28;:39;;;;;33994:12;33952:54;;33755:263;-1:-1:-1;;;;;34044:19:0;;34036:58;;;;-1:-1:-1;;;34036:58:0;;10189:2:1;34036:58:0;;;10171:21:1;10228:2;10208:18;;;10201:30;10267:28;10247:18;;;10240:56;10313:18;;34036:58:0;9987:350:1;34036:58:0;-1:-1:-1;;;;;34109:17:0;;34101:54;;;;-1:-1:-1;;;34101:54:0;;10544:2:1;34101:54:0;;;10526:21:1;10583:2;10563:18;;;10556:30;10622:26;10602:18;;;10595:54;10666:18;;34101:54:0;10342:348:1;34101:54:0;34180:1;34170:7;:11;34162:65;;;;-1:-1:-1;;;34162:65:0;;10897:2:1;34162:65:0;;;10879:21:1;10936:2;10916:18;;;10909:30;10975:34;10955:18;;;10948:62;-1:-1:-1;;;11026:18:1;;;11019:39;11075:19;;34162:65:0;10695:405:1;34162:65:0;34340:23;34403:3;34381:19;;28297:17;34366:34;;;;:::i;:::-;:40;;;;:::i;:::-;-1:-1:-1;;;;;34488:18:0;;;;;;:11;:18;;;;;;34340:66;;-1:-1:-1;34488:18:0;;34487:19;:40;;;;-1:-1:-1;;;;;;34511:16:0;;;;;;:11;:16;;;;;;;;34510:17;34487:40;:61;;;;-1:-1:-1;;;;;;34531:17:0;;;;34487:61;:85;;;;-1:-1:-1;;;;;;34552:20:0;;34567:4;34552:20;;34487:85;:107;;;;;34583:11;-1:-1:-1;;;;;34576:18:0;:3;-1:-1:-1;;;;;34576:18:0;;;34487:107;34483:217;;;34643:15;34632:7;34615:14;34625:3;-1:-1:-1;;;;;17706:18:0;17679:7;17706:18;;;;;;;;;;;;17605:127;34615:14;:24;;;;:::i;:::-;:43;;34607:85;;;;-1:-1:-1;;;34607:85:0;;11307:2:1;34607:85:0;;;11289:21:1;11346:2;11326:18;;;11319:30;11385:31;11365:18;;;11358:59;11434:18;;34607:85:0;11105:353:1;34607:85:0;34708:18;34729:29;34738:5;34745:3;34750:7;34729:8;:29::i;:::-;34810:18;;34800:4;34767:12;17706:18;;;;;;;;;;;;-1:-1:-1;;;;;34840:18:0;;;;:11;:18;;;;;;;34708:50;;-1:-1:-1;;34782:46:0;;34840:18;;34839:19;:40;;;;-1:-1:-1;;;;;;34863:16:0;;;;;;:11;:16;;;;;;;;34862:17;34839:40;34835:236;;;34900:14;;;;;;;34892:45;;;;-1:-1:-1;;;34892:45:0;;11665:2:1;34892:45:0;;;11647:21:1;11704:2;11684:18;;;11677:30;-1:-1:-1;;;11723:18:1;;;11716:48;11781:18;;34892:45:0;11463:342:1;34892:45:0;34967:3;-1:-1:-1;;;;;34952:18:0;:11;-1:-1:-1;;;;;34952:18:0;;:43;;;;-1:-1:-1;34974:21:0;;;;34952:43;:54;;;;;34999:7;34952:54;:69;;;;-1:-1:-1;35011:10:0;;;;;;;35010:11;34952:69;34948:116;;;35038:14;:12;:14::i;:::-;35077:39;35093:5;35100:3;35105:10;35077:15;:39::i;:::-;33708:1412;;;33600:1520;;;:::o;10379:191::-;10472:6;;;-1:-1:-1;;;;;10489:17:0;;;-1:-1:-1;;;;;;10489:17:0;;;;;;;10522:40;;10472:6;;;10489:17;10472:6;;10522:40;;10453:16;;10522:40;10442:128;10379:191;:::o;32314:1282::-;-1:-1:-1;;;;;32433:18:0;;32413:7;32433:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;32455:16:0;;;;;;:11;:16;;;;;;;;32433:38;32429:77;;;-1:-1:-1;32491:7:0;32484:14;;32429:77;32533:13;:26;32614:9;;;;;;;32610:637;;;32655:17;;:22;;32675:2;32655:22;:::i;:::-;32640:12;:37;32636:604;;;32718:1;32694:8;:25;;;32734:9;:26;32775:9;:17;;-1:-1:-1;;32775:17:0;;;32636:604;;;32832:17;;:21;;32852:1;32832:21;:::i;:::-;32816:12;:37;32812:428;;32894:2;32870:8;:26;;;32911:9;:27;32812:428;;;32976:17;;:22;;32996:2;32976:22;:::i;:::-;32960:12;:38;32956:284;;33039:2;33015:8;:26;;;33056:9;:27;32956:284;;;33121:17;;:22;;33141:2;33121:22;:::i;:::-;33105:12;:38;33101:139;;33184:2;33160:8;:26;;;33201:9;:27;33101:139;33264:11;-1:-1:-1;;;;;33257:18:0;:3;-1:-1:-1;;;;;33257:18:0;;33253:159;;-1:-1:-1;33299:9:0;:22;33253:159;;;33348:11;-1:-1:-1;;;;;33339:20:0;:5;-1:-1:-1;;;;;33339:20:0;;33335:77;;-1:-1:-1;33383:8:0;:21;33335:77;33420:11;33446:12;;33442:122;;33500:3;33478:18;33488:8;33478:7;:18;:::i;:::-;33477:26;;;;:::i;:::-;33471:32;;33514:42;33530:5;33545:4;33552:3;33514:15;:42::i;:::-;33578:13;33588:3;33578:7;:13;:::i;:::-;33570:22;32314:1282;-1:-1:-1;;;;;;32314:1282:0:o;35128:394::-;35172:10;:17;;-1:-1:-1;;35172:17:0;;;;;35238:4;-1:-1:-1;17706:18:0;;;;;;;;;;;35200:44;;35260:9;35273:1;35260:14;35256:53;;35291:7;35128:394::o;35256:53::-;35347:4;17679:7;17706:18;;;;;;;;;;;35319:35;;:9;:35::i;:::-;35383:15;;:54;;35365:12;;35383:15;;;-1:-1:-1;;;;;35383:15:0;;35411:21;;35365:12;35383:54;35365:12;35383:54;35411:21;35383:15;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35364:73;;;35456:7;35448:37;;;;-1:-1:-1;;;35448:37:0;;12355:2:1;35448:37:0;;;12337:21:1;12394:2;12374:18;;;12367:30;-1:-1:-1;;;12413:18:1;;;12406:46;12469:18;;35448:37:0;12153:340:1;35448:37:0;-1:-1:-1;;35496:10:0;:18;;-1:-1:-1;;35496:18:0;;;35128:394::o;21763:806::-;-1:-1:-1;;;;;21860:18:0;;21852:68;;;;-1:-1:-1;;;21852:68:0;;12700:2:1;21852:68:0;;;12682:21:1;12739:2;12719:18;;;12712:30;12778:34;12758:18;;;12751:62;-1:-1:-1;;;12829:18:1;;;12822:35;12874:19;;21852:68:0;12498:401:1;21852:68:0;-1:-1:-1;;;;;21939:16:0;;21931:64;;;;-1:-1:-1;;;21931:64:0;;13106:2:1;21931:64:0;;;13088:21:1;13145:2;13125:18;;;13118:30;13184:34;13164:18;;;13157:62;-1:-1:-1;;;13235:18:1;;;13228:33;13278:19;;21931:64:0;12904:399:1;21931:64:0;-1:-1:-1;;;;;22081:15:0;;22059:19;22081:15;;;;;;;;;;;22115:21;;;;22107:72;;;;-1:-1:-1;;;22107:72:0;;13510:2:1;22107:72:0;;;13492:21:1;13549:2;13529:18;;;13522:30;13588:34;13568:18;;;13561:62;-1:-1:-1;;;13639:18:1;;;13632:36;13685:19;;22107:72:0;13308:402:1;22107:72:0;-1:-1:-1;;;;;22215:15:0;;;:9;:15;;;;;;;;;;;22233:20;;;22215:38;;22433:13;;;;;;;;;;:23;;;;;;22485:26;;1967:25:1;;;22433:13:0;;22485:26;;1940:18:1;22485:26:0;;;;;;;22524:37;26506:91;35532:447;35612:16;;;35626:1;35612:16;;;;;;;;35588:21;;35612:16;;;;;;;;;;-1:-1:-1;35612:16:0;35588:40;;35657:4;35639;35644:1;35639:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;35639:23:0;;;-1:-1:-1;;;;;35639:23:0;;;;;35683:13;-1:-1:-1;;;;;35683:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35673:4;35678:1;35673:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;35673:30:0;;;-1:-1:-1;;;;;35673:30:0;;;;;35714:56;35731:4;35746:13;35762:7;35714:8;:56::i;:::-;35781:190;;-1:-1:-1;;;35781:190:0;;-1:-1:-1;;;;;35781:13:0;:64;;;;:190;;35860:7;;35882:1;;35898:4;;35925;;35945:15;;35781:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548: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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:315;956:6;964;1017:2;1005:9;996:7;992:23;988:32;985:52;;;1033:1;1030;1023:12;985:52;1072:9;1059:23;1091:31;1116:5;1091:31;:::i;:::-;1141:5;1193:2;1178:18;;;;1165:32;;-1:-1:-1;;;888:315:1:o;1400:416::-;1465:6;1473;1526:2;1514:9;1505:7;1501:23;1497:32;1494:52;;;1542:1;1539;1532:12;1494:52;1581:9;1568:23;1600:31;1625:5;1600:31;:::i;:::-;1650:5;-1:-1:-1;1707:2:1;1692:18;;1679:32;1749:15;;1742:23;1730:36;;1720:64;;1780:1;1777;1770:12;1720:64;1803:7;1793:17;;;1400:416;;;;;:::o;2003:247::-;2062:6;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;2170:9;2157:23;2189:31;2214:5;2189:31;:::i;2255:456::-;2332:6;2340;2348;2401:2;2389:9;2380:7;2376:23;2372:32;2369:52;;;2417:1;2414;2407:12;2369:52;2456:9;2443:23;2475:31;2500:5;2475:31;:::i;:::-;2525:5;-1:-1:-1;2582:2:1;2567:18;;2554:32;2595:33;2554:32;2595:33;:::i;:::-;2255:456;;2647:7;;-1:-1:-1;;;2701:2:1;2686:18;;;;2673:32;;2255:456::o;3339:388::-;3407:6;3415;3468:2;3456:9;3447:7;3443:23;3439:32;3436:52;;;3484:1;3481;3474:12;3436:52;3523:9;3510:23;3542:31;3567:5;3542:31;:::i;:::-;3592:5;-1:-1:-1;3649:2:1;3634:18;;3621:32;3662:33;3621:32;3662:33;:::i;3732:380::-;3811:1;3807:12;;;;3854;;;3875:61;;3929:4;3921:6;3917:17;3907:27;;3875:61;3982:2;3974:6;3971:14;3951:18;3948:38;3945:161;;4028:10;4023:3;4019:20;4016:1;4009:31;4063:4;4060:1;4053:15;4091:4;4088:1;4081:15;3945:161;;3732:380;;;:::o;4117:400::-;4319:2;4301:21;;;4358:2;4338:18;;;4331:30;4397:34;4392:2;4377:18;;4370:62;-1:-1:-1;;;4463:2:1;4448:18;;4441:34;4507:3;4492:19;;4117:400::o;4927:127::-;4988:10;4983:3;4979:20;4976:1;4969:31;5019:4;5016:1;5009:15;5043:4;5040:1;5033:15;5059:125;5124:9;;;5145:10;;;5142:36;;;5158:18;;:::i;6766:168::-;6839:9;;;6870;;6887:15;;;6881:22;;6867:37;6857:71;;6908:18;;:::i;6939:217::-;6979:1;7005;6995:132;;7049:10;7044:3;7040:20;7037:1;7030:31;7084:4;7081:1;7074:15;7112:4;7109:1;7102:15;6995:132;-1:-1:-1;7141:9:1;;6939:217::o;11810:128::-;11877:9;;;11898:11;;;11895:37;;;11912:18;;:::i;13847:127::-;13908:10;13903:3;13899:20;13896:1;13889:31;13939:4;13936:1;13929:15;13963:4;13960:1;13953:15;13979:251;14049:6;14102:2;14090:9;14081:7;14077:23;14073:32;14070:52;;;14118:1;14115;14108:12;14070:52;14150:9;14144:16;14169:31;14194:5;14169:31;:::i;14235:980::-;14497:4;14545:3;14534:9;14530:19;14576:6;14565:9;14558:25;14602:2;14640:6;14635:2;14624:9;14620:18;14613:34;14683:3;14678:2;14667:9;14663:18;14656:31;14707:6;14742;14736:13;14773:6;14765;14758:22;14811:3;14800:9;14796:19;14789:26;;14850:2;14842:6;14838:15;14824:29;;14871:1;14881:195;14895:6;14892:1;14889:13;14881:195;;;14960:13;;-1:-1:-1;;;;;14956:39:1;14944:52;;15051:15;;;;15016:12;;;;14992:1;14910:9;14881:195;;;-1:-1:-1;;;;;;;15132:32:1;;;;15127:2;15112:18;;15105:60;-1:-1:-1;;;15196:3:1;15181:19;15174:35;15093:3;14235:980;-1:-1:-1;;;14235:980:1:o

Swarm Source

ipfs://8f2cf4af8bcb14cc3045c8afc82b50053d3a10210c1023017b6915efd7b947e1
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.