ETH Price: $3,335.36 (-1.75%)
Gas: 37 Gwei

Token

Doge Pup (Doge)
 

Overview

Max Total Supply

1,000,000 Doge

Holders

6

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,249.869121855668233043 Doge

Value
$0.00
0xd38182442b0Dfb93278e8c74c62F3f11bbdEEb33
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:
DogePup

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-06
*/

/**

// SPDX-License-Identifier: Unlicensed

/*
https://t.me/Doge_Pup
*/

pragma solidity 0.8.13;

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using this function
 * 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 guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 _createInitialSupply(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 {}
}

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


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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SignedSafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SignedSafeMath {
    /**
     * @dev Returns the multiplication of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        return a * b;
    }

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

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

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

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

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCast {
    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}

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

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private inSwapAndLiquify;

    bool public swapAndLiquifyEnabled = true;

    bool public enableEarlySellTax = true;

    uint256 public maxSellTransactionAmount = 1000000 * (10**18);
    uint256 public maxBuyTransactionAmount = 15000 * (10**18);
    uint256 public swapTokensAtAmount = 1000 * (10**18);
    uint256 public maxWalletToken = 30000 * (10**18);

    uint256 private buyTotalFees = 0;
    uint256 public sellTotalFees = 0;
    uint256 public earlySellTotalFee = 20;

    // auto burn fee
    uint256 public burnFee = 0;
    address public deadWallet = 0x000000000000000000000000000000000000dEaD;
    

    // distribute the collected tax percentage wise
    uint256 public liquidityPercent = 75; // 33% of total collected tax
    uint256 public marketingPercent = 15; // 34% of total collected tax
    uint256 public devPercent = 10; // 33% of total collected tax


    address payable public marketingWallet = payable(0x7a2fA328B46a2734605a1534c34B1a6E428B9942);
    address payable public devWallet = payable(0x4b583Fd13eb9d90dd66b4eD9eD1FE0385a477D8f);
    
    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;

    // 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;
    mapping (address => uint256) public lastTxTimestamp;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event SwapAndLiquifyEnabledUpdated(bool enabled);

    event SwapAndLiquify(
        uint256 tokensIntoLiqudity,
        uint256 ethReceived
    );

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() ERC20("Doge Pup", "Doge") {

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

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(devWallet, true);
        excludeFromFees(address(this), true);
        
        /*
            an internal function that is only called here,
            and CANNOT be called ever again
        */
        _createInitialSupply(owner(), 1000000 * (10**18));
    }

    receive() external payable {

  	}

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(newAddress != address(uniswapV2Router), "KCoin: The router already has that address");
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "KCoin: Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }
   
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "KCoin: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "KCoin: 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 setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

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

        if(amount == 0) { 
            super._transfer(from, to, 0);
            return;
        }
        
        if(automatedMarketMakerPairs[from] && (!_isExcludedFromFees[from]) && (!_isExcludedFromFees[to])) {
            require(amount <= maxBuyTransactionAmount, "amount exceeds the maxBuyTransactionAmount.");
            uint256 contractBalanceRecepient = balanceOf(to);
            require(contractBalanceRecepient + amount <= maxWalletToken,"Exceeds maximum wallet token amount.");
            lastTxTimestamp[to] = block.timestamp;
            
        }

        if(automatedMarketMakerPairs[to] && (!_isExcludedFromFees[from]) && (!_isExcludedFromFees[to])) {
            require(amount <= maxSellTransactionAmount, "amount exceeds the maxSellTransactionAmount.");
        }
        

    	uint256 contractTokenBalance = balanceOf(address(this));
        
        bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount;
       
        if(
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            automatedMarketMakerPairs[to] && 
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = swapTokensAtAmount;
            swapAndLiquify(contractTokenBalance);
        }

        uint256 fees = 0;
        uint256 burnShare = 0;
         // if any account belongs to _isExcludedFromFee account then remove the fee
        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            uint256 _totalFees = buyTotalFees;

            if (automatedMarketMakerPairs[to]) {   
                uint256 span = block.timestamp-lastTxTimestamp[from];
                if(enableEarlySellTax && span <= 24 hours) {
                    _totalFees = earlySellTotalFee;
                }
                else if(!enableEarlySellTax) {
                    _totalFees = sellTotalFees;
                }
            }

            fees = amount.mul(_totalFees).div(100);
            burnShare = amount.mul(burnFee).div(100);
            if(fees > 0) {
                super._transfer(from, address(this), fees);
            }

            if(burnShare > 0) {
                super._transfer(from, deadWallet, burnShare);
            }

            amount = amount.sub(fees.add(burnShare));
        }

        super._transfer(from, to, amount);

    }

     function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 tokensForLiquidity = contractTokenBalance.mul(liquidityPercent).div(100);
        // split the Liquidity token balance into halves
        uint256 half = tokensForLiquidity.div(2);
        uint256 otherHalf = tokensForLiquidity.sub(half);
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;
        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered
        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);
        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        // swap and Send  Eth to marketing, dev wallets
        swapTokensForEth(contractTokenBalance.sub(tokensForLiquidity));
        marketingWallet.transfer(address(this).balance.mul(marketingPercent).div(marketingPercent.add(devPercent)));
        devWallet.transfer(address(this).balance);
        emit SwapAndLiquify(half, newBalance); 
    }

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

        if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) {
          _approve(address(this), address(uniswapV2Router), ~uint256(0));
        }

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
        
    }

    function setMaxSellTransaction(uint256 _maxSellTxAmount) public onlyOwner {
        maxSellTransactionAmount = _maxSellTxAmount;
        require(maxSellTransactionAmount>totalSupply().div(1000), "value is too low");
    }
    
    function setMaxBuyTransaction(uint256 _maxBuyTxAmount) public onlyOwner {
        maxBuyTransactionAmount = _maxBuyTxAmount;
        require(maxBuyTransactionAmount>totalSupply().div(1000), "value is too low");
    }

    function setSwapTokensAtAmouunt(uint256 _newAmount) public onlyOwner {
        swapTokensAtAmount = _newAmount;
    }

    function setMarketingWallet(address payable wallet) public onlyOwner {
        marketingWallet = wallet;
    }

    function setDevWallet(address payable wallet) public onlyOwner {
        devWallet = wallet;
    }

    function updateBuyTotalTax(uint256 _buyTotalFees) public onlyOwner {
        buyTotalFees = _buyTotalFees;
        require(buyTotalFees <= 10, "Fee too high");
    }

   function updateSellTotalTax(uint256 _sellTotalFees) public onlyOwner {
        sellTotalFees = _sellTotalFees;
        require(sellTotalFees <= 10, "Fee too high");
    }

    function updateEarlySellTotalTax(uint256 _earlySellTotalFee) public onlyOwner {
        earlySellTotalFee = _earlySellTotalFee;
        require(earlySellTotalFee <= 20, "Fee too high");
    }

    function updateTaxDistributionPercentage(uint256 _liquidityPercent, uint256 _marketingPercent, uint256 _devPercent) public onlyOwner {
        require(_liquidityPercent.add(_marketingPercent).add(_devPercent) == 100, "total percentage must be equal to 100");
        liquidityPercent = _liquidityPercent;
        marketingPercent = _marketingPercent;
        devPercent = _devPercent;  
    }

    function setEarlySellTax(bool onoff) external onlyOwner  {
        enableEarlySellTax = onoff;
    }

    function setAutoBurn(uint256 _burnFee) external onlyOwner  {
        require(_burnFee <= 5, "value too high");
        burnFee = _burnFee;
    }

    function setMaxWalletToken(uint256 _maxToken) external onlyOwner {
        maxWalletToken = _maxToken;
        require(maxWalletToken>totalSupply().div(1000), "value is too low");
  	}

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","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":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"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":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableEarlySellTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":[{"internalType":"address","name":"","type":"address"}],"name":"lastTxTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"setAutoBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setEarlySellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyTxAmount","type":"uint256"}],"name":"setMaxBuyTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellTxAmount","type":"uint256"}],"name":"setMaxSellTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxToken","type":"uint256"}],"name":"setMaxWalletToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmouunt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTotalFees","type":"uint256"}],"name":"updateBuyTotalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_earlySellTotalFee","type":"uint256"}],"name":"updateEarlySellTotalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTotalFees","type":"uint256"}],"name":"updateSellTotalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityPercent","type":"uint256"},{"internalType":"uint256","name":"_marketingPercent","type":"uint256"},{"internalType":"uint256","name":"_devPercent","type":"uint256"}],"name":"updateTaxDistributionPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526006805461010160a81b61ffff60a81b1990911617905569d3c21bcecceda100000060075569032d26d12e980b600000600855683635c9adc5dea0000060095569065a4da25d3016c00000600a9081556000600b819055600c8190556014600d819055600e91909155600f80546001600160a01b031990811661dead178255604b601055601191909155601292909255601380548316737a2fa328b46a2734605a1534c34b1a6e428b99421790558054909116734b583fd13eb9d90dd66b4ed9ed1fe0385a477d8f179055348015620000dc57600080fd5b5060408051808201825260088152670446f6765205075760c41b602080830191825283518085019094526004845263446f676560e01b9084015281519192916200012991600391620006f8565b5080516200013f906004906020840190620006f8565b5050506200015c620001566200038660201b60201c565b6200038a565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001dc91906200079e565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025091906200079e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200029e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c491906200079e565b600680546001600160a01b0319166001600160a01b038581169190911790915581166080529050620002f8816001620003dc565b620003176200030f6005546001600160a01b031690565b6001620004cc565b60135462000330906001600160a01b03166001620004cc565b60145462000349906001600160a01b03166001620004cc565b62000356306001620004cc565b6200037e6200036d6005546001600160a01b031690565b69d3c21bcecceda100000062000613565b505062000833565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526016602052604090205481151560ff909116151503620004785760405162461bcd60e51b815260206004820152603f60248201527f4b436f696e3a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c75650060648201526084015b60405180910390fd5b6001600160a01b038216600081815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200046f565b6001600160a01b03821660009081526015602052604090205481151560ff909116151503620005b45760405162461bcd60e51b815260206004820152603160248201527f4b436f696e3a204163636f756e7420697320616c7265616479207468652076616044820152706c7565206f6620276578636c756465642760781b60648201526084016200046f565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200066b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200046f565b80600260008282546200067f9190620007d0565b90915550506001600160a01b03821660009081526020819052604081208054839290620006ae908490620007d0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200070690620007f7565b90600052602060002090601f0160209004810192826200072a576000855562000775565b82601f106200074557805160ff191683800117855562000775565b8280016001018555821562000775579182015b828111156200077557825182559160200191906001019062000758565b506200078392915062000787565b5090565b5b8082111562000783576000815560010162000788565b600060208284031215620007b157600080fd5b81516001600160a01b0381168114620007c957600080fd5b9392505050565b60008219821115620007f257634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200080c57607f821691505b6020821081036200082d57634e487b7160e01b600052602260045260246000fd5b50919050565b6080516124ed62000856600039600081816104940152610f2a01526124ed6000f3fe6080604052600436106102cd5760003560e01c806375f0a87411610175578063b2f5260a116100dc578063dd62ed3e11610095578063e6c75f711161006f578063e6c75f71146108f3578063f2fde38b14610909578063fc3c28af14610929578063fce589d81461093f57600080fd5b8063dd62ed3e14610877578063e2f45605146108bd578063e5c4005c146108d357600080fd5b8063b2f5260a146107b1578063b3b5e043146107d1578063b62496f5146107f1578063c024666814610821578063c49b9a8014610841578063d8020a181461086157600080fd5b80639a7a23d61161012e5780639a7a23d6146106fa578063a26577781461071a578063a457c2d71461073a578063a4d15b641461075a578063a9059cbb1461077b578063b06837551461079b57600080fd5b806375f0a8741461064757806385141a77146106675780638da5cb5b146106875780638ea5220f146106a557806391d55f41146106c557806395d89b41146106e557600080fd5b806349bd5a5e116102345780635d098b38116101ed5780636a486a8e116101c75780636a486a8e146105c657806370a08231146105dc578063715018a614610612578063750c11b61461062757600080fd5b80635d098b38146105665780636078a9b51461058657806365b8dbc0146105a657600080fd5b806349bd5a5e146104825780634a74bb02146104b65780634fbee193146104d7578063533f9630146105105780635aa821a9146105305780635c38ffe21461054657600080fd5b80631aa04b88116102865780631aa04b88146103c35780631f53ac02146103d957806323b872dd146103f9578063313ce5671461041957806339509351146104355780634551bbe91461045557600080fd5b806302259e9e146102d957806306fdde0314610302578063095ea7b3146103245780630db722c4146103545780631694505e1461037657806318160ddd146103ae57600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ef60075481565b6040519081526020015b60405180910390f35b34801561030e57600080fd5b50610317610955565b6040516102f99190612041565b34801561033057600080fd5b5061034461033f3660046120ab565b6109e7565b60405190151581526020016102f9565b34801561036057600080fd5b5061037461036f3660046120d7565b6109fd565b005b34801561038257600080fd5b50600654610396906001600160a01b031681565b6040516001600160a01b0390911681526020016102f9565b3480156103ba57600080fd5b506002546102ef565b3480156103cf57600080fd5b506102ef600d5481565b3480156103e557600080fd5b506103746103f4366004612103565b610aaf565b34801561040557600080fd5b50610344610414366004612120565b610afb565b34801561042557600080fd5b50604051601281526020016102f9565b34801561044157600080fd5b506103446104503660046120ab565b610ba5565b34801561046157600080fd5b506102ef610470366004612103565b60176020526000908152604090205481565b34801561048e57600080fd5b506103967f000000000000000000000000000000000000000000000000000000000000000081565b3480156104c257600080fd5b5060065461034490600160a81b900460ff1681565b3480156104e357600080fd5b506103446104f2366004612103565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561051c57600080fd5b5061037461052b366004612161565b610be1565b34801561053c57600080fd5b506102ef60085481565b34801561055257600080fd5b50610374610561366004612161565b610c34565b34801561057257600080fd5b50610374610581366004612103565b610c98565b34801561059257600080fd5b506103746105a1366004612161565b610ce4565b3480156105b257600080fd5b506103746105c1366004612103565b610d34565b3480156105d257600080fd5b506102ef600c5481565b3480156105e857600080fd5b506102ef6105f7366004612103565b6001600160a01b031660009081526020819052604090205490565b34801561061e57600080fd5b50610374610e2c565b34801561063357600080fd5b50610374610642366004612161565b610e62565b34801561065357600080fd5b50601354610396906001600160a01b031681565b34801561067357600080fd5b50600f54610396906001600160a01b031681565b34801561069357600080fd5b506005546001600160a01b0316610396565b3480156106b157600080fd5b50601454610396906001600160a01b031681565b3480156106d157600080fd5b506103746106e0366004612161565b610e91565b3480156106f157600080fd5b50610317610eef565b34801561070657600080fd5b5061037461071536600461218f565b610efe565b34801561072657600080fd5b506103746107353660046121c4565b610ff2565b34801561074657600080fd5b506103446107553660046120ab565b61103a565b34801561076657600080fd5b5060065461034490600160b01b900460ff1681565b34801561078757600080fd5b506103446107963660046120ab565b6110d3565b3480156107a757600080fd5b506102ef60105481565b3480156107bd57600080fd5b506103746107cc366004612161565b6110e0565b3480156107dd57600080fd5b506103746107ec366004612161565b611130565b3480156107fd57600080fd5b5061034461080c366004612103565b60166020526000908152604090205460ff1681565b34801561082d57600080fd5b5061037461083c36600461218f565b61118e565b34801561084d57600080fd5b5061037461085c3660046121c4565b6112a1565b34801561086d57600080fd5b506102ef60115481565b34801561088357600080fd5b506102ef6108923660046121df565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108c957600080fd5b506102ef60095481565b3480156108df57600080fd5b506103746108ee366004612161565b611323565b3480156108ff57600080fd5b506102ef600a5481565b34801561091557600080fd5b50610374610924366004612103565b611394565b34801561093557600080fd5b506102ef60125481565b34801561094b57600080fd5b506102ef600e5481565b60606003805461096490612218565b80601f016020809104026020016040519081016040528092919081815260200182805461099090612218565b80156109dd5780601f106109b2576101008083540402835291602001916109dd565b820191906000526020600020905b8154815290600101906020018083116109c057829003601f168201915b5050505050905090565b60006109f433848461142c565b50600192915050565b6005546001600160a01b03163314610a305760405162461bcd60e51b8152600401610a2790612252565b60405180910390fd5b610a4481610a3e8585611550565b90611550565b606414610aa15760405162461bcd60e51b815260206004820152602560248201527f746f74616c2070657263656e74616765206d75737420626520657175616c207460448201526406f203130360dc1b6064820152608401610a27565b601092909255601155601255565b6005546001600160a01b03163314610ad95760405162461bcd60e51b8152600401610a2790612252565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b08848484611563565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b8d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a27565b610b9a853385840361142c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109f4918590610bdc90869061229d565b61142c565b6005546001600160a01b03163314610c0b5760405162461bcd60e51b8152600401610a2790612252565b600b819055600a811115610c315760405162461bcd60e51b8152600401610a27906122b5565b50565b6005546001600160a01b03163314610c5e5760405162461bcd60e51b8152600401610a2790612252565b6007819055610c786103e8610c7260025490565b906119e1565b60075411610c315760405162461bcd60e51b8152600401610a27906122db565b6005546001600160a01b03163314610cc25760405162461bcd60e51b8152600401610a2790612252565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b8152600401610a2790612252565b600d8190556014811115610c315760405162461bcd60e51b8152600401610a27906122b5565b6005546001600160a01b03163314610d5e5760405162461bcd60e51b8152600401610a2790612252565b6006546001600160a01b0390811690821603610dcf5760405162461bcd60e51b815260206004820152602a60248201527f4b436f696e3a2054686520726f7574657220616c7265616479206861732074686044820152696174206164647265737360b01b6064820152608401610a27565b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e565760405162461bcd60e51b8152600401610a2790612252565b610e6060006119ed565b565b6005546001600160a01b03163314610e8c5760405162461bcd60e51b8152600401610a2790612252565b600955565b6005546001600160a01b03163314610ebb5760405162461bcd60e51b8152600401610a2790612252565b600a819055610ecf6103e8610c7260025490565b600a5411610c315760405162461bcd60e51b8152600401610a27906122db565b60606004805461096490612218565b6005546001600160a01b03163314610f285760405162461bcd60e51b8152600401610a2790612252565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610fe45760405162461bcd60e51b815260206004820152604c60248201527f4b436f696e3a205468652050616e63616b655377617020706169722063616e6e60448201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60648201526b65744d616b6572506169727360a01b608482015260a401610a27565b610fee8282611a3f565b5050565b6005546001600160a01b0316331461101c5760405162461bcd60e51b8152600401610a2790612252565b60068054911515600160b01b0260ff60b01b19909216919091179055565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110bc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a27565b6110c9338585840361142c565b5060019392505050565b60006109f4338484611563565b6005546001600160a01b0316331461110a5760405162461bcd60e51b8152600401610a2790612252565b600c819055600a811115610c315760405162461bcd60e51b8152600401610a27906122b5565b6005546001600160a01b0316331461115a5760405162461bcd60e51b8152600401610a2790612252565b600881905561116e6103e8610c7260025490565b60085411610c315760405162461bcd60e51b8152600401610a27906122db565b6005546001600160a01b031633146111b85760405162461bcd60e51b8152600401610a2790612252565b6001600160a01b03821660009081526015602052604090205481151560ff9091161515036112425760405162461bcd60e51b815260206004820152603160248201527f4b436f696e3a204163636f756e7420697320616c7265616479207468652076616044820152706c7565206f6620276578636c756465642760781b6064820152608401610a27565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146112cb5760405162461bcd60e51b8152600401610a2790612252565b60068054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061131890831515815260200190565b60405180910390a150565b6005546001600160a01b0316331461134d5760405162461bcd60e51b8152600401610a2790612252565b600581111561138f5760405162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40e8dede40d0d2ced60931b6044820152606401610a27565b600e55565b6005546001600160a01b031633146113be5760405162461bcd60e51b8152600401610a2790612252565b6001600160a01b0381166114235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a27565b610c31816119ed565b6001600160a01b03831661148e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a27565b6001600160a01b0382166114ef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a27565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061155c828461229d565b9392505050565b6001600160a01b0383166115895760405162461bcd60e51b8152600401610a2790612305565b6001600160a01b0382166115af5760405162461bcd60e51b8152600401610a279061234a565b806000036115c8576115c383836000611b29565b505050565b6001600160a01b03831660009081526016602052604090205460ff16801561160957506001600160a01b03831660009081526015602052604090205460ff16155b801561162e57506001600160a01b03821660009081526015602052604090205460ff16155b15611736576008548111156116995760405162461bcd60e51b815260206004820152602b60248201527f616d6f756e74206578636565647320746865206d61784275795472616e73616360448201526a3a34b7b720b6b7bab73a1760a91b6064820152608401610a27565b6001600160a01b038216600090815260208190526040902054600a546116bf838361229d565b11156117195760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610a27565b506001600160a01b03821660009081526017602052604090204290555b6001600160a01b03821660009081526016602052604090205460ff16801561177757506001600160a01b03831660009081526015602052604090205460ff16155b801561179c57506001600160a01b03821660009081526015602052604090205460ff16155b15611808576007548111156118085760405162461bcd60e51b815260206004820152602c60248201527f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160448201526b31ba34b7b720b6b7bab73a1760a11b6064820152608401610a27565b30600090815260208190526040902054600954811080159081906118365750600654600160a01b900460ff16155b801561185a57506001600160a01b03841660009081526016602052604090205460ff165b801561186f5750600654600160a81b900460ff165b1561188257600954915061188282611c7e565b6001600160a01b038516600090815260156020526040812054819060ff161580156118c657506001600160a01b03861660009081526015602052604090205460ff16155b156119cd57600b546001600160a01b03871660009081526016602052604090205460ff1615611959576001600160a01b038816600090815260176020526040812054611912904261238d565b600654909150600160b01b900460ff1680156119315750620151808111155b1561194057600d549150611957565b600654600160b01b900460ff1661195757600c5491505b505b6119686064610c728884611de1565b92506119846064610c72600e5489611de190919063ffffffff16565b9150821561199757611997883085611b29565b81156119b557600f546119b59089906001600160a01b031684611b29565b6119c96119c28484611550565b8790611ded565b9550505b6119d8878787611b29565b50505050505050565b600061155c82846123a4565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526016602052604090205481151560ff909116151503611ad55760405162461bcd60e51b815260206004820152603f60248201527f4b436f696e3a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c7565006064820152608401610a27565b6001600160a01b038216600081815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611b4f5760405162461bcd60e51b8152600401610a2790612305565b6001600160a01b038216611b755760405162461bcd60e51b8152600401610a279061234a565b6001600160a01b03831660009081526020819052604090205481811015611bed5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a27565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c2490849061229d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c7091815260200190565b60405180910390a350505050565b6006805460ff60a01b1916600160a01b179055601054600090611ca990606490610c72908590611de1565b90506000611cb88260026119e1565b90506000611cc68383611ded565b905047611cd283611df9565b6000611cde4783611ded565b9050611cea8382611f84565b611cfc611cf78787611ded565b611df9565b6013546012546011546001600160a01b03909216916108fc91611d3091611d2291611550565b601154610c72904790611de1565b6040518115909202916000818181858888f19350505050158015611d58573d6000803e3d6000fd5b506014546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611d92573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506006805460ff60a01b1916905550505050565b600061155c82846123c6565b600061155c828461238d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e2e57611e2e6123e5565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611e87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eab91906123fb565b81600181518110611ebe57611ebe6123e5565b6001600160a01b0392831660209182029290920181019190915260065430600090815260018352604080822092909416815291522054821115611f1557600654611f159030906001600160a01b031660001961142c565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611f4e908590600090869030904290600401612418565b600060405180830381600087803b158015611f6857600080fd5b505af1158015611f7c573d6000803e3d6000fd5b505050505050565b6006546001600160a01b031663f305d719823085600080611fad6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612015573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061203a9190612489565b5050505050565b600060208083528351808285015260005b8181101561206e57858101830151858201604001528201612052565b81811115612080576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610c3157600080fd5b600080604083850312156120be57600080fd5b82356120c981612096565b946020939093013593505050565b6000806000606084860312156120ec57600080fd5b505081359360208301359350604090920135919050565b60006020828403121561211557600080fd5b813561155c81612096565b60008060006060848603121561213557600080fd5b833561214081612096565b9250602084013561215081612096565b929592945050506040919091013590565b60006020828403121561217357600080fd5b5035919050565b8035801515811461218a57600080fd5b919050565b600080604083850312156121a257600080fd5b82356121ad81612096565b91506121bb6020840161217a565b90509250929050565b6000602082840312156121d657600080fd5b61155c8261217a565b600080604083850312156121f257600080fd5b82356121fd81612096565b9150602083013561220d81612096565b809150509250929050565b600181811c9082168061222c57607f821691505b60208210810361224c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156122b0576122b0612287565b500190565b6020808252600c908201526b08ccaca40e8dede40d0d2ced60a31b604082015260600190565b60208082526010908201526f76616c756520697320746f6f206c6f7760801b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561239f5761239f612287565b500390565b6000826123c157634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156123e0576123e0612287565b500290565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561240d57600080fd5b815161155c81612096565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124685784516001600160a01b031683529383019391830191600101612443565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561249e57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122024120f34a47e9ea37a066392c89c3c952b414d51600cf32a61cd59c1140aaf6064736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c806375f0a87411610175578063b2f5260a116100dc578063dd62ed3e11610095578063e6c75f711161006f578063e6c75f71146108f3578063f2fde38b14610909578063fc3c28af14610929578063fce589d81461093f57600080fd5b8063dd62ed3e14610877578063e2f45605146108bd578063e5c4005c146108d357600080fd5b8063b2f5260a146107b1578063b3b5e043146107d1578063b62496f5146107f1578063c024666814610821578063c49b9a8014610841578063d8020a181461086157600080fd5b80639a7a23d61161012e5780639a7a23d6146106fa578063a26577781461071a578063a457c2d71461073a578063a4d15b641461075a578063a9059cbb1461077b578063b06837551461079b57600080fd5b806375f0a8741461064757806385141a77146106675780638da5cb5b146106875780638ea5220f146106a557806391d55f41146106c557806395d89b41146106e557600080fd5b806349bd5a5e116102345780635d098b38116101ed5780636a486a8e116101c75780636a486a8e146105c657806370a08231146105dc578063715018a614610612578063750c11b61461062757600080fd5b80635d098b38146105665780636078a9b51461058657806365b8dbc0146105a657600080fd5b806349bd5a5e146104825780634a74bb02146104b65780634fbee193146104d7578063533f9630146105105780635aa821a9146105305780635c38ffe21461054657600080fd5b80631aa04b88116102865780631aa04b88146103c35780631f53ac02146103d957806323b872dd146103f9578063313ce5671461041957806339509351146104355780634551bbe91461045557600080fd5b806302259e9e146102d957806306fdde0314610302578063095ea7b3146103245780630db722c4146103545780631694505e1461037657806318160ddd146103ae57600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102ef60075481565b6040519081526020015b60405180910390f35b34801561030e57600080fd5b50610317610955565b6040516102f99190612041565b34801561033057600080fd5b5061034461033f3660046120ab565b6109e7565b60405190151581526020016102f9565b34801561036057600080fd5b5061037461036f3660046120d7565b6109fd565b005b34801561038257600080fd5b50600654610396906001600160a01b031681565b6040516001600160a01b0390911681526020016102f9565b3480156103ba57600080fd5b506002546102ef565b3480156103cf57600080fd5b506102ef600d5481565b3480156103e557600080fd5b506103746103f4366004612103565b610aaf565b34801561040557600080fd5b50610344610414366004612120565b610afb565b34801561042557600080fd5b50604051601281526020016102f9565b34801561044157600080fd5b506103446104503660046120ab565b610ba5565b34801561046157600080fd5b506102ef610470366004612103565b60176020526000908152604090205481565b34801561048e57600080fd5b506103967f000000000000000000000000c2f659de951ce9af1d1191c9e21c788439fa947481565b3480156104c257600080fd5b5060065461034490600160a81b900460ff1681565b3480156104e357600080fd5b506103446104f2366004612103565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561051c57600080fd5b5061037461052b366004612161565b610be1565b34801561053c57600080fd5b506102ef60085481565b34801561055257600080fd5b50610374610561366004612161565b610c34565b34801561057257600080fd5b50610374610581366004612103565b610c98565b34801561059257600080fd5b506103746105a1366004612161565b610ce4565b3480156105b257600080fd5b506103746105c1366004612103565b610d34565b3480156105d257600080fd5b506102ef600c5481565b3480156105e857600080fd5b506102ef6105f7366004612103565b6001600160a01b031660009081526020819052604090205490565b34801561061e57600080fd5b50610374610e2c565b34801561063357600080fd5b50610374610642366004612161565b610e62565b34801561065357600080fd5b50601354610396906001600160a01b031681565b34801561067357600080fd5b50600f54610396906001600160a01b031681565b34801561069357600080fd5b506005546001600160a01b0316610396565b3480156106b157600080fd5b50601454610396906001600160a01b031681565b3480156106d157600080fd5b506103746106e0366004612161565b610e91565b3480156106f157600080fd5b50610317610eef565b34801561070657600080fd5b5061037461071536600461218f565b610efe565b34801561072657600080fd5b506103746107353660046121c4565b610ff2565b34801561074657600080fd5b506103446107553660046120ab565b61103a565b34801561076657600080fd5b5060065461034490600160b01b900460ff1681565b34801561078757600080fd5b506103446107963660046120ab565b6110d3565b3480156107a757600080fd5b506102ef60105481565b3480156107bd57600080fd5b506103746107cc366004612161565b6110e0565b3480156107dd57600080fd5b506103746107ec366004612161565b611130565b3480156107fd57600080fd5b5061034461080c366004612103565b60166020526000908152604090205460ff1681565b34801561082d57600080fd5b5061037461083c36600461218f565b61118e565b34801561084d57600080fd5b5061037461085c3660046121c4565b6112a1565b34801561086d57600080fd5b506102ef60115481565b34801561088357600080fd5b506102ef6108923660046121df565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108c957600080fd5b506102ef60095481565b3480156108df57600080fd5b506103746108ee366004612161565b611323565b3480156108ff57600080fd5b506102ef600a5481565b34801561091557600080fd5b50610374610924366004612103565b611394565b34801561093557600080fd5b506102ef60125481565b34801561094b57600080fd5b506102ef600e5481565b60606003805461096490612218565b80601f016020809104026020016040519081016040528092919081815260200182805461099090612218565b80156109dd5780601f106109b2576101008083540402835291602001916109dd565b820191906000526020600020905b8154815290600101906020018083116109c057829003601f168201915b5050505050905090565b60006109f433848461142c565b50600192915050565b6005546001600160a01b03163314610a305760405162461bcd60e51b8152600401610a2790612252565b60405180910390fd5b610a4481610a3e8585611550565b90611550565b606414610aa15760405162461bcd60e51b815260206004820152602560248201527f746f74616c2070657263656e74616765206d75737420626520657175616c207460448201526406f203130360dc1b6064820152608401610a27565b601092909255601155601255565b6005546001600160a01b03163314610ad95760405162461bcd60e51b8152600401610a2790612252565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b08848484611563565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b8d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a27565b610b9a853385840361142c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109f4918590610bdc90869061229d565b61142c565b6005546001600160a01b03163314610c0b5760405162461bcd60e51b8152600401610a2790612252565b600b819055600a811115610c315760405162461bcd60e51b8152600401610a27906122b5565b50565b6005546001600160a01b03163314610c5e5760405162461bcd60e51b8152600401610a2790612252565b6007819055610c786103e8610c7260025490565b906119e1565b60075411610c315760405162461bcd60e51b8152600401610a27906122db565b6005546001600160a01b03163314610cc25760405162461bcd60e51b8152600401610a2790612252565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b8152600401610a2790612252565b600d8190556014811115610c315760405162461bcd60e51b8152600401610a27906122b5565b6005546001600160a01b03163314610d5e5760405162461bcd60e51b8152600401610a2790612252565b6006546001600160a01b0390811690821603610dcf5760405162461bcd60e51b815260206004820152602a60248201527f4b436f696e3a2054686520726f7574657220616c7265616479206861732074686044820152696174206164647265737360b01b6064820152608401610a27565b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e565760405162461bcd60e51b8152600401610a2790612252565b610e6060006119ed565b565b6005546001600160a01b03163314610e8c5760405162461bcd60e51b8152600401610a2790612252565b600955565b6005546001600160a01b03163314610ebb5760405162461bcd60e51b8152600401610a2790612252565b600a819055610ecf6103e8610c7260025490565b600a5411610c315760405162461bcd60e51b8152600401610a27906122db565b60606004805461096490612218565b6005546001600160a01b03163314610f285760405162461bcd60e51b8152600401610a2790612252565b7f000000000000000000000000c2f659de951ce9af1d1191c9e21c788439fa94746001600160a01b0316826001600160a01b031603610fe45760405162461bcd60e51b815260206004820152604c60248201527f4b436f696e3a205468652050616e63616b655377617020706169722063616e6e60448201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60648201526b65744d616b6572506169727360a01b608482015260a401610a27565b610fee8282611a3f565b5050565b6005546001600160a01b0316331461101c5760405162461bcd60e51b8152600401610a2790612252565b60068054911515600160b01b0260ff60b01b19909216919091179055565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110bc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a27565b6110c9338585840361142c565b5060019392505050565b60006109f4338484611563565b6005546001600160a01b0316331461110a5760405162461bcd60e51b8152600401610a2790612252565b600c819055600a811115610c315760405162461bcd60e51b8152600401610a27906122b5565b6005546001600160a01b0316331461115a5760405162461bcd60e51b8152600401610a2790612252565b600881905561116e6103e8610c7260025490565b60085411610c315760405162461bcd60e51b8152600401610a27906122db565b6005546001600160a01b031633146111b85760405162461bcd60e51b8152600401610a2790612252565b6001600160a01b03821660009081526015602052604090205481151560ff9091161515036112425760405162461bcd60e51b815260206004820152603160248201527f4b436f696e3a204163636f756e7420697320616c7265616479207468652076616044820152706c7565206f6620276578636c756465642760781b6064820152608401610a27565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146112cb5760405162461bcd60e51b8152600401610a2790612252565b60068054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061131890831515815260200190565b60405180910390a150565b6005546001600160a01b0316331461134d5760405162461bcd60e51b8152600401610a2790612252565b600581111561138f5760405162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40e8dede40d0d2ced60931b6044820152606401610a27565b600e55565b6005546001600160a01b031633146113be5760405162461bcd60e51b8152600401610a2790612252565b6001600160a01b0381166114235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a27565b610c31816119ed565b6001600160a01b03831661148e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a27565b6001600160a01b0382166114ef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a27565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061155c828461229d565b9392505050565b6001600160a01b0383166115895760405162461bcd60e51b8152600401610a2790612305565b6001600160a01b0382166115af5760405162461bcd60e51b8152600401610a279061234a565b806000036115c8576115c383836000611b29565b505050565b6001600160a01b03831660009081526016602052604090205460ff16801561160957506001600160a01b03831660009081526015602052604090205460ff16155b801561162e57506001600160a01b03821660009081526015602052604090205460ff16155b15611736576008548111156116995760405162461bcd60e51b815260206004820152602b60248201527f616d6f756e74206578636565647320746865206d61784275795472616e73616360448201526a3a34b7b720b6b7bab73a1760a91b6064820152608401610a27565b6001600160a01b038216600090815260208190526040902054600a546116bf838361229d565b11156117195760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610a27565b506001600160a01b03821660009081526017602052604090204290555b6001600160a01b03821660009081526016602052604090205460ff16801561177757506001600160a01b03831660009081526015602052604090205460ff16155b801561179c57506001600160a01b03821660009081526015602052604090205460ff16155b15611808576007548111156118085760405162461bcd60e51b815260206004820152602c60248201527f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160448201526b31ba34b7b720b6b7bab73a1760a11b6064820152608401610a27565b30600090815260208190526040902054600954811080159081906118365750600654600160a01b900460ff16155b801561185a57506001600160a01b03841660009081526016602052604090205460ff165b801561186f5750600654600160a81b900460ff165b1561188257600954915061188282611c7e565b6001600160a01b038516600090815260156020526040812054819060ff161580156118c657506001600160a01b03861660009081526015602052604090205460ff16155b156119cd57600b546001600160a01b03871660009081526016602052604090205460ff1615611959576001600160a01b038816600090815260176020526040812054611912904261238d565b600654909150600160b01b900460ff1680156119315750620151808111155b1561194057600d549150611957565b600654600160b01b900460ff1661195757600c5491505b505b6119686064610c728884611de1565b92506119846064610c72600e5489611de190919063ffffffff16565b9150821561199757611997883085611b29565b81156119b557600f546119b59089906001600160a01b031684611b29565b6119c96119c28484611550565b8790611ded565b9550505b6119d8878787611b29565b50505050505050565b600061155c82846123a4565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526016602052604090205481151560ff909116151503611ad55760405162461bcd60e51b815260206004820152603f60248201527f4b436f696e3a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c7565006064820152608401610a27565b6001600160a01b038216600081815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611b4f5760405162461bcd60e51b8152600401610a2790612305565b6001600160a01b038216611b755760405162461bcd60e51b8152600401610a279061234a565b6001600160a01b03831660009081526020819052604090205481811015611bed5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a27565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c2490849061229d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c7091815260200190565b60405180910390a350505050565b6006805460ff60a01b1916600160a01b179055601054600090611ca990606490610c72908590611de1565b90506000611cb88260026119e1565b90506000611cc68383611ded565b905047611cd283611df9565b6000611cde4783611ded565b9050611cea8382611f84565b611cfc611cf78787611ded565b611df9565b6013546012546011546001600160a01b03909216916108fc91611d3091611d2291611550565b601154610c72904790611de1565b6040518115909202916000818181858888f19350505050158015611d58573d6000803e3d6000fd5b506014546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611d92573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506006805460ff60a01b1916905550505050565b600061155c82846123c6565b600061155c828461238d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e2e57611e2e6123e5565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611e87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eab91906123fb565b81600181518110611ebe57611ebe6123e5565b6001600160a01b0392831660209182029290920181019190915260065430600090815260018352604080822092909416815291522054821115611f1557600654611f159030906001600160a01b031660001961142c565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611f4e908590600090869030904290600401612418565b600060405180830381600087803b158015611f6857600080fd5b505af1158015611f7c573d6000803e3d6000fd5b505050505050565b6006546001600160a01b031663f305d719823085600080611fad6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612015573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061203a9190612489565b5050505050565b600060208083528351808285015260005b8181101561206e57858101830151858201604001528201612052565b81811115612080576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610c3157600080fd5b600080604083850312156120be57600080fd5b82356120c981612096565b946020939093013593505050565b6000806000606084860312156120ec57600080fd5b505081359360208301359350604090920135919050565b60006020828403121561211557600080fd5b813561155c81612096565b60008060006060848603121561213557600080fd5b833561214081612096565b9250602084013561215081612096565b929592945050506040919091013590565b60006020828403121561217357600080fd5b5035919050565b8035801515811461218a57600080fd5b919050565b600080604083850312156121a257600080fd5b82356121ad81612096565b91506121bb6020840161217a565b90509250929050565b6000602082840312156121d657600080fd5b61155c8261217a565b600080604083850312156121f257600080fd5b82356121fd81612096565b9150602083013561220d81612096565b809150509250929050565b600181811c9082168061222c57607f821691505b60208210810361224c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156122b0576122b0612287565b500190565b6020808252600c908201526b08ccaca40e8dede40d0d2ced60a31b604082015260600190565b60208082526010908201526f76616c756520697320746f6f206c6f7760801b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561239f5761239f612287565b500390565b6000826123c157634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156123e0576123e0612287565b500290565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561240d57600080fd5b815161155c81612096565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124685784516001600160a01b031683529383019391830191600101612443565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561249e57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122024120f34a47e9ea37a066392c89c3c952b414d51600cf32a61cd59c1140aaf6064736f6c634300080d0033

Deployed Bytecode Sourcemap

39779:12207:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40084:60;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;40084:60:0;;;;;;;;5635:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7802:169::-;;;;;;;;;;-1:-1:-1;7802:169:0;;;;;:::i;:::-;;:::i;:::-;;;1419:14:1;;1412:22;1394:41;;1382:2;1367:18;7802:169:0;1254:187:1;51124:397:0;;;;;;;;;;-1:-1:-1;51124:397:0;;;;;:::i;:::-;;:::i;:::-;;39856:41;;;;;;;;;;-1:-1:-1;39856:41:0;;;;-1:-1:-1;;;;;39856:41:0;;;;;;-1:-1:-1;;;;;1958:32:1;;;1940:51;;1928:2;1913:18;39856:41:0;1767:230:1;6755:108:0;;;;;;;;;;-1:-1:-1;6843:12:0;;6755:108;;40408:37;;;;;;;;;;;;;;;;50458:100;;;;;;;;;;-1:-1:-1;50458:100:0;;;;;:::i;:::-;;:::i;8453:492::-;;;;;;;;;;-1:-1:-1;8453:492:0;;;;;:::i;:::-;;:::i;6597:93::-;;;;;;;;;;-1:-1:-1;6597:93:0;;6680:2;2865:36:1;;2853:2;2838:18;6597:93:0;2723:184:1;9354:215:0;;;;;;;;;;-1:-1:-1;9354:215:0;;;;;:::i;:::-;;:::i;41391:51::-;;;;;;;;;;-1:-1:-1;41391:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;39904:38;;;;;;;;;;;;;;;39989:40;;;;;;;;;;-1:-1:-1;39989:40:0;;;;-1:-1:-1;;;39989:40:0;;;;;;44340:125;;;;;;;;;;-1:-1:-1;44340:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;44429:28:0;44405:4;44429:28;;;:19;:28;;;;;;;;;44340:125;50566:168;;;;;;;;;;-1:-1:-1;50566:168:0;;;;;:::i;:::-;;:::i;40151:57::-;;;;;;;;;;;;;;;;49748:224;;;;;;;;;;-1:-1:-1;49748:224:0;;;;;:::i;:::-;;:::i;50338:112::-;;;;;;;;;;-1:-1:-1;50338:112:0;;;;;:::i;:::-;;:::i;50922:194::-;;;;;;;;;;-1:-1:-1;50922:194:0;;;;;:::i;:::-;;:::i;43112:314::-;;;;;;;;;;-1:-1:-1;43112:314:0;;;;;:::i;:::-;;:::i;40369:32::-;;;;;;;;;;;;;;;;6926:127;;;;;;;;;;-1:-1:-1;6926:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7027:18:0;7000:7;7027:18;;;;;;;;;;;;6926:127;17172:94;;;;;;;;;;;;;:::i;50211:119::-;;;;;;;;;;-1:-1:-1;50211:119:0;;;;;:::i;:::-;;:::i;40864:92::-;;;;;;;;;;-1:-1:-1;40864:92:0;;;;-1:-1:-1;;;;;40864:92:0;;;40509:70;;;;;;;;;;-1:-1:-1;40509:70:0;;;;-1:-1:-1;;;;;40509:70:0;;;16521:87;;;;;;;;;;-1:-1:-1;16594:6:0;;-1:-1:-1;;;;;16594:6:0;16521:87;;40963:86;;;;;;;;;;-1:-1:-1;40963:86:0;;;;-1:-1:-1;;;;;40963:86:0;;;51794:187;;;;;;;;;;-1:-1:-1;51794:187:0;;;;;:::i;:::-;;:::i;5854:104::-;;;;;;;;;;;;;:::i;43742:263::-;;;;;;;;;;-1:-1:-1;43742:263:0;;;;;:::i;:::-;;:::i;51529:102::-;;;;;;;;;;-1:-1:-1;51529:102:0;;;;;:::i;:::-;;:::i;10072:413::-;;;;;;;;;;-1:-1:-1;10072:413:0;;;;;:::i;:::-;;:::i;40038:37::-;;;;;;;;;;-1:-1:-1;40038:37:0;;;;-1:-1:-1;;;40038:37:0;;;;;;7266:175;;;;;;;;;;-1:-1:-1;7266:175:0;;;;;:::i;:::-;;:::i;40647:36::-;;;;;;;;;;;;;;;;50741:173;;;;;;;;;;-1:-1:-1;50741:173:0;;;;;:::i;:::-;;:::i;49984:219::-;;;;;;;;;;-1:-1:-1;49984:219:0;;;;;:::i;:::-;;:::i;41326:58::-;;;;;;;;;;-1:-1:-1;41326:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;43434:297;;;;;;;;;;-1:-1:-1;43434:297:0;;;;;:::i;:::-;;:::i;44476:171::-;;;;;;;;;;-1:-1:-1;44476:171:0;;;;;:::i;:::-;;:::i;40720:36::-;;;;;;;;;;;;;;;;7504:151;;;;;;;;;;-1:-1:-1;7504:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;7620:18:0;;;7593:7;7620:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7504:151;40215:51;;;;;;;;;;;;;;;;51639:147;;;;;;;;;;-1:-1:-1;51639:147:0;;;;;:::i;:::-;;:::i;40273:48::-;;;;;;;;;;;;;;;;17421:192;;;;;;;;;;-1:-1:-1;17421:192:0;;;;;:::i;:::-;;:::i;40793:30::-;;;;;;;;;;;;;;;;40476:26;;;;;;;;;;;;;;;;5635:100;5689:13;5722:5;5715:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5635:100;:::o;7802:169::-;7885:4;7902:39;230:10;7925:7;7934:6;7902:8;:39::i;:::-;-1:-1:-1;7959:4:0;7802:169;;;;:::o;51124:397::-;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;;;;;;;;;51276:57:::1;51321:11:::0;51276:40:::1;:17:::0;51298;51276:21:::1;:40::i;:::-;:44:::0;::::1;:57::i;:::-;51337:3;51276:64;51268:114;;;::::0;-1:-1:-1;;;51268:114:0;;5792:2:1;51268:114:0::1;::::0;::::1;5774:21:1::0;5831:2;5811:18;;;5804:30;5870:34;5850:18;;;5843:62;-1:-1:-1;;;5921:18:1;;;5914:35;5966:19;;51268:114:0::1;5590:401:1::0;51268:114:0::1;51393:16;:36:::0;;;;51440:16:::1;:36:::0;51487:10:::1;:24:::0;51124:397::o;50458:100::-;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;50532:9:::1;:18:::0;;-1:-1:-1;;;;;;50532:18:0::1;-1:-1:-1::0;;;;;50532:18:0;;;::::1;::::0;;;::::1;::::0;;50458:100::o;8453:492::-;8593:4;8610:36;8620:6;8628:9;8639:6;8610:9;:36::i;:::-;-1:-1:-1;;;;;8686:19:0;;8659:24;8686:19;;;:11;:19;;;;;;;;230:10;8686:33;;;;;;;;8738:26;;;;8730:79;;;;-1:-1:-1;;;8730:79:0;;6198:2:1;8730:79:0;;;6180:21:1;6237:2;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;-1:-1:-1;;;6327:18:1;;;6320:38;6375:19;;8730:79:0;5996:404:1;8730:79:0;8845:57;8854:6;230:10;8895:6;8876:16;:25;8845:8;:57::i;:::-;-1:-1:-1;8933:4:0;;8453:492;-1:-1:-1;;;;8453:492:0:o;9354:215::-;230:10;9442:4;9491:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9491:34:0;;;;;;;;;;9442:4;;9459:80;;9482:7;;9491:47;;9528:10;;9491:47;:::i;:::-;9459:8;:80::i;50566:168::-;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;50644:12:::1;:28:::0;;;50707:2:::1;50691:18:::0;::::1;;50683:43;;;;-1:-1:-1::0;;;50683:43:0::1;;;;;;;:::i;:::-;50566:168:::0;:::o;49748:224::-;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;49833:24:::1;:43:::0;;;49920:23:::1;49938:4;49920:13;6843:12:::0;;;6755:108;49920:13:::1;:17:::0;::::1;:23::i;:::-;49895:24;;:48;49887:77;;;;-1:-1:-1::0;;;49887:77:0::1;;;;;;;:::i;50338:112::-:0;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;50418:15:::1;:24:::0;;-1:-1:-1;;;;;;50418:24:0::1;-1:-1:-1::0;;;;;50418:24:0;;;::::1;::::0;;;::::1;::::0;;50338:112::o;50922:194::-;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;51011:17:::1;:38:::0;;;51089:2:::1;51068:23:::0;::::1;;51060:48;;;;-1:-1:-1::0;;;51060:48:0::1;;;;;;;:::i;43112:314::-:0;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;43221:15:::1;::::0;-1:-1:-1;;;;;43221:15:0;;::::1;43199:38:::0;;::::1;::::0;43191:93:::1;;;::::0;-1:-1:-1;;;43191:93:0;;7558:2:1;43191:93:0::1;::::0;::::1;7540:21:1::0;7597:2;7577:18;;;7570:30;7636:34;7616:18;;;7609:62;-1:-1:-1;;;7687:18:1;;;7680:40;7737:19;;43191:93:0::1;7356:406:1::0;43191:93:0::1;43342:15;::::0;43300:59:::1;::::0;-1:-1:-1;;;;;43342:15:0;;::::1;::::0;43300:59;::::1;::::0;::::1;::::0;43342:15:::1;::::0;43300:59:::1;43370:15;:48:::0;;-1:-1:-1;;;;;;43370:48:0::1;-1:-1:-1::0;;;;;43370:48:0;;;::::1;::::0;;;::::1;::::0;;43112:314::o;17172:94::-;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;17237:21:::1;17255:1;17237:9;:21::i;:::-;17172:94::o:0;50211:119::-;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;50291:18:::1;:31:::0;50211:119::o;51794:187::-;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;51870:14:::1;:26:::0;;;51930:23:::1;51948:4;51930:13;6843:12:::0;;;6755:108;51930:23:::1;51915:14;;:38;51907:67;;;;-1:-1:-1::0;;;51907:67:0::1;;;;;;;:::i;5854:104::-:0;5910:13;5943:7;5936:14;;;;;:::i;43742:263::-;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;43849:13:::1;-1:-1:-1::0;;;;;43841:21:0::1;:4;-1:-1:-1::0;;;;;43841:21:0::1;::::0;43833:110:::1;;;::::0;-1:-1:-1;;;43833:110:0;;7969:2:1;43833:110:0::1;::::0;::::1;7951:21:1::0;8008:2;7988:18;;;7981:30;8047:34;8027:18;;;8020:62;8118:34;8098:18;;;8091:62;-1:-1:-1;;;8169:19:1;;;8162:43;8222:19;;43833:110:0::1;7767:480:1::0;43833:110:0::1;43956:41;43985:4;43991:5;43956:28;:41::i;:::-;43742:263:::0;;:::o;51529:102::-;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;51597:18:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;51597:26:0::1;-1:-1:-1::0;;;;51597:26:0;;::::1;::::0;;;::::1;::::0;;51529:102::o;10072:413::-;230:10;10165:4;10209:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10209:34:0;;;;;;;;;;10262:35;;;;10254:85;;;;-1:-1:-1;;;10254:85:0;;8454:2:1;10254:85:0;;;8436:21:1;8493:2;8473:18;;;8466:30;8532:34;8512:18;;;8505:62;-1:-1:-1;;;8583:18:1;;;8576:35;8628:19;;10254:85:0;8252:401:1;10254:85:0;10375:67;230:10;10398:7;10426:15;10407:16;:34;10375:8;:67::i;:::-;-1:-1:-1;10473:4:0;;10072:413;-1:-1:-1;;;10072:413:0:o;7266:175::-;7352:4;7369:42;230:10;7393:9;7404:6;7369:9;:42::i;50741:173::-;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;50821:13:::1;:30:::0;;;50887:2:::1;50870:19:::0;::::1;;50862:44;;;;-1:-1:-1::0;;;50862:44:0::1;;;;;;;:::i;49984:219::-:0;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;50067:23:::1;:41:::0;;;50151:23:::1;50169:4;50151:13;6843:12:::0;;;6755:108;50151:23:::1;50127;;:47;50119:76;;;;-1:-1:-1::0;;;50119:76:0::1;;;;;;;:::i;43434:297::-:0;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43527:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;43519:102:::1;;;::::0;-1:-1:-1;;;43519:102:0;;8860:2:1;43519:102:0::1;::::0;::::1;8842:21:1::0;8899:2;8879:18;;;8872:30;8938:34;8918:18;;;8911:62;-1:-1:-1;;;8989:18:1;;;8982:47;9046:19;;43519:102:0::1;8658:413:1::0;43519:102:0::1;-1:-1:-1::0;;;;;43632:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;43632:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;43689:34;;1394:41:1;;;43689:34:0::1;::::0;1367:18:1;43689:34:0::1;;;;;;;43434:297:::0;;:::o;44476:171::-;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;44553:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;44553:32:0::1;-1:-1:-1::0;;;;44553:32:0;;::::1;;::::0;;44601:38:::1;::::0;::::1;::::0;::::1;::::0;44577:8;1419:14:1;1412:22;1394:41;;1382:2;1367:18;;1254:187;44601:38:0::1;;;;;;;;44476:171:::0;:::o;51639:147::-;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;51729:1:::1;51717:8;:13;;51709:40;;;::::0;-1:-1:-1;;;51709:40:0;;9278:2:1;51709:40:0::1;::::0;::::1;9260:21:1::0;9317:2;9297:18;;;9290:30;-1:-1:-1;;;9336:18:1;;;9329:44;9390:18;;51709:40:0::1;9076:338:1::0;51709:40:0::1;51760:7;:18:::0;51639:147::o;17421:192::-;16594:6;;-1:-1:-1;;;;;16594:6:0;230:10;16741:23;16733:68;;;;-1:-1:-1;;;16733:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17510:22:0;::::1;17502:73;;;::::0;-1:-1:-1;;;17502:73:0;;9621:2:1;17502:73:0::1;::::0;::::1;9603:21:1::0;9660:2;9640:18;;;9633:30;9699:34;9679:18;;;9672:62;-1:-1:-1;;;9750:18:1;;;9743:36;9796:19;;17502:73:0::1;9419:402:1::0;17502:73:0::1;17586:19;17596:8;17586:9;:19::i;13771:380::-:0;-1:-1:-1;;;;;13907:19:0;;13899:68;;;;-1:-1:-1;;;13899:68:0;;10028:2:1;13899:68:0;;;10010:21:1;10067:2;10047:18;;;10040:30;10106:34;10086:18;;;10079:62;-1:-1:-1;;;10157:18:1;;;10150:34;10201:19;;13899:68:0;9826:400:1;13899:68:0;-1:-1:-1;;;;;13986:21:0;;13978:68;;;;-1:-1:-1;;;13978:68:0;;10433:2:1;13978:68:0;;;10415:21:1;10472:2;10452:18;;;10445:30;10511:34;10491:18;;;10484:62;-1:-1:-1;;;10562:18:1;;;10555:32;10604:19;;13978:68:0;10231:398:1;13978:68:0;-1:-1:-1;;;;;14059:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14111:32;;160:25:1;;;14111:32:0;;133:18:1;14111:32:0;;;;;;;13771:380;;;:::o;27675:98::-;27733:7;27760:5;27764:1;27760;:5;:::i;:::-;27753:12;27675:98;-1:-1:-1;;;27675:98:0:o;44655:2624::-;-1:-1:-1;;;;;44759:18:0;;44751:68;;;;-1:-1:-1;;;44751:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44838:16:0;;44830:64;;;;-1:-1:-1;;;44830:64:0;;;;;;;:::i;:::-;44910:6;44920:1;44910:11;44907:93;;44939:28;44955:4;44961:2;44965:1;44939:15;:28::i;:::-;44655:2624;;;:::o;44907:93::-;-1:-1:-1;;;;;45023:31:0;;;;;;:25;:31;;;;;;;;:63;;;;-1:-1:-1;;;;;;45060:25:0;;;;;;:19;:25;;;;;;;;45059:26;45023:63;:93;;;;-1:-1:-1;;;;;;45092:23:0;;;;;;:19;:23;;;;;;;;45091:24;45023:93;45020:457;;;45151:23;;45141:6;:33;;45133:89;;;;-1:-1:-1;;;45133:89:0;;11646:2:1;45133:89:0;;;11628:21:1;11685:2;11665:18;;;11658:30;11724:34;11704:18;;;11697:62;-1:-1:-1;;;11775:18:1;;;11768:41;11826:19;;45133:89:0;11444:407:1;45133:89:0;-1:-1:-1;;;;;7027:18:0;;45237:32;7027:18;;;;;;;;;;;45345:14;;45308:33;45335:6;7027:18;45308:33;:::i;:::-;:51;;45300:99;;;;-1:-1:-1;;;45300:99:0;;12058:2:1;45300:99:0;;;12040:21:1;12097:2;12077:18;;;12070:30;12136:34;12116:18;;;12109:62;-1:-1:-1;;;12187:18:1;;;12180:34;12231:19;;45300:99:0;11856:400:1;45300:99:0;-1:-1:-1;;;;;;45414:19:0;;;;;;:15;:19;;;;;45436:15;45414:37;;45020:457;-1:-1:-1;;;;;45492:29:0;;;;;;:25;:29;;;;;;;;:61;;;;-1:-1:-1;;;;;;45527:25:0;;;;;;:19;:25;;;;;;;;45526:26;45492:61;:91;;;;-1:-1:-1;;;;;;45559:23:0;;;;;;:19;:23;;;;;;;;45558:24;45492:91;45489:214;;;45618:24;;45608:6;:34;;45600:91;;;;-1:-1:-1;;;45600:91:0;;12463:2:1;45600:91:0;;;12445:21:1;12502:2;12482:18;;;12475:30;12541:34;12521:18;;;12514:62;-1:-1:-1;;;12592:18:1;;;12585:42;12644:19;;45600:91:0;12261:408:1;45600:91:0;45771:4;45722:28;7027:18;;;;;;;;;;;45849;;45825:42;;;;;;;45904:53;;-1:-1:-1;45941:16:0;;-1:-1:-1;;;45941:16:0;;;;45940:17;45904:53;:99;;;;-1:-1:-1;;;;;;45974:29:0;;;;;;:25;:29;;;;;;;;45904:99;:138;;;;-1:-1:-1;46021:21:0;;-1:-1:-1;;;46021:21:0;;;;45904:138;45887:286;;;46092:18;;46069:41;;46125:36;46140:20;46125:14;:36::i;:::-;-1:-1:-1;;;;;46334:25:0;;46185:12;46334:25;;;:19;:25;;;;;;46185:12;;46334:25;;46333:26;:54;;;;-1:-1:-1;;;;;;46364:23:0;;;;;;:19;:23;;;;;;;;46363:24;46333:54;46330:894;;;46425:12;;-1:-1:-1;;;;;46458:29:0;;46404:18;46458:29;;;:25;:29;;;;;;;;46454:375;;;-1:-1:-1;;;;;46542:21:0;;46511:12;46542:21;;;:15;:21;;;;;;46526:37;;:15;:37;:::i;:::-;46585:18;;46511:52;;-1:-1:-1;;;;46585:18:0;;;;:38;;;;;46615:8;46607:4;:16;;46585:38;46582:232;;;46661:17;;46648:30;;46582:232;;;46725:18;;-1:-1:-1;;;46725:18:0;;;;46721:93;;46781:13;;46768:26;;46721:93;46489:340;46454:375;46852:31;46879:3;46852:22;:6;46863:10;46852;:22::i;:31::-;46845:38;;46910:28;46934:3;46910:19;46921:7;;46910:6;:10;;:19;;;;:::i;:28::-;46898:40;-1:-1:-1;46956:8:0;;46953:90;;46985:42;47001:4;47015;47022;46985:15;:42::i;:::-;47062:13;;47059:97;;47118:10;;47096:44;;47112:4;;-1:-1:-1;;;;;47118:10:0;47130:9;47096:15;:44::i;:::-;47181:31;47192:19;:4;47201:9;47192:8;:19::i;:::-;47181:6;;:10;:31::i;:::-;47172:40;;46389:835;46330:894;47236:33;47252:4;47258:2;47262:6;47236:15;:33::i;:::-;44740:2539;;;;44655:2624;;;:::o;28812:98::-;28870:7;28897:5;28901:1;28897;:5;:::i;17621:173::-;17696:6;;;-1:-1:-1;;;;;17713:17:0;;;-1:-1:-1;;;;;;17713:17:0;;;;;;;17746:40;;17696:6;;;17713:17;17696:6;;17746:40;;17677:16;;17746:40;17666:128;17621:173;:::o;44013:315::-;-1:-1:-1;;;;;44104:31:0;;;;;;:25;:31;;;;;;:40;;;:31;;;;:40;;;44096:116;;;;-1:-1:-1;;;44096:116:0;;13228:2:1;44096:116:0;;;13210:21:1;13267:2;13247:18;;;13240:30;13306:34;13286:18;;;13279:62;13377:33;13357:18;;;13350:61;13428:19;;44096:116:0;13026:427:1;44096:116:0;-1:-1:-1;;;;;44223:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;44223:39:0;;;;;;;;;;44280:40;;44223:39;;:31;44280:40;;;44013:315;;:::o;10975:733::-;-1:-1:-1;;;;;11115:20:0;;11107:70;;;;-1:-1:-1;;;11107:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11196:23:0;;11188:71;;;;-1:-1:-1;;;11188:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11356:17:0;;11332:21;11356:17;;;;;;;;;;;11392:23;;;;11384:74;;;;-1:-1:-1;;;11384:74:0;;13660:2:1;11384:74:0;;;13642:21:1;13699:2;13679:18;;;13672:30;13738:34;13718:18;;;13711:62;-1:-1:-1;;;13789:18:1;;;13782:36;13835:19;;11384:74:0;13458:402:1;11384:74:0;-1:-1:-1;;;;;11494:17:0;;;:9;:17;;;;;;;;;;;11514:22;;;11494:42;;11558:20;;;;;;;;:30;;11530:6;;11494:9;11558:30;;11530:6;;11558:30;:::i;:::-;;;;;;;;11623:9;-1:-1:-1;;;;;11606:35:0;11615:6;-1:-1:-1;;;;;11606:35:0;;11634:6;11606:35;;;;160:25:1;;148:2;133:18;;14:177;11606:35:0;;;;;;;;11096:612;10975:733;;;:::o;47288:1351::-;41981:16;:23;;-1:-1:-1;;;;41981:23:0;-1:-1:-1;;;41981:23:0;;;47427:16:::1;::::0;41981:23;;47402:51:::1;::::0;47449:3:::1;::::0;47402:42:::1;::::0;:20;;:24:::1;:42::i;:51::-;47373:80:::0;-1:-1:-1;47522:12:0::1;47537:25;47373:80:::0;47560:1:::1;47537:22;:25::i;:::-;47522:40:::0;-1:-1:-1;47573:17:0::1;47593:28;:18:::0;47522:40;47593:22:::1;:28::i;:::-;47573:48:::0;-1:-1:-1;47922:21:0::1;47986:22;48003:4:::0;47986:16:::1;:22::i;:::-;48137:18;48158:41;:21;48184:14:::0;48158:25:::1;:41::i;:::-;48137:62;;48247:35;48260:9;48271:10;48247:12;:35::i;:::-;48350:62;48367:44;:20:::0;48392:18;48367:24:::1;:44::i;:::-;48350:16;:62::i;:::-;48423:15;::::0;48517:10:::1;::::0;48496:16:::1;::::0;-1:-1:-1;;;;;48423:15:0;;::::1;::::0;:107:::1;::::0;48448:81:::1;::::0;48496:32:::1;::::0;:20:::1;:32::i;:::-;48474:16;::::0;48448:43:::1;::::0;:21:::1;::::0;:25:::1;:43::i;:81::-;48423:107;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;48541:9:0::1;::::0;:41:::1;::::0;-1:-1:-1;;;;;48541:9:0;;::::1;::::0;48560:21:::1;48541:41:::0;::::1;;;::::0;:9:::1;:41:::0;:9;:41;48560:21;48541:9;:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;48598:32:0::1;::::0;;14039:25:1;;;14095:2;14080:18;;14073:34;;;48598:32:0::1;::::0;14012:18:1;48598:32:0::1;;;;;;;-1:-1:-1::0;;42027:16:0;:24;;-1:-1:-1;;;;42027:24:0;;;-1:-1:-1;;;;47288:1351:0:o;28413:98::-;28471:7;28498:5;28502:1;28498;:5;:::i;28056:98::-;28114:7;28141:5;28145:1;28141;:5;:::i;48647:694::-;48799:16;;;48813:1;48799:16;;;;;;;;48775:21;;48799:16;;;;;;;;;;-1:-1:-1;48799:16:0;48775:40;;48844:4;48826;48831:1;48826:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;48826:23:0;;;:7;;;;;;;;;;:23;;;;48870:15;;:22;;;-1:-1:-1;;;48870:22:0;;;;:15;;;;;:20;;:22;;;;;48826:7;;48870:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48860:4;48865:1;48860:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;48860:32:0;;;:7;;;;;;;;;;:32;;;;48941:15;;48926:4;7593:7;7620:18;;;:11;:18;;;;;;48941:15;;;;7620:27;;;;;;48961:11;-1:-1:-1;48905:156:0;;;49019:15;;48987:62;;49004:4;;-1:-1:-1;;;;;49019:15:0;-1:-1:-1;;48987:8:0;:62::i;:::-;49099:15;;:224;;-1:-1:-1;;;49099:224:0;;-1:-1:-1;;;;;49099:15:0;;;;:66;;:224;;49180:11;;49099:15;;49250:4;;49277;;49297:15;;49099:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48702:639;48647:694;:::o;49349:391::-;49470:15;;-1:-1:-1;;;;;49470:15:0;:31;49509:9;49542:4;49562:11;49470:15;;49674:7;16594:6;;-1:-1:-1;;;;;16594:6:0;;16521:87;49674:7;49470:252;;;;;;-1:-1:-1;;;;;;49470:252:0;;;-1:-1:-1;;;;;16155:15:1;;;49470:252:0;;;16137:34:1;16187:18;;;16180:34;;;;16230:18;;;16223:34;;;;16273:18;;;16266:34;16337:15;;;16316:19;;;16309:44;49696:15:0;16369:19:1;;;16362:35;16071:19;;49470:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;49349:391;;:::o;196:597:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;634:6;631:1;628:13;625:91;;;704:1;699:2;690:6;679:9;675:22;671:31;664:42;625:91;-1:-1:-1;777:2:1;756:15;-1:-1:-1;;752:29:1;737:45;;;;784:2;733:54;;196:597;-1:-1:-1;;;196:597:1:o;798:131::-;-1:-1:-1;;;;;873:31:1;;863:42;;853:70;;919:1;916;909:12;934:315;1002:6;1010;1063:2;1051:9;1042:7;1038:23;1034:32;1031:52;;;1079:1;1076;1069:12;1031:52;1118:9;1105:23;1137:31;1162:5;1137:31;:::i;:::-;1187:5;1239:2;1224:18;;;;1211:32;;-1:-1:-1;;;934:315:1:o;1446:316::-;1523:6;1531;1539;1592:2;1580:9;1571:7;1567:23;1563:32;1560:52;;;1608:1;1605;1598:12;1560:52;-1:-1:-1;;1631:23:1;;;1701:2;1686:18;;1673:32;;-1:-1:-1;1752:2:1;1737:18;;;1724:32;;1446:316;-1:-1:-1;1446:316:1:o;2002:255::-;2069:6;2122:2;2110:9;2101:7;2097:23;2093:32;2090:52;;;2138:1;2135;2128:12;2090:52;2177:9;2164:23;2196:31;2221:5;2196:31;:::i;2262:456::-;2339:6;2347;2355;2408:2;2396:9;2387:7;2383:23;2379:32;2376:52;;;2424:1;2421;2414:12;2376:52;2463:9;2450:23;2482:31;2507:5;2482:31;:::i;:::-;2532:5;-1:-1:-1;2589:2:1;2574:18;;2561:32;2602:33;2561:32;2602:33;:::i;:::-;2262:456;;2654:7;;-1:-1:-1;;;2708:2:1;2693:18;;;;2680:32;;2262:456::o;3372:180::-;3431:6;3484:2;3472:9;3463:7;3459:23;3455:32;3452:52;;;3500:1;3497;3490:12;3452:52;-1:-1:-1;3523:23:1;;3372:180;-1:-1:-1;3372:180:1:o;3781:160::-;3846:20;;3902:13;;3895:21;3885:32;;3875:60;;3931:1;3928;3921:12;3875:60;3781:160;;;:::o;3946:315::-;4011:6;4019;4072:2;4060:9;4051:7;4047:23;4043:32;4040:52;;;4088:1;4085;4078:12;4040:52;4127:9;4114:23;4146:31;4171:5;4146:31;:::i;:::-;4196:5;-1:-1:-1;4220:35:1;4251:2;4236:18;;4220:35;:::i;:::-;4210:45;;3946:315;;;;;:::o;4266:180::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:26;4430:9;4414:26;:::i;4451:388::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4635:9;4622:23;4654:31;4679:5;4654:31;:::i;:::-;4704:5;-1:-1:-1;4761:2:1;4746:18;;4733:32;4774:33;4733:32;4774:33;:::i;:::-;4826:7;4816:17;;;4451:388;;;;;:::o;4844:380::-;4923:1;4919:12;;;;4966;;;4987:61;;5041:4;5033:6;5029:17;5019:27;;4987:61;5094:2;5086:6;5083:14;5063:18;5060:38;5057:161;;5140:10;5135:3;5131:20;5128:1;5121:31;5175:4;5172:1;5165:15;5203:4;5200:1;5193:15;5057:161;;4844:380;;;:::o;5229:356::-;5431:2;5413:21;;;5450:18;;;5443:30;5509:34;5504:2;5489:18;;5482:62;5576:2;5561:18;;5229:356::o;6405:127::-;6466:10;6461:3;6457:20;6454:1;6447:31;6497:4;6494:1;6487:15;6521:4;6518:1;6511:15;6537:128;6577:3;6608:1;6604:6;6601:1;6598:13;6595:39;;;6614:18;;:::i;:::-;-1:-1:-1;6650:9:1;;6537:128::o;6670:336::-;6872:2;6854:21;;;6911:2;6891:18;;;6884:30;-1:-1:-1;;;6945:2:1;6930:18;;6923:42;6997:2;6982:18;;6670:336::o;7011:340::-;7213:2;7195:21;;;7252:2;7232:18;;;7225:30;-1:-1:-1;;;7286:2:1;7271:18;;7264:46;7342:2;7327:18;;7011:340::o;10634:401::-;10836:2;10818:21;;;10875:2;10855:18;;;10848:30;10914:34;10909:2;10894:18;;10887:62;-1:-1:-1;;;10980:2:1;10965:18;;10958:35;11025:3;11010:19;;10634:401::o;11040:399::-;11242:2;11224:21;;;11281:2;11261:18;;;11254:30;11320:34;11315:2;11300:18;;11293:62;-1:-1:-1;;;11386:2:1;11371:18;;11364:33;11429:3;11414:19;;11040:399::o;12674:125::-;12714:4;12742:1;12739;12736:8;12733:34;;;12747:18;;:::i;:::-;-1:-1:-1;12784:9:1;;12674:125::o;12804:217::-;12844:1;12870;12860:132;;12914:10;12909:3;12905:20;12902:1;12895:31;12949:4;12946:1;12939:15;12977:4;12974:1;12967:15;12860:132;-1:-1:-1;13006:9:1;;12804:217::o;14118:168::-;14158:7;14224:1;14220;14216:6;14212:14;14209:1;14206:21;14201:1;14194:9;14187:17;14183:45;14180:71;;;14231:18;;:::i;:::-;-1:-1:-1;14271:9:1;;14118:168::o;14423:127::-;14484:10;14479:3;14475:20;14472:1;14465:31;14515:4;14512:1;14505:15;14539:4;14536:1;14529:15;14555:251;14625:6;14678:2;14666:9;14657:7;14653:23;14649:32;14646:52;;;14694:1;14691;14684:12;14646:52;14726:9;14720:16;14745:31;14770:5;14745:31;:::i;14811:980::-;15073:4;15121:3;15110:9;15106:19;15152:6;15141:9;15134:25;15178:2;15216:6;15211:2;15200:9;15196:18;15189:34;15259:3;15254:2;15243:9;15239:18;15232:31;15283:6;15318;15312:13;15349:6;15341;15334:22;15387:3;15376:9;15372:19;15365:26;;15426:2;15418:6;15414:15;15400:29;;15447:1;15457:195;15471:6;15468:1;15465:13;15457:195;;;15536:13;;-1:-1:-1;;;;;15532:39:1;15520:52;;15627:15;;;;15592:12;;;;15568:1;15486:9;15457:195;;;-1:-1:-1;;;;;;;15708:32:1;;;;15703:2;15688:18;;15681:60;-1:-1:-1;;;15772:3:1;15757:19;15750:35;15669:3;14811:980;-1:-1:-1;;;14811:980:1:o;16408:306::-;16496:6;16504;16512;16565:2;16553:9;16544:7;16540:23;16536:32;16533:52;;;16581:1;16578;16571:12;16533:52;16610:9;16604:16;16594:26;;16660:2;16649:9;16645:18;16639:25;16629:35;;16704:2;16693:9;16689:18;16683:25;16673:35;;16408:306;;;;;:::o

Swarm Source

ipfs://24120f34a47e9ea37a066392c89c3c952b414d51600cf32a61cd59c1140aaf60
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.