ETH Price: $2,561.65 (-1.89%)

Token

Queen of Shiba (QOS)
 

Overview

Max Total Supply

1,000,000,000 QOS

Holders

81

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 10 Decimals)

Balance
0.8777153201 QOS

Value
$0.00
0x69ecbd11658f2998fcd6b25614f34ff61bd2be1c
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:
QOS

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-15
*/

//SPDX-License-Identifier: MIT
// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


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

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

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

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

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

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

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

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol


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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: QOS.sol



pragma solidity ^0.8.6;

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

    IUniswapV2Router02 private uniswapV2Router;
    address public uniswapV2Pair;

    struct BuyFee{
        uint16 projectFee;
        uint16 teamFee;
    }

    struct SellFee{
        uint16 projectFee;
        uint16 teamFee;
    }

    BuyFee public buyFee;
    SellFee public sellFee;

    bool private swapping;
    bool private isTradingEnabled;
    bool public swapEnabled;

    address private constant deadWallet = address(0xdead);

    uint256 public swapTokensAtAmount = 10 * 10**6 * (10**10);

    uint16 private totalBuyFee;
    uint16 private totalSellFee;

    address public _teamWalletAddress = address(0x5D83951201f2276eDeACF007ae9baC977dD988EF); // Team Wallet
    address public _projectWalletAddress = address(0x5D83951201f2276eDeACF007ae9baC977dD988EF); //Project Wallet

     // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isBlacklisted;


    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndSend(
        uint256 tokens,
        uint256 balance,
        uint256 projectShare
    );


    constructor() ERC20("Queen of Shiba", "QOS") {

    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        buyFee.projectFee = 30; // 3% Project fee
        buyFee.teamFee = 0;  // 0% team fee
        totalBuyFee = buyFee.projectFee + buyFee.teamFee;

        sellFee.projectFee = 30; // 3% project fee
        sellFee.teamFee = 0;   // 0% team fee
        totalSellFee = sellFee.projectFee + sellFee.teamFee;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(_teamWalletAddress, true);
        excludeFromFees(address(this), true);

        swapEnabled = true;

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), 1000000000 * (10**10));
    }

    receive() external payable {

  	}

    function updateUniswapV2Router(address newAddress) external onlyOwner {
        require(newAddress != address(uniswapV2Router), "QOS: The router already has that address");
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
        address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Pair = _uniswapV2Pair;
    }

    function setSwapTokensAmt(uint256 amt) external onlyOwner{
        swapTokensAtAmount = amt;
    }

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

        emit ExcludeFromFees(account, excluded);
    }

    function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }

        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

    function blacklistAddress(address account, bool value) external onlyOwner{
        _isBlacklisted[account] = value;
    }

    function setTeamWallet(address payable wallet) external onlyOwner{
        _teamWalletAddress = wallet;
    }

    function setProjectWallet(address payable wallet) external onlyOwner{
        _projectWalletAddress = wallet;
    }

    function setBuyFee(uint16 liqFee, uint16 team) external onlyOwner {
        buyFee.projectFee = liqFee;
        buyFee.teamFee = team;
        totalBuyFee = buyFee.projectFee + buyFee.teamFee;
    }

    function setSellFee(uint16 liqFee, uint16 team) external onlyOwner {
        sellFee.projectFee = liqFee;
        sellFee.teamFee = team;
        totalSellFee = sellFee.projectFee + sellFee.teamFee;
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "QOS: The UniSwap pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function setSwapEnabled(bool value) external onlyOwner{
        swapEnabled = value;
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "QOS: Automated market maker pair is already set to that value");
        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");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_isBlacklisted[from] && !_isBlacklisted[to], 'Blacklisted address');

        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

		uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if( canSwap &&
            !swapping &&
            swapEnabled &&
            !automatedMarketMakerPairs[from] &&
            from != owner() &&
            to != owner()
        ) {
            swapping = true;

            swapAndSend(contractTokenBalance);

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        if(takeFee) {

            uint16 totalFee;

            if(automatedMarketMakerPairs[from]){
                totalFee = totalBuyFee;
            }else if(automatedMarketMakerPairs[to]){
                totalFee = totalSellFee;
            }

        	uint256 fees = amount.mul(totalFee).div(1000);
            amount = amount.sub(fees);
            super._transfer(from, address(this), fees);

        }

        super._transfer(from, to, amount);

    }

    function swapAndSend(uint256 tokens) private {

        uint256 totalFees = totalBuyFee + totalSellFee;

        // swap tokens for ETH
        swapTokensForEth(tokens); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered

        uint256 newBalance = address(this).balance;

        uint256 projectShare = newBalance.mul(buyFee.projectFee + sellFee.projectFee).div(totalFees);

        payable(_projectWalletAddress).transfer(projectShare);

        payable(_teamWalletAddress).transfer(address(this).balance);

        emit SwapAndSend(tokens, newBalance, projectShare);
    }


    function swapTokensForEth(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );

    }
}

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":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","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":false,"internalType":"uint256","name":"tokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"projectShare","type":"uint256"}],"name":"SwapAndSend","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_projectWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_teamWalletAddress","outputs":[{"internalType":"address","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint16","name":"projectFee","type":"uint16"},{"internalType":"uint16","name":"teamFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"projectFee","type":"uint16"},{"internalType":"uint16","name":"teamFee","type":"uint16"}],"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":"uint16","name":"liqFee","type":"uint16"},{"internalType":"uint16","name":"team","type":"uint16"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setProjectWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"liqFee","type":"uint16"},{"internalType":"uint16","name":"team","type":"uint16"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"setSwapTokensAmt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setTeamWallet","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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405267016345785d8a0000600b55600c8054775d83951201f2276edeacf007ae9bac977dd988ef00000000600160201b600160c01b0319909116179055600d80546001600160a01b031916735d83951201f2276edeacf007ae9bac977dd988ef1790553480156200007257600080fd5b506040518060400160405280600e81526020016d517565656e206f6620536869626160901b81525060405180604001604052806003815260200162514f5360e81b8152508160039081620000c791906200073d565b506004620000d682826200073d565b505050620000f3620000ed620003ae60201b60201c565b620003b2565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200014d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000173919062000809565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e7919062000809565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000235573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025b919062000809565b600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790556008805463ffffffff1916601e90811791829055919250620002b9916201000090910461ffff169062000851565b600c805461ffff191661ffff92831617905560098054601e63ffffffff19909116811791829055620002f692620100009092049091169062000851565b600c805461ffff92909216620100000263ffff0000199092169190911790556200032281600162000404565b62000341620003396005546001600160a01b031690565b6001620004f4565b600c54620003629064010000000090046001600160a01b03166001620004f4565b6200036f306001620004f4565b600a805462ff0000191662010000179055620003a6620003976005546001600160a01b031690565b678ac7230489e80000620005af565b505062000892565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526010602052604090205481151560ff909116151503620004a05760405162461bcd60e51b815260206004820152603d60248201527f514f533a204175746f6d61746564206d61726b6574206d616b6572207061697260448201527f20697320616c72656164792073657420746f20746861742076616c756500000060648201526084015b60405180910390fd5b6001600160a01b038216600081815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000497565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006075760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000497565b80600260008282546200061b919062000876565b90915550506001600160a01b038216600090815260208190526040812080548392906200064a90849062000876565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006c457607f821691505b602082108103620006e557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200069457600081815260208120601f850160051c81016020861015620007145750805b601f850160051c820191505b81811015620007355782815560010162000720565b505050505050565b81516001600160401b0381111562000759576200075962000699565b62000771816200076a8454620006af565b84620006eb565b602080601f831160018114620007a95760008415620007905750858301515b600019600386901b1c1916600185901b17855562000735565b600085815260208120601f198616915b82811015620007da57888601518255948401946001909101908401620007b9565b5085821015620007f95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200081c57600080fd5b81516001600160a01b03811681146200083457600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b61ffff8181168382160190808211156200086f576200086f6200083b565b5092915050565b808201808211156200088c576200088c6200083b565b92915050565b611f7e80620008a26000396000f3fe6080604052600436106102085760003560e01c806370a0823111610118578063b62496f5116100a0578063e01af92c1161006f578063e01af92c14610686578063e2f45605146106a6578063ec2a520a146106bc578063f2fde38b146106dc578063fd62d675146106fc57600080fd5b8063b62496f5146105d0578063c024666814610600578063c492f04614610620578063dd62ed3e1461064057600080fd5b80638da5cb5b116100e75780638da5cb5b1461053d57806395d89b411461055b5780639a7a23d614610570578063a457c2d714610590578063a9059cbb146105b057600080fd5b806370a08231146104b2578063715018a6146104e85780637afad249146104fd5780638a7804471461051d57600080fd5b8063313ce5671161019b57806349bd5a5e1161016a57806349bd5a5e146103e15780634fbee193146104195780635ae1c5fe1461045257806365b8dbc0146104725780636ddd17131461049257600080fd5b8063313ce56714610360578063395093511461037c578063455a43961461039c57806347062402146103bc57600080fd5b806318160ddd116101d757806318160ddd146102b15780631cdd3be3146102d057806323b872dd146103005780632b14ca561461032057600080fd5b806306fdde0314610214578063095ea7b31461023f578063104b832f1461026f5780631525ff7d1461029157600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50610229610724565b6040516102369190611a40565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611aa3565b6107b6565b6040519015158152602001610236565b34801561027b57600080fd5b5061028f61028a366004611acf565b6107cd565b005b34801561029d57600080fd5b5061028f6102ac366004611ae8565b610805565b3480156102bd57600080fd5b506002545b604051908152602001610236565b3480156102dc57600080fd5b5061025f6102eb366004611ae8565b600f6020526000908152604090205460ff1681565b34801561030c57600080fd5b5061025f61031b366004611b05565b61085d565b34801561032c57600080fd5b506009546103459061ffff808216916201000090041682565b6040805161ffff938416815292909116602083015201610236565b34801561036c57600080fd5b50604051600a8152602001610236565b34801561038857600080fd5b5061025f610397366004611aa3565b610907565b3480156103a857600080fd5b5061028f6103b7366004611b5b565b610943565b3480156103c857600080fd5b506008546103459061ffff808216916201000090041682565b3480156103ed57600080fd5b50600754610401906001600160a01b031681565b6040516001600160a01b039091168152602001610236565b34801561042557600080fd5b5061025f610434366004611ae8565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561045e57600080fd5b50600d54610401906001600160a01b031681565b34801561047e57600080fd5b5061028f61048d366004611ae8565b610998565b34801561049e57600080fd5b50600a5461025f9062010000900460ff1681565b3480156104be57600080fd5b506102c26104cd366004611ae8565b6001600160a01b031660009081526020819052604090205490565b3480156104f457600080fd5b5061028f610c07565b34801561050957600080fd5b5061028f610518366004611ba2565b610c3d565b34801561052957600080fd5b5061028f610538366004611ae8565b610cb7565b34801561054957600080fd5b506005546001600160a01b0316610401565b34801561056757600080fd5b50610229610d03565b34801561057c57600080fd5b5061028f61058b366004611b5b565b610d12565b34801561059c57600080fd5b5061025f6105ab366004611aa3565b610ddd565b3480156105bc57600080fd5b5061025f6105cb366004611aa3565b610e76565b3480156105dc57600080fd5b5061025f6105eb366004611ae8565b60106020526000908152604090205460ff1681565b34801561060c57600080fd5b5061028f61061b366004611b5b565b610e83565b34801561062c57600080fd5b5061028f61063b366004611bcc565b610f0c565b34801561064c57600080fd5b506102c261065b366004611c50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561069257600080fd5b5061028f6106a1366004611c89565b610fe8565b3480156106b257600080fd5b506102c2600b5481565b3480156106c857600080fd5b5061028f6106d7366004611ba2565b61102e565b3480156106e857600080fd5b5061028f6106f7366004611ae8565b6110ae565b34801561070857600080fd5b50600c546104019064010000000090046001600160a01b031681565b60606003805461073390611ca4565b80601f016020809104026020016040519081016040528092919081815260200182805461075f90611ca4565b80156107ac5780601f10610781576101008083540402835291602001916107ac565b820191906000526020600020905b81548152906001019060200180831161078f57829003601f168201915b5050505050905090565b60006107c3338484611149565b5060015b92915050565b6005546001600160a01b031633146108005760405162461bcd60e51b81526004016107f790611cde565b60405180910390fd5b600b55565b6005546001600160a01b0316331461082f5760405162461bcd60e51b81526004016107f790611cde565b600c80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b600061086a84848461126d565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108ef5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107f7565b6108fc8533858403611149565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107c391859061093e908690611d29565b611149565b6005546001600160a01b0316331461096d5760405162461bcd60e51b81526004016107f790611cde565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109c25760405162461bcd60e51b81526004016107f790611cde565b6006546001600160a01b0390811690821603610a315760405162461bcd60e51b815260206004820152602860248201527f514f533a2054686520726f7574657220616c7265616479206861732074686174604482015267206164647265737360c01b60648201526084016107f7565b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015610ac8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aec9190611d3c565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b729190611d3c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610bbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be39190611d3c565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b6005546001600160a01b03163314610c315760405162461bcd60e51b81526004016107f790611cde565b610c3b600061150f565b565b6005546001600160a01b03163314610c675760405162461bcd60e51b81526004016107f790611cde565b6008805461ffff8381166201000090810263ffffffff19909316828716179290921792839055610c9d9291820481169116611d59565b600c805461ffff191661ffff929092169190911790555050565b6005546001600160a01b03163314610ce15760405162461bcd60e51b81526004016107f790611cde565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461073390611ca4565b6005546001600160a01b03163314610d3c5760405162461bcd60e51b81526004016107f790611cde565b6007546001600160a01b0390811690831603610dcf5760405162461bcd60e51b815260206004820152604660248201527f514f533a2054686520556e695377617020706169722063616e6e6f742062652060448201527f72656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6560648201526572506169727360d01b608482015260a4016107f7565b610dd98282611561565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e5f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107f7565b610e6c3385858403611149565b5060019392505050565b60006107c333848461126d565b6005546001600160a01b03163314610ead5760405162461bcd60e51b81526004016107f790611cde565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f365760405162461bcd60e51b81526004016107f790611cde565b60005b82811015610fa75781600e6000868685818110610f5857610f58611d7b565b9050602002016020810190610f6d9190611ae8565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610f9f81611d91565b915050610f39565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051610fdb93929190611daa565b60405180910390a1505050565b6005546001600160a01b031633146110125760405162461bcd60e51b81526004016107f790611cde565b600a8054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146110585760405162461bcd60e51b81526004016107f790611cde565b6009805461ffff8381166201000090810263ffffffff1990931682871617929092179283905561108e9291820481169116611d59565b600c60026101000a81548161ffff021916908361ffff1602179055505050565b6005546001600160a01b031633146110d85760405162461bcd60e51b81526004016107f790611cde565b6001600160a01b03811661113d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f7565b6111468161150f565b50565b6001600160a01b0383166111ab5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f7565b6001600160a01b03821661120c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112935760405162461bcd60e51b81526004016107f790611e03565b6001600160a01b0382166112b95760405162461bcd60e51b81526004016107f790611e48565b6001600160a01b0383166000908152600f602052604090205460ff161580156112fb57506001600160a01b0382166000908152600f602052604090205460ff16155b61133d5760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b60448201526064016107f7565b80600003611356576113518383600061164b565b505050565b30600090815260208190526040902054600b548110801590819061137d5750600a5460ff16155b80156113915750600a5462010000900460ff165b80156113b657506001600160a01b03851660009081526010602052604090205460ff16155b80156113d057506005546001600160a01b03868116911614155b80156113ea57506005546001600160a01b03858116911614155b1561141057600a805460ff19166001179055611405826117a0565b600a805460ff191690555b600a546001600160a01b0386166000908152600e602052604090205460ff9182161591168061145757506001600160a01b0385166000908152600e602052604090205460ff165b15611460575060005b80156114fc576001600160a01b03861660009081526010602052604081205460ff16156114945750600c5461ffff166114c4565b6001600160a01b03861660009081526010602052604090205460ff16156114c45750600c5462010000900461ffff165b60006114e06103e86114da8861ffff86166118c3565b906118d6565b90506114ec86826118e2565b95506114f988308361164b565b50505b61150786868661164b565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526010602052604090205481151560ff9091161515036115f75760405162461bcd60e51b815260206004820152603d60248201527f514f533a204175746f6d61746564206d61726b6574206d616b6572207061697260448201527f20697320616c72656164792073657420746f20746861742076616c756500000060648201526084016107f7565b6001600160a01b038216600081815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166116715760405162461bcd60e51b81526004016107f790611e03565b6001600160a01b0382166116975760405162461bcd60e51b81526004016107f790611e48565b6001600160a01b0383166000908152602081905260409020548181101561170f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107f7565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611746908490611d29565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161179291815260200190565b60405180910390a350505050565b600c546000906117bc9061ffff62010000820481169116611d59565b61ffff1690506117cb826118ee565b60095460085447916000916117fc9185916114da916117f19161ffff9182169116611d59565b859061ffff166118c3565b600d546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611837573d6000803e3d6000fd5b50600c546040516001600160a01b0364010000000090920491909116904780156108fc02916000818181858888f1935050505015801561187b573d6000803e3d6000fd5b5060408051858152602081018490529081018290527f72aafd26bfe08e4b433f171c1af0ca3f848cf927c2117a28ce435fa3e7b974199060600160405180910390a150505050565b60006118cf8284611e8b565b9392505050565b60006118cf8284611ea2565b60006118cf8284611ec4565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061192357611923611d7b565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561197c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a09190611d3c565b816001815181106119b3576119b3611d7b565b6001600160a01b0392831660209182029290920101526006546119d99130911684611149565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611a12908590600090869030904290600401611ed7565b600060405180830381600087803b158015611a2c57600080fd5b505af1158015611507573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611a6d57858101830151858201604001528201611a51565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461114657600080fd5b60008060408385031215611ab657600080fd5b8235611ac181611a8e565b946020939093013593505050565b600060208284031215611ae157600080fd5b5035919050565b600060208284031215611afa57600080fd5b81356118cf81611a8e565b600080600060608486031215611b1a57600080fd5b8335611b2581611a8e565b92506020840135611b3581611a8e565b929592945050506040919091013590565b80358015158114611b5657600080fd5b919050565b60008060408385031215611b6e57600080fd5b8235611b7981611a8e565b9150611b8760208401611b46565b90509250929050565b803561ffff81168114611b5657600080fd5b60008060408385031215611bb557600080fd5b611bbe83611b90565b9150611b8760208401611b90565b600080600060408486031215611be157600080fd5b833567ffffffffffffffff80821115611bf957600080fd5b818601915086601f830112611c0d57600080fd5b813581811115611c1c57600080fd5b8760208260051b8501011115611c3157600080fd5b602092830195509350611c479186019050611b46565b90509250925092565b60008060408385031215611c6357600080fd5b8235611c6e81611a8e565b91506020830135611c7e81611a8e565b809150509250929050565b600060208284031215611c9b57600080fd5b6118cf82611b46565b600181811c90821680611cb857607f821691505b602082108103611cd857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107c7576107c7611d13565b600060208284031215611d4e57600080fd5b81516118cf81611a8e565b61ffff818116838216019080821115611d7457611d74611d13565b5092915050565b634e487b7160e01b600052603260045260246000fd5b600060018201611da357611da3611d13565b5060010190565b6040808252810183905260008460608301825b86811015611ded578235611dd081611a8e565b6001600160a01b0316825260209283019290910190600101611dbd565b5080925050508215156020830152949350505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176107c7576107c7611d13565b600082611ebf57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156107c7576107c7611d13565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f275784516001600160a01b031683529383019391830191600101611f02565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122070f5c45cf4f1b1a2803243b0da11c7584df0356699fb9c4a4a5a6f8912c7c16a64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102085760003560e01c806370a0823111610118578063b62496f5116100a0578063e01af92c1161006f578063e01af92c14610686578063e2f45605146106a6578063ec2a520a146106bc578063f2fde38b146106dc578063fd62d675146106fc57600080fd5b8063b62496f5146105d0578063c024666814610600578063c492f04614610620578063dd62ed3e1461064057600080fd5b80638da5cb5b116100e75780638da5cb5b1461053d57806395d89b411461055b5780639a7a23d614610570578063a457c2d714610590578063a9059cbb146105b057600080fd5b806370a08231146104b2578063715018a6146104e85780637afad249146104fd5780638a7804471461051d57600080fd5b8063313ce5671161019b57806349bd5a5e1161016a57806349bd5a5e146103e15780634fbee193146104195780635ae1c5fe1461045257806365b8dbc0146104725780636ddd17131461049257600080fd5b8063313ce56714610360578063395093511461037c578063455a43961461039c57806347062402146103bc57600080fd5b806318160ddd116101d757806318160ddd146102b15780631cdd3be3146102d057806323b872dd146103005780632b14ca561461032057600080fd5b806306fdde0314610214578063095ea7b31461023f578063104b832f1461026f5780631525ff7d1461029157600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50610229610724565b6040516102369190611a40565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611aa3565b6107b6565b6040519015158152602001610236565b34801561027b57600080fd5b5061028f61028a366004611acf565b6107cd565b005b34801561029d57600080fd5b5061028f6102ac366004611ae8565b610805565b3480156102bd57600080fd5b506002545b604051908152602001610236565b3480156102dc57600080fd5b5061025f6102eb366004611ae8565b600f6020526000908152604090205460ff1681565b34801561030c57600080fd5b5061025f61031b366004611b05565b61085d565b34801561032c57600080fd5b506009546103459061ffff808216916201000090041682565b6040805161ffff938416815292909116602083015201610236565b34801561036c57600080fd5b50604051600a8152602001610236565b34801561038857600080fd5b5061025f610397366004611aa3565b610907565b3480156103a857600080fd5b5061028f6103b7366004611b5b565b610943565b3480156103c857600080fd5b506008546103459061ffff808216916201000090041682565b3480156103ed57600080fd5b50600754610401906001600160a01b031681565b6040516001600160a01b039091168152602001610236565b34801561042557600080fd5b5061025f610434366004611ae8565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561045e57600080fd5b50600d54610401906001600160a01b031681565b34801561047e57600080fd5b5061028f61048d366004611ae8565b610998565b34801561049e57600080fd5b50600a5461025f9062010000900460ff1681565b3480156104be57600080fd5b506102c26104cd366004611ae8565b6001600160a01b031660009081526020819052604090205490565b3480156104f457600080fd5b5061028f610c07565b34801561050957600080fd5b5061028f610518366004611ba2565b610c3d565b34801561052957600080fd5b5061028f610538366004611ae8565b610cb7565b34801561054957600080fd5b506005546001600160a01b0316610401565b34801561056757600080fd5b50610229610d03565b34801561057c57600080fd5b5061028f61058b366004611b5b565b610d12565b34801561059c57600080fd5b5061025f6105ab366004611aa3565b610ddd565b3480156105bc57600080fd5b5061025f6105cb366004611aa3565b610e76565b3480156105dc57600080fd5b5061025f6105eb366004611ae8565b60106020526000908152604090205460ff1681565b34801561060c57600080fd5b5061028f61061b366004611b5b565b610e83565b34801561062c57600080fd5b5061028f61063b366004611bcc565b610f0c565b34801561064c57600080fd5b506102c261065b366004611c50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561069257600080fd5b5061028f6106a1366004611c89565b610fe8565b3480156106b257600080fd5b506102c2600b5481565b3480156106c857600080fd5b5061028f6106d7366004611ba2565b61102e565b3480156106e857600080fd5b5061028f6106f7366004611ae8565b6110ae565b34801561070857600080fd5b50600c546104019064010000000090046001600160a01b031681565b60606003805461073390611ca4565b80601f016020809104026020016040519081016040528092919081815260200182805461075f90611ca4565b80156107ac5780601f10610781576101008083540402835291602001916107ac565b820191906000526020600020905b81548152906001019060200180831161078f57829003601f168201915b5050505050905090565b60006107c3338484611149565b5060015b92915050565b6005546001600160a01b031633146108005760405162461bcd60e51b81526004016107f790611cde565b60405180910390fd5b600b55565b6005546001600160a01b0316331461082f5760405162461bcd60e51b81526004016107f790611cde565b600c80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b600061086a84848461126d565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108ef5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107f7565b6108fc8533858403611149565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107c391859061093e908690611d29565b611149565b6005546001600160a01b0316331461096d5760405162461bcd60e51b81526004016107f790611cde565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109c25760405162461bcd60e51b81526004016107f790611cde565b6006546001600160a01b0390811690821603610a315760405162461bcd60e51b815260206004820152602860248201527f514f533a2054686520726f7574657220616c7265616479206861732074686174604482015267206164647265737360c01b60648201526084016107f7565b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015610ac8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aec9190611d3c565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b729190611d3c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610bbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be39190611d3c565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b6005546001600160a01b03163314610c315760405162461bcd60e51b81526004016107f790611cde565b610c3b600061150f565b565b6005546001600160a01b03163314610c675760405162461bcd60e51b81526004016107f790611cde565b6008805461ffff8381166201000090810263ffffffff19909316828716179290921792839055610c9d9291820481169116611d59565b600c805461ffff191661ffff929092169190911790555050565b6005546001600160a01b03163314610ce15760405162461bcd60e51b81526004016107f790611cde565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60606004805461073390611ca4565b6005546001600160a01b03163314610d3c5760405162461bcd60e51b81526004016107f790611cde565b6007546001600160a01b0390811690831603610dcf5760405162461bcd60e51b815260206004820152604660248201527f514f533a2054686520556e695377617020706169722063616e6e6f742062652060448201527f72656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6560648201526572506169727360d01b608482015260a4016107f7565b610dd98282611561565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e5f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107f7565b610e6c3385858403611149565b5060019392505050565b60006107c333848461126d565b6005546001600160a01b03163314610ead5760405162461bcd60e51b81526004016107f790611cde565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f365760405162461bcd60e51b81526004016107f790611cde565b60005b82811015610fa75781600e6000868685818110610f5857610f58611d7b565b9050602002016020810190610f6d9190611ae8565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610f9f81611d91565b915050610f39565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051610fdb93929190611daa565b60405180910390a1505050565b6005546001600160a01b031633146110125760405162461bcd60e51b81526004016107f790611cde565b600a8054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146110585760405162461bcd60e51b81526004016107f790611cde565b6009805461ffff8381166201000090810263ffffffff1990931682871617929092179283905561108e9291820481169116611d59565b600c60026101000a81548161ffff021916908361ffff1602179055505050565b6005546001600160a01b031633146110d85760405162461bcd60e51b81526004016107f790611cde565b6001600160a01b03811661113d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f7565b6111468161150f565b50565b6001600160a01b0383166111ab5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f7565b6001600160a01b03821661120c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112935760405162461bcd60e51b81526004016107f790611e03565b6001600160a01b0382166112b95760405162461bcd60e51b81526004016107f790611e48565b6001600160a01b0383166000908152600f602052604090205460ff161580156112fb57506001600160a01b0382166000908152600f602052604090205460ff16155b61133d5760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b60448201526064016107f7565b80600003611356576113518383600061164b565b505050565b30600090815260208190526040902054600b548110801590819061137d5750600a5460ff16155b80156113915750600a5462010000900460ff165b80156113b657506001600160a01b03851660009081526010602052604090205460ff16155b80156113d057506005546001600160a01b03868116911614155b80156113ea57506005546001600160a01b03858116911614155b1561141057600a805460ff19166001179055611405826117a0565b600a805460ff191690555b600a546001600160a01b0386166000908152600e602052604090205460ff9182161591168061145757506001600160a01b0385166000908152600e602052604090205460ff165b15611460575060005b80156114fc576001600160a01b03861660009081526010602052604081205460ff16156114945750600c5461ffff166114c4565b6001600160a01b03861660009081526010602052604090205460ff16156114c45750600c5462010000900461ffff165b60006114e06103e86114da8861ffff86166118c3565b906118d6565b90506114ec86826118e2565b95506114f988308361164b565b50505b61150786868661164b565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526010602052604090205481151560ff9091161515036115f75760405162461bcd60e51b815260206004820152603d60248201527f514f533a204175746f6d61746564206d61726b6574206d616b6572207061697260448201527f20697320616c72656164792073657420746f20746861742076616c756500000060648201526084016107f7565b6001600160a01b038216600081815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166116715760405162461bcd60e51b81526004016107f790611e03565b6001600160a01b0382166116975760405162461bcd60e51b81526004016107f790611e48565b6001600160a01b0383166000908152602081905260409020548181101561170f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107f7565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611746908490611d29565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161179291815260200190565b60405180910390a350505050565b600c546000906117bc9061ffff62010000820481169116611d59565b61ffff1690506117cb826118ee565b60095460085447916000916117fc9185916114da916117f19161ffff9182169116611d59565b859061ffff166118c3565b600d546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611837573d6000803e3d6000fd5b50600c546040516001600160a01b0364010000000090920491909116904780156108fc02916000818181858888f1935050505015801561187b573d6000803e3d6000fd5b5060408051858152602081018490529081018290527f72aafd26bfe08e4b433f171c1af0ca3f848cf927c2117a28ce435fa3e7b974199060600160405180910390a150505050565b60006118cf8284611e8b565b9392505050565b60006118cf8284611ea2565b60006118cf8284611ec4565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061192357611923611d7b565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561197c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119a09190611d3c565b816001815181106119b3576119b3611d7b565b6001600160a01b0392831660209182029290920101526006546119d99130911684611149565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611a12908590600090869030904290600401611ed7565b600060405180830381600087803b158015611a2c57600080fd5b505af1158015611507573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611a6d57858101830151858201604001528201611a51565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461114657600080fd5b60008060408385031215611ab657600080fd5b8235611ac181611a8e565b946020939093013593505050565b600060208284031215611ae157600080fd5b5035919050565b600060208284031215611afa57600080fd5b81356118cf81611a8e565b600080600060608486031215611b1a57600080fd5b8335611b2581611a8e565b92506020840135611b3581611a8e565b929592945050506040919091013590565b80358015158114611b5657600080fd5b919050565b60008060408385031215611b6e57600080fd5b8235611b7981611a8e565b9150611b8760208401611b46565b90509250929050565b803561ffff81168114611b5657600080fd5b60008060408385031215611bb557600080fd5b611bbe83611b90565b9150611b8760208401611b90565b600080600060408486031215611be157600080fd5b833567ffffffffffffffff80821115611bf957600080fd5b818601915086601f830112611c0d57600080fd5b813581811115611c1c57600080fd5b8760208260051b8501011115611c3157600080fd5b602092830195509350611c479186019050611b46565b90509250925092565b60008060408385031215611c6357600080fd5b8235611c6e81611a8e565b91506020830135611c7e81611a8e565b809150509250929050565b600060208284031215611c9b57600080fd5b6118cf82611b46565b600181811c90821680611cb857607f821691505b602082108103611cd857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107c7576107c7611d13565b600060208284031215611d4e57600080fd5b81516118cf81611a8e565b61ffff818116838216019080821115611d7457611d74611d13565b5092915050565b634e487b7160e01b600052603260045260246000fd5b600060018201611da357611da3611d13565b5060010190565b6040808252810183905260008460608301825b86811015611ded578235611dd081611a8e565b6001600160a01b0316825260209283019290910190600101611dbd565b5080925050508215156020830152949350505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176107c7576107c7611d13565b600082611ebf57634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156107c7576107c7611d13565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f275784516001600160a01b031683529383019391830191600101611f02565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122070f5c45cf4f1b1a2803243b0da11c7584df0356699fb9c4a4a5a6f8912c7c16a64736f6c63430008110033

Deployed Bytecode Sourcemap

31583:8663:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21571:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23738:169;;;;;;;;;;-1:-1:-1;23738:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;23738:169:0;1023:187:1;35154:100:0;;;;;;;;;;-1:-1:-1;35154:100:0;;;;;:::i;:::-;;:::i;:::-;;35897:111;;;;;;;;;;-1:-1:-1;35897:111:0;;;;;:::i;:::-;;:::i;22691:108::-;;;;;;;;;;-1:-1:-1;22779:12:0;;22691:108;;;1806:25:1;;;1794:2;1779:18;22691:108:0;1660:177:1;32597:47:0;;;;;;;;;;-1:-1:-1;32597:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24389:492;;;;;;;;;;-1:-1:-1;24389:492:0;;;;;:::i;:::-;;:::i;31934:22::-;;;;;;;;;;-1:-1:-1;31934:22:0;;;;;;;;;;;;;;;;;;;2735:6:1;2768:15;;;2750:34;;2820:15;;;;2815:2;2800:18;;2793:43;2698:18;31934:22:0;2555:287:1;22533:93:0;;;;;;;;;;-1:-1:-1;22533:93:0;;22616:2;2989:36:1;;2977:2;2962:18;22533:93:0;2847:184:1;25290:215:0;;;;;;;;;;-1:-1:-1;25290:215:0;;;;;:::i;:::-;;:::i;35766:123::-;;;;;;;;;;-1:-1:-1;35766:123:0;;;;;:::i;:::-;;:::i;31907:20::-;;;;;;;;;;-1:-1:-1;31907:20:0;;;;;;;;;;;;;;;31705:28;;;;;;;;;;-1:-1:-1;31705:28:0;;;;-1:-1:-1;;;;;31705:28:0;;;;;;-1:-1:-1;;;;;3685:32:1;;;3667:51;;3655:2;3640:18;31705:28:0;3521:203:1;37253:125:0;;;;;;;;;;-1:-1:-1;37253:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;37342:28:0;37318:4;37342:28;;;:19;:28;;;;;;;;;37253:125;32367:90;;;;;;;;;;-1:-1:-1;32367:90:0;;;;-1:-1:-1;;;;;32367:90:0;;;34647:499;;;;;;;;;;-1:-1:-1;34647:499:0;;;;;:::i;:::-;;:::i;32029:23::-;;;;;;;;;;-1:-1:-1;32029:23:0;;;;;;;;;;;22862:127;;;;;;;;;;-1:-1:-1;22862:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;22963:18:0;22936:7;22963:18;;;;;;;;;;;;22862:127;18869:94;;;;;;;;;;;;;:::i;36141:202::-;;;;;;;;;;-1:-1:-1;36141:202:0;;;;;:::i;:::-;;:::i;36016:117::-;;;;;;;;;;-1:-1:-1;36016:117:0;;;;;:::i;:::-;;:::i;18218:87::-;;;;;;;;;;-1:-1:-1;18291:6:0;;-1:-1:-1;;;;;18291:6:0;18218:87;;21790:104;;;;;;;;;;;;;:::i;36567:257::-;;;;;;;;;;-1:-1:-1;36567:257:0;;;;;:::i;:::-;;:::i;26008:413::-;;;;;;;;;;-1:-1:-1;26008:413:0;;;;;:::i;:::-;;:::i;23202:175::-;;;;;;;;;;-1:-1:-1;23202:175:0;;;;;:::i;:::-;;:::i;32804:58::-;;;;;;;;;;-1:-1:-1;32804:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35262:184;;;;;;;;;;-1:-1:-1;35262:184:0;;;;;:::i;:::-;;:::i;35454:304::-;;;;;;;;;;-1:-1:-1;35454:304:0;;;;;:::i;:::-;;:::i;23440:151::-;;;;;;;;;;-1:-1:-1;23440:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;23556:18:0;;;23529:7;23556:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;23440:151;36832:92;;;;;;;;;;-1:-1:-1;36832:92:0;;;;;:::i;:::-;;:::i;32123:57::-;;;;;;;;;;;;;;;;36351:208;;;;;;;;;;-1:-1:-1;36351:208:0;;;;;:::i;:::-;;:::i;19118:192::-;;;;;;;;;;-1:-1:-1;19118:192:0;;;;;:::i;:::-;;:::i;32258:87::-;;;;;;;;;;-1:-1:-1;32258:87:0;;;;;;;-1:-1:-1;;;;;32258:87:0;;;21571:100;21625:13;21658:5;21651:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21571:100;:::o;23738:169::-;23821:4;23838:39;17086:10;23861:7;23870:6;23838:8;:39::i;:::-;-1:-1:-1;23895:4:0;23738:169;;;;;:::o;35154:100::-;18291:6;;-1:-1:-1;;;;;18291:6:0;17086:10;18438:23;18430:68;;;;-1:-1:-1;;;18430:68:0;;;;;;;:::i;:::-;;;;;;;;;35222:18:::1;:24:::0;35154:100::o;35897:111::-;18291:6;;-1:-1:-1;;;;;18291:6:0;17086:10;18438:23;18430:68;;;;-1:-1:-1;;;18430:68:0;;;;;;;:::i;:::-;35973:18:::1;:27:::0;;-1:-1:-1;;;;;35973:27:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;35973:27:0;;::::1;::::0;;;::::1;::::0;;35897:111::o;24389:492::-;24529:4;24546:36;24556:6;24564:9;24575:6;24546:9;:36::i;:::-;-1:-1:-1;;;;;24622:19:0;;24595:24;24622:19;;;:11;:19;;;;;;;;17086:10;24622:33;;;;;;;;24674:26;;;;24666:79;;;;-1:-1:-1;;;24666:79:0;;6374:2:1;24666:79:0;;;6356:21:1;6413:2;6393:18;;;6386:30;6452:34;6432:18;;;6425:62;-1:-1:-1;;;6503:18:1;;;6496:38;6551:19;;24666:79:0;6172:404:1;24666:79:0;24781:57;24790:6;17086:10;24831:6;24812:16;:25;24781:8;:57::i;:::-;-1:-1:-1;24869:4:0;;24389:492;-1:-1:-1;;;;24389:492:0:o;25290:215::-;17086:10;25378:4;25427:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;25427:34:0;;;;;;;;;;25378:4;;25395:80;;25418:7;;25427:47;;25464:10;;25427:47;:::i;:::-;25395:8;:80::i;35766:123::-;18291:6;;-1:-1:-1;;;;;18291:6:0;17086:10;18438:23;18430:68;;;;-1:-1:-1;;;18430:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35850:23:0;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:31;;-1:-1:-1;;35850:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35766:123::o;34647:499::-;18291:6;;-1:-1:-1;;;;;18291:6:0;17086:10;18438:23;18430:68;;;;-1:-1:-1;;;18430:68:0;;;;;;;:::i;:::-;34758:15:::1;::::0;-1:-1:-1;;;;;34758:15:0;;::::1;34736:38:::0;;::::1;::::0;34728:91:::1;;;::::0;-1:-1:-1;;;34728:91:0;;7045:2:1;34728:91:0::1;::::0;::::1;7027:21:1::0;7084:2;7064:18;;;7057:30;7123:34;7103:18;;;7096:62;-1:-1:-1;;;7174:18:1;;;7167:38;7222:19;;34728:91:0::1;6843:404:1::0;34728:91:0::1;34877:15;::::0;34835:59:::1;::::0;-1:-1:-1;;;;;34877:15:0;;::::1;::::0;34835:59;::::1;::::0;::::1;::::0;34877:15:::1;::::0;34835:59:::1;34905:15;:48:::0;;-1:-1:-1;;;;;;34905:48:0::1;-1:-1:-1::0;;;;;34905:48:0;::::1;::::0;;::::1;::::0;;;35007:25:::1;::::0;;-1:-1:-1;;;35007:25:0;;;;-1:-1:-1;;34905:48:0;35007:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;34905:48;35007:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34989:69:0::1;;35067:4;35074:15;;;;;;;;;-1:-1:-1::0;;;;;35074:15:0::1;-1:-1:-1::0;;;;;35074:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34989:108;::::0;-1:-1:-1;;;;;;34989:108:0::1;::::0;;;;;;-1:-1:-1;;;;;7738:15:1;;;34989:108:0::1;::::0;::::1;7720:34:1::0;7790:15;;7770:18;;;7763:43;7655:18;;34989:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35108:13;:30:::0;;-1:-1:-1;;;;;;35108:30:0::1;-1:-1:-1::0;;;;;35108:30:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;34647:499:0:o;18869:94::-;18291:6;;-1:-1:-1;;;;;18291:6:0;17086:10;18438:23;18430:68;;;;-1:-1:-1;;;18430:68:0;;;;;;;:::i;:::-;18934:21:::1;18952:1;18934:9;:21::i;:::-;18869:94::o:0;36141:202::-;18291:6;;-1:-1:-1;;;;;18291:6:0;17086:10;18438:23;18430:68;;;;-1:-1:-1;;;18430:68:0;;;;;;;:::i;:::-;36218:6:::1;:26:::0;;::::1;36255:21:::0;;::::1;::::0;;;::::1;-1:-1:-1::0;;36255:21:0;;;36218:26;;::::1;36255:21:::0;;;;::::1;::::0;;;;36301:34:::1;::::0;36321:14;;::::1;::::0;::::1;::::0;36301:17:::1;:34;:::i;:::-;36287:11;:48:::0;;-1:-1:-1;;36287:48:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;36141:202:0:o;36016:117::-;18291:6;;-1:-1:-1;;;;;18291:6:0;17086:10;18438:23;18430:68;;;;-1:-1:-1;;;18430:68:0;;;;;;;:::i;:::-;36095:21:::1;:30:::0;;-1:-1:-1;;;;;;36095:30:0::1;-1:-1:-1::0;;;;;36095:30:0;;;::::1;::::0;;;::::1;::::0;;36016:117::o;21790:104::-;21846:13;21879:7;21872:14;;;;;:::i;36567:257::-;18291:6;;-1:-1:-1;;;;;18291:6:0;17086:10;18438:23;18430:68;;;;-1:-1:-1;;;18430:68:0;;;;;;;:::i;:::-;36674:13:::1;::::0;-1:-1:-1;;;;;36674:13:0;;::::1;36666:21:::0;;::::1;::::0;36658:104:::1;;;::::0;-1:-1:-1;;;36658:104:0;;8192:2:1;36658:104:0::1;::::0;::::1;8174:21:1::0;8231:2;8211:18;;;8204:30;8270:34;8250:18;;;8243:62;8341:34;8321:18;;;8314:62;-1:-1:-1;;;8392:19:1;;;8385:37;8439:19;;36658:104:0::1;7990:474:1::0;36658:104:0::1;36775:41;36804:4;36810:5;36775:28;:41::i;:::-;36567:257:::0;;:::o;26008:413::-;17086:10;26101:4;26145:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;26145:34:0;;;;;;;;;;26198:35;;;;26190:85;;;;-1:-1:-1;;;26190:85:0;;8671:2:1;26190:85:0;;;8653:21:1;8710:2;8690:18;;;8683:30;8749:34;8729:18;;;8722:62;-1:-1:-1;;;8800:18:1;;;8793:35;8845:19;;26190:85:0;8469:401:1;26190:85:0;26311:67;17086:10;26334:7;26362:15;26343:16;:34;26311:8;:67::i;:::-;-1:-1:-1;26409:4:0;;26008:413;-1:-1:-1;;;26008:413:0:o;23202:175::-;23288:4;23305:42;17086:10;23329:9;23340:6;23305:9;:42::i;35262:184::-;18291:6;;-1:-1:-1;;;;;18291:6:0;17086:10;18438:23;18430:68;;;;-1:-1:-1;;;18430:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35347:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;35347:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35404:34;;1163:41:1;;;35404:34:0::1;::::0;1136:18:1;35404:34:0::1;;;;;;;35262:184:::0;;:::o;35454:304::-;18291:6;;-1:-1:-1;;;;;18291:6:0;17086:10;18438:23;18430:68;;;;-1:-1:-1;;;18430:68:0;;;;;;;:::i;:::-;35571:9:::1;35567:115;35586:19:::0;;::::1;35567:115;;;35662:8;35627:19;:32;35647:8;;35656:1;35647:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35627:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35627:32:0;:43;;-1:-1:-1;;35627:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35607:3;::::1;::::0;::::1;:::i;:::-;;;;35567:115;;;;35699:51;35731:8;;35741;35699:51;;;;;;;;:::i;:::-;;;;;;;;35454:304:::0;;;:::o;36832:92::-;18291:6;;-1:-1:-1;;;;;18291:6:0;17086:10;18438:23;18430:68;;;;-1:-1:-1;;;18430:68:0;;;;;;;:::i;:::-;36897:11:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;36897:19:0;;::::1;::::0;;;::::1;::::0;;36832:92::o;36351:208::-;18291:6;;-1:-1:-1;;;;;18291:6:0;17086:10;18438:23;18430:68;;;;-1:-1:-1;;;18430:68:0;;;;;;;:::i;:::-;36429:7:::1;:27:::0;;::::1;36467:22:::0;;::::1;::::0;;;::::1;-1:-1:-1::0;;36467:22:0;;;36429:27;;::::1;36467:22:::0;;;;::::1;::::0;;;;36515:36:::1;::::0;36536:15;;::::1;::::0;::::1;::::0;36515:18:::1;:36;:::i;:::-;36500:12;;:51;;;;;;;;;;;;;;;;;;36351:208:::0;;:::o;19118:192::-;18291:6;;-1:-1:-1;;;;;18291:6:0;17086:10;18438:23;18430:68;;;;-1:-1:-1;;;18430:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19207:22:0;::::1;19199:73;;;::::0;-1:-1:-1;;;19199:73:0;;10148:2:1;19199:73:0::1;::::0;::::1;10130:21:1::0;10187:2;10167:18;;;10160:30;10226:34;10206:18;;;10199:62;-1:-1:-1;;;10277:18:1;;;10270:36;10323:19;;19199:73:0::1;9946:402:1::0;19199:73:0::1;19283:19;19293:8;19283:9;:19::i;:::-;19118:192:::0;:::o;29692:380::-;-1:-1:-1;;;;;29828:19:0;;29820:68;;;;-1:-1:-1;;;29820:68:0;;10555:2:1;29820:68:0;;;10537:21:1;10594:2;10574:18;;;10567:30;10633:34;10613:18;;;10606:62;-1:-1:-1;;;10684:18:1;;;10677:34;10728:19;;29820:68:0;10353:400:1;29820:68:0;-1:-1:-1;;;;;29907:21:0;;29899:68;;;;-1:-1:-1;;;29899:68:0;;10960:2:1;29899:68:0;;;10942:21:1;10999:2;10979:18;;;10972:30;11038:34;11018:18;;;11011:62;-1:-1:-1;;;11089:18:1;;;11082:32;11131:19;;29899:68:0;10758:398:1;29899:68:0;-1:-1:-1;;;;;29980:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30032:32;;1806:25:1;;;30032:32:0;;1779:18:1;30032:32:0;;;;;;;29692:380;;;:::o;37386:1634::-;-1:-1:-1;;;;;37518:18:0;;37510:68;;;;-1:-1:-1;;;37510:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37597:16:0;;37589:64;;;;-1:-1:-1;;;37589:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37673:20:0;;;;;;:14;:20;;;;;;;;37672:21;:44;;;;-1:-1:-1;;;;;;37698:18:0;;;;;;:14;:18;;;;;;;;37697:19;37672:44;37664:76;;;;-1:-1:-1;;;37664:76:0;;12173:2:1;37664:76:0;;;12155:21:1;12212:2;12192:18;;;12185:30;-1:-1:-1;;;12231:18:1;;;12224:49;12290:18;;37664:76:0;11971:343:1;37664:76:0;37756:6;37766:1;37756:11;37753:92;;37784:28;37800:4;37806:2;37810:1;37784:15;:28::i;:::-;37386:1634;;;:::o;37753:92::-;37900:4;37851:28;22963:18;;;;;;;;;;;37958;;37934:42;;;;;;;37993:33;;-1:-1:-1;38018:8:0;;;;38017:9;37993:33;:61;;;;-1:-1:-1;38043:11:0;;;;;;;37993:61;:110;;;;-1:-1:-1;;;;;;38072:31:0;;;;;;:25;:31;;;;;;;;38071:32;37993:110;:142;;;;-1:-1:-1;18291:6:0;;-1:-1:-1;;;;;38120:15:0;;;18291:6;;38120:15;;37993:142;:172;;;;-1:-1:-1;18291:6:0;;-1:-1:-1;;;;;38152:13:0;;;18291:6;;38152:13;;37993:172;37989:313;;;38192:8;:15;;-1:-1:-1;;38192:15:0;38203:4;38192:15;;;38224:33;38236:20;38224:11;:33::i;:::-;38274:8;:16;;-1:-1:-1;;38274:16:0;;;37989:313;38330:8;;-1:-1:-1;;;;;38439:25:0;;38314:12;38439:25;;;:19;:25;;;;;;38330:8;;;;38329:9;;38439:25;;:52;;-1:-1:-1;;;;;;38468:23:0;;;;;;:19;:23;;;;;;;;38439:52;38436:99;;;-1:-1:-1;38518:5:0;38436:99;38550:7;38547:418;;;-1:-1:-1;;;;;38611:31:0;;38576:15;38611:31;;;:25;:31;;;;;;;;38608:188;;;-1:-1:-1;38673:11:0;;;;38608:188;;;-1:-1:-1;;;;;38708:29:0;;;;;;:25;:29;;;;;;;;38705:91;;;-1:-1:-1;38768:12:0;;;;;;;38705:91;38809:12;38824:30;38849:4;38824:20;:6;:20;;;:10;:20::i;:::-;:24;;:30::i;:::-;38809:45;-1:-1:-1;38878:16:0;:6;38809:45;38878:10;:16::i;:::-;38869:25;;38909:42;38925:4;38939;38946;38909:15;:42::i;:::-;38559:406;;38547:418;38977:33;38993:4;38999:2;39003:6;38977:15;:33::i;:::-;37499:1521;;;37386:1634;;;:::o;19318:173::-;19393:6;;;-1:-1:-1;;;;;19410:17:0;;;-1:-1:-1;;;;;;19410:17:0;;;;;;;19443:40;;19393:6;;;19410:17;19393:6;;19443:40;;19374:16;;19443:40;19363:128;19318:173;:::o;36932:313::-;-1:-1:-1;;;;;37023:31:0;;;;;;:25;:31;;;;;;:40;;;:31;;;;:40;;;37015:114;;;;-1:-1:-1;;;37015:114:0;;12521:2:1;37015:114:0;;;12503:21:1;12560:2;12540:18;;;12533:30;12599:34;12579:18;;;12572:62;12670:31;12650:18;;;12643:59;12719:19;;37015:114:0;12319:425:1;37015:114:0;-1:-1:-1;;;;;37140:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;37140:39:0;;;;;;;;;;37197:40;;37140:39;;:31;37197:40;;;36932:313;;:::o;26911:733::-;-1:-1:-1;;;;;27051:20:0;;27043:70;;;;-1:-1:-1;;;27043:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27132:23:0;;27124:71;;;;-1:-1:-1;;;27124:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27292:17:0;;27268:21;27292:17;;;;;;;;;;;27328:23;;;;27320:74;;;;-1:-1:-1;;;27320:74:0;;12951:2:1;27320:74:0;;;12933:21:1;12990:2;12970:18;;;12963:30;13029:34;13009:18;;;13002:62;-1:-1:-1;;;13080:18:1;;;13073:36;13126:19;;27320:74:0;12749:402:1;27320:74:0;-1:-1:-1;;;;;27430:17:0;;;:9;:17;;;;;;;;;;;27450:22;;;27430:42;;27494:20;;;;;;;;:30;;27466:6;;27430:9;27494:30;;27466:6;;27494:30;:::i;:::-;;;;;;;;27559:9;-1:-1:-1;;;;;27542:35:0;27551:6;-1:-1:-1;;;;;27542:35:0;;27570:6;27542:35;;;;1806:25:1;;1794:2;1779:18;;1660:177;27542:35:0;;;;;;;;27032:612;26911:733;;;:::o;39028:612::-;39120:12;;39086:17;;39106:26;;39120:12;;;;;;;39106:11;:26;:::i;:::-;39086:46;;;;39177:24;39194:6;39177:16;:24::i;:::-;39397:7;:18;39377:6;:17;39305:21;;39284:18;;39362:69;;39421:9;;39362:54;;39377:38;;39397:18;;;;;39377:17;:38;:::i;:::-;39362:10;;:54;;:14;:54::i;:69::-;39452:21;;39444:53;;39339:92;;-1:-1:-1;;;;;;39452:21:0;;39444:53;;;;;39339:92;;39452:21;39444:53;39452:21;39444:53;39339:92;39452:21;39444:53;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39518:18:0;;39510:59;;-1:-1:-1;;;;;39518:18:0;;;;;;;;;39547:21;39510:59;;;;;;;;;39547:21;39518:18;39510:59;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39587:45:0;;;13358:25:1;;;13414:2;13399:18;;13392:34;;;13442:18;;;13435:34;;;39587:45:0;;13346:2:1;13331:18;39587:45:0;;;;;;;39073:567;;;39028:612;:::o;9460:98::-;9518:7;9545:5;9549:1;9545;:5;:::i;:::-;9538:12;9460:98;-1:-1:-1;;;9460:98:0:o;9859:::-;9917:7;9944:5;9948:1;9944;:5;:::i;9103:98::-;9161:7;9188:5;9192:1;9188;:5;:::i;39650:593::-;39802:16;;;39816:1;39802:16;;;;;;;;39778:21;;39802:16;;;;;;;;;;-1:-1:-1;39802:16:0;39778:40;;39847:4;39829;39834:1;39829:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39829:23:0;;;:7;;;;;;;;;;:23;;;;39873:15;;:22;;;-1:-1:-1;;;39873:22:0;;;;:15;;;;;:20;;:22;;;;;39829:7;;39873:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39863:4;39868:1;39863:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39863:32:0;;;:7;;;;;;;;;:32;39940:15;;39908:62;;39925:4;;39940:15;39958:11;39908:8;:62::i;:::-;40009:15;;:224;;-1:-1:-1;;;40009:224:0;;-1:-1:-1;;;;;40009:15:0;;;;:66;;:224;;40090:11;;40009:15;;40160:4;;40187;;40207:15;;40009:224;;;:::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;1215:180::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;-1:-1:-1;1366:23:1;;1215:180;-1:-1:-1;1215:180:1:o;1400:255::-;1467:6;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1575:9;1562:23;1594:31;1619:5;1594:31;:::i;2094:456::-;2171:6;2179;2187;2240:2;2228:9;2219:7;2215:23;2211:32;2208:52;;;2256:1;2253;2246:12;2208:52;2295:9;2282:23;2314:31;2339:5;2314:31;:::i;:::-;2364:5;-1:-1:-1;2421:2:1;2406:18;;2393:32;2434:33;2393:32;2434:33;:::i;:::-;2094:456;;2486:7;;-1:-1:-1;;;2540:2:1;2525:18;;;;2512:32;;2094:456::o;3036:160::-;3101:20;;3157:13;;3150:21;3140:32;;3130:60;;3186:1;3183;3176:12;3130:60;3036:160;;;:::o;3201:315::-;3266:6;3274;3327:2;3315:9;3306:7;3302:23;3298:32;3295:52;;;3343:1;3340;3333:12;3295:52;3382:9;3369:23;3401:31;3426:5;3401:31;:::i;:::-;3451:5;-1:-1:-1;3475:35:1;3506:2;3491:18;;3475:35;:::i;:::-;3465:45;;3201:315;;;;;:::o;3729:159::-;3796:20;;3856:6;3845:18;;3835:29;;3825:57;;3878:1;3875;3868:12;3893:256;3959:6;3967;4020:2;4008:9;3999:7;3995:23;3991:32;3988:52;;;4036:1;4033;4026:12;3988:52;4059:28;4077:9;4059:28;:::i;:::-;4049:38;;4106:37;4139:2;4128:9;4124:18;4106:37;:::i;4154:689::-;4246:6;4254;4262;4315:2;4303:9;4294:7;4290:23;4286:32;4283:52;;;4331:1;4328;4321:12;4283:52;4371:9;4358:23;4400:18;4441:2;4433:6;4430:14;4427:34;;;4457:1;4454;4447:12;4427:34;4495:6;4484:9;4480:22;4470:32;;4540:7;4533:4;4529:2;4525:13;4521:27;4511:55;;4562:1;4559;4552:12;4511:55;4602:2;4589:16;4628:2;4620:6;4617:14;4614:34;;;4644:1;4641;4634:12;4614:34;4699:7;4692:4;4682:6;4679:1;4675:14;4671:2;4667:23;4663:34;4660:47;4657:67;;;4720:1;4717;4710:12;4657:67;4751:4;4743:13;;;;-1:-1:-1;4775:6:1;-1:-1:-1;4800:37:1;;4816:20;;;-1:-1:-1;4800:37:1;:::i;:::-;4790:47;;4154:689;;;;;:::o;4848:388::-;4916:6;4924;4977:2;4965:9;4956:7;4952:23;4948:32;4945:52;;;4993:1;4990;4983:12;4945:52;5032:9;5019:23;5051:31;5076:5;5051:31;:::i;:::-;5101:5;-1:-1:-1;5158:2:1;5143:18;;5130:32;5171:33;5130:32;5171:33;:::i;:::-;5223:7;5213:17;;;4848:388;;;;;:::o;5241:180::-;5297:6;5350:2;5338:9;5329:7;5325:23;5321:32;5318:52;;;5366:1;5363;5356:12;5318:52;5389:26;5405:9;5389:26;:::i;5426:380::-;5505:1;5501:12;;;;5548;;;5569:61;;5623:4;5615:6;5611:17;5601:27;;5569:61;5676:2;5668:6;5665:14;5645:18;5642:38;5639:161;;5722:10;5717:3;5713:20;5710:1;5703:31;5757:4;5754:1;5747:15;5785:4;5782:1;5775:15;5639:161;;5426:380;;;:::o;5811:356::-;6013:2;5995:21;;;6032:18;;;6025:30;6091:34;6086:2;6071:18;;6064:62;6158:2;6143:18;;5811:356::o;6581:127::-;6642:10;6637:3;6633:20;6630:1;6623:31;6673:4;6670:1;6663:15;6697:4;6694:1;6687:15;6713:125;6778:9;;;6799:10;;;6796:36;;;6812:18;;:::i;7252:251::-;7322:6;7375:2;7363:9;7354:7;7350:23;7346:32;7343:52;;;7391:1;7388;7381:12;7343:52;7423:9;7417:16;7442:31;7467:5;7442:31;:::i;7817:168::-;7884:6;7910:10;;;7922;;;7906:27;;7945:11;;;7942:37;;;7959:18;;:::i;:::-;7942:37;7817:168;;;;:::o;8875:127::-;8936:10;8931:3;8927:20;8924:1;8917:31;8967:4;8964:1;8957:15;8991:4;8988:1;8981:15;9007:135;9046:3;9067:17;;;9064:43;;9087:18;;:::i;:::-;-1:-1:-1;9134:1:1;9123:13;;9007:135::o;9147:794::-;9369:2;9381:21;;;9354:18;;9437:22;;;9321:4;9516:6;9490:2;9475:18;;9321:4;9550:304;9564:6;9561:1;9558:13;9550:304;;;9639:6;9626:20;9659:31;9684:5;9659:31;:::i;:::-;-1:-1:-1;;;;;9715:31:1;9703:44;;9770:4;9829:15;;;;9794:12;;;;9743:1;9579:9;9550:304;;;9554:3;9871;9863:11;;;;9926:6;9919:14;9912:22;9905:4;9894:9;9890:20;9883:52;9147:794;;;;;;:::o;11161:401::-;11363:2;11345:21;;;11402:2;11382:18;;;11375:30;11441:34;11436:2;11421:18;;11414:62;-1:-1:-1;;;11507:2:1;11492:18;;11485:35;11552:3;11537:19;;11161:401::o;11567:399::-;11769:2;11751:21;;;11808:2;11788:18;;;11781:30;11847:34;11842:2;11827:18;;11820:62;-1:-1:-1;;;11913:2:1;11898:18;;11891:33;11956:3;11941:19;;11567:399::o;13480:168::-;13553:9;;;13584;;13601:15;;;13595:22;;13581:37;13571:71;;13622:18;;:::i;13653:217::-;13693:1;13719;13709:132;;13763:10;13758:3;13754:20;13751:1;13744:31;13798:4;13795:1;13788:15;13826:4;13823:1;13816:15;13709:132;-1:-1:-1;13855:9:1;;13653:217::o;13875:128::-;13942:9;;;13963:11;;;13960:37;;;13977:18;;:::i;14140:980::-;14402:4;14450:3;14439:9;14435:19;14481:6;14470:9;14463:25;14507:2;14545:6;14540:2;14529:9;14525:18;14518:34;14588:3;14583:2;14572:9;14568:18;14561:31;14612:6;14647;14641:13;14678:6;14670;14663:22;14716:3;14705:9;14701:19;14694:26;;14755:2;14747:6;14743:15;14729:29;;14776:1;14786:195;14800:6;14797:1;14794:13;14786:195;;;14865:13;;-1:-1:-1;;;;;14861:39:1;14849:52;;14956:15;;;;14921:12;;;;14897:1;14815:9;14786:195;;;-1:-1:-1;;;;;;;15037:32:1;;;;15032:2;15017:18;;15010:60;-1:-1:-1;;;15101:3:1;15086:19;15079:35;14998:3;14140:980;-1:-1:-1;;;14140:980:1:o

Swarm Source

ipfs://70f5c45cf4f1b1a2803243b0da11c7584df0356699fb9c4a4a5a6f8912c7c16a
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.