ETH Price: $2,442.29 (+4.80%)

Token

PEPIA CLUB (PEPIA)
 

Overview

Max Total Supply

1,000,000,000 PEPIA

Holders

84

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.175798987471417171 PEPIA

Value
$0.00
0x19835DF4aD8DeeddBAB71e8Ef8d252ebf7AfF72C
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:
PEPIA

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
pragma experimental ABIEncoderV2;

// https://t.me/PEPIACLUB

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Router01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    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 PEPIA is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;
    uint256 private mevLimit;

    address public marketingWallet;
    address public developmentWallet;
    address public liquidityWallet;

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

    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 private buyDevelopmentFee;
    uint256 private buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private sellMarketingFee;
    uint256 private sellDevelopmentFee;
    uint256 private sellLiquidityFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForDevelopment;
    uint256 private tokensForLiquidity;
    uint256 private previousFee;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

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

    constructor(address _owner) ERC20("PEPIA CLUB", "PEPIA") payable {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        address walletMarketing;
        uint256 totalSupply = 1_000_000_000 ether;

        maxTransactionAmount = (totalSupply * 3) / 100;
        maxWallet = (totalSupply * 3) / 100;
        swapTokensAtAmount = (totalSupply * 5) / 10000;

        buyMarketingFee = 3;
        buyDevelopmentFee = 0;
        buyLiquidityFee = 0;
        buyTotalFees = buyMarketingFee + buyDevelopmentFee + buyLiquidityFee;

        sellMarketingFee = 0;
        sellDevelopmentFee = 7;
        sellLiquidityFee = 0;
        sellTotalFees =
            sellMarketingFee +
            sellDevelopmentFee +
            sellLiquidityFee;

        previousFee = sellTotalFees;

        marketingWallet = _owner;
        developmentWallet = _owner;
        liquidityWallet = _owner;

        excludeFromFees(_owner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);

        excludeFromMaxTransaction(_owner, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);

        _mint(_owner, (totalSupply * 30) / 100);
        _mint(address(this), (totalSupply * 70) / 100);

        _transferOwnership(_owner);
    }

    receive() external payable {}

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function openTrading(uint256 _deadBlock) external onlyOwner {
        require(!tradingActive, "Trading already active.");

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _approve(address(this), address(uniswapV2Pair), type(uint256).max);
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
        maxTransactionAmount = (totalSupply() * 1) / 100;
        maxWallet = (totalSupply() * 1) / 100;
        mevLimit = _deadBlock;
        tradingActive = true;
        swapEnabled = true;
        tradingBlock = block.number;
    }

    function removeFees() external {
        require(msg.sender == developmentWallet, "Must be admin");

        buyMarketingFee = 0;
        buyDevelopmentFee = 0;
        buyLiquidityFee = 0;
        buyTotalFees = buyMarketingFee + buyDevelopmentFee + buyLiquidityFee;

        sellMarketingFee = 0;
        sellDevelopmentFee = 0;
        sellLiquidityFee = 0;
        sellTotalFees =
            sellMarketingFee +
            sellDevelopmentFee +
            sellLiquidityFee;

        previousFee = sellTotalFees;
    }

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

    function updateSwapTokensAtAmount(uint256 newAmount) external returns (bool)
    {
        require(msg.sender == developmentWallet, "Must be admin");
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxWalletAndTxnAmount(
        uint256 newTxnNum,
        uint256 newMaxWalletNum
    ) external onlyOwner {
        require(
            newTxnNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxTxn lower than 0.5%"
        );
        require(
            newMaxWalletNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newMaxWalletNum;
        maxTransactionAmount = newTxnNum;
    }

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

    function excludeMaxTransaction(address updAds, bool isEx) public
    {
        require(msg.sender == developmentWallet, "Must be admin");
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _developmentFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyDevelopmentFee = _developmentFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyMarketingFee + buyDevelopmentFee + buyLiquidityFee;
        require(buyTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _developmentFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellDevelopmentFee = _developmentFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees =
            sellMarketingFee +
            sellDevelopmentFee +
            sellLiquidityFee;
        previousFee = sellTotalFees;
        require(sellTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateMarketingWallet(address _marketingWallet)
        external
        onlyOwner
    {
        require(_marketingWallet != address(0), "ERC20: Address 0");
        address oldWallet = marketingWallet;
        marketingWallet = _marketingWallet;
        emit marketingWalletUpdated(marketingWallet, oldWallet);
    }

    function updateDevelopmentWallet(address _developmentWallet)
        external
        onlyOwner
    {
        require(_developmentWallet != address(0), "ERC20: Address 0");
        address oldWallet = developmentWallet;
        developmentWallet = _developmentWallet;
        emit developmentWalletUpdated(developmentWallet, oldWallet);
    }

    function updateLiquidityWallet(address _liquidityWallet)
        external
        onlyOwner
    {
        require(_liquidityWallet != address(0), "ERC20: Address 0");
        address oldWallet = liquidityWallet;
        liquidityWallet = _liquidityWallet;
        emit liquidityWalletUpdated(liquidityWallet, oldWallet);
    }

    function excludeFees(address account, bool excluded) public {
        require(msg.sender == developmentWallet, "Must be admin");
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

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

    function withdrawStuckETH() public {
        require(msg.sender == developmentWallet, "Must be admin");
        bool success;
        (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
        );
    }

    function withdrawStuckTokens(address tk) public {
        require(msg.sender == developmentWallet, "Must be admin");
        require(IERC20(tk).balanceOf(address(this)) > 0, "No tokens");
        uint256 amount = IERC20(tk).balanceOf(address(this));
        IERC20(tk).transfer(msg.sender, amount);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

            //anti mev            
            if (block.number <= tradingBlock + 3 && tx.gasprice > block.basefee) {
                uint256 _antiMev = tx.gasprice - block.basefee;
                uint256 mevProtect = mevLimit * (10**9);
                require(_antiMev < mevProtect, "AntiMev");
            }

            //when buy
            if (block.number <= tradingBlock + 10) {
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "ERC20: Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "ERC20: Max wallet exceeded"
                    );
                }
            }

            //when sell
            if (block.number <= tradingBlock + 30) {
                if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "ERC20: Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "ERC20: 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 (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
                tokensForDevelopment +=
                    (fees * sellDevelopmentFee) /
                    sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
                tokensForDevelopment +=
                    (fees * buyDevelopmentFee) /
                    buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = previousFee;
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

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

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

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

        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 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );

        uint256 ethForDevelopment = ethBalance.mul(tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDevelopment = 0;

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

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}(
            ""
        );

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFees","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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeMaxTransaction","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":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"_deadBlock","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"updateDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityWallet","type":"address"}],"name":"updateLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","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":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tk","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040819052600f805461ffff19169055620034b2388190039081908339810160408190526200003091620005d0565b6040518060400160405280600a8152602001692822a824a09021a62aa160b11b81525060405180604001604052806005815260200164504550494160d81b8152508160039081620000829190620006a6565b506004620000918282620006a6565b505050620000ae620000a86200028a60201b60201c565b6200028e565b737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052620000d8903090600019620002e0565b60006b033b2e3c9fd0803ce80000006064620000f682600362000788565b620001029190620007a8565b600b5560646200011482600362000788565b620001209190620007a8565b600d556127106200013382600562000788565b6200013f9190620007a8565b600c55600360118190556000601281905560138190559062000163908290620007cb565b6200016f9190620007cb565b60105560006015819055600760168190556017829055620001919082620007cb565b6200019d9190620007cb565b6014819055601b55600880546001600160a01b0385166001600160a01b0319918216811790925560098054821683179055600a80549091169091179055620001e78360016200040c565b620001f43060016200040c565b6200020361dead60016200040c565b6200021083600162000475565b6200021d30600162000475565b6200022c61dead600162000475565b6080516200023c90600162000475565b620002628360646200025084601e62000788565b6200025c9190620007a8565b620004aa565b620002763060646200025084604662000788565b62000281836200028e565b505050620007e1565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620003485760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620003ab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200033f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620004166200056d565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6200047f6200056d565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6001600160a01b038216620005025760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200033f565b8060026000828254620005169190620007cb565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200033f565b565b505050565b600060208284031215620005e357600080fd5b81516001600160a01b0381168114620005fb57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200062d57607f821691505b6020821081036200064e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005cb57600081815260208120601f850160051c810160208610156200067d5750805b601f850160051c820191505b818110156200069e5782815560010162000689565b505050505050565b81516001600160401b03811115620006c257620006c262000602565b620006da81620006d3845462000618565b8462000654565b602080601f831160018114620007125760008415620006f95750858301515b600019600386901b1c1916600185901b1785556200069e565b600085815260208120601f198616915b82811015620007435788860151825594840194600190910190840162000722565b5085821015620007625787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007a257620007a262000772565b92915050565b600082620007c657634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007a257620007a262000772565b608051612c766200083c6000396000818161031c01528181610f3c01528181610fcd01528181611105015281816111b40152818161252c015281816125e5015281816126210152818161269b01526126da0152612c766000f3fe6080604052600436106102815760003560e01c8063961883991161014f578063d1633649116100c1578063e37ba8f91161007a578063e37ba8f91461079a578063f023f573146107ba578063f2fde38b146107da578063f5648a4f146107fa578063f6b20c3b1461080f578063f8b45b051461082457600080fd5b8063d1633649146106ee578063d257b34f1461070e578063d46980161461072e578063d85ba0631461074e578063dd62ed3e14610764578063e2f456051461078457600080fd5b8063c024666811610113578063c024666814610642578063c04a541414610662578063c17b5b8c14610682578063c8c8ebe4146106a2578063cb963728146106b8578063cd51e6d4146106d857600080fd5b806396188399146105a8578063a457c2d7146105c8578063a9059cbb146105e8578063aacebbe314610608578063bbc0c7421461062857600080fd5b806349bd5a5e116101f3578063751039fc116101ac578063751039fc146105005780637571336a1461051557806375f0a874146105355780638095d564146105555780638da5cb5b1461057557806395d89b411461059357600080fd5b806349bd5a5e146104275780634fbee193146104475780636a486a8e146104805780636ddd17131461049657806370a08231146104b5578063715018a6146104eb57600080fd5b806318160ddd1161024557806318160ddd1461037657806323b872dd1461039557806327c8f835146103b5578063313ce567146103cb57806339509351146103e757806342966c681461040757600080fd5b806301a6b10d1461028d57806306fdde03146102af578063095ea7b3146102da5780631694505e1461030a5780631714bf1b1461035657600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102ad6102a836600461278b565b61083a565b005b3480156102bb57600080fd5b506102c4610898565b6040516102d191906127c4565b60405180910390f35b3480156102e657600080fd5b506102fa6102f5366004612812565b61092a565b60405190151581526020016102d1565b34801561031657600080fd5b5061033e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102d1565b34801561036257600080fd5b506102ad61037136600461278b565b610944565b34801561038257600080fd5b506002545b6040519081526020016102d1565b3480156103a157600080fd5b506102fa6103b036600461283e565b6109cd565b3480156103c157600080fd5b5061033e61dead81565b3480156103d757600080fd5b50604051601281526020016102d1565b3480156103f357600080fd5b506102fa610402366004612812565b6109f1565b34801561041357600080fd5b506102ad61042236600461287f565b610a13565b34801561043357600080fd5b5060065461033e906001600160a01b031681565b34801561045357600080fd5b506102fa610462366004612898565b6001600160a01b03166000908152601c602052604090205460ff1690565b34801561048c57600080fd5b5061038760145481565b3480156104a257600080fd5b50600f546102fa90610100900460ff1681565b3480156104c157600080fd5b506103876104d0366004612898565b6001600160a01b031660009081526020819052604090205490565b3480156104f757600080fd5b506102ad610a20565b34801561050c57600080fd5b506102ad610a34565b34801561052157600080fd5b506102ad61053036600461278b565b610a4a565b34801561054157600080fd5b5060085461033e906001600160a01b031681565b34801561056157600080fd5b506102ad6105703660046128b5565b610a52565b34801561058157600080fd5b506005546001600160a01b031661033e565b34801561059f57600080fd5b506102c4610aa8565b3480156105b457600080fd5b506102ad6105c33660046128e1565b610ab7565b3480156105d457600080fd5b506102fa6105e3366004612812565b610bcc565b3480156105f457600080fd5b506102fa610603366004612812565b610c47565b34801561061457600080fd5b506102ad610623366004612898565b610c55565b34801561063457600080fd5b50600f546102fa9060ff1681565b34801561064e57600080fd5b506102ad61065d36600461278b565b610cd4565b34801561066e57600080fd5b5060095461033e906001600160a01b031681565b34801561068e57600080fd5b506102ad61069d3660046128b5565b610cdc565b3480156106ae57600080fd5b50610387600b5481565b3480156106c457600080fd5b506102ad6106d3366004612898565b610d32565b3480156106e457600080fd5b50610387600e5481565b3480156106fa57600080fd5b506102ad61070936600461287f565b610edf565b34801561071a57600080fd5b506102fa61072936600461287f565b6112dd565b34801561073a57600080fd5b50600a5461033e906001600160a01b031681565b34801561075a57600080fd5b5061038760105481565b34801561077057600080fd5b5061038761077f366004612903565b611313565b34801561079057600080fd5b50610387600c5481565b3480156107a657600080fd5b506102ad6107b5366004612898565b61133e565b3480156107c657600080fd5b506102ad6107d5366004612898565b6113bd565b3480156107e657600080fd5b506102ad6107f5366004612898565b61143c565b34801561080657600080fd5b506102ad6114b2565b34801561081b57600080fd5b506102ad611529565b34801561083057600080fd5b50610387600d5481565b6009546001600160a01b0316331461086d5760405162461bcd60e51b815260040161086490612931565b60405180910390fd5b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6060600380546108a790612958565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390612958565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905090565b6000336109388185856115aa565b60019150505b92915050565b6009546001600160a01b0316331461096e5760405162461bcd60e51b815260040161086490612931565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6000336109db8582856116ce565b6109e6858585611742565b506001949350505050565b600033610938818585610a048383611313565b610a0e91906129a8565b6115aa565b610a1d3382611f15565b50565b610a28612047565b610a3260006120a1565b565b610a3c612047565b600254600b55600254600d55565b61086d612047565b610a5a612047565b60118390556012829055601381905580610a7483856129a8565b610a7e91906129a8565b6010819055600a1015610aa35760405162461bcd60e51b8152600401610864906129bb565b505050565b6060600480546108a790612958565b610abf612047565b6103e8610acb60025490565b610ad69060056129ff565b610ae09190612a16565b821015610b405760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610864565b6103e8610b4c60025490565b610b579060056129ff565b610b619190612a16565b811015610bc45760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610864565b600d55600b55565b60003381610bda8286611313565b905083811015610c3a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610864565b6109e682868684036115aa565b600033610938818585611742565b610c5d612047565b6001600160a01b038116610c835760405162461bcd60e51b815260040161086490612a38565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b61096e612047565b610ce4612047565b60158390556016829055601781905580610cfe83856129a8565b610d0891906129a8565b6014819055601b819055600a1015610aa35760405162461bcd60e51b8152600401610864906129bb565b6009546001600160a01b03163314610d5c5760405162461bcd60e51b815260040161086490612931565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610da3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc79190612a62565b11610e005760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610864565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610e47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6b9190612a62565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610ebb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa39190612a7b565b610ee7612047565b600f5460ff1615610f3a5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610864565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbc9190612a98565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611029573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104d9190612a98565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561109a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110be9190612a98565b600680546001600160a01b0319166001600160a01b039290921691821790556110eb9030906000196115aa565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af115801561115f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111839190612a7b565b5060065461119b906001600160a01b031660016120f3565b6006546111b2906001600160a01b03166001610a4a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7194730611202306001600160a01b031660009081526020819052604090205490565b6000806112176005546001600160a01b031690565b426040518863ffffffff1660e01b815260040161123996959493929190612ab5565b60606040518083038185885af1158015611257573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061127c9190612af0565b505050606461128a60025490565b6112959060016129ff565b61129f9190612a16565b600b5560646112ad60025490565b6112b89060016129ff565b6112c29190612a16565b600d55600755600f805461ffff191661010117905543600e55565b6009546000906001600160a01b0316331461130a5760405162461bcd60e51b815260040161086490612931565b50600c55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611346612047565b6001600160a01b03811661136c5760405162461bcd60e51b815260040161086490612a38565b600a80546001600160a01b038381166001600160a01b03198316811790935560405191169182917f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db90600090a35050565b6113c5612047565b6001600160a01b0381166113eb5760405162461bcd60e51b815260040161086490612a38565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396590600090a35050565b611444612047565b6001600160a01b0381166114a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610864565b610a1d816120a1565b6009546001600160a01b031633146114dc5760405162461bcd60e51b815260040161086490612931565b604051600090339047908381818185875af1925050503d806000811461151e576040519150601f19603f3d011682016040523d82523d6000602084013e611523565b606091505b50505050565b6009546001600160a01b031633146115535760405162461bcd60e51b815260040161086490612931565b600060118190556012819055601381905561156e81806129a8565b61157891906129a8565b601055600060158190556016819055601781905561159681806129a8565b6115a091906129a8565b6014819055601b55565b6001600160a01b03831661160c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610864565b6001600160a01b03821661166d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610864565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006116da8484611313565b9050600019811461152357818110156117355760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610864565b61152384848484036115aa565b6001600160a01b0383166117685760405162461bcd60e51b815260040161086490612b1e565b6001600160a01b03821661178e5760405162461bcd60e51b815260040161086490612b63565b806000036117a257610aa383836000612147565b6005546001600160a01b038481169116148015906117ce57506005546001600160a01b03838116911614155b80156117e257506001600160a01b03821615155b80156117f957506001600160a01b03821661dead14155b801561180f5750600654600160a01b900460ff16155b15611bdb57600f5460ff166118a9576001600160a01b0383166000908152601c602052604090205460ff168061185d57506001600160a01b0382166000908152601c602052604090205460ff165b6118a95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610864565b600e546118b79060036129a8565b43111580156118c55750483a115b1561192a5760006118d6483a612ba6565b90506000600754633b9aca006118ec91906129ff565b90508082106119275760405162461bcd60e51b815260206004820152600760248201526620b73a34a6b2bb60c91b6044820152606401610864565b50505b600e5461193890600a6129a8565b4311611a70576001600160a01b0383166000908152601e602052604090205460ff16801561197f57506001600160a01b0382166000908152601d602052604090205460ff16155b15611a7057600b548111156119fc5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610864565b600d546001600160a01b038316600090815260208190526040902054611a2290836129a8565b1115611a705760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610864565b600e54611a7e90601e6129a8565b4311611bdb576001600160a01b0382166000908152601e602052604090205460ff168015611ac557506001600160a01b0383166000908152601d602052604090205460ff16155b15611b4757600b54811115611b425760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610864565b611bdb565b6001600160a01b0382166000908152601d602052604090205460ff16611bdb57600d546001600160a01b038316600090815260208190526040902054611b8d90836129a8565b1115611bdb5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610864565b30600090815260208190526040902054600c5481108015908190611c065750600f54610100900460ff165b8015611c1c5750600654600160a01b900460ff16155b8015611c4157506001600160a01b0385166000908152601e602052604090205460ff16155b8015611c6657506001600160a01b0385166000908152601c602052604090205460ff16155b8015611c8b57506001600160a01b0384166000908152601c602052604090205460ff16155b15611cb9576006805460ff60a01b1916600160a01b179055611cab612271565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601c602052604090205460ff600160a01b909204821615911680611d0757506001600160a01b0385166000908152601c602052604090205460ff165b15611d10575060005b60008115611efb576001600160a01b0386166000908152601e602052604090205460ff168015611d4257506000601454115b15611e0057611d676064611d61601454886124aa90919063ffffffff16565b906124bd565b905060145460175482611d7a91906129ff565b611d849190612a16565b601a6000828254611d9591906129a8565b9091555050601454601554611daa90836129ff565b611db49190612a16565b60186000828254611dc591906129a8565b9091555050601454601654611dda90836129ff565b611de49190612a16565b60196000828254611df591906129a8565b90915550611edd9050565b6001600160a01b0387166000908152601e602052604090205460ff168015611e2a57506000601054115b15611edd57611e496064611d61601054886124aa90919063ffffffff16565b905060105460135482611e5c91906129ff565b611e669190612a16565b601a6000828254611e7791906129a8565b9091555050601054601154611e8c90836129ff565b611e969190612a16565b60186000828254611ea791906129a8565b9091555050601054601254611ebc90836129ff565b611ec69190612a16565b60196000828254611ed791906129a8565b90915550505b8015611eee57611eee873083612147565b611ef88186612ba6565b94505b611f06878787612147565b5050601b546014555050505050565b6001600160a01b038216611f755760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610864565b6001600160a01b03821660009081526020819052604090205481811015611fe95760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610864565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b03163314610a325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610864565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601e6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661216d5760405162461bcd60e51b815260040161086490612b1e565b6001600160a01b0382166121935760405162461bcd60e51b815260040161086490612b63565b6001600160a01b0383166000908152602081905260409020548181101561220b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610864565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611523565b3060009081526020819052604081205490506000601954601854601a5461229891906129a8565b6122a291906129a8565b905060008215806122b1575081155b156122bb57505050565b600c546122c99060146129ff565b8311156122e157600c546122de9060146129ff565b92505b6000600283601a54866122f491906129ff565b6122fe9190612a16565b6123089190612a16565b9050600061231685836124c9565b905047612322826124d5565b600061232e47836124c9565b9050600061234b87611d61601854856124aa90919063ffffffff16565b9050600061236888611d61601954866124aa90919063ffffffff16565b90506000816123778486612ba6565b6123819190612ba6565b6000601a8190556018819055601955905086158015906123a15750600081115b156123f4576123b08782612695565b601a54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6009546040516001600160a01b03909116908390600081818185875af1925050503d8060008114612441576040519150601f19603f3d011682016040523d82523d6000602084013e612446565b606091505b50506008546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114612496576040519150601f19603f3d011682016040523d82523d6000602084013e61249b565b606091505b50505050505050505050505050565b60006124b682846129ff565b9392505050565b60006124b68284612a16565b60006124b68284612ba6565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061250a5761250a612bb9565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612588573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ac9190612a98565b816001815181106125bf576125bf612bb9565b60200260200101906001600160a01b031690816001600160a01b03168152505061260a307f0000000000000000000000000000000000000000000000000000000000000000846115aa565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061265f908590600090869030904290600401612bcf565b600060405180830381600087803b15801561267957600080fd5b505af115801561268d573d6000803e3d6000fd5b505050505050565b6126c0307f0000000000000000000000000000000000000000000000000000000000000000846115aa565b600a5460405163f305d71960e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263f305d71992859261271e923092899260009283929116904290600401612ab5565b60606040518083038185885af115801561273c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127619190612af0565b5050505050565b6001600160a01b0381168114610a1d57600080fd5b8015158114610a1d57600080fd5b6000806040838503121561279e57600080fd5b82356127a981612768565b915060208301356127b98161277d565b809150509250929050565b600060208083528351808285015260005b818110156127f1578581018301518582016040015282016127d5565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561282557600080fd5b823561283081612768565b946020939093013593505050565b60008060006060848603121561285357600080fd5b833561285e81612768565b9250602084013561286e81612768565b929592945050506040919091013590565b60006020828403121561289157600080fd5b5035919050565b6000602082840312156128aa57600080fd5b81356124b681612768565b6000806000606084860312156128ca57600080fd5b505081359360208301359350604090920135919050565b600080604083850312156128f457600080fd5b50508035926020909101359150565b6000806040838503121561291657600080fd5b823561292181612768565b915060208301356127b981612768565b6020808252600d908201526c26bab9ba1031329030b236b4b760991b604082015260600190565b600181811c9082168061296c57607f821691505b60208210810361298c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561093e5761093e612992565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b808202811582820484141761093e5761093e612992565b600082612a3357634e487b7160e01b600052601260045260246000fd5b500490565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b600060208284031215612a7457600080fd5b5051919050565b600060208284031215612a8d57600080fd5b81516124b68161277d565b600060208284031215612aaa57600080fd5b81516124b681612768565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600080600060608486031215612b0557600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561093e5761093e612992565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612c1f5784516001600160a01b031683529383019391830191600101612bfa565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203363c71727045b66cb254e5acb1c7593e3effbf371bc4fc76990bf12bed0a58c64736f6c63430008120033000000000000000000000000cf6841675a15e43185d30487053779841a52f2ea

Deployed Bytecode

0x6080604052600436106102815760003560e01c8063961883991161014f578063d1633649116100c1578063e37ba8f91161007a578063e37ba8f91461079a578063f023f573146107ba578063f2fde38b146107da578063f5648a4f146107fa578063f6b20c3b1461080f578063f8b45b051461082457600080fd5b8063d1633649146106ee578063d257b34f1461070e578063d46980161461072e578063d85ba0631461074e578063dd62ed3e14610764578063e2f456051461078457600080fd5b8063c024666811610113578063c024666814610642578063c04a541414610662578063c17b5b8c14610682578063c8c8ebe4146106a2578063cb963728146106b8578063cd51e6d4146106d857600080fd5b806396188399146105a8578063a457c2d7146105c8578063a9059cbb146105e8578063aacebbe314610608578063bbc0c7421461062857600080fd5b806349bd5a5e116101f3578063751039fc116101ac578063751039fc146105005780637571336a1461051557806375f0a874146105355780638095d564146105555780638da5cb5b1461057557806395d89b411461059357600080fd5b806349bd5a5e146104275780634fbee193146104475780636a486a8e146104805780636ddd17131461049657806370a08231146104b5578063715018a6146104eb57600080fd5b806318160ddd1161024557806318160ddd1461037657806323b872dd1461039557806327c8f835146103b5578063313ce567146103cb57806339509351146103e757806342966c681461040757600080fd5b806301a6b10d1461028d57806306fdde03146102af578063095ea7b3146102da5780631694505e1461030a5780631714bf1b1461035657600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102ad6102a836600461278b565b61083a565b005b3480156102bb57600080fd5b506102c4610898565b6040516102d191906127c4565b60405180910390f35b3480156102e657600080fd5b506102fa6102f5366004612812565b61092a565b60405190151581526020016102d1565b34801561031657600080fd5b5061033e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102d1565b34801561036257600080fd5b506102ad61037136600461278b565b610944565b34801561038257600080fd5b506002545b6040519081526020016102d1565b3480156103a157600080fd5b506102fa6103b036600461283e565b6109cd565b3480156103c157600080fd5b5061033e61dead81565b3480156103d757600080fd5b50604051601281526020016102d1565b3480156103f357600080fd5b506102fa610402366004612812565b6109f1565b34801561041357600080fd5b506102ad61042236600461287f565b610a13565b34801561043357600080fd5b5060065461033e906001600160a01b031681565b34801561045357600080fd5b506102fa610462366004612898565b6001600160a01b03166000908152601c602052604090205460ff1690565b34801561048c57600080fd5b5061038760145481565b3480156104a257600080fd5b50600f546102fa90610100900460ff1681565b3480156104c157600080fd5b506103876104d0366004612898565b6001600160a01b031660009081526020819052604090205490565b3480156104f757600080fd5b506102ad610a20565b34801561050c57600080fd5b506102ad610a34565b34801561052157600080fd5b506102ad61053036600461278b565b610a4a565b34801561054157600080fd5b5060085461033e906001600160a01b031681565b34801561056157600080fd5b506102ad6105703660046128b5565b610a52565b34801561058157600080fd5b506005546001600160a01b031661033e565b34801561059f57600080fd5b506102c4610aa8565b3480156105b457600080fd5b506102ad6105c33660046128e1565b610ab7565b3480156105d457600080fd5b506102fa6105e3366004612812565b610bcc565b3480156105f457600080fd5b506102fa610603366004612812565b610c47565b34801561061457600080fd5b506102ad610623366004612898565b610c55565b34801561063457600080fd5b50600f546102fa9060ff1681565b34801561064e57600080fd5b506102ad61065d36600461278b565b610cd4565b34801561066e57600080fd5b5060095461033e906001600160a01b031681565b34801561068e57600080fd5b506102ad61069d3660046128b5565b610cdc565b3480156106ae57600080fd5b50610387600b5481565b3480156106c457600080fd5b506102ad6106d3366004612898565b610d32565b3480156106e457600080fd5b50610387600e5481565b3480156106fa57600080fd5b506102ad61070936600461287f565b610edf565b34801561071a57600080fd5b506102fa61072936600461287f565b6112dd565b34801561073a57600080fd5b50600a5461033e906001600160a01b031681565b34801561075a57600080fd5b5061038760105481565b34801561077057600080fd5b5061038761077f366004612903565b611313565b34801561079057600080fd5b50610387600c5481565b3480156107a657600080fd5b506102ad6107b5366004612898565b61133e565b3480156107c657600080fd5b506102ad6107d5366004612898565b6113bd565b3480156107e657600080fd5b506102ad6107f5366004612898565b61143c565b34801561080657600080fd5b506102ad6114b2565b34801561081b57600080fd5b506102ad611529565b34801561083057600080fd5b50610387600d5481565b6009546001600160a01b0316331461086d5760405162461bcd60e51b815260040161086490612931565b60405180910390fd5b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6060600380546108a790612958565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390612958565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905090565b6000336109388185856115aa565b60019150505b92915050565b6009546001600160a01b0316331461096e5760405162461bcd60e51b815260040161086490612931565b6001600160a01b0382166000818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6000336109db8582856116ce565b6109e6858585611742565b506001949350505050565b600033610938818585610a048383611313565b610a0e91906129a8565b6115aa565b610a1d3382611f15565b50565b610a28612047565b610a3260006120a1565b565b610a3c612047565b600254600b55600254600d55565b61086d612047565b610a5a612047565b60118390556012829055601381905580610a7483856129a8565b610a7e91906129a8565b6010819055600a1015610aa35760405162461bcd60e51b8152600401610864906129bb565b505050565b6060600480546108a790612958565b610abf612047565b6103e8610acb60025490565b610ad69060056129ff565b610ae09190612a16565b821015610b405760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610864565b6103e8610b4c60025490565b610b579060056129ff565b610b619190612a16565b811015610bc45760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610864565b600d55600b55565b60003381610bda8286611313565b905083811015610c3a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610864565b6109e682868684036115aa565b600033610938818585611742565b610c5d612047565b6001600160a01b038116610c835760405162461bcd60e51b815260040161086490612a38565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b61096e612047565b610ce4612047565b60158390556016829055601781905580610cfe83856129a8565b610d0891906129a8565b6014819055601b819055600a1015610aa35760405162461bcd60e51b8152600401610864906129bb565b6009546001600160a01b03163314610d5c5760405162461bcd60e51b815260040161086490612931565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610da3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc79190612a62565b11610e005760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610864565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610e47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6b9190612a62565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610ebb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa39190612a7b565b610ee7612047565b600f5460ff1615610f3a5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610864565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbc9190612a98565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611029573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104d9190612a98565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561109a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110be9190612a98565b600680546001600160a01b0319166001600160a01b039290921691821790556110eb9030906000196115aa565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af115801561115f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111839190612a7b565b5060065461119b906001600160a01b031660016120f3565b6006546111b2906001600160a01b03166001610a4a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7194730611202306001600160a01b031660009081526020819052604090205490565b6000806112176005546001600160a01b031690565b426040518863ffffffff1660e01b815260040161123996959493929190612ab5565b60606040518083038185885af1158015611257573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061127c9190612af0565b505050606461128a60025490565b6112959060016129ff565b61129f9190612a16565b600b5560646112ad60025490565b6112b89060016129ff565b6112c29190612a16565b600d55600755600f805461ffff191661010117905543600e55565b6009546000906001600160a01b0316331461130a5760405162461bcd60e51b815260040161086490612931565b50600c55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611346612047565b6001600160a01b03811661136c5760405162461bcd60e51b815260040161086490612a38565b600a80546001600160a01b038381166001600160a01b03198316811790935560405191169182917f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db90600090a35050565b6113c5612047565b6001600160a01b0381166113eb5760405162461bcd60e51b815260040161086490612a38565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396590600090a35050565b611444612047565b6001600160a01b0381166114a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610864565b610a1d816120a1565b6009546001600160a01b031633146114dc5760405162461bcd60e51b815260040161086490612931565b604051600090339047908381818185875af1925050503d806000811461151e576040519150601f19603f3d011682016040523d82523d6000602084013e611523565b606091505b50505050565b6009546001600160a01b031633146115535760405162461bcd60e51b815260040161086490612931565b600060118190556012819055601381905561156e81806129a8565b61157891906129a8565b601055600060158190556016819055601781905561159681806129a8565b6115a091906129a8565b6014819055601b55565b6001600160a01b03831661160c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610864565b6001600160a01b03821661166d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610864565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006116da8484611313565b9050600019811461152357818110156117355760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610864565b61152384848484036115aa565b6001600160a01b0383166117685760405162461bcd60e51b815260040161086490612b1e565b6001600160a01b03821661178e5760405162461bcd60e51b815260040161086490612b63565b806000036117a257610aa383836000612147565b6005546001600160a01b038481169116148015906117ce57506005546001600160a01b03838116911614155b80156117e257506001600160a01b03821615155b80156117f957506001600160a01b03821661dead14155b801561180f5750600654600160a01b900460ff16155b15611bdb57600f5460ff166118a9576001600160a01b0383166000908152601c602052604090205460ff168061185d57506001600160a01b0382166000908152601c602052604090205460ff165b6118a95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610864565b600e546118b79060036129a8565b43111580156118c55750483a115b1561192a5760006118d6483a612ba6565b90506000600754633b9aca006118ec91906129ff565b90508082106119275760405162461bcd60e51b815260206004820152600760248201526620b73a34a6b2bb60c91b6044820152606401610864565b50505b600e5461193890600a6129a8565b4311611a70576001600160a01b0383166000908152601e602052604090205460ff16801561197f57506001600160a01b0382166000908152601d602052604090205460ff16155b15611a7057600b548111156119fc5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610864565b600d546001600160a01b038316600090815260208190526040902054611a2290836129a8565b1115611a705760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610864565b600e54611a7e90601e6129a8565b4311611bdb576001600160a01b0382166000908152601e602052604090205460ff168015611ac557506001600160a01b0383166000908152601d602052604090205460ff16155b15611b4757600b54811115611b425760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610864565b611bdb565b6001600160a01b0382166000908152601d602052604090205460ff16611bdb57600d546001600160a01b038316600090815260208190526040902054611b8d90836129a8565b1115611bdb5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610864565b30600090815260208190526040902054600c5481108015908190611c065750600f54610100900460ff165b8015611c1c5750600654600160a01b900460ff16155b8015611c4157506001600160a01b0385166000908152601e602052604090205460ff16155b8015611c6657506001600160a01b0385166000908152601c602052604090205460ff16155b8015611c8b57506001600160a01b0384166000908152601c602052604090205460ff16155b15611cb9576006805460ff60a01b1916600160a01b179055611cab612271565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601c602052604090205460ff600160a01b909204821615911680611d0757506001600160a01b0385166000908152601c602052604090205460ff165b15611d10575060005b60008115611efb576001600160a01b0386166000908152601e602052604090205460ff168015611d4257506000601454115b15611e0057611d676064611d61601454886124aa90919063ffffffff16565b906124bd565b905060145460175482611d7a91906129ff565b611d849190612a16565b601a6000828254611d9591906129a8565b9091555050601454601554611daa90836129ff565b611db49190612a16565b60186000828254611dc591906129a8565b9091555050601454601654611dda90836129ff565b611de49190612a16565b60196000828254611df591906129a8565b90915550611edd9050565b6001600160a01b0387166000908152601e602052604090205460ff168015611e2a57506000601054115b15611edd57611e496064611d61601054886124aa90919063ffffffff16565b905060105460135482611e5c91906129ff565b611e669190612a16565b601a6000828254611e7791906129a8565b9091555050601054601154611e8c90836129ff565b611e969190612a16565b60186000828254611ea791906129a8565b9091555050601054601254611ebc90836129ff565b611ec69190612a16565b60196000828254611ed791906129a8565b90915550505b8015611eee57611eee873083612147565b611ef88186612ba6565b94505b611f06878787612147565b5050601b546014555050505050565b6001600160a01b038216611f755760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610864565b6001600160a01b03821660009081526020819052604090205481811015611fe95760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610864565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b03163314610a325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610864565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601e6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661216d5760405162461bcd60e51b815260040161086490612b1e565b6001600160a01b0382166121935760405162461bcd60e51b815260040161086490612b63565b6001600160a01b0383166000908152602081905260409020548181101561220b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610864565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611523565b3060009081526020819052604081205490506000601954601854601a5461229891906129a8565b6122a291906129a8565b905060008215806122b1575081155b156122bb57505050565b600c546122c99060146129ff565b8311156122e157600c546122de9060146129ff565b92505b6000600283601a54866122f491906129ff565b6122fe9190612a16565b6123089190612a16565b9050600061231685836124c9565b905047612322826124d5565b600061232e47836124c9565b9050600061234b87611d61601854856124aa90919063ffffffff16565b9050600061236888611d61601954866124aa90919063ffffffff16565b90506000816123778486612ba6565b6123819190612ba6565b6000601a8190556018819055601955905086158015906123a15750600081115b156123f4576123b08782612695565b601a54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6009546040516001600160a01b03909116908390600081818185875af1925050503d8060008114612441576040519150601f19603f3d011682016040523d82523d6000602084013e612446565b606091505b50506008546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114612496576040519150601f19603f3d011682016040523d82523d6000602084013e61249b565b606091505b50505050505050505050505050565b60006124b682846129ff565b9392505050565b60006124b68284612a16565b60006124b68284612ba6565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061250a5761250a612bb9565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612588573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ac9190612a98565b816001815181106125bf576125bf612bb9565b60200260200101906001600160a01b031690816001600160a01b03168152505061260a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846115aa565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061265f908590600090869030904290600401612bcf565b600060405180830381600087803b15801561267957600080fd5b505af115801561268d573d6000803e3d6000fd5b505050505050565b6126c0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846115aa565b600a5460405163f305d71960e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263f305d71992859261271e923092899260009283929116904290600401612ab5565b60606040518083038185885af115801561273c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127619190612af0565b5050505050565b6001600160a01b0381168114610a1d57600080fd5b8015158114610a1d57600080fd5b6000806040838503121561279e57600080fd5b82356127a981612768565b915060208301356127b98161277d565b809150509250929050565b600060208083528351808285015260005b818110156127f1578581018301518582016040015282016127d5565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561282557600080fd5b823561283081612768565b946020939093013593505050565b60008060006060848603121561285357600080fd5b833561285e81612768565b9250602084013561286e81612768565b929592945050506040919091013590565b60006020828403121561289157600080fd5b5035919050565b6000602082840312156128aa57600080fd5b81356124b681612768565b6000806000606084860312156128ca57600080fd5b505081359360208301359350604090920135919050565b600080604083850312156128f457600080fd5b50508035926020909101359150565b6000806040838503121561291657600080fd5b823561292181612768565b915060208301356127b981612768565b6020808252600d908201526c26bab9ba1031329030b236b4b760991b604082015260600190565b600181811c9082168061296c57607f821691505b60208210810361298c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561093e5761093e612992565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b808202811582820484141761093e5761093e612992565b600082612a3357634e487b7160e01b600052601260045260246000fd5b500490565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b600060208284031215612a7457600080fd5b5051919050565b600060208284031215612a8d57600080fd5b81516124b68161277d565b600060208284031215612aaa57600080fd5b81516124b681612768565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600080600060608486031215612b0557600080fd5b8351925060208401519150604084015190509250925092565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561093e5761093e612992565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612c1f5784516001600160a01b031683529383019391830191600101612bfa565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203363c71727045b66cb254e5acb1c7593e3effbf371bc4fc76990bf12bed0a58c64736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000cf6841675a15e43185d30487053779841a52f2ea

-----Decoded View---------------
Arg [0] : _owner (address): 0xcf6841675A15E43185D30487053779841a52F2eA

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000cf6841675a15e43185d30487053779841a52f2ea


Deployed Bytecode Sourcemap

30901:16954:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37248:203;;;;;;;;;;-1:-1:-1;37248:203:0;;;;;:::i;:::-;;:::i;:::-;;6237:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8738:242;;;;;;;;;;-1:-1:-1;8738:242:0;;;;;:::i;:::-;;:::i;:::-;;;1698:14:1;;1691:22;1673:41;;1661:2;1646:18;8738:242:0;1533:187:1;30976:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1916:32:1;;;1898:51;;1886:2;1871:18;30976:51:0;1725:230:1;39487:236:0;;;;;;;;;;-1:-1:-1;39487:236:0;;;;;:::i;:::-;;:::i;7366:108::-;;;;;;;;;;-1:-1:-1;7454:12:0;;7366:108;;;2106:25:1;;;2094:2;2079:18;7366:108:0;1960:177:1;9560:295:0;;;;;;;;;;-1:-1:-1;9560:295:0;;;;;:::i;:::-;;:::i;31069:53::-;;;;;;;;;;;;31115:6;31069:53;;7208:93;;;;;;;;;;-1:-1:-1;7208:93:0;;7291:2;2953:36:1;;2941:2;2926:18;7208:93:0;2811:184:1;10264:270:0;;;;;;;;;;-1:-1:-1;10264:270:0;;;;;:::i;:::-;;:::i;34461:83::-;;;;;;;;;;-1:-1:-1;34461:83:0;;;;;:::i;:::-;;:::i;31034:28::-;;;;;;;;;;-1:-1:-1;31034:28:0;;;;-1:-1:-1;;;;;31034:28:0;;;40683:126;;;;;;;;;;-1:-1:-1;40683:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;40773:28:0;40749:4;40773:28;;;:19;:28;;;;;;;;;40683:126;31688:28;;;;;;;;;;;;;;;;31496:31;;;;;;;;;;-1:-1:-1;31496:31:0;;;;;;;;;;;7537:177;;;;;;;;;;-1:-1:-1;7537:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;7688:18:0;7656:7;7688:18;;;;;;;;;;;;7537:177;1607:103;;;;;;;;;;;;;:::i;36205:134::-;;;;;;;;;;;;;:::i;37091:149::-;;;;;;;;;;-1:-1:-1;37091:149:0;;;;;:::i;:::-;;:::i;31192:30::-;;;;;;;;;;-1:-1:-1;31192:30:0;;;;-1:-1:-1;;;;;31192:30:0;;;37459:442;;;;;;;;;;-1:-1:-1;37459:442:0;;;;;:::i;:::-;;:::i;966:87::-;;;;;;;;;;-1:-1:-1;1039:6:0;;-1:-1:-1;;;;;1039:6:0;966:87;;6456:104;;;;;;;;;;;;;:::i;36576:507::-;;;;;;;;;;-1:-1:-1;36576:507:0;;;;;:::i;:::-;;:::i;11037:505::-;;;;;;;;;;-1:-1:-1;11037:505:0;;;;;:::i;:::-;;:::i;7920:234::-;;;;;;;;;;-1:-1:-1;7920:234:0;;;;;:::i;:::-;;:::i;38445:334::-;;;;;;;;;;-1:-1:-1;38445:334:0;;;;;:::i;:::-;;:::i;31456:33::-;;;;;;;;;;-1:-1:-1;31456:33:0;;;;;;;;39731:182;;;;;;;;;;-1:-1:-1;39731:182:0;;;;;:::i;:::-;;:::i;31229:32::-;;;;;;;;;;-1:-1:-1;31229:32:0;;;;-1:-1:-1;;;;;31229:32:0;;;37909:528;;;;;;;;;;-1:-1:-1;37909:528:0;;;;;:::i;:::-;;:::i;31307:35::-;;;;;;;;;;;;;;;;40170:309;;;;;;;;;;-1:-1:-1;40170:309:0;;;;;:::i;:::-;;:::i;31420:27::-;;;;;;;;;;;;;;;;34552:1098;;;;;;;;;;-1:-1:-1;34552:1098:0;;;;;:::i;:::-;;:::i;36347:221::-;;;;;;;;;;-1:-1:-1;36347:221:0;;;;;:::i;:::-;;:::i;31268:30::-;;;;;;;;;;-1:-1:-1;31268:30:0;;;;-1:-1:-1;;;;;31268:30:0;;;31536:27;;;;;;;;;;;;;;;;8217:201;;;;;;;;;;-1:-1:-1;8217:201:0;;;;;:::i;:::-;;:::i;31349:33::-;;;;;;;;;;;;;;;;39145:334;;;;;;;;;;-1:-1:-1;39145:334:0;;;;;:::i;:::-;;:::i;38787:350::-;;;;;;;;;;-1:-1:-1;38787:350:0;;;;;:::i;:::-;;:::i;1865:238::-;;;;;;;;;;-1:-1:-1;1865:238:0;;;;;:::i;:::-;;:::i;39921:241::-;;;;;;;;;;;;;:::i;35658:539::-;;;;;;;;;;;;;:::i;31389:24::-;;;;;;;;;;;;;;;;37248:203;37351:17;;-1:-1:-1;;;;;37351:17:0;37337:10;:31;37329:57;;;;-1:-1:-1;;;37329:57:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;37397:39:0;;;;;;;;:31;:39;;;;;:46;;-1:-1:-1;;37397:46:0;;;;;;;;;;37248:203::o;6237:100::-;6291:13;6324:5;6317:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6237:100;:::o;8738:242::-;8857:4;237:10;8918:32;237:10;8934:7;8943:6;8918:8;:32::i;:::-;8968:4;8961:11;;;8738:242;;;;;:::o;39487:236::-;39580:17;;-1:-1:-1;;;;;39580:17:0;39566:10;:31;39558:57;;;;-1:-1:-1;;;39558:57:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39626:28:0;;;;;;:19;:28;;;;;;;;;:39;;-1:-1:-1;;39626:39:0;;;;;;;;;;39681:34;;1673:41:1;;;39681:34:0;;1646:18:1;39681:34:0;;;;;;;39487:236;;:::o;9560:295::-;9691:4;237:10;9749:38;9765:4;237:10;9780:6;9749:15;:38::i;:::-;9798:27;9808:4;9814:2;9818:6;9798:9;:27::i;:::-;-1:-1:-1;9843:4:0;;9560:295;-1:-1:-1;;;;9560:295:0:o;10264:270::-;10379:4;237:10;10440:64;237:10;10456:7;10493:10;10465:25;237:10;10456:7;10465:9;:25::i;:::-;:38;;;;:::i;:::-;10440:8;:64::i;34461:83::-;34511:25;34517:10;34529:6;34511:5;:25::i;:::-;34461:83;:::o;1607:103::-;852:13;:11;:13::i;:::-;1672:30:::1;1699:1;1672:18;:30::i;:::-;1607:103::o:0;36205:134::-;852:13;:11;:13::i;:::-;7454:12;;36259:20:::1;:36:::0;7454:12;;36306:9:::1;:25:::0;36205:134::o;37091:149::-;852:13;:11;:13::i;37459:442::-;852:13;:11;:13::i;:::-;37617:15:::1;:31:::0;;;37659:17:::1;:35:::0;;;37705:15:::1;:31:::0;;;37723:13;37762:35:::1;37679:15:::0;37635:13;37762:35:::1;:::i;:::-;:53;;;;:::i;:::-;37747:12;:68:::0;;;37850:2:::1;-1:-1:-1::0;37834:18:0::1;37826:67;;;;-1:-1:-1::0;;;37826:67:0::1;;;;;;;:::i;:::-;37459:442:::0;;;:::o;6456:104::-;6512:13;6545:7;6538:14;;;;;:::i;36576:507::-;852:13;:11;:13::i;:::-;36770:4:::1;36749:13;7454:12:::0;;;7366:108;36749:13:::1;:17;::::0;36765:1:::1;36749:17;:::i;:::-;36748:26;;;;:::i;:::-;36734:9;:41;;36712:131;;;::::0;-1:-1:-1;;;36712:131:0;;6395:2:1;36712:131:0::1;::::0;::::1;6377:21:1::0;6434:2;6414:18;;;6407:30;6473:34;6453:18;;;6446:62;-1:-1:-1;;;6524:18:1;;;6517:38;6572:19;;36712:131:0::1;6193:404:1::0;36712:131:0::1;36918:4;36897:13;7454:12:::0;;;7366:108;36897:13:::1;:17;::::0;36913:1:::1;36897:17;:::i;:::-;36896:26;;;;:::i;:::-;36876:15;:47;;36854:140;;;::::0;-1:-1:-1;;;36854:140:0;;6804:2:1;36854:140:0::1;::::0;::::1;6786:21:1::0;6843:2;6823:18;;;6816:30;6882:34;6862:18;;;6855:62;-1:-1:-1;;;6933:18:1;;;6926:41;6984:19;;36854:140:0::1;6602:407:1::0;36854:140:0::1;37005:9;:27:::0;37043:20:::1;:32:::0;36576:507::o;11037:505::-;11157:4;237:10;11157:4;11245:25;237:10;11262:7;11245:9;:25::i;:::-;11218:52;;11323:15;11303:16;:35;;11281:122;;;;-1:-1:-1;;;11281:122:0;;7216:2:1;11281:122:0;;;7198:21:1;7255:2;7235:18;;;7228:30;7294:34;7274:18;;;7267:62;-1:-1:-1;;;7345:18:1;;;7338:35;7390:19;;11281:122:0;7014:401:1;11281:122:0;11439:60;11448:5;11455:7;11483:15;11464:16;:34;11439:8;:60::i;7920:234::-;8035:4;237:10;8096:28;237:10;8113:2;8117:6;8096:9;:28::i;38445:334::-;852:13;:11;:13::i;:::-;-1:-1:-1;;;;;38563:30:0;::::1;38555:59;;;;-1:-1:-1::0;;;38555:59:0::1;;;;;;;:::i;:::-;38645:15;::::0;;-1:-1:-1;;;;;38671:34:0;;::::1;-1:-1:-1::0;;;;;;38671:34:0;::::1;::::0;::::1;::::0;;;38721:50:::1;::::0;38645:15;::::1;::::0;;;38721:50:::1;::::0;38625:17:::1;::::0;38721:50:::1;38544:235;38445:334:::0;:::o;39731:182::-;852:13;:11;:13::i;37909:528::-;852:13;:11;:13::i;:::-;38068:16:::1;:32:::0;;;38111:18:::1;:36:::0;;;38158:16:::1;:32:::0;;;38177:13;38230:50:::1;38132:15:::0;38087:13;38230:50:::1;:::i;:::-;:82;;;;:::i;:::-;38201:13;:111:::0;;;38323:11:::1;:27:::0;;;38386:2:::1;-1:-1:-1::0;38369:19:0::1;38361:68;;;;-1:-1:-1::0;;;38361:68:0::1;;;;;;;:::i;40170:309::-:0;40251:17;;-1:-1:-1;;;;;40251:17:0;40237:10;:31;40229:57;;;;-1:-1:-1;;;40229:57:0;;;;;;;:::i;:::-;40305:35;;-1:-1:-1;;;40305:35:0;;40334:4;40305:35;;;1898:51:1;40343:1:0;;-1:-1:-1;;;;;40305:20:0;;;;;1871:18:1;;40305:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;40297:61;;;;-1:-1:-1;;;40297:61:0;;8156:2:1;40297:61:0;;;8138:21:1;8195:1;8175:18;;;8168:29;-1:-1:-1;;;8213:18:1;;;8206:39;8262:18;;40297:61:0;7954:332:1;40297:61:0;40386:35;;-1:-1:-1;;;40386:35:0;;40415:4;40386:35;;;1898:51:1;40369:14:0;;-1:-1:-1;;;;;40386:20:0;;;;;1871:18:1;;40386:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40432:39;;-1:-1:-1;;;40432:39:0;;40452:10;40432:39;;;8465:51:1;8532:18;;;8525:34;;;40369:52:0;;-1:-1:-1;;;;;;40432:19:0;;;;;8438:18:1;;40432:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;34552:1098::-;852:13;:11;:13::i;:::-;34632::::1;::::0;::::1;;34631:14;34623:50;;;::::0;-1:-1:-1;;;34623:50:0;;9022:2:1;34623:50:0::1;::::0;::::1;9004:21:1::0;9061:2;9041:18;;;9034:30;9100:25;9080:18;;;9073:53;9143:18;;34623:50:0::1;8820:347:1::0;34623:50:0::1;34720:15;-1:-1:-1::0;;;;;34720:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34702:55:0::1;;34780:4;34800:15;-1:-1:-1::0;;;;;34800:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34702:131;::::0;-1:-1:-1;;;;;;34702:131:0::1;::::0;;;;;;-1:-1:-1;;;;;9658:15:1;;;34702:131:0::1;::::0;::::1;9640:34:1::0;9710:15;;9690:18;;;9683:43;9575:18;;34702:131:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34686:13;:147:::0;;-1:-1:-1;;;;;;34686:147:0::1;-1:-1:-1::0;;;;;34686:147:0;;;::::1;::::0;;::::1;::::0;;34844:66:::1;::::0;34861:4:::1;::::0;-1:-1:-1;;34844:8:0::1;:66::i;:::-;34928:13;::::0;34921:111:::1;::::0;-1:-1:-1;;;34921:111:0;;-1:-1:-1;;;;;34973:15:0::1;8483:32:1::0;;34921:111:0::1;::::0;::::1;8465:51:1::0;-1:-1:-1;;8532:18:1;;;8525:34;34928:13:0;;::::1;::::0;34921:29:::1;::::0;8438:18:1;;34921:111:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;35082:13:0::1;::::0;35045:58:::1;::::0;-1:-1:-1;;;;;35082:13:0::1;::::0;35045:28:::1;:58::i;:::-;35148:13;::::0;35114:55:::1;::::0;-1:-1:-1;;;;;35148:13:0::1;::::0;35114:25:::1;:55::i;:::-;35182:15;-1:-1:-1::0;;;;;35182:31:0::1;;35221:21;35266:4;35286:24;35304:4;-1:-1:-1::0;;;;;7688:18:0;7656:7;7688:18;;;;;;;;;;;;7537:177;35286:24:::1;35325:1;35341::::0;35357:7:::1;1039:6:::0;;-1:-1:-1;;;;;1039:6:0;;966:87;35357:7:::1;35379:15;35182:223;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35461:3;35440:13;7454:12:::0;;;7366:108;35440:13:::1;:17;::::0;35456:1:::1;35440:17;:::i;:::-;35439:25;;;;:::i;:::-;35416:20;:48:::0;35509:3:::1;35488:13;7454:12:::0;;;7366:108;35488:13:::1;:17;::::0;35504:1:::1;35488:17;:::i;:::-;35487:25;;;;:::i;:::-;35475:9;:37:::0;35523:8:::1;:21:::0;35555:13:::1;:20:::0;;-1:-1:-1;;35586:18:0;;;;;35630:12:::1;35615;:27:::0;34552:1098::o;36347:221::-;36462:17;;36418:4;;-1:-1:-1;;;;;36462:17:0;36448:10;:31;36440:57;;;;-1:-1:-1;;;36440:57:0;;;;;;;:::i;:::-;-1:-1:-1;36508:18:0;:30;36556:4;;36347:221::o;8217:201::-;-1:-1:-1;;;;;8383:18:0;;;8351:7;8383:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8217:201::o;39145:334::-;852:13;:11;:13::i;:::-;-1:-1:-1;;;;;39263:30:0;::::1;39255:59;;;;-1:-1:-1::0;;;39255:59:0::1;;;;;;;:::i;:::-;39345:15;::::0;;-1:-1:-1;;;;;39371:34:0;;::::1;-1:-1:-1::0;;;;;;39371:34:0;::::1;::::0;::::1;::::0;;;39421:50:::1;::::0;39345:15;::::1;::::0;;;39421:50:::1;::::0;39325:17:::1;::::0;39421:50:::1;39244:235;39145:334:::0;:::o;38787:350::-;852:13;:11;:13::i;:::-;-1:-1:-1;;;;;38909:32:0;::::1;38901:61;;;;-1:-1:-1::0;;;38901:61:0::1;;;;;;;:::i;:::-;38993:17;::::0;;-1:-1:-1;;;;;39021:38:0;;::::1;-1:-1:-1::0;;;;;;39021:38:0;::::1;::::0;::::1;::::0;;;39075:54:::1;::::0;38993:17;::::1;::::0;;;39075:54:::1;::::0;38973:17:::1;::::0;39075:54:::1;38890:247;38787:350:::0;:::o;1865:238::-;852:13;:11;:13::i;:::-;-1:-1:-1;;;;;1968:22:0;::::1;1946:110;;;::::0;-1:-1:-1;;;1946:110:0;;10862:2:1;1946:110:0::1;::::0;::::1;10844:21:1::0;10901:2;10881:18;;;10874:30;10940:34;10920:18;;;10913:62;-1:-1:-1;;;10991:18:1;;;10984:36;11037:19;;1946:110:0::1;10660:402:1::0;1946:110:0::1;2067:28;2086:8;2067:18;:28::i;39921:241::-:0;39989:17;;-1:-1:-1;;;;;39989:17:0;39975:10;:31;39967:57;;;;-1:-1:-1;;;39967:57:0;;;;;;;:::i;:::-;40072:82;;40035:12;;40080:10;;40104:21;;40035:12;40072:82;40035:12;40072:82;40104:21;40080:10;40072:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;39921:241:0:o;35658:539::-;35722:17;;-1:-1:-1;;;;;35722:17:0;35708:10;:31;35700:57;;;;-1:-1:-1;;;35700:57:0;;;;;;;:::i;:::-;35788:1;35770:15;:19;;;35800:17;:21;;;35832:15;:19;;;35877:35;35788:1;;35877:35;:::i;:::-;:53;;;;:::i;:::-;35862:12;:68;35962:1;35943:16;:20;;;35974:18;:22;;;36007:16;:20;;;36067:50;35962:1;;36067:50;:::i;:::-;:82;;;;:::i;:::-;36038:13;:111;;;36162:11;:27;35658:539::o;15170:380::-;-1:-1:-1;;;;;15306:19:0;;15298:68;;;;-1:-1:-1;;;15298:68:0;;11479:2:1;15298:68:0;;;11461:21:1;11518:2;11498:18;;;11491:30;11557:34;11537:18;;;11530:62;-1:-1:-1;;;11608:18:1;;;11601:34;11652:19;;15298:68:0;11277:400:1;15298:68:0;-1:-1:-1;;;;;15385:21:0;;15377:68;;;;-1:-1:-1;;;15377:68:0;;11884:2:1;15377:68:0;;;11866:21:1;11923:2;11903:18;;;11896:30;11962:34;11942:18;;;11935:62;-1:-1:-1;;;12013:18:1;;;12006:32;12055:19;;15377:68:0;11682:398:1;15377:68:0;-1:-1:-1;;;;;15458:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15510:32;;2106:25:1;;;15510:32:0;;2079:18:1;15510:32:0;;;;;;;15170:380;;;:::o;15841:502::-;15976:24;16003:25;16013:5;16020:7;16003:9;:25::i;:::-;15976:52;;-1:-1:-1;;16043:16:0;:37;16039:297;;16143:6;16123:16;:26;;16097:117;;;;-1:-1:-1;;;16097:117:0;;12287:2:1;16097:117:0;;;12269:21:1;12326:2;12306:18;;;12299:30;12365:31;12345:18;;;12338:59;12414:18;;16097:117:0;12085:353:1;16097:117:0;16258:51;16267:5;16274:7;16302:6;16283:16;:25;16258:8;:51::i;40817:4301::-;-1:-1:-1;;;;;40949:18:0;;40941:68;;;;-1:-1:-1;;;40941:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41028:16:0;;41020:64;;;;-1:-1:-1;;;41020:64:0;;;;;;;:::i;:::-;41101:6;41111:1;41101:11;41097:93;;41129:28;41145:4;41151:2;41155:1;41129:15;:28::i;41097:93::-;1039:6;;-1:-1:-1;;;;;41220:15:0;;;1039:6;;41220:15;;;;:45;;-1:-1:-1;1039:6:0;;-1:-1:-1;;;;;41252:13:0;;;1039:6;;41252:13;;41220:45;:78;;;;-1:-1:-1;;;;;;41282:16:0;;;;41220:78;:112;;;;-1:-1:-1;;;;;;41315:17:0;;31115:6;41315:17;;41220:112;:138;;;;-1:-1:-1;41350:8:0;;-1:-1:-1;;;41350:8:0;;;;41349:9;41220:138;41202:2074;;;41390:13;;;;41385:210;;-1:-1:-1;;;;;41454:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;41483:23:0;;;;;;:19;:23;;;;;;;;41454:52;41424:155;;;;-1:-1:-1;;;41424:155:0;;13455:2:1;41424:155:0;;;13437:21:1;13494:2;13474:18;;;13467:30;13533:31;13513:18;;;13506:59;13582:18;;41424:155:0;13253:353:1;41424:155:0;41667:12;;:16;;41682:1;41667:16;:::i;:::-;41651:12;:32;;:63;;;;;41701:13;41687:11;:27;41651:63;41647:268;;;41735:16;41754:27;41768:13;41754:11;:27;:::i;:::-;41735:46;;41800:18;41821:8;;41833:5;41821:18;;;;:::i;:::-;41800:39;;41877:10;41866:8;:21;41858:41;;;;-1:-1:-1;;;41858:41:0;;13946:2:1;41858:41:0;;;13928:21:1;13985:1;13965:18;;;13958:29;-1:-1:-1;;;14003:18:1;;;13996:37;14050:18;;41858:41:0;13744:330:1;41858:41:0;41716:199;;41647:268;41975:12;;:17;;41990:2;41975:17;:::i;:::-;41959:12;:33;41955:600;;-1:-1:-1;;;;;42039:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;42096:35:0;;;;;;:31;:35;;;;;;;;42095:36;42039:92;42013:527;;;42218:20;;42208:6;:30;;42174:176;;;;-1:-1:-1;;;42174:176:0;;14281:2:1;42174:176:0;;;14263:21:1;14320:2;14300:18;;;14293:30;14359:34;14339:18;;;14332:62;14430:30;14410:18;;;14403:58;14478:19;;42174:176:0;14079:424:1;42174:176:0;42433:9;;-1:-1:-1;;;;;7688:18:0;;7656:7;7688:18;;;;;;;;;;;42407:22;;:6;:22;:::i;:::-;:35;;42373:147;;;;-1:-1:-1;;;42373:147:0;;14710:2:1;42373:147:0;;;14692:21:1;14749:2;14729:18;;;14722:30;14788:28;14768:18;;;14761:56;14834:18;;42373:147:0;14508:350:1;42373:147:0;42616:12;;:17;;42631:2;42616:17;:::i;:::-;42600:12;:33;42596:669;;-1:-1:-1;;;;;42680:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;42735:37:0;;;;;;:31;:37;;;;;;;;42734:38;42680:92;42654:596;;;42859:20;;42849:6;:30;;42815:177;;;;-1:-1:-1;;;42815:177:0;;15065:2:1;42815:177:0;;;15047:21:1;15104:2;15084:18;;;15077:30;15143:34;15123:18;;;15116:62;15214:31;15194:18;;;15187:59;15263:19;;42815:177:0;14863:425:1;42815:177:0;42654:596;;;-1:-1:-1;;;;;43023:35:0;;;;;;:31;:35;;;;;;;;43018:232;;43143:9;;-1:-1:-1;;;;;7688:18:0;;7656:7;7688:18;;;;;;;;;;;43117:22;;:6;:22;:::i;:::-;:35;;43083:147;;;;-1:-1:-1;;;43083:147:0;;14710:2:1;43083:147:0;;;14692:21:1;14749:2;14729:18;;;14722:30;14788:28;14768:18;;;14761:56;14834:18;;43083:147:0;14508:350:1;43083:147:0;43337:4;43288:28;7688:18;;;;;;;;;;;43395;;43371:42;;;;;;;43444:35;;-1:-1:-1;43468:11:0;;;;;;;43444:35;:61;;;;-1:-1:-1;43497:8:0;;-1:-1:-1;;;43497:8:0;;;;43496:9;43444:61;:110;;;;-1:-1:-1;;;;;;43523:31:0;;;;;;:25;:31;;;;;;;;43522:32;43444:110;:153;;;;-1:-1:-1;;;;;;43572:25:0;;;;;;:19;:25;;;;;;;;43571:26;43444:153;:194;;;;-1:-1:-1;;;;;;43615:23:0;;;;;;:19;:23;;;;;;;;43614:24;43444:194;43426:326;;;43665:8;:15;;-1:-1:-1;;;;43665:15:0;-1:-1:-1;;;43665:15:0;;;43697:10;:8;:10::i;:::-;43724:8;:16;;-1:-1:-1;;;;43724:16:0;;;43426:326;43780:8;;-1:-1:-1;;;;;43805:25:0;;43764:12;43805:25;;;:19;:25;;;;;;43780:8;-1:-1:-1;;;43780:8:0;;;;;43779:9;;43805:25;;:52;;-1:-1:-1;;;;;;43834:23:0;;;;;;:19;:23;;;;;;;;43805:52;43801:100;;;-1:-1:-1;43884:5:0;43801:100;43913:12;43946:7;43942:1085;;;-1:-1:-1;;;;;43998:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;44047:1;44031:13;;:17;43998:50;43994:884;;;44076:34;44106:3;44076:25;44087:13;;44076:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;44069:41;;44179:13;;44159:16;;44152:4;:23;;;;:::i;:::-;44151:41;;;;:::i;:::-;44129:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;44261:13:0;;44241:16;;44234:23;;:4;:23;:::i;:::-;44233:41;;;;:::i;:::-;44211:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;44389:13:0;;44346:18;;44339:25;;:4;:25;:::i;:::-;44338:64;;;;:::i;:::-;44293:20;;:109;;;;;;;:::i;:::-;;;;-1:-1:-1;43994:884:0;;-1:-1:-1;43994:884:0;;-1:-1:-1;;;;;44464:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;44514:1;44499:12;;:16;44464:51;44460:418;;;44543:33;44572:3;44543:24;44554:12;;44543:6;:10;;:24;;;;:::i;:33::-;44536:40;;44644:12;;44625:15;;44618:4;:22;;;;:::i;:::-;44617:39;;;;:::i;:::-;44595:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44724:12:0;;44705:15;;44698:22;;:4;:22;:::i;:::-;44697:39;;;;:::i;:::-;44675:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44850:12:0;;44808:17;;44801:24;;:4;:24;:::i;:::-;44800:62;;;;:::i;:::-;44755:20;;:107;;;;;;;:::i;:::-;;;;-1:-1:-1;;44460:418:0;44898:8;;44894:91;;44927:42;44943:4;44957;44964;44927:15;:42::i;:::-;45001:14;45011:4;45001:14;;:::i;:::-;;;43942:1085;45039:33;45055:4;45061:2;45065:6;45039:15;:33::i;:::-;-1:-1:-1;;45099:11:0;;45083:13;:27;-1:-1:-1;;;;;40817:4301:0:o;14057:675::-;-1:-1:-1;;;;;14141:21:0;;14133:67;;;;-1:-1:-1;;;14133:67:0;;15495:2:1;14133:67:0;;;15477:21:1;15534:2;15514:18;;;15507:30;15573:34;15553:18;;;15546:62;-1:-1:-1;;;15624:18:1;;;15617:31;15665:19;;14133:67:0;15293:397:1;14133:67:0;-1:-1:-1;;;;;14300:18:0;;14275:22;14300:18;;;;;;;;;;;14337:24;;;;14329:71;;;;-1:-1:-1;;;14329:71:0;;15897:2:1;14329:71:0;;;15879:21:1;15936:2;15916:18;;;15909:30;15975:34;15955:18;;;15948:62;-1:-1:-1;;;16026:18:1;;;16019:32;16068:19;;14329:71:0;15695:398:1;14329:71:0;-1:-1:-1;;;;;14436:18:0;;:9;:18;;;;;;;;;;;14457:23;;;14436:44;;14575:12;:22;;;;;;;14626:37;2106:25:1;;;14436:9:0;;:18;14626:37;;2079:18:1;14626:37:0;;;;;;;37459:442;;;:::o;1131:132::-;1039:6;;-1:-1:-1;;;;;1039:6:0;237:10;1195:23;1187:68;;;;-1:-1:-1;;;1187:68:0;;16300:2:1;1187:68:0;;;16282:21:1;;;16319:18;;;16312:30;16378:34;16358:18;;;16351:62;16430:18;;1187:68:0;16098:356:1;2263:191:0;2356:6;;;-1:-1:-1;;;;;2373:17:0;;;-1:-1:-1;;;;;;2373:17:0;;;;;;;2406:40;;2356:6;;;2373:17;2356:6;;2406:40;;2337:16;;2406:40;2326:128;2263:191;:::o;40487:188::-;-1:-1:-1;;;;;40570:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40570:39:0;;;;;;;;;;40627:40;;40570:39;;:31;40627:40;;;40487:188;;:::o;12012:877::-;-1:-1:-1;;;;;12143:18:0;;12135:68;;;;-1:-1:-1;;;12135:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12222:16:0;;12214:64;;;;-1:-1:-1;;;12214:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12364:15:0;;12342:19;12364:15;;;;;;;;;;;12412:21;;;;12390:109;;;;-1:-1:-1;;;12390:109:0;;16661:2:1;12390:109:0;;;16643:21:1;16700:2;16680:18;;;16673:30;16739:34;16719:18;;;16712:62;-1:-1:-1;;;16790:18:1;;;16783:36;16836:19;;12390:109:0;16459:402:1;12390:109:0;-1:-1:-1;;;;;12535:15:0;;;:9;:15;;;;;;;;;;;12553:20;;;12535:38;;12753:13;;;;;;;;;;:23;;;;;;12805:26;;2106:25:1;;;12753:13:0;;12805:26;;2079:18:1;12805:26:0;;;;;;;12844:37;37459:442;46013:1839;46096:4;46052:23;7688:18;;;;;;;;;;;46052:50;;46113:25;46209:20;;46175:18;;46141;;:52;;;;:::i;:::-;:88;;;;:::i;:::-;46113:116;-1:-1:-1;46240:12:0;46269:20;;;:46;;-1:-1:-1;46293:22:0;;46269:46;46265:85;;;46332:7;;;46013:1839::o;46265:85::-;46384:18;;:23;;46405:2;46384:23;:::i;:::-;46366:15;:41;46362:115;;;46442:18;;:23;;46463:2;46442:23;:::i;:::-;46424:41;;46362:115;46489:23;46602:1;46569:17;46534:18;;46516:15;:36;;;;:::i;:::-;46515:71;;;;:::i;:::-;:88;;;;:::i;:::-;46489:114;-1:-1:-1;46614:26:0;46643:36;:15;46489:114;46643:19;:36::i;:::-;46614:65;-1:-1:-1;46720:21:0;46754:36;46614:65;46754:16;:36::i;:::-;46803:18;46824:44;:21;46850:17;46824:25;:44::i;:::-;46803:65;;46881:23;46907:81;46960:17;46907:34;46922:18;;46907:10;:14;;:34;;;;:::i;:81::-;46881:107;;47001:25;47029:83;47084:17;47029:36;47044:20;;47029:10;:14;;:36;;;;:::i;:83::-;47001:111;-1:-1:-1;47125:23:0;47001:111;47151:41;47177:15;47151:10;:41;:::i;:::-;:74;;;;:::i;:::-;47259:1;47238:18;:22;;;47271:18;:22;;;47304:20;:24;47125:100;-1:-1:-1;47345:19:0;;;;;:42;;;47386:1;47368:15;:19;47345:42;47341:278;;;47404:46;47417:15;47434;47404:12;:46::i;:::-;47574:18;;47470:137;;;17068:25:1;;;17124:2;17109:18;;17102:34;;;17152:18;;;17145:34;;;;47470:137:0;;;;;;17056:2:1;47470:137:0;;;47341:278;47653:17;;47645:85;;-1:-1:-1;;;;;47653:17:0;;;;47684;;47645:85;;;;47684:17;47653;47645:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47765:15:0;;47757:87;;47631:99;;-1:-1:-1;;;;;;47765:15:0;;47808:21;;47757:87;;;;47808:21;47765:15;47757:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;46013:1839:0:o;21051:98::-;21109:7;21136:5;21140:1;21136;:5;:::i;:::-;21129:12;21051:98;-1:-1:-1;;;21051:98:0:o;21450:::-;21508:7;21535:5;21539:1;21535;:5;:::i;20694:98::-;20752:7;20779:5;20783:1;20779;:5;:::i;45126:501::-;45216:16;;;45230:1;45216:16;;;;;;;;45192:21;;45216:16;;;;;;;;;;-1:-1:-1;45216:16:0;45192:40;;45261:4;45243;45248:1;45243:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45243:23:0;;;-1:-1:-1;;;;;45243:23:0;;;;;45287:15;-1:-1:-1;;;;;45287:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45277:4;45282:1;45277:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;45277:32:0;;;-1:-1:-1;;;;;45277:32:0;;;;;45322:62;45339:4;45354:15;45372:11;45322:8;:62::i;:::-;45423:196;;-1:-1:-1;;;45423:196:0;;-1:-1:-1;;;;;45423:15:0;:66;;;;:196;;45504:11;;45530:1;;45546:4;;45573;;45593:15;;45423:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45181:446;45126:501;:::o;45635:370::-;45716:62;45733:4;45748:15;45766:11;45716:8;:62::i;:::-;45941:15;;45791:206;;-1:-1:-1;;;45791:206:0;;-1:-1:-1;;;;;45791:15:0;:31;;;;;45830:9;;45791:206;;45863:4;;45883:11;;45909:1;;;;45941:15;;;45971;;45791:206;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45635:370;;:::o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:118;236:5;229:13;222:21;215:5;212:32;202:60;;258:1;255;248:12;273:382;338:6;346;399:2;387:9;378:7;374:23;370:32;367:52;;;415:1;412;405:12;367:52;454:9;441:23;473:31;498:5;473:31;:::i;:::-;523:5;-1:-1:-1;580:2:1;565:18;;552:32;593:30;552:32;593:30;:::i;:::-;642:7;632:17;;;273:382;;;;;:::o;660:548::-;772:4;801:2;830;819:9;812:21;862:6;856:13;905:6;900:2;889:9;885:18;878:34;930:1;940:140;954:6;951:1;948:13;940:140;;;1049:14;;;1045:23;;1039:30;1015:17;;;1034:2;1011:26;1004:66;969:10;;940:140;;;944:3;1129:1;1124:2;1115:6;1104:9;1100:22;1096:31;1089:42;1199:2;1192;1188:7;1183:2;1175:6;1171:15;1167:29;1156:9;1152:45;1148:54;1140:62;;;;660:548;;;;:::o;1213:315::-;1281:6;1289;1342:2;1330:9;1321:7;1317:23;1313:32;1310:52;;;1358:1;1355;1348:12;1310:52;1397:9;1384:23;1416:31;1441:5;1416:31;:::i;:::-;1466:5;1518:2;1503:18;;;;1490:32;;-1:-1:-1;;;1213:315:1:o;2142:456::-;2219:6;2227;2235;2288:2;2276:9;2267:7;2263:23;2259:32;2256:52;;;2304:1;2301;2294:12;2256:52;2343:9;2330:23;2362:31;2387:5;2362:31;:::i;:::-;2412:5;-1:-1:-1;2469:2:1;2454:18;;2441:32;2482:33;2441:32;2482:33;:::i;:::-;2142:456;;2534:7;;-1:-1:-1;;;2588:2:1;2573:18;;;;2560:32;;2142:456::o;3000:180::-;3059:6;3112:2;3100:9;3091:7;3087:23;3083:32;3080:52;;;3128:1;3125;3118:12;3080:52;-1:-1:-1;3151:23:1;;3000:180;-1:-1:-1;3000:180:1:o;3185:247::-;3244:6;3297:2;3285:9;3276:7;3272:23;3268:32;3265:52;;;3313:1;3310;3303:12;3265:52;3352:9;3339:23;3371:31;3396:5;3371:31;:::i;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:248::-;3826:6;3834;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;-1:-1:-1;;3926:23:1;;;3996:2;3981:18;;;3968:32;;-1:-1:-1;3758:248:1:o;4011:388::-;4079:6;4087;4140:2;4128:9;4119:7;4115:23;4111:32;4108:52;;;4156:1;4153;4146:12;4108:52;4195:9;4182:23;4214:31;4239:5;4214:31;:::i;:::-;4264:5;-1:-1:-1;4321:2:1;4306:18;;4293:32;4334:33;4293:32;4334:33;:::i;4404:337::-;4606:2;4588:21;;;4645:2;4625:18;;;4618:30;-1:-1:-1;;;4679:2:1;4664:18;;4657:43;4732:2;4717:18;;4404:337::o;4746:380::-;4825:1;4821:12;;;;4868;;;4889:61;;4943:4;4935:6;4931:17;4921:27;;4889:61;4996:2;4988:6;4985:14;4965:18;4962:38;4959:161;;5042:10;5037:3;5033:20;5030:1;5023:31;5077:4;5074:1;5067:15;5105:4;5102:1;5095:15;4959:161;;4746:380;;;:::o;5131:127::-;5192:10;5187:3;5183:20;5180:1;5173:31;5223:4;5220:1;5213:15;5247:4;5244:1;5237:15;5263:125;5328:9;;;5349:10;;;5346:36;;;5362:18;;:::i;5393:400::-;5595:2;5577:21;;;5634:2;5614:18;;;5607:30;5673:34;5668:2;5653:18;;5646:62;-1:-1:-1;;;5739:2:1;5724:18;;5717:34;5783:3;5768:19;;5393:400::o;5798:168::-;5871:9;;;5902;;5919:15;;;5913:22;;5899:37;5889:71;;5940:18;;:::i;5971:217::-;6011:1;6037;6027:132;;6081:10;6076:3;6072:20;6069:1;6062:31;6116:4;6113:1;6106:15;6144:4;6141:1;6134:15;6027:132;-1:-1:-1;6173:9:1;;5971:217::o;7420:340::-;7622:2;7604:21;;;7661:2;7641:18;;;7634:30;-1:-1:-1;;;7695:2:1;7680:18;;7673:46;7751:2;7736:18;;7420:340::o;7765:184::-;7835:6;7888:2;7876:9;7867:7;7863:23;7859:32;7856:52;;;7904:1;7901;7894:12;7856:52;-1:-1:-1;7927:16:1;;7765:184;-1:-1:-1;7765:184:1:o;8570:245::-;8637:6;8690:2;8678:9;8669:7;8665:23;8661:32;8658:52;;;8706:1;8703;8696:12;8658:52;8738:9;8732:16;8757:28;8779:5;8757:28;:::i;9172:251::-;9242:6;9295:2;9283:9;9274:7;9270:23;9266:32;9263:52;;;9311:1;9308;9301:12;9263:52;9343:9;9337:16;9362:31;9387:5;9362:31;:::i;9737:607::-;-1:-1:-1;;;;;10096:15:1;;;10078:34;;10143:2;10128:18;;10121:34;;;;10186:2;10171:18;;10164:34;;;;10229:2;10214:18;;10207:34;;;;10278:15;;;10272:3;10257:19;;10250:44;10058:3;10310:19;;10303:35;;;;10027:3;10012:19;;9737:607::o;10349:306::-;10437:6;10445;10453;10506:2;10494:9;10485:7;10481:23;10477:32;10474:52;;;10522:1;10519;10512:12;10474:52;10551:9;10545:16;10535:26;;10601:2;10590:9;10586:18;10580:25;10570:35;;10645:2;10634:9;10630:18;10624:25;10614:35;;10349:306;;;;;:::o;12443:401::-;12645:2;12627:21;;;12684:2;12664:18;;;12657:30;12723:34;12718:2;12703:18;;12696:62;-1:-1:-1;;;12789:2:1;12774:18;;12767:35;12834:3;12819:19;;12443:401::o;12849:399::-;13051:2;13033:21;;;13090:2;13070:18;;;13063:30;13129:34;13124:2;13109:18;;13102:62;-1:-1:-1;;;13195:2:1;13180:18;;13173:33;13238:3;13223:19;;12849:399::o;13611:128::-;13678:9;;;13699:11;;;13696:37;;;13713:18;;:::i;17322:127::-;17383:10;17378:3;17374:20;17371:1;17364:31;17414:4;17411:1;17404:15;17438:4;17435:1;17428:15;17454:980;17716:4;17764:3;17753:9;17749:19;17795:6;17784:9;17777:25;17821:2;17859:6;17854:2;17843:9;17839:18;17832:34;17902:3;17897:2;17886:9;17882:18;17875:31;17926:6;17961;17955:13;17992:6;17984;17977:22;18030:3;18019:9;18015:19;18008:26;;18069:2;18061:6;18057:15;18043:29;;18090:1;18100:195;18114:6;18111:1;18108:13;18100:195;;;18179:13;;-1:-1:-1;;;;;18175:39:1;18163:52;;18270:15;;;;18235:12;;;;18211:1;18129:9;18100:195;;;-1:-1:-1;;;;;;;18351:32:1;;;;18346:2;18331:18;;18324:60;-1:-1:-1;;;18415:3:1;18400:19;18393:35;18312:3;17454:980;-1:-1:-1;;;17454:980:1:o

Swarm Source

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