ETH Price: $3,637.24 (-0.56%)
 

Overview

Max Total Supply

1,000,000,000 AvInu

Holders

66

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 AvInu

Value
$0.00
0xebb1110cb4f95b779b2239702f39b452353295bc
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:
AvatarInu

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-23
*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.9 >=0.8.9 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

/*
https://wwww.avatarinuerc.com
https://t.me/Avatar_Inu_Erc20
https://twitter.com/AvatarInuERC
*/

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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = false;

    uint256 public buyTotalFees;
    uint256 public buyLiquidityFee;
    uint256 public buyMarketingFee;

    uint256 public sellTotalFees;
    uint256 public sellLiquidityFee;
    uint256 public sellMarketingFee;

    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Avatar Inu", "AvInu") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyLiquidityFee = 0;
        uint256 _buyMarketingFee = 5;

        uint256 _sellLiquidityFee = 0;
        uint256 _sellMarketingFee = 5;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 10_000_000 * 1e18; // 1% from total supply
        maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 4) / 1000; // 0.4% swap wallet

        buyLiquidityFee = _buyLiquidityFee;
        buyMarketingFee = _buyMarketingFee;
        buyTotalFees = buyLiquidityFee + buyMarketingFee;

        sellLiquidityFee = _sellLiquidityFee;
        sellMarketingFee = _sellMarketingFee;
        sellTotalFees = sellLiquidityFee + sellMarketingFee;

        devWallet = address(0xd039E8C4a8a14AD37F336188a73D9f40300c074D); // set as dev wallet

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

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

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 8) / 1000,
            "Swap amount cannot be higher than 0.8% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _liquidityFee,
        uint256 _MarketingFee
    ) external onlyOwner {
        buyLiquidityFee = _liquidityFee;
        buyMarketingFee = _MarketingFee;
        buyTotalFees = buyLiquidityFee + buyMarketingFee;
        require(buyTotalFees <= 15, "Must keep fees at 15% or less");
    }

    function updateSellFees(
        uint256 _liquidityFee,
        uint256 _MarketingFee
    ) external onlyOwner {
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _MarketingFee;
        sellTotalFees = sellLiquidityFee + sellMarketingFee;
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

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

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] + 1 <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per two blocks allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

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

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }
    }

    function withdraw() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        require(_token != address(this), "Can't withdraw native tokens");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

}

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":[],"name":"AutoNukeLP","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":[],"name":"ManualNukeLP","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":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a805462ffffff19166001179055600c805460ff191690553480156200002a57600080fd5b50604080518082018252600a81526941766174617220496e7560b01b6020808301918252835180850190945260058452644176496e7560d81b9084015281519192916200007a916003916200066c565b508051620000909060049060208401906200066c565b505050620000ad620000a7620003b960201b60201c565b620003bd565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000cf8160016200040f565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200011557600080fd5b505afa1580156200012a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000150919062000712565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200019957600080fd5b505afa158015620001ae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d4919062000712565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200021d57600080fd5b505af115801562000232573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000258919062000712565b6001600160a01b031660a0819052620002739060016200040f565b60a0516200028390600162000489565b6a084595161401484a0000006007556a108b2a2c280290940000006009556000600581816b033b2e3c9fd0803ce80000006103e8620002c48260046200075a565b620002d091906200077c565b600855600e859055600f849055620002e984866200079f565b600d55601183905560128290556200030282846200079f565b601055600680546001600160a01b03191673d039e8c4a8a14ad37f336188a73d9f40300c074d1790556200034a620003426005546001600160a01b031690565b6001620004dd565b62000357306001620004dd565b6200036661dead6001620004dd565b620003856200037d6005546001600160a01b031690565b60016200040f565b620003923060016200040f565b620003a161dead60016200040f565b620003ad338262000587565b505050505050620007f7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200045e5760405162461bcd60e51b815260206004820181905260248201526000805160206200335e83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005285760405162461bcd60e51b815260206004820181905260248201526000805160206200335e833981519152604482015260640162000455565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005df5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000455565b8060026000828254620005f391906200079f565b90915550506001600160a01b03821660009081526020819052604081208054839290620006229084906200079f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200067a90620007ba565b90600052602060002090601f0160209004810192826200069e5760008555620006e9565b82601f10620006b957805160ff1916838001178555620006e9565b82800160010185558215620006e9579182015b82811115620006e9578251825591602001919060010190620006cc565b50620006f7929150620006fb565b5090565b5b80821115620006f75760008155600101620006fc565b6000602082840312156200072557600080fd5b81516001600160a01b03811681146200073d57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000777576200077762000744565b500290565b6000826200079a57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007b557620007b562000744565b500190565b600181811c90821680620007cf57607f821691505b60208210811415620007f157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612b09620008556000396000818161051b015281816111d601526119aa0152600081816103b30152818161196c015281816123ff015281816124c7015281816125030152818161257d01526125a40152612b096000f3fe6080604052600436106102e85760003560e01c80637bce5a0411610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146108f6578063f2fde38b1461090c578063f63743421461092c578063f8b45b051461094257600080fd5b8063dd62ed3e14610885578063e2f45605146108cb578063e884f260146108e157600080fd5b8063c0246668146107df578063c18bc195146107ff578063c876d0b91461081f578063c8c8ebe414610839578063d257b34f1461084f578063d85ba0631461086f57600080fd5b806395d89b4111610149578063a457c2d711610123578063a457c2d714610750578063a9059cbb14610770578063b62496f514610790578063bbc0c742146107c057600080fd5b806395d89b41146107055780639a7a23d61461071a5780639fccce321461073a57600080fd5b80637bce5a04146106665780638a8c523c1461067c5780638da5cb5b146106915780638ea5220f146106af57806392136913146106cf578063924de9b7146106e557600080fd5b8063395093511161024f57806366ca9b831161020857806370a08231116101e257806370a08231146105e6578063715018a61461061c578063751039fc146106315780637571336a1461064657600080fd5b806366ca9b83146105905780636a486a8e146105b05780636ddd1713146105c657600080fd5b806339509351146104b45780633aeac4e1146104d45780633ccfd60b146104f457806349bd5a5e146105095780634a62bb651461053d5780634fbee1931461055757600080fd5b80631816467f116102a15780631816467f1461040c5780631a8145bb1461042c578063203e727e1461044257806323b872dd1461046257806327c8f83514610482578063313ce5671461049857600080fd5b806302dbd8f8146102f457806306fdde0314610316578063095ea7b31461034157806310d5de53146103715780631694505e146103a157806318160ddd146103ed57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061031461030f36600461268c565b610958565b005b34801561032257600080fd5b5061032b6109a6565b60405161033891906126ae565b60405180910390f35b34801561034d57600080fd5b5061036161035c366004612718565b610a38565b6040519015158152602001610338565b34801561037d57600080fd5b5061036161038c366004612744565b60166020526000908152604090205460ff1681565b3480156103ad57600080fd5b506103d57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610338565b3480156103f957600080fd5b506002545b604051908152602001610338565b34801561041857600080fd5b50610314610427366004612744565b610a4e565b34801561043857600080fd5b506103fe60135481565b34801561044e57600080fd5b5061031461045d366004612761565b610ad5565b34801561046e57600080fd5b5061036161047d36600461277a565b610bb2565b34801561048e57600080fd5b506103d561dead81565b3480156104a457600080fd5b5060405160128152602001610338565b3480156104c057600080fd5b506103616104cf366004612718565b610c5c565b3480156104e057600080fd5b506103146104ef3660046127bb565b610c98565b34801561050057600080fd5b50610314610e77565b34801561051557600080fd5b506103d57f000000000000000000000000000000000000000000000000000000000000000081565b34801561054957600080fd5b50600a546103619060ff1681565b34801561056357600080fd5b50610361610572366004612744565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561059c57600080fd5b506103146105ab36600461268c565b610fbd565b3480156105bc57600080fd5b506103fe60105481565b3480156105d257600080fd5b50600a546103619062010000900460ff1681565b3480156105f257600080fd5b506103fe610601366004612744565b6001600160a01b031660009081526020819052604090205490565b34801561062857600080fd5b50610314611050565b34801561063d57600080fd5b50610361611086565b34801561065257600080fd5b50610314610661366004612802565b6110c3565b34801561067257600080fd5b506103fe600f5481565b34801561068857600080fd5b50610314611118565b34801561069d57600080fd5b506005546001600160a01b03166103d5565b3480156106bb57600080fd5b506006546103d5906001600160a01b031681565b3480156106db57600080fd5b506103fe60125481565b3480156106f157600080fd5b50610314610700366004612830565b611155565b34801561071157600080fd5b5061032b61119b565b34801561072657600080fd5b50610314610735366004612802565b6111aa565b34801561074657600080fd5b506103fe60145481565b34801561075c57600080fd5b5061036161076b366004612718565b611286565b34801561077c57600080fd5b5061036161078b366004612718565b61131f565b34801561079c57600080fd5b506103616107ab366004612744565b60176020526000908152604090205460ff1681565b3480156107cc57600080fd5b50600a5461036190610100900460ff1681565b3480156107eb57600080fd5b506103146107fa366004612802565b61132c565b34801561080b57600080fd5b5061031461081a366004612761565b6113b5565b34801561082b57600080fd5b50600c546103619060ff1681565b34801561084557600080fd5b506103fe60075481565b34801561085b57600080fd5b5061036161086a366004612761565b611486565b34801561087b57600080fd5b506103fe600d5481565b34801561089157600080fd5b506103fe6108a03660046127bb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108d757600080fd5b506103fe60085481565b3480156108ed57600080fd5b506103616115d8565b34801561090257600080fd5b506103fe600e5481565b34801561091857600080fd5b50610314610927366004612744565b611615565b34801561093857600080fd5b506103fe60115481565b34801561094e57600080fd5b506103fe60095481565b6005546001600160a01b0316331461098b5760405162461bcd60e51b81526004016109829061284d565b60405180910390fd5b6011829055601281905561099f8183612898565b6010555050565b6060600380546109b5906128b0565b80601f01602080910402602001604051908101604052809291908181526020018280546109e1906128b0565b8015610a2e5780601f10610a0357610100808354040283529160200191610a2e565b820191906000526020600020905b815481529060010190602001808311610a1157829003601f168201915b5050505050905090565b6000610a453384846116b0565b50600192915050565b6005546001600160a01b03163314610a785760405162461bcd60e51b81526004016109829061284d565b6006546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610aff5760405162461bcd60e51b81526004016109829061284d565b670de0b6b3a76400006103e8610b1460025490565b610b1f9060016128eb565b610b29919061290a565b610b33919061290a565b811015610b9a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610982565b610bac81670de0b6b3a76400006128eb565b60075550565b6000610bbf8484846117d4565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c445760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610982565b610c5185338584036116b0565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a45918590610c93908690612898565b6116b0565b6005546001600160a01b03163314610cc25760405162461bcd60e51b81526004016109829061284d565b6001600160a01b038216610d185760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610982565b6001600160a01b038216301415610d715760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610982565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610db357600080fd5b505afa158015610dc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610deb919061292c565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401602060405180830381600087803b158015610e3957600080fd5b505af1158015610e4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e719190612945565b50505050565b6005546001600160a01b03163314610ea15760405162461bcd60e51b81526004016109829061284d565b6040516370a0823160e01b815230600482018190526000916370a082319060240160206040518083038186803b158015610eda57600080fd5b505afa158015610eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f12919061292c565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb90604401602060405180830381600087803b158015610f5457600080fd5b505af1158015610f68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8c9190612945565b5060405133904780156108fc02916000818181858888f19350505050158015610fb9573d6000803e3d6000fd5b5050565b6005546001600160a01b03163314610fe75760405162461bcd60e51b81526004016109829061284d565b600e829055600f819055610ffb8183612898565b600d819055600f1015610fb95760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610982565b6005546001600160a01b0316331461107a5760405162461bcd60e51b81526004016109829061284d565b6110846000611fd9565b565b6005546000906001600160a01b031633146110b35760405162461bcd60e51b81526004016109829061284d565b50600a805460ff19169055600190565b6005546001600160a01b031633146110ed5760405162461bcd60e51b81526004016109829061284d565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111425760405162461bcd60e51b81526004016109829061284d565b600a805462ffff00191662010100179055565b6005546001600160a01b0316331461117f5760405162461bcd60e51b81526004016109829061284d565b600a8054911515620100000262ff000019909216919091179055565b6060600480546109b5906128b0565b6005546001600160a01b031633146111d45760405162461bcd60e51b81526004016109829061284d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141561127c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610982565b610fb9828261202b565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156113085760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610982565b61131533858584036116b0565b5060019392505050565b6000610a453384846117d4565b6005546001600160a01b031633146113565760405162461bcd60e51b81526004016109829061284d565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113df5760405162461bcd60e51b81526004016109829061284d565b670de0b6b3a76400006103e86113f460025490565b6113ff9060056128eb565b611409919061290a565b611413919061290a565b81101561146e5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610982565b61148081670de0b6b3a76400006128eb565b60095550565b6005546000906001600160a01b031633146114b35760405162461bcd60e51b81526004016109829061284d565b620186a06114c060025490565b6114cb9060016128eb565b6114d5919061290a565b8210156115425760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610982565b6103e861154e60025490565b6115599060086128eb565b611563919061290a565b8211156115cf5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171c12903a37ba30b61039bab838363c9760611b6064820152608401610982565b50600855600190565b6005546000906001600160a01b031633146116055760405162461bcd60e51b81526004016109829061284d565b50600c805460ff19169055600190565b6005546001600160a01b0316331461163f5760405162461bcd60e51b81526004016109829061284d565b6001600160a01b0381166116a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610982565b6116ad81611fd9565b50565b6001600160a01b0383166117125760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610982565b6001600160a01b0382166117735760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610982565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117fa5760405162461bcd60e51b815260040161098290612962565b6001600160a01b0382166118205760405162461bcd60e51b8152600401610982906129a7565b80611836576118318383600061207f565b505050565b600a5460ff1615611d04576005546001600160a01b0384811691161480159061186d57506005546001600160a01b03838116911614155b801561188157506001600160a01b03821615155b801561189857506001600160a01b03821661dead14155b80156118ae5750600554600160a01b900460ff16155b15611d0457600a54610100900460ff16611946576001600160a01b03831660009081526015602052604090205460ff168061190157506001600160a01b03821660009081526015602052604090205460ff165b6119465760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610982565b600c5460ff1615611a9e576005546001600160a01b038381169116148015906119a157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156119df57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611a9e57326000908152600b60205260409020544390611a01906001612898565b10611a8b5760405162461bcd60e51b815260206004820152604e60248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260648201526d3637b1b5b99030b63637bbb2b21760911b608482015260a401610982565b326000908152600b602052604090204390555b6001600160a01b03831660009081526017602052604090205460ff168015611adf57506001600160a01b03821660009081526016602052604090205460ff16155b15611bc357600754811115611b545760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610982565b6009546001600160a01b038316600090815260208190526040902054611b7a9083612898565b1115611bbe5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610982565b611d04565b6001600160a01b03821660009081526017602052604090205460ff168015611c0457506001600160a01b03831660009081526016602052604090205460ff16155b15611c7a57600754811115611bbe5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610982565b6001600160a01b03821660009081526016602052604090205460ff16611d04576009546001600160a01b038316600090815260208190526040902054611cc09083612898565b1115611d045760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610982565b3060009081526020819052604090205460085481108015908190611d305750600a5462010000900460ff165b8015611d465750600554600160a01b900460ff16155b8015611d6b57506001600160a01b03851660009081526017602052604090205460ff16155b8015611d9057506001600160a01b03851660009081526015602052604090205460ff16155b8015611db557506001600160a01b03841660009081526015602052604090205460ff16155b15611de3576005805460ff60a01b1916600160a01b179055611dd56121d3565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526015602052604090205460ff600160a01b909204821615911680611e3157506001600160a01b03851660009081526015602052604090205460ff165b15611e3a575060005b60008115611fc5576001600160a01b03861660009081526017602052604090205460ff168015611e6c57506000601054115b15611efa57611e916064611e8b6010548861237d90919063ffffffff16565b90612390565b905060105460115482611ea491906128eb565b611eae919061290a565b60136000828254611ebf9190612898565b9091555050601054601254611ed490836128eb565b611ede919061290a565b60146000828254611eef9190612898565b90915550611fa79050565b6001600160a01b03871660009081526017602052604090205460ff168015611f2457506000600d54115b15611fa757611f436064611e8b600d548861237d90919063ffffffff16565b9050600d54600e5482611f5691906128eb565b611f60919061290a565b60136000828254611f719190612898565b9091555050600d54600f54611f8690836128eb565b611f90919061290a565b60146000828254611fa19190612898565b90915550505b8015611fb857611fb887308361207f565b611fc281866129ea565b94505b611fd087878761207f565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120a55760405162461bcd60e51b815260040161098290612962565b6001600160a01b0382166120cb5760405162461bcd60e51b8152600401610982906129a7565b6001600160a01b038316600090815260208190526040902054818110156121435760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610982565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061217a908490612898565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121c691815260200190565b60405180910390a3610e71565b30600090815260208190526040812054905060006014546013546121f79190612898565b90506000821580612206575081155b1561221057505050565b60085461221e9060146128eb565b831115612236576008546122339060146128eb565b92505b60006002836013548661224991906128eb565b612253919061290a565b61225d919061290a565b9050600061226b858361239c565b905047612277826123a8565b6000612283478361239c565b905060006122a087611e8b6014548561237d90919063ffffffff16565b905060006122ae82846129ea565b6000601381905560148190556006546040519293506001600160a01b031691849181818185875af1925050503d8060008114612306576040519150601f19603f3d011682016040523d82523d6000602084013e61230b565b606091505b5090975050851580159061231f5750600081115b156123725761232e8682612577565b601354604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b600061238982846128eb565b9392505050565b6000612389828461290a565b600061238982846129ea565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123dd576123dd612a01565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561245657600080fd5b505afa15801561246a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061248e9190612a17565b816001815181106124a1576124a1612a01565b60200260200101906001600160a01b031690816001600160a01b0316815250506124ec307f0000000000000000000000000000000000000000000000000000000000000000846116b0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612541908590600090869030904290600401612a34565b600060405180830381600087803b15801561255b57600080fd5b505af115801561256f573d6000803e3d6000fd5b505050505050565b6125a2307f0000000000000000000000000000000000000000000000000000000000000000846116b0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806125e96005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561264c57600080fd5b505af1158015612660573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126859190612aa5565b5050505050565b6000806040838503121561269f57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156126db578581018301518582016040015282016126bf565b818111156126ed576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146116ad57600080fd5b6000806040838503121561272b57600080fd5b823561273681612703565b946020939093013593505050565b60006020828403121561275657600080fd5b813561238981612703565b60006020828403121561277357600080fd5b5035919050565b60008060006060848603121561278f57600080fd5b833561279a81612703565b925060208401356127aa81612703565b929592945050506040919091013590565b600080604083850312156127ce57600080fd5b82356127d981612703565b915060208301356127e981612703565b809150509250929050565b80151581146116ad57600080fd5b6000806040838503121561281557600080fd5b823561282081612703565b915060208301356127e9816127f4565b60006020828403121561284257600080fd5b8135612389816127f4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128ab576128ab612882565b500190565b600181811c908216806128c457607f821691505b602082108114156128e557634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561290557612905612882565b500290565b60008261292757634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561293e57600080fd5b5051919050565b60006020828403121561295757600080fd5b8151612389816127f4565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156129fc576129fc612882565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612a2957600080fd5b815161238981612703565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612a845784516001600160a01b031683529383019391830191600101612a5f565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612aba57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f69f1d516ddbbf12f69e36b300394fdb3ddabcbd1c56ad30846b48a70e2e55a464736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80637bce5a0411610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146108f6578063f2fde38b1461090c578063f63743421461092c578063f8b45b051461094257600080fd5b8063dd62ed3e14610885578063e2f45605146108cb578063e884f260146108e157600080fd5b8063c0246668146107df578063c18bc195146107ff578063c876d0b91461081f578063c8c8ebe414610839578063d257b34f1461084f578063d85ba0631461086f57600080fd5b806395d89b4111610149578063a457c2d711610123578063a457c2d714610750578063a9059cbb14610770578063b62496f514610790578063bbc0c742146107c057600080fd5b806395d89b41146107055780639a7a23d61461071a5780639fccce321461073a57600080fd5b80637bce5a04146106665780638a8c523c1461067c5780638da5cb5b146106915780638ea5220f146106af57806392136913146106cf578063924de9b7146106e557600080fd5b8063395093511161024f57806366ca9b831161020857806370a08231116101e257806370a08231146105e6578063715018a61461061c578063751039fc146106315780637571336a1461064657600080fd5b806366ca9b83146105905780636a486a8e146105b05780636ddd1713146105c657600080fd5b806339509351146104b45780633aeac4e1146104d45780633ccfd60b146104f457806349bd5a5e146105095780634a62bb651461053d5780634fbee1931461055757600080fd5b80631816467f116102a15780631816467f1461040c5780631a8145bb1461042c578063203e727e1461044257806323b872dd1461046257806327c8f83514610482578063313ce5671461049857600080fd5b806302dbd8f8146102f457806306fdde0314610316578063095ea7b31461034157806310d5de53146103715780631694505e146103a157806318160ddd146103ed57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061031461030f36600461268c565b610958565b005b34801561032257600080fd5b5061032b6109a6565b60405161033891906126ae565b60405180910390f35b34801561034d57600080fd5b5061036161035c366004612718565b610a38565b6040519015158152602001610338565b34801561037d57600080fd5b5061036161038c366004612744565b60166020526000908152604090205460ff1681565b3480156103ad57600080fd5b506103d57f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610338565b3480156103f957600080fd5b506002545b604051908152602001610338565b34801561041857600080fd5b50610314610427366004612744565b610a4e565b34801561043857600080fd5b506103fe60135481565b34801561044e57600080fd5b5061031461045d366004612761565b610ad5565b34801561046e57600080fd5b5061036161047d36600461277a565b610bb2565b34801561048e57600080fd5b506103d561dead81565b3480156104a457600080fd5b5060405160128152602001610338565b3480156104c057600080fd5b506103616104cf366004612718565b610c5c565b3480156104e057600080fd5b506103146104ef3660046127bb565b610c98565b34801561050057600080fd5b50610314610e77565b34801561051557600080fd5b506103d57f0000000000000000000000005cfb356d300a908d42692bc1dfd4463e725b15c781565b34801561054957600080fd5b50600a546103619060ff1681565b34801561056357600080fd5b50610361610572366004612744565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561059c57600080fd5b506103146105ab36600461268c565b610fbd565b3480156105bc57600080fd5b506103fe60105481565b3480156105d257600080fd5b50600a546103619062010000900460ff1681565b3480156105f257600080fd5b506103fe610601366004612744565b6001600160a01b031660009081526020819052604090205490565b34801561062857600080fd5b50610314611050565b34801561063d57600080fd5b50610361611086565b34801561065257600080fd5b50610314610661366004612802565b6110c3565b34801561067257600080fd5b506103fe600f5481565b34801561068857600080fd5b50610314611118565b34801561069d57600080fd5b506005546001600160a01b03166103d5565b3480156106bb57600080fd5b506006546103d5906001600160a01b031681565b3480156106db57600080fd5b506103fe60125481565b3480156106f157600080fd5b50610314610700366004612830565b611155565b34801561071157600080fd5b5061032b61119b565b34801561072657600080fd5b50610314610735366004612802565b6111aa565b34801561074657600080fd5b506103fe60145481565b34801561075c57600080fd5b5061036161076b366004612718565b611286565b34801561077c57600080fd5b5061036161078b366004612718565b61131f565b34801561079c57600080fd5b506103616107ab366004612744565b60176020526000908152604090205460ff1681565b3480156107cc57600080fd5b50600a5461036190610100900460ff1681565b3480156107eb57600080fd5b506103146107fa366004612802565b61132c565b34801561080b57600080fd5b5061031461081a366004612761565b6113b5565b34801561082b57600080fd5b50600c546103619060ff1681565b34801561084557600080fd5b506103fe60075481565b34801561085b57600080fd5b5061036161086a366004612761565b611486565b34801561087b57600080fd5b506103fe600d5481565b34801561089157600080fd5b506103fe6108a03660046127bb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108d757600080fd5b506103fe60085481565b3480156108ed57600080fd5b506103616115d8565b34801561090257600080fd5b506103fe600e5481565b34801561091857600080fd5b50610314610927366004612744565b611615565b34801561093857600080fd5b506103fe60115481565b34801561094e57600080fd5b506103fe60095481565b6005546001600160a01b0316331461098b5760405162461bcd60e51b81526004016109829061284d565b60405180910390fd5b6011829055601281905561099f8183612898565b6010555050565b6060600380546109b5906128b0565b80601f01602080910402602001604051908101604052809291908181526020018280546109e1906128b0565b8015610a2e5780601f10610a0357610100808354040283529160200191610a2e565b820191906000526020600020905b815481529060010190602001808311610a1157829003601f168201915b5050505050905090565b6000610a453384846116b0565b50600192915050565b6005546001600160a01b03163314610a785760405162461bcd60e51b81526004016109829061284d565b6006546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610aff5760405162461bcd60e51b81526004016109829061284d565b670de0b6b3a76400006103e8610b1460025490565b610b1f9060016128eb565b610b29919061290a565b610b33919061290a565b811015610b9a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610982565b610bac81670de0b6b3a76400006128eb565b60075550565b6000610bbf8484846117d4565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c445760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610982565b610c5185338584036116b0565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a45918590610c93908690612898565b6116b0565b6005546001600160a01b03163314610cc25760405162461bcd60e51b81526004016109829061284d565b6001600160a01b038216610d185760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610982565b6001600160a01b038216301415610d715760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610982565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610db357600080fd5b505afa158015610dc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610deb919061292c565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb90604401602060405180830381600087803b158015610e3957600080fd5b505af1158015610e4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e719190612945565b50505050565b6005546001600160a01b03163314610ea15760405162461bcd60e51b81526004016109829061284d565b6040516370a0823160e01b815230600482018190526000916370a082319060240160206040518083038186803b158015610eda57600080fd5b505afa158015610eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f12919061292c565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb90604401602060405180830381600087803b158015610f5457600080fd5b505af1158015610f68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8c9190612945565b5060405133904780156108fc02916000818181858888f19350505050158015610fb9573d6000803e3d6000fd5b5050565b6005546001600160a01b03163314610fe75760405162461bcd60e51b81526004016109829061284d565b600e829055600f819055610ffb8183612898565b600d819055600f1015610fb95760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610982565b6005546001600160a01b0316331461107a5760405162461bcd60e51b81526004016109829061284d565b6110846000611fd9565b565b6005546000906001600160a01b031633146110b35760405162461bcd60e51b81526004016109829061284d565b50600a805460ff19169055600190565b6005546001600160a01b031633146110ed5760405162461bcd60e51b81526004016109829061284d565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146111425760405162461bcd60e51b81526004016109829061284d565b600a805462ffff00191662010100179055565b6005546001600160a01b0316331461117f5760405162461bcd60e51b81526004016109829061284d565b600a8054911515620100000262ff000019909216919091179055565b6060600480546109b5906128b0565b6005546001600160a01b031633146111d45760405162461bcd60e51b81526004016109829061284d565b7f0000000000000000000000005cfb356d300a908d42692bc1dfd4463e725b15c76001600160a01b0316826001600160a01b0316141561127c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610982565b610fb9828261202b565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156113085760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610982565b61131533858584036116b0565b5060019392505050565b6000610a453384846117d4565b6005546001600160a01b031633146113565760405162461bcd60e51b81526004016109829061284d565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113df5760405162461bcd60e51b81526004016109829061284d565b670de0b6b3a76400006103e86113f460025490565b6113ff9060056128eb565b611409919061290a565b611413919061290a565b81101561146e5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610982565b61148081670de0b6b3a76400006128eb565b60095550565b6005546000906001600160a01b031633146114b35760405162461bcd60e51b81526004016109829061284d565b620186a06114c060025490565b6114cb9060016128eb565b6114d5919061290a565b8210156115425760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610982565b6103e861154e60025490565b6115599060086128eb565b611563919061290a565b8211156115cf5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171c12903a37ba30b61039bab838363c9760611b6064820152608401610982565b50600855600190565b6005546000906001600160a01b031633146116055760405162461bcd60e51b81526004016109829061284d565b50600c805460ff19169055600190565b6005546001600160a01b0316331461163f5760405162461bcd60e51b81526004016109829061284d565b6001600160a01b0381166116a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610982565b6116ad81611fd9565b50565b6001600160a01b0383166117125760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610982565b6001600160a01b0382166117735760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610982565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117fa5760405162461bcd60e51b815260040161098290612962565b6001600160a01b0382166118205760405162461bcd60e51b8152600401610982906129a7565b80611836576118318383600061207f565b505050565b600a5460ff1615611d04576005546001600160a01b0384811691161480159061186d57506005546001600160a01b03838116911614155b801561188157506001600160a01b03821615155b801561189857506001600160a01b03821661dead14155b80156118ae5750600554600160a01b900460ff16155b15611d0457600a54610100900460ff16611946576001600160a01b03831660009081526015602052604090205460ff168061190157506001600160a01b03821660009081526015602052604090205460ff165b6119465760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610982565b600c5460ff1615611a9e576005546001600160a01b038381169116148015906119a157507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156119df57507f0000000000000000000000005cfb356d300a908d42692bc1dfd4463e725b15c76001600160a01b0316826001600160a01b031614155b15611a9e57326000908152600b60205260409020544390611a01906001612898565b10611a8b5760405162461bcd60e51b815260206004820152604e60248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260648201526d3637b1b5b99030b63637bbb2b21760911b608482015260a401610982565b326000908152600b602052604090204390555b6001600160a01b03831660009081526017602052604090205460ff168015611adf57506001600160a01b03821660009081526016602052604090205460ff16155b15611bc357600754811115611b545760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610982565b6009546001600160a01b038316600090815260208190526040902054611b7a9083612898565b1115611bbe5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610982565b611d04565b6001600160a01b03821660009081526017602052604090205460ff168015611c0457506001600160a01b03831660009081526016602052604090205460ff16155b15611c7a57600754811115611bbe5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610982565b6001600160a01b03821660009081526016602052604090205460ff16611d04576009546001600160a01b038316600090815260208190526040902054611cc09083612898565b1115611d045760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610982565b3060009081526020819052604090205460085481108015908190611d305750600a5462010000900460ff165b8015611d465750600554600160a01b900460ff16155b8015611d6b57506001600160a01b03851660009081526017602052604090205460ff16155b8015611d9057506001600160a01b03851660009081526015602052604090205460ff16155b8015611db557506001600160a01b03841660009081526015602052604090205460ff16155b15611de3576005805460ff60a01b1916600160a01b179055611dd56121d3565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526015602052604090205460ff600160a01b909204821615911680611e3157506001600160a01b03851660009081526015602052604090205460ff165b15611e3a575060005b60008115611fc5576001600160a01b03861660009081526017602052604090205460ff168015611e6c57506000601054115b15611efa57611e916064611e8b6010548861237d90919063ffffffff16565b90612390565b905060105460115482611ea491906128eb565b611eae919061290a565b60136000828254611ebf9190612898565b9091555050601054601254611ed490836128eb565b611ede919061290a565b60146000828254611eef9190612898565b90915550611fa79050565b6001600160a01b03871660009081526017602052604090205460ff168015611f2457506000600d54115b15611fa757611f436064611e8b600d548861237d90919063ffffffff16565b9050600d54600e5482611f5691906128eb565b611f60919061290a565b60136000828254611f719190612898565b9091555050600d54600f54611f8690836128eb565b611f90919061290a565b60146000828254611fa19190612898565b90915550505b8015611fb857611fb887308361207f565b611fc281866129ea565b94505b611fd087878761207f565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120a55760405162461bcd60e51b815260040161098290612962565b6001600160a01b0382166120cb5760405162461bcd60e51b8152600401610982906129a7565b6001600160a01b038316600090815260208190526040902054818110156121435760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610982565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061217a908490612898565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121c691815260200190565b60405180910390a3610e71565b30600090815260208190526040812054905060006014546013546121f79190612898565b90506000821580612206575081155b1561221057505050565b60085461221e9060146128eb565b831115612236576008546122339060146128eb565b92505b60006002836013548661224991906128eb565b612253919061290a565b61225d919061290a565b9050600061226b858361239c565b905047612277826123a8565b6000612283478361239c565b905060006122a087611e8b6014548561237d90919063ffffffff16565b905060006122ae82846129ea565b6000601381905560148190556006546040519293506001600160a01b031691849181818185875af1925050503d8060008114612306576040519150601f19603f3d011682016040523d82523d6000602084013e61230b565b606091505b5090975050851580159061231f5750600081115b156123725761232e8682612577565b601354604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b600061238982846128eb565b9392505050565b6000612389828461290a565b600061238982846129ea565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123dd576123dd612a01565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561245657600080fd5b505afa15801561246a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061248e9190612a17565b816001815181106124a1576124a1612a01565b60200260200101906001600160a01b031690816001600160a01b0316815250506124ec307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116b0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612541908590600090869030904290600401612a34565b600060405180830381600087803b15801561255b57600080fd5b505af115801561256f573d6000803e3d6000fd5b505050505050565b6125a2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116b0565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806125e96005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561264c57600080fd5b505af1158015612660573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126859190612aa5565b5050505050565b6000806040838503121561269f57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156126db578581018301518582016040015282016126bf565b818111156126ed576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146116ad57600080fd5b6000806040838503121561272b57600080fd5b823561273681612703565b946020939093013593505050565b60006020828403121561275657600080fd5b813561238981612703565b60006020828403121561277357600080fd5b5035919050565b60008060006060848603121561278f57600080fd5b833561279a81612703565b925060208401356127aa81612703565b929592945050506040919091013590565b600080604083850312156127ce57600080fd5b82356127d981612703565b915060208301356127e981612703565b809150509250929050565b80151581146116ad57600080fd5b6000806040838503121561281557600080fd5b823561282081612703565b915060208301356127e9816127f4565b60006020828403121561284257600080fd5b8135612389816127f4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128ab576128ab612882565b500190565b600181811c908216806128c457607f821691505b602082108114156128e557634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561290557612905612882565b500290565b60008261292757634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561293e57600080fd5b5051919050565b60006020828403121561295757600080fd5b8151612389816127f4565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156129fc576129fc612882565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612a2957600080fd5b815161238981612703565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612a845784516001600160a01b031683529383019391830191600101612a5f565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612aba57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f69f1d516ddbbf12f69e36b300394fdb3ddabcbd1c56ad30846b48a70e2e55a464736f6c63430008090033

Deployed Bytecode Sourcemap

29420:15517:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35896:270;;;;;;;;;;-1:-1:-1;35896:270:0;;;;;:::i;:::-;;:::i;:::-;;8524:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10691:169;;;;;;;;;;-1:-1:-1;10691:169:0;;;;;:::i;:::-;;:::i;:::-;;;1490:14:1;;1483:22;1465:41;;1453:2;1438:18;10691:169:0;1325:187:1;30628:63:0;;;;;;;;;;-1:-1:-1;30628:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29499:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1960:32:1;;;1942:51;;1930:2;1915:18;29499:51:0;1769:230:1;9644:108:0;;;;;;;;;;-1:-1:-1;9732:12:0;;9644:108;;;2150:25:1;;;2138:2;2123:18;9644:108:0;2004:177:1;36872:157:0;;;;;;;;;;-1:-1:-1;36872:157:0;;;;;:::i;:::-;;:::i;30412:33::-;;;;;;;;;;;;;;;;34635:275;;;;;;;;;;-1:-1:-1;34635:275:0;;;;;:::i;:::-;;:::i;11342:492::-;;;;;;;;;;-1:-1:-1;11342:492:0;;;;;:::i;:::-;;:::i;29602:53::-;;;;;;;;;;;;29648:6;29602:53;;9486:93;;;;;;;;;;-1:-1:-1;9486:93:0;;9569:2;3182:36:1;;3170:2;3155:18;9486:93:0;3040:184:1;12243:215:0;;;;;;;;;;-1:-1:-1;12243:215:0;;;;;:::i;:::-;;:::i;44574:358::-;;;;;;;;;;-1:-1:-1;44574:358:0;;;;;:::i;:::-;;:::i;44320:246::-;;;;;;;;;;;;;:::i;29557:38::-;;;;;;;;;;;;;;;29842:33;;;;;;;;;;-1:-1:-1;29842:33:0;;;;;;;;37037:126;;;;;;;;;;-1:-1:-1;37037:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;37127:28:0;37103:4;37127:28;;;:19;:28;;;;;;;;;37037:126;35553:335;;;;;;;;;;-1:-1:-1;35553:335:0;;;;;:::i;:::-;;:::i;30299:28::-;;;;;;;;;;;;;;;;29922:31;;;;;;;;;;-1:-1:-1;29922:31:0;;;;;;;;;;;9815:127;;;;;;;;;;-1:-1:-1;9815:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9916:18:0;9889:7;9916:18;;;;;;;;;;;;9815:127;2041:103;;;;;;;;;;;;;:::i;33743:121::-;;;;;;;;;;;;;:::i;35182:167::-;;;;;;;;;;-1:-1:-1;35182:167:0;;;;;:::i;:::-;;:::i;30260:30::-;;;;;;;;;;;;;;;;33579:112;;;;;;;;;;;;;:::i;1390:87::-;;;;;;;;;;-1:-1:-1;1463:6:0;;-1:-1:-1;;;;;1463:6:0;1390:87;;29694:24;;;;;;;;;;-1:-1:-1;29694:24:0;;;;-1:-1:-1;;;;;29694:24:0;;;30372:31;;;;;;;;;;;;;;;;35445:100;;;;;;;;;;-1:-1:-1;35445:100:0;;;;;:::i;:::-;;:::i;8743:104::-;;;;;;;;;;;;;:::i;36364:304::-;;;;;;;;;;-1:-1:-1;36364:304:0;;;;;:::i;:::-;;:::i;30452:27::-;;;;;;;;;;;;;;;;12961:413;;;;;;;;;;-1:-1:-1;12961:413:0;;;;;:::i;:::-;;:::i;10155:175::-;;;;;;;;;;-1:-1:-1;10155:175:0;;;;;:::i;:::-;;:::i;30849:57::-;;;;;;;;;;-1:-1:-1;30849:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29882:33;;;;;;;;;;-1:-1:-1;29882:33:0;;;;;;;;;;;36174:182;;;;;;;;;;-1:-1:-1;36174:182:0;;;;;:::i;:::-;;:::i;34918:256::-;;;;;;;;;;-1:-1:-1;34918:256:0;;;;;:::i;:::-;;:::i;30140:40::-;;;;;;;;;;-1:-1:-1;30140:40:0;;;;;;;;29727:35;;;;;;;;;;;;;;;;34130:497;;;;;;;;;;-1:-1:-1;34130:497:0;;;;;:::i;:::-;;:::i;30189:27::-;;;;;;;;;;;;;;;;10393:151;;;;;;;;;;-1:-1:-1;10393:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10509:18:0;;;10482:7;10509:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10393:151;29769:33;;;;;;;;;;;;;;;;33925:135;;;;;;;;;;;;;:::i;30223:30::-;;;;;;;;;;;;;;;;2299:201;;;;;;;;;;-1:-1:-1;2299:201:0;;;;;:::i;:::-;;:::i;30334:31::-;;;;;;;;;;;;;;;;29809:24;;;;;;;;;;;;;;;;35896:270;1463:6;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;;;;;;;;;36021:16:::1;:32:::0;;;36064:16:::1;:32:::0;;;36123:35:::1;36083:13:::0;36040;36123:35:::1;:::i;:::-;36107:13;:51:::0;-1:-1:-1;;35896:270:0:o;8524:100::-;8578:13;8611:5;8604:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8524:100;:::o;10691:169::-;10774:4;10791:39;337:10;10814:7;10823:6;10791:8;:39::i;:::-;-1:-1:-1;10848:4:0;10691:169;;;;:::o;36872:157::-;1463:6;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;36979:9:::1;::::0;36951:38:::1;::::0;-1:-1:-1;;;;;36979:9:0;;::::1;::::0;36951:38;::::1;::::0;::::1;::::0;36979:9:::1;::::0;36951:38:::1;37000:9;:21:::0;;-1:-1:-1;;;;;;37000:21:0::1;-1:-1:-1::0;;;;;37000:21:0;;;::::1;::::0;;;::::1;::::0;;36872:157::o;34635:275::-;1463:6;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;34772:4:::1;34764;34743:13;9732:12:::0;;;9644:108;34743:13:::1;:17;::::0;34759:1:::1;34743:17;:::i;:::-;34742:26;;;;:::i;:::-;34741:35;;;;:::i;:::-;34731:6;:45;;34709:142;;;::::0;-1:-1:-1;;;34709:142:0;;5986:2:1;34709:142:0::1;::::0;::::1;5968:21:1::0;6025:2;6005:18;;;5998:30;6064:34;6044:18;;;6037:62;-1:-1:-1;;;6115:18:1;;;6108:45;6170:19;;34709:142:0::1;5784:411:1::0;34709:142:0::1;34885:17;:6:::0;34895::::1;34885:17;:::i;:::-;34862:20;:40:::0;-1:-1:-1;34635:275:0:o;11342:492::-;11482:4;11499:36;11509:6;11517:9;11528:6;11499:9;:36::i;:::-;-1:-1:-1;;;;;11575:19:0;;11548:24;11575:19;;;:11;:19;;;;;;;;337:10;11575:33;;;;;;;;11627:26;;;;11619:79;;;;-1:-1:-1;;;11619:79:0;;6402:2:1;11619:79:0;;;6384:21:1;6441:2;6421:18;;;6414:30;6480:34;6460:18;;;6453:62;-1:-1:-1;;;6531:18:1;;;6524:38;6579:19;;11619:79:0;6200:404:1;11619:79:0;11734:57;11743:6;337:10;11784:6;11765:16;:25;11734:8;:57::i;:::-;-1:-1:-1;11822:4:0;;11342:492;-1:-1:-1;;;;11342:492:0:o;12243:215::-;337:10;12331:4;12380:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12380:34:0;;;;;;;;;;12331:4;;12348:80;;12371:7;;12380:47;;12417:10;;12380:47;:::i;:::-;12348:8;:80::i;44574:358::-;1463:6;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44664:20:0;::::1;44656:59;;;::::0;-1:-1:-1;;;44656:59:0;;6811:2:1;44656:59:0::1;::::0;::::1;6793:21:1::0;6850:2;6830:18;;;6823:30;6889:28;6869:18;;;6862:56;6935:18;;44656:59:0::1;6609:350:1::0;44656:59:0::1;-1:-1:-1::0;;;;;44734:23:0;::::1;44752:4;44734:23;;44726:64;;;::::0;-1:-1:-1;;;44726:64:0;;7166:2:1;44726:64:0::1;::::0;::::1;7148:21:1::0;7205:2;7185:18;;;7178:30;7244;7224:18;;;7217:58;7292:18;;44726:64:0::1;6964:352:1::0;44726:64:0::1;44828:39;::::0;-1:-1:-1;;;44828:39:0;;44861:4:::1;44828:39;::::0;::::1;1942:51:1::0;44801:24:0::1;::::0;-1:-1:-1;;;;;44828:24:0;::::1;::::0;::::1;::::0;1915:18:1;;44828:39:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44878:46;::::0;-1:-1:-1;;;44878:46:0;;-1:-1:-1;;;;;7702:32:1;;;44878:46:0::1;::::0;::::1;7684:51:1::0;7751:18;;;7744:34;;;44801:66:0;;-1:-1:-1;44878:23:0;;::::1;::::0;::::1;::::0;7657:18:1;;44878:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44645:287;44574:358:::0;;:::o;44320:246::-;1463:6;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;44388:46:::1;::::0;-1:-1:-1;;;44388:46:0;;44403:4:::1;44388:46;::::0;::::1;1942:51:1::0;;;44370:15:0::1;::::0;44388:31:::1;::::0;1915:18:1;;44388:46:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44445:51;::::0;-1:-1:-1;;;44445:51:0;;44476:10:::1;44445:51;::::0;::::1;7684::1::0;7751:18;;;7744:34;;;44370:64:0;;-1:-1:-1;44460:4:0::1;::::0;44445:30:::1;::::0;7657:18:1;;44445:51:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;44507:51:0::1;::::0;44515:10:::1;::::0;44536:21:::1;44507:51:::0;::::1;;;::::0;::::1;::::0;;;44536:21;44515:10;44507:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44359:207;44320:246::o:0;35553:335::-;1463:6;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;35677:15:::1;:31:::0;;;35719:15:::1;:31:::0;;;35776:33:::1;35737:13:::0;35695;35776:33:::1;:::i;:::-;35761:12;:48:::0;;;35844:2:::1;-1:-1:-1::0;35828:18:0::1;35820:60;;;::::0;-1:-1:-1;;;35820:60:0;;8241:2:1;35820:60:0::1;::::0;::::1;8223:21:1::0;8280:2;8260:18;;;8253:30;8319:31;8299:18;;;8292:59;8368:18;;35820:60:0::1;8039:353:1::0;2041:103:0;1463:6;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;2106:30:::1;2133:1;2106:18;:30::i;:::-;2041:103::o:0;33743:121::-;1463:6;;33795:4;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;-1:-1:-1;33812:14:0::1;:22:::0;;-1:-1:-1;;33812:22:0::1;::::0;;;33743:121;:::o;35182:167::-;1463:6;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35295:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;35295:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35182:167::o;33579:112::-;1463:6;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;33634:13:::1;:20:::0;;-1:-1:-1;;33665:18:0;;;;;33579:112::o;35445:100::-;1463:6;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;35516:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;35516:21:0;;::::1;::::0;;;::::1;::::0;;35445:100::o;8743:104::-;8799:13;8832:7;8825:14;;;;;:::i;36364:304::-;1463:6;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;36508:13:::1;-1:-1:-1::0;;;;;36500:21:0::1;:4;-1:-1:-1::0;;;;;36500:21:0::1;;;36478:128;;;::::0;-1:-1:-1;;;36478:128:0;;8599:2:1;36478:128:0::1;::::0;::::1;8581:21:1::0;8638:2;8618:18;;;8611:30;8677:34;8657:18;;;8650:62;8748:27;8728:18;;;8721:55;8793:19;;36478:128:0::1;8397:421:1::0;36478:128:0::1;36619:41;36648:4;36654:5;36619:28;:41::i;12961:413::-:0;337:10;13054:4;13098:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13098:34:0;;;;;;;;;;13151:35;;;;13143:85;;;;-1:-1:-1;;;13143:85:0;;9025:2:1;13143:85:0;;;9007:21:1;9064:2;9044:18;;;9037:30;9103:34;9083:18;;;9076:62;-1:-1:-1;;;9154:18:1;;;9147:35;9199:19;;13143:85:0;8823:401:1;13143:85:0;13264:67;337:10;13287:7;13315:15;13296:16;:34;13264:8;:67::i;:::-;-1:-1:-1;13362:4:0;;12961:413;-1:-1:-1;;;12961:413:0:o;10155:175::-;10241:4;10258:42;337:10;10282:9;10293:6;10258:9;:42::i;36174:182::-;1463:6;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36259:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;36259:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36314:34;;1465:41:1;;;36314:34:0::1;::::0;1438:18:1;36314:34:0::1;;;;;;;36174:182:::0;;:::o;34918:256::-;1463:6;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;35058:4:::1;35050;35029:13;9732:12:::0;;;9644:108;35029:13:::1;:17;::::0;35045:1:::1;35029:17;:::i;:::-;35028:26;;;;:::i;:::-;35027:35;;;;:::i;:::-;35017:6;:45;;34995:131;;;::::0;-1:-1:-1;;;34995:131:0;;9431:2:1;34995:131:0::1;::::0;::::1;9413:21:1::0;9470:2;9450:18;;;9443:30;9509:34;9489:18;;;9482:62;-1:-1:-1;;;9560:18:1;;;9553:34;9604:19;;34995:131:0::1;9229:400:1::0;34995:131:0::1;35149:17;:6:::0;35159::::1;35149:17;:::i;:::-;35137:9;:29:::0;-1:-1:-1;34918:256:0:o;34130:497::-;1463:6;;34238:4;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;34317:6:::1;34296:13;9732:12:::0;;;9644:108;34296:13:::1;:17;::::0;34312:1:::1;34296:17;:::i;:::-;34295:28;;;;:::i;:::-;34282:9;:41;;34260:144;;;::::0;-1:-1:-1;;;34260:144:0;;9836:2:1;34260:144:0::1;::::0;::::1;9818:21:1::0;9875:2;9855:18;;;9848:30;9914:34;9894:18;;;9887:62;-1:-1:-1;;;9965:18:1;;;9958:51;10026:19;;34260:144:0::1;9634:417:1::0;34260:144:0::1;34472:4;34451:13;9732:12:::0;;;9644:108;34451:13:::1;:17;::::0;34467:1:::1;34451:17;:::i;:::-;34450:26;;;;:::i;:::-;34437:9;:39;;34415:141;;;::::0;-1:-1:-1;;;34415:141:0;;10258:2:1;34415:141:0::1;::::0;::::1;10240:21:1::0;10297:2;10277:18;;;10270:30;10336:34;10316:18;;;10309:62;-1:-1:-1;;;10387:18:1;;;10380:50;10447:19;;34415:141:0::1;10056:416:1::0;34415:141:0::1;-1:-1:-1::0;34567:18:0::1;:30:::0;34615:4:::1;::::0;34130:497::o;33925:135::-;1463:6;;33985:4;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;-1:-1:-1;34002:20:0::1;:28:::0;;-1:-1:-1;;34002:28:0::1;::::0;;;33925:135;:::o;2299:201::-;1463:6;;-1:-1:-1;;;;;1463:6:0;337:10;1610:23;1602:68;;;;-1:-1:-1;;;1602:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2388:22:0;::::1;2380:73;;;::::0;-1:-1:-1;;;2380:73:0;;10679:2:1;2380:73:0::1;::::0;::::1;10661:21:1::0;10718:2;10698:18;;;10691:30;10757:34;10737:18;;;10730:62;-1:-1:-1;;;10808:18:1;;;10801:36;10854:19;;2380:73:0::1;10477:402:1::0;2380:73:0::1;2464:28;2483:8;2464:18;:28::i;:::-;2299:201:::0;:::o;16645:380::-;-1:-1:-1;;;;;16781:19:0;;16773:68;;;;-1:-1:-1;;;16773:68:0;;11086:2:1;16773:68:0;;;11068:21:1;11125:2;11105:18;;;11098:30;11164:34;11144:18;;;11137:62;-1:-1:-1;;;11215:18:1;;;11208:34;11259:19;;16773:68:0;10884:400:1;16773:68:0;-1:-1:-1;;;;;16860:21:0;;16852:68;;;;-1:-1:-1;;;16852:68:0;;11491:2:1;16852:68:0;;;11473:21:1;11530:2;11510:18;;;11503:30;11569:34;11549:18;;;11542:62;-1:-1:-1;;;11620:18:1;;;11613:32;11662:19;;16852:68:0;11289:398:1;16852:68:0;-1:-1:-1;;;;;16933:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16985:32;;2150:25:1;;;16985:32:0;;2123:18:1;16985:32:0;;;;;;;16645:380;;;:::o;37171:4576::-;-1:-1:-1;;;;;37303:18:0;;37295:68;;;;-1:-1:-1;;;37295:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37382:16:0;;37374:64;;;;-1:-1:-1;;;37374:64:0;;;;;;;:::i;:::-;37455:11;37451:93;;37483:28;37499:4;37505:2;37509:1;37483:15;:28::i;:::-;37171:4576;;;:::o;37451:93::-;37560:14;;;;37556:2496;;;1463:6;;-1:-1:-1;;;;;37613:15:0;;;1463:6;;37613:15;;;;:49;;-1:-1:-1;1463:6:0;;-1:-1:-1;;;;;37649:13:0;;;1463:6;;37649:13;;37613:49;:86;;;;-1:-1:-1;;;;;;37683:16:0;;;;37613:86;:128;;;;-1:-1:-1;;;;;;37720:21:0;;37734:6;37720:21;;37613:128;:158;;;;-1:-1:-1;37763:8:0;;-1:-1:-1;;;37763:8:0;;;;37762:9;37613:158;37591:2450;;;37811:13;;;;;;;37806:223;;-1:-1:-1;;;;;37883:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;37912:23:0;;;;;;:19;:23;;;;;;;;37883:52;37849:160;;;;-1:-1:-1;;;37849:160:0;;12704:2:1;37849:160:0;;;12686:21:1;12743:2;12723:18;;;12716:30;-1:-1:-1;;;12762:18:1;;;12755:52;12824:18;;37849:160:0;12502:346:1;37849:160:0;38185:20;;;;38181:650;;;1463:6;;-1:-1:-1;;;;;38260:13:0;;;1463:6;;38260:13;;;;:72;;;38316:15;-1:-1:-1;;;;;38302:30:0;:2;-1:-1:-1;;;;;38302:30:0;;;38260:72;:129;;;;;38375:13;-1:-1:-1;;;;;38361:28:0;:2;-1:-1:-1;;;;;38361:28:0;;;38260:129;38230:582;;;38507:9;38478:39;;;;:28;:39;;;;;;38557:12;;38478:43;;38520:1;38478:43;:::i;:::-;:91;38440:267;;;;-1:-1:-1;;;38440:267:0;;13055:2:1;38440:267:0;;;13037:21:1;13094:2;13074:18;;;13067:30;13133:34;13113:18;;;13106:62;13204:34;13184:18;;;13177:62;-1:-1:-1;;;13255:19:1;;;13248:45;13310:19;;38440:267:0;12853:482:1;38440:267:0;38763:9;38734:39;;;;:28;:39;;;;;38776:12;38734:54;;38230:582;-1:-1:-1;;;;;38905:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;38962:35:0;;;;;;:31;:35;;;;;;;;38961:36;38905:92;38879:1147;;;39084:20;;39074:6;:30;;39040:169;;;;-1:-1:-1;;;39040:169:0;;13542:2:1;39040:169:0;;;13524:21:1;13581:2;13561:18;;;13554:30;13620:34;13600:18;;;13593:62;-1:-1:-1;;;13671:18:1;;;13664:51;13732:19;;39040:169:0;13340:417:1;39040:169:0;39292:9;;-1:-1:-1;;;;;9916:18:0;;9889:7;9916:18;;;;;;;;;;;39266:22;;:6;:22;:::i;:::-;:35;;39232:140;;;;-1:-1:-1;;;39232:140:0;;13964:2:1;39232:140:0;;;13946:21:1;14003:2;13983:18;;;13976:30;-1:-1:-1;;;14022:18:1;;;14015:49;14081:18;;39232:140:0;13762:343:1;39232:140:0;38879:1147;;;-1:-1:-1;;;;;39470:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;39525:37:0;;;;;;:31;:37;;;;;;;;39524:38;39470:92;39444:582;;;39649:20;;39639:6;:30;;39605:170;;;;-1:-1:-1;;;39605:170:0;;14312:2:1;39605:170:0;;;14294:21:1;14351:2;14331:18;;;14324:30;14390:34;14370:18;;;14363:62;-1:-1:-1;;;14441:18:1;;;14434:52;14503:19;;39605:170:0;14110:418:1;39444:582:0;-1:-1:-1;;;;;39806:35:0;;;;;;:31;:35;;;;;;;;39801:225;;39926:9;;-1:-1:-1;;;;;9916:18:0;;9889:7;9916:18;;;;;;;;;;;39900:22;;:6;:22;:::i;:::-;:35;;39866:140;;;;-1:-1:-1;;;39866:140:0;;13964:2:1;39866:140:0;;;13946:21:1;14003:2;13983:18;;;13976:30;-1:-1:-1;;;14022:18:1;;;14015:49;14081:18;;39866:140:0;13762:343:1;39866:140:0;40113:4;40064:28;9916:18;;;;;;;;;;;40171;;40147:42;;;;;;;40220:35;;-1:-1:-1;40244:11:0;;;;;;;40220:35;:61;;;;-1:-1:-1;40273:8:0;;-1:-1:-1;;;40273:8:0;;;;40272:9;40220:61;:110;;;;-1:-1:-1;;;;;;40299:31:0;;;;;;:25;:31;;;;;;;;40298:32;40220:110;:153;;;;-1:-1:-1;;;;;;40348:25:0;;;;;;:19;:25;;;;;;;;40347:26;40220:153;:194;;;;-1:-1:-1;;;;;;40391:23:0;;;;;;:19;:23;;;;;;;;40390:24;40220:194;40202:326;;;40441:8;:15;;-1:-1:-1;;;;40441:15:0;-1:-1:-1;;;40441:15:0;;;40473:10;:8;:10::i;:::-;40500:8;:16;;-1:-1:-1;;;;40500:16:0;;;40202:326;40556:8;;-1:-1:-1;;;;;40666:25:0;;40540:12;40666:25;;;:19;:25;;;;;;40556:8;-1:-1:-1;;;40556:8:0;;;;;40555:9;;40666:25;;:52;;-1:-1:-1;;;;;;40695:23:0;;;;;;:19;:23;;;;;;;;40666:52;40662:100;;;-1:-1:-1;40745:5:0;40662:100;40774:12;40879:7;40875:819;;;-1:-1:-1;;;;;40931:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;40980:1;40964:13;;:17;40931:50;40927:618;;;41009:34;41039:3;41009:25;41020:13;;41009:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;41002:41;;41112:13;;41092:16;;41085:4;:23;;;;:::i;:::-;41084:41;;;;:::i;:::-;41062:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;41188:13:0;;41168:16;;41161:23;;:4;:23;:::i;:::-;41160:41;;;;:::i;:::-;41144:12;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;40927:618:0;;-1:-1:-1;40927:618:0;;-1:-1:-1;;;;;41263:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;41313:1;41298:12;;:16;41263:51;41259:286;;;41342:33;41371:3;41342:24;41353:12;;41342:6;:10;;:24;;;;:::i;:33::-;41335:40;;41443:12;;41424:15;;41417:4;:22;;;;:::i;:::-;41416:39;;;;:::i;:::-;41394:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;41517:12:0;;41498:15;;41491:22;;:4;:22;:::i;:::-;41490:39;;;;:::i;:::-;41474:12;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;41259:286:0;41565:8;;41561:91;;41594:42;41610:4;41624;41631;41594:15;:42::i;:::-;41668:14;41678:4;41668:14;;:::i;:::-;;;40875:819;41706:33;41722:4;41728:2;41732:6;41706:15;:33::i;:::-;37284:4463;;;;37171:4576;;;:::o;2660:191::-;2753:6;;;-1:-1:-1;;;;;2770:17:0;;;-1:-1:-1;;;;;;2770:17:0;;;;;;;2803:40;;2753:6;;;2770:17;2753:6;;2803:40;;2734:16;;2803:40;2723:128;2660:191;:::o;36676:188::-;-1:-1:-1;;;;;36759:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;36759:39:0;;;;;;;;;;36816:40;;36759:39;;:31;36816:40;;;36676:188;;:::o;13864:733::-;-1:-1:-1;;;;;14004:20:0;;13996:70;;;;-1:-1:-1;;;13996:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14085:23:0;;14077:71;;;;-1:-1:-1;;;14077:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14245:17:0;;14221:21;14245:17;;;;;;;;;;;14281:23;;;;14273:74;;;;-1:-1:-1;;;14273:74:0;;14865:2:1;14273:74:0;;;14847:21:1;14904:2;14884:18;;;14877:30;14943:34;14923:18;;;14916:62;-1:-1:-1;;;14994:18:1;;;14987:36;15040:19;;14273:74:0;14663:402:1;14273:74:0;-1:-1:-1;;;;;14383:17:0;;;:9;:17;;;;;;;;;;;14403:22;;;14383:42;;14447:20;;;;;;;;:30;;14419:6;;14383:9;14447:30;;14419:6;;14447:30;:::i;:::-;;;;;;;;14512:9;-1:-1:-1;;;;;14495:35:0;14504:6;-1:-1:-1;;;;;14495:35:0;;14523:6;14495:35;;;;2150:25:1;;2138:2;2123:18;;2004:177;14495:35:0;;;;;;;;14543:46;37171:4576;42873:1439;42956:4;42912:23;9916:18;;;;;;;;;;;42912:50;;42973:25;43035:12;;43001:18;;:46;;;;:::i;:::-;42973:74;-1:-1:-1;43058:12:0;43087:20;;;:46;;-1:-1:-1;43111:22:0;;43087:46;43083:85;;;43150:7;;;42873:1439::o;43083:85::-;43202:18;;:23;;43223:2;43202:23;:::i;:::-;43184:15;:41;43180:115;;;43260:18;;:23;;43281:2;43260:23;:::i;:::-;43242:41;;43180:115;43356:23;43469:1;43436:17;43401:18;;43383:15;:36;;;;:::i;:::-;43382:71;;;;:::i;:::-;:88;;;;:::i;:::-;43356:114;-1:-1:-1;43481:26:0;43510:36;:15;43356:114;43510:19;:36::i;:::-;43481:65;-1:-1:-1;43587:21:0;43621:36;43481:65;43621:16;:36::i;:::-;43670:18;43691:44;:21;43717:17;43691:25;:44::i;:::-;43670:65;;43748:17;43768:51;43801:17;43768:28;43783:12;;43768:10;:14;;:28;;;;:::i;:51::-;43748:71;-1:-1:-1;43832:23:0;43858:22;43748:71;43858:10;:22;:::i;:::-;43914:1;43893:18;:22;;;43926:12;:16;;;43977:9;;43969:45;;43832:48;;-1:-1:-1;;;;;;43977:9:0;;44000;;43969:45;43914:1;43969:45;44000:9;43977;43969:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43955:59:0;;-1:-1:-1;;44031:19:0;;;;;:42;;;44072:1;44054:15;:19;44031:42;44027:278;;;44090:46;44103:15;44120;44090:12;:46::i;:::-;44260:18;;44156:137;;;15482:25:1;;;15538:2;15523:18;;15516:34;;;15566:18;;;15559:34;;;;44156:137:0;;;;;;15470:2:1;44156:137:0;;;44027:278;42901:1411;;;;;;;;;42873:1439::o;21777:98::-;21835:7;21862:5;21866:1;21862;:5;:::i;:::-;21855:12;21777:98;-1:-1:-1;;;21777:98:0:o;22176:::-;22234:7;22261:5;22265:1;22261;:5;:::i;21420:98::-;21478:7;21505:5;21509:1;21505;:5;:::i;41755:589::-;41905:16;;;41919:1;41905:16;;;;;;;;41881:21;;41905:16;;;;;;;;;;-1:-1:-1;41905:16:0;41881:40;;41950:4;41932;41937:1;41932:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41932:23:0;;;-1:-1:-1;;;;;41932:23:0;;;;;41976:15;-1:-1:-1;;;;;41976:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41966:4;41971:1;41966:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;41966:32:0;;;-1:-1:-1;;;;;41966:32:0;;;;;42011:62;42028:4;42043:15;42061:11;42011:8;:62::i;:::-;42112:224;;-1:-1:-1;;;42112:224:0;;-1:-1:-1;;;;;42112:15:0;:66;;;;:224;;42193:11;;42219:1;;42263:4;;42290;;42310:15;;42112:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41810:534;41755:589;:::o;42352:513::-;42500:62;42517:4;42532:15;42550:11;42500:8;:62::i;:::-;42605:15;-1:-1:-1;;;;;42605:31:0;;42644:9;42677:4;42697:11;42723:1;42766;42809:7;1463:6;;-1:-1:-1;;;;;1463:6:0;;1390:87;42809:7;42605:252;;;;;;-1:-1:-1;;;;;;42605:252:0;;;-1:-1:-1;;;;;17468:15:1;;;42605:252:0;;;17450:34:1;17500:18;;;17493:34;;;;17543:18;;;17536:34;;;;17586:18;;;17579:34;17650:15;;;17629:19;;;17622:44;42831:15:0;17682:19:1;;;17675:35;17384:19;;42605:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42352:513;;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:597::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;705:6;702:1;699:13;696:91;;;775:1;770:2;761:6;750:9;746:22;742:31;735:42;696:91;-1:-1:-1;848:2:1;827:15;-1:-1:-1;;823:29:1;808:45;;;;855:2;804:54;;267:597;-1:-1:-1;;;267:597:1:o;869:131::-;-1:-1:-1;;;;;944:31:1;;934:42;;924:70;;990:1;987;980:12;1005:315;1073:6;1081;1134:2;1122:9;1113:7;1109:23;1105:32;1102:52;;;1150:1;1147;1140:12;1102:52;1189:9;1176:23;1208:31;1233:5;1208:31;:::i;:::-;1258:5;1310:2;1295:18;;;;1282:32;;-1:-1:-1;;;1005:315:1:o;1517:247::-;1576:6;1629:2;1617:9;1608:7;1604:23;1600:32;1597:52;;;1645:1;1642;1635:12;1597:52;1684:9;1671:23;1703:31;1728:5;1703:31;:::i;2186:180::-;2245:6;2298:2;2286:9;2277:7;2273:23;2269:32;2266:52;;;2314:1;2311;2304:12;2266:52;-1:-1:-1;2337:23:1;;2186:180;-1:-1:-1;2186:180:1:o;2371:456::-;2448:6;2456;2464;2517:2;2505:9;2496:7;2492:23;2488:32;2485:52;;;2533:1;2530;2523:12;2485:52;2572:9;2559:23;2591:31;2616:5;2591:31;:::i;:::-;2641:5;-1:-1:-1;2698:2:1;2683:18;;2670:32;2711:33;2670:32;2711:33;:::i;:::-;2371:456;;2763:7;;-1:-1:-1;;;2817:2:1;2802:18;;;;2789:32;;2371:456::o;3229:388::-;3297:6;3305;3358:2;3346:9;3337:7;3333:23;3329:32;3326:52;;;3374:1;3371;3364:12;3326:52;3413:9;3400:23;3432:31;3457:5;3432:31;:::i;:::-;3482:5;-1:-1:-1;3539:2:1;3524:18;;3511:32;3552:33;3511:32;3552:33;:::i;:::-;3604:7;3594:17;;;3229:388;;;;;:::o;3622:118::-;3708:5;3701:13;3694:21;3687:5;3684:32;3674:60;;3730:1;3727;3720:12;3745:382;3810:6;3818;3871:2;3859:9;3850:7;3846:23;3842:32;3839:52;;;3887:1;3884;3877:12;3839:52;3926:9;3913:23;3945:31;3970:5;3945:31;:::i;:::-;3995:5;-1:-1:-1;4052:2:1;4037:18;;4024:32;4065:30;4024:32;4065:30;:::i;4132:241::-;4188:6;4241:2;4229:9;4220:7;4216:23;4212:32;4209:52;;;4257:1;4254;4247:12;4209:52;4296:9;4283:23;4315:28;4337:5;4315:28;:::i;4378:356::-;4580:2;4562:21;;;4599:18;;;4592:30;4658:34;4653:2;4638:18;;4631:62;4725:2;4710:18;;4378:356::o;4739:127::-;4800:10;4795:3;4791:20;4788:1;4781:31;4831:4;4828:1;4821:15;4855:4;4852:1;4845:15;4871:128;4911:3;4942:1;4938:6;4935:1;4932:13;4929:39;;;4948:18;;:::i;:::-;-1:-1:-1;4984:9:1;;4871:128::o;5004:380::-;5083:1;5079:12;;;;5126;;;5147:61;;5201:4;5193:6;5189:17;5179:27;;5147:61;5254:2;5246:6;5243:14;5223:18;5220:38;5217:161;;;5300:10;5295:3;5291:20;5288:1;5281:31;5335:4;5332:1;5325:15;5363:4;5360:1;5353:15;5217:161;;5004:380;;;:::o;5389:168::-;5429:7;5495:1;5491;5487:6;5483:14;5480:1;5477:21;5472:1;5465:9;5458:17;5454:45;5451:71;;;5502:18;;:::i;:::-;-1:-1:-1;5542:9:1;;5389:168::o;5562:217::-;5602:1;5628;5618:132;;5672:10;5667:3;5663:20;5660:1;5653:31;5707:4;5704:1;5697:15;5735:4;5732:1;5725:15;5618:132;-1:-1:-1;5764:9:1;;5562:217::o;7321:184::-;7391:6;7444:2;7432:9;7423:7;7419:23;7415:32;7412:52;;;7460:1;7457;7450:12;7412:52;-1:-1:-1;7483:16:1;;7321:184;-1:-1:-1;7321:184:1:o;7789:245::-;7856:6;7909:2;7897:9;7888:7;7884:23;7880:32;7877:52;;;7925:1;7922;7915:12;7877:52;7957:9;7951:16;7976:28;7998:5;7976:28;:::i;11692:401::-;11894:2;11876:21;;;11933:2;11913:18;;;11906:30;11972:34;11967:2;11952:18;;11945:62;-1:-1:-1;;;12038:2:1;12023:18;;12016:35;12083:3;12068:19;;11692:401::o;12098:399::-;12300:2;12282:21;;;12339:2;12319:18;;;12312:30;12378:34;12373:2;12358:18;;12351:62;-1:-1:-1;;;12444:2:1;12429:18;;12422:33;12487:3;12472:19;;12098:399::o;14533:125::-;14573:4;14601:1;14598;14595:8;14592:34;;;14606:18;;:::i;:::-;-1:-1:-1;14643:9:1;;14533:125::o;15736:127::-;15797:10;15792:3;15788:20;15785:1;15778:31;15828:4;15825:1;15818:15;15852:4;15849:1;15842:15;15868:251;15938:6;15991:2;15979:9;15970:7;15966:23;15962:32;15959:52;;;16007:1;16004;15997:12;15959:52;16039:9;16033:16;16058:31;16083:5;16058:31;:::i;16124:980::-;16386:4;16434:3;16423:9;16419:19;16465:6;16454:9;16447:25;16491:2;16529:6;16524:2;16513:9;16509:18;16502:34;16572:3;16567:2;16556:9;16552:18;16545:31;16596:6;16631;16625:13;16662:6;16654;16647:22;16700:3;16689:9;16685:19;16678:26;;16739:2;16731:6;16727:15;16713:29;;16760:1;16770:195;16784:6;16781:1;16778:13;16770:195;;;16849:13;;-1:-1:-1;;;;;16845:39:1;16833:52;;16940:15;;;;16905:12;;;;16881:1;16799:9;16770:195;;;-1:-1:-1;;;;;;;17021:32:1;;;;17016:2;17001:18;;16994:60;-1:-1:-1;;;17085:3:1;17070:19;17063:35;16982:3;16124:980;-1:-1:-1;;;16124:980:1:o;17721:306::-;17809:6;17817;17825;17878:2;17866:9;17857:7;17853:23;17849:32;17846:52;;;17894:1;17891;17884:12;17846:52;17923:9;17917:16;17907:26;;17973:2;17962:9;17958:18;17952:25;17942:35;;18017:2;18006:9;18002:18;17996:25;17986:35;;17721:306;;;;;:::o

Swarm Source

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