ETH Price: $2,592.31 (-2.39%)

Token

Doggy (DOG)
 

Overview

Max Total Supply

1,000,000,000 DOG

Holders

169

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,995,376.86111667248828125 DOG

Value
$0.00
0x173e3b09ac7b13cfa810bd851df21718b7fba821
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:
Doggy

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-25
*/

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

    /**
     * @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.
     */

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

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

    /**
     * @dev 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.
     */

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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


    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }


    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

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


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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

    bool private swapping;

    address public MarketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 1; // 25 = .25%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3000 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 60 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradeOn = false;
    bool public swappingsActivated = false;

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

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Doggy", "DOG") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 20;
        uint256 _buyLiquidityFee = 0;
        uint256 _buydevfee = 0;

        uint256 _sellMarketingFee = 30;  
        uint256 _sellLiquidityFee = 0;
        uint256 _selldevfee = 0;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount =  5_000_000 * 1e18; // 0.1% from total supply maxTransactionAmountTxn
        maxWallet = 5_000_000 * 1e18; // 1.5% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

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

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

        devWallet = address(0x66690eB87B26c4D34DA20FF69dB27299586D4B8A); // set as dev wallet
        MarketingWallet = address(0x66690eB87B26c4D34DA20FF69dB27299586D4B8A); // set as mkt wallet
        
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
       

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

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        swappingsActivated = true;
        tradeOn = true;
        lastLpBurnTime = block.timestamp;
    }

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 49, "Must keep fees at 35% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 99, "Must keep fees at 99% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit MarketingWalletUpdated(newMarketingWallet, MarketingWallet);
        MarketingWallet = newMarketingWallet;
    }

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

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

    event isbot(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

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

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

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

    function updateAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"isbot","type":"event"},{"inputs":[],"name":"MarketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxTxnAmt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swappingsActivated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"updateAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","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"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b819055600c805460ff19908116909155610bb8600d55610e10600f556011805462ffffff19169092179091556013805490911690553480156200004a57600080fd5b5060405180604001604052806005815260200164446f67677960d81b81525060405180604001604052806003815260200162444f4760e81b81525081600390805190602001906200009d9291906200067d565b508051620000b39060049060208401906200067d565b505050620000d0620000ca620003cb60201b60201c565b620003cf565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f281600162000421565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200013d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000163919062000723565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d7919062000723565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000225573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024b919062000723565b6001600160a01b031660a0819052620002669060016200049a565b6a0422ca8b0a00a4250000006008819055600a556014600080601e81806b033b2e3c9fd0803ce8000000612710620002a08260056200076b565b620002ac91906200078d565b60095560158790556016869055601785905584620002cb8789620007b0565b620002d79190620007b0565b6014556019849055601a839055601b82905581620002f68486620007b0565b620003029190620007b0565b601855600780547366690eb87b26c4d34da20ff69db27299586d4b8a6001600160a01b031991821681179092556006805490911690911790556200035a620003526005546001600160a01b031690565b6001620004ee565b62000367306001620004ee565b6200037661dead6001620004ee565b620003956200038d6005546001600160a01b031690565b600162000421565b620003a230600162000421565b620003b161dead600162000421565b620003bd338262000598565b505050505050505062000808565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004705760405162461bcd60e51b815260206004820181905260248201526000805160206200394483398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005395760405162461bcd60e51b8152602060048201819052602482015260008051602062003944833981519152604482015260640162000467565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005f05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000467565b8060026000828254620006049190620007b0565b90915550506001600160a01b0382166000908152602081905260408120805483929062000633908490620007b0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200068b90620007cb565b90600052602060002090601f016020900481019282620006af5760008555620006fa565b82601f10620006ca57805160ff1916838001178555620006fa565b82800160010185558215620006fa579182015b82811115620006fa578251825591602001919060010190620006dd565b50620007089291506200070c565b5090565b5b808211156200070857600081556001016200070d565b6000602082840312156200073657600080fd5b81516001600160a01b03811681146200074e57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000788576200078862000755565b500290565b600082620007ab57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007c657620007c662000755565b500190565b600181811c90821680620007e057607f821691505b602082108114156200080257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516130b462000890600039600081816105f50152818161103701528181611830015281816118cb015281816118f701528181611c9401528181612807015281816128a901526128d501526000818161044e01528181611c56015281816129df01528181612a9801528181612ad401528181612b4e0152612bab01526130b46000f3fe6080604052600436106103a65760003560e01c80638da5cb5b116101e7578063c02466681161010d578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610a9e578063f637434214610abe578063f8b45b0514610ad4578063fe72b27a14610aea57600080fd5b8063e2f4560514610a3d578063e884f26014610a53578063ea1644d514610a68578063f11a24d314610a8857600080fd5b8063d257b34f116100dc578063d257b34f146109a1578063d85ba063146109c1578063dcb5650b146109d7578063dd62ed3e146109f757600080fd5b8063c024666814610931578063c17b5b8c14610951578063c876d0b914610971578063c8c8ebe41461098b57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a00146108ab578063a9059cbb146108c1578063aacebbe3146108e1578063b62496f51461090157600080fd5b80639ec22c0e146108495780639fccce321461085f578063a0d82dc514610875578063a457c2d71461088b57600080fd5b806395d89b41116101c157806395d89b41146107de578063979bdfcc146107f35780639a7a23d6146108135780639c3b4fdc1461083357600080fd5b80638da5cb5b1461078a5780638ea5220f146107a857806392136913146107c857600080fd5b8063313ce567116102cc5780636a486a8e1161026a5780637571336a116102395780637571336a1461071f5780637bce5a041461073f5780638095d564146107555780638a8c523c1461077557600080fd5b80636a486a8e146106a957806370a08231146106bf578063715018a6146106f5578063751039fc1461070a57600080fd5b80634a62bb65116102a65780634a62bb65146106175780634fbee193146106315780635cbd45531461066a5780636440f7191461068957600080fd5b8063313ce567146105a757806339509351146105c357806349bd5a5e146105e357600080fd5b8063199ffc72116103445780632598cdb2116103135780632598cdb21461054157806327c8f835146105615780632c3e486c146105775780632e82f1a01461058d57600080fd5b8063199ffc72146104df5780631a8145bb146104f55780631f3fed8f1461050b57806323b872dd1461052157600080fd5b80631694505e116103805780631694505e1461043c57806318160ddd146104885780631816467f146104a7578063184c16c5146104c957600080fd5b806306fdde03146103b2578063095ea7b3146103dd57806310d5de531461040d57600080fd5b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610b0a565b6040516103d49190612c29565b60405180910390f35b3480156103e957600080fd5b506103fd6103f8366004612c93565b610b9c565b60405190151581526020016103d4565b34801561041957600080fd5b506103fd610428366004612cbf565b602080526000908152604090205460ff1681565b34801561044857600080fd5b506104707f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103d4565b34801561049457600080fd5b506002545b6040519081526020016103d4565b3480156104b357600080fd5b506104c76104c2366004612cbf565b610bb2565b005b3480156104d557600080fd5b50610499600f5481565b3480156104eb57600080fd5b50610499600b5481565b34801561050157600080fd5b50610499601d5481565b34801561051757600080fd5b50610499601c5481565b34801561052d57600080fd5b506103fd61053c366004612cdc565b610c42565b34801561054d57600080fd5b50600654610470906001600160a01b031681565b34801561056d57600080fd5b5061047061dead81565b34801561058357600080fd5b50610499600d5481565b34801561059957600080fd5b50600c546103fd9060ff1681565b3480156105b357600080fd5b50604051601281526020016103d4565b3480156105cf57600080fd5b506103fd6105de366004612c93565b610cec565b3480156105ef57600080fd5b506104707f000000000000000000000000000000000000000000000000000000000000000081565b34801561062357600080fd5b506011546103fd9060ff1681565b34801561063d57600080fd5b506103fd61064c366004612cbf565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561067657600080fd5b506011546103fd90610100900460ff1681565b34801561069557600080fd5b506104c76106a4366004612d2d565b610d28565b3480156106b557600080fd5b5061049960185481565b3480156106cb57600080fd5b506104996106da366004612cbf565b6001600160a01b031660009081526020819052604090205490565b34801561070157600080fd5b506104c7610e51565b34801561071657600080fd5b506104c7610e87565b34801561072b57600080fd5b506104c761073a366004612d62565b610ebf565b34801561074b57600080fd5b5061049960155481565b34801561076157600080fd5b506104c7610770366004612d97565b610f13565b34801561078157600080fd5b506104c7610fbb565b34801561079657600080fd5b506005546001600160a01b0316610470565b3480156107b457600080fd5b50600754610470906001600160a01b031681565b3480156107d457600080fd5b5061049960195481565b3480156107ea57600080fd5b506103c7610ffc565b3480156107ff57600080fd5b506011546103fd9062010000900460ff1681565b34801561081f57600080fd5b506104c761082e366004612d62565b61100b565b34801561083f57600080fd5b5061049960175481565b34801561085557600080fd5b5061049960105481565b34801561086b57600080fd5b50610499601e5481565b34801561088157600080fd5b50610499601b5481565b34801561089757600080fd5b506103fd6108a6366004612c93565b6110eb565b3480156108b757600080fd5b50610499600e5481565b3480156108cd57600080fd5b506103fd6108dc366004612c93565b611184565b3480156108ed57600080fd5b506104c76108fc366004612cbf565b611191565b34801561090d57600080fd5b506103fd61091c366004612cbf565b60216020526000908152604090205460ff1681565b34801561093d57600080fd5b506104c761094c366004612d62565b611218565b34801561095d57600080fd5b506104c761096c366004612d97565b6112a1565b34801561097d57600080fd5b506013546103fd9060ff1681565b34801561099757600080fd5b5061049960085481565b3480156109ad57600080fd5b506103fd6109bc366004612dc3565b611344565b3480156109cd57600080fd5b5061049960145481565b3480156109e357600080fd5b506104c76109f2366004612dc3565b61149a565b348015610a0357600080fd5b50610499610a12366004612ddc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a4957600080fd5b5061049960095481565b348015610a5f57600080fd5b506103fd61157a565b348015610a7457600080fd5b506104c7610a83366004612dc3565b6115b7565b348015610a9457600080fd5b5061049960165481565b348015610aaa57600080fd5b506104c7610ab9366004612cbf565b61168a565b348015610aca57600080fd5b50610499601a5481565b348015610ae057600080fd5b50610499600a5481565b348015610af657600080fd5b506103fd610b05366004612dc3565b611725565b606060038054610b1990612e15565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4590612e15565b8015610b925780601f10610b6757610100808354040283529160200191610b92565b820191906000526020600020905b815481529060010190602001808311610b7557829003601f168201915b5050505050905090565b6000610ba933848461199f565b50600192915050565b6005546001600160a01b03163314610be55760405162461bcd60e51b8152600401610bdc90612e50565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c4f848484611ac3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cd45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bdc565b610ce1853385840361199f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ba9918590610d23908690612e9b565b61199f565b6005546001600160a01b03163314610d525760405162461bcd60e51b8152600401610bdc90612e50565b610258831015610dc05760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610bdc565b6103e88211158015610dd0575060015b610e355760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610bdc565b600d92909255600b55600c805460ff1916911515919091179055565b6005546001600160a01b03163314610e7b5760405162461bcd60e51b8152600401610bdc90612e50565b610e856000612398565b565b6005546001600160a01b03163314610eb15760405162461bcd60e51b8152600401610bdc90612e50565b600254600855600254600a55565b6005546001600160a01b03163314610ee95760405162461bcd60e51b8152600401610bdc90612e50565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f3d5760405162461bcd60e51b8152600401610bdc90612e50565b60158390556016829055601781905580610f578385612e9b565b610f619190612e9b565b601481905560311015610fb65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333525206f72206c6573730000006044820152606401610bdc565b505050565b6005546001600160a01b03163314610fe55760405162461bcd60e51b8152600401610bdc90612e50565b6011805462ffff0019166201010017905542600e55565b606060048054610b1990612e15565b6005546001600160a01b031633146110355760405162461bcd60e51b8152600401610bdc90612e50565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156110dd5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bdc565b6110e782826123ea565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561116d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bdc565b61117a338585840361199f565b5060019392505050565b6000610ba9338484611ac3565b6005546001600160a01b031633146111bb5760405162461bcd60e51b8152600401610bdc90612e50565b6006546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112425760405162461bcd60e51b8152600401610bdc90612e50565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146112cb5760405162461bcd60e51b8152600401610bdc90612e50565b6019839055601a829055601b819055806112e58385612e9b565b6112ef9190612e9b565b601881905560631015610fb65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610bdc565b6005546000906001600160a01b031633146113715760405162461bcd60e51b8152600401610bdc90612e50565b61271061137d60025490565b611388906001612eb3565b6113929190612ed2565b8210156113ff5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bdc565b6103e861140b60025490565b611416906005612eb3565b6114209190612ed2565b82111561148c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bdc565b50600981905560015b919050565b6005546001600160a01b031633146114c45760405162461bcd60e51b8152600401610bdc90612e50565b670de0b6b3a76400006103e86114d960025490565b6114e4906005612eb3565b6114ee9190612ed2565b6114f89190612ed2565b8110156115625760405162461bcd60e51b815260206004820152603260248201527f43616e6e6f74206368616e6765206d61785472616e73616374696f6e416d6f756044820152716e74206c6f776572207468616e20302e322560701b6064820152608401610bdc565b61157481670de0b6b3a7640000612eb3565b60085550565b6005546000906001600160a01b031633146115a75760405162461bcd60e51b8152600401610bdc90612e50565b506013805460ff19169055600190565b6005546001600160a01b031633146115e15760405162461bcd60e51b8152600401610bdc90612e50565b670de0b6b3a76400006103e86115f660025490565b61160190600a612eb3565b61160b9190612ed2565b6116159190612ed2565b8110156116725760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206368616e6765206d617857616c6c6574206c6f776572207468604482015264616e20312560d81b6064820152608401610bdc565b61168481670de0b6b3a7640000612eb3565b600a5550565b6005546001600160a01b031633146116b45760405162461bcd60e51b8152600401610bdc90612e50565b6001600160a01b0381166117195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bdc565b61172281612398565b50565b6005546000906001600160a01b031633146117525760405162461bcd60e51b8152600401610bdc90612e50565b600f546010546117629190612e9b565b42116117b05760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610bdc565b6103e88211156118155760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610bdc565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa158015611880573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a49190612ef4565b905060006118be6127106118b8848761243e565b90612451565b905080156118f3576118f37f000000000000000000000000000000000000000000000000000000000000000061dead8361245d565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561195357600080fd5b505af1158015611967573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611a015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bdc565b6001600160a01b038216611a625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bdc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611ae95760405162461bcd60e51b8152600401610bdc90612f0d565b6001600160a01b038216611b0f5760405162461bcd60e51b8152600401610bdc90612f52565b80611b2057610fb68383600061245d565b60115460ff1615611fda576005546001600160a01b03848116911614801590611b5757506005546001600160a01b03838116911614155b8015611b6b57506001600160a01b03821615155b8015611b8257506001600160a01b03821661dead14155b8015611b985750600554600160a01b900460ff16155b15611fda57601154610100900460ff16611c30576001600160a01b0383166000908152601f602052604090205460ff1680611beb57506001600160a01b0382166000908152601f602052604090205460ff165b611c305760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bdc565b60135460ff1615611d77576005546001600160a01b03838116911614801590611c8b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611cc957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611d7757326000908152601260205260409020544311611d645760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bdc565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611db757506001600160a01b038216600090815260208052604090205460ff16155b15611e9b57600854811115611e2c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bdc565b600a546001600160a01b038316600090815260208190526040902054611e529083612e9b565b1115611e965760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bdc565b611fda565b6001600160a01b03821660009081526021602052604090205460ff168015611edb57506001600160a01b038316600090815260208052604090205460ff16155b15611f5157600854811115611e965760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bdc565b6001600160a01b038216600090815260208052604090205460ff16611fda57600a546001600160a01b038316600090815260208190526040902054611f969083612e9b565b1115611fda5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bdc565b3060009081526020819052604090205460095481108015908190612006575060115462010000900460ff165b801561201c5750600554600160a01b900460ff16155b801561204157506001600160a01b03851660009081526021602052604090205460ff16155b801561206657506001600160a01b0385166000908152601f602052604090205460ff16155b801561208b57506001600160a01b0384166000908152601f602052604090205460ff16155b156120b9576005805460ff60a01b1916600160a01b1790556120ab6125b2565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156120eb57506001600160a01b03841660009081526021602052604090205460ff165b80156120f95750600c5460ff165b80156121145750600d54600e546121109190612e9b565b4210155b801561213957506001600160a01b0385166000908152601f602052604090205460ff16155b15612148576121466127ec565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061219657506001600160a01b0385166000908152601f602052604090205460ff165b1561219f575060005b60008115612384576001600160a01b03861660009081526021602052604090205460ff1680156121d157506000601854115b15612289576121f060646118b86018548861243e90919063ffffffff16565b9050601854601a54826122039190612eb3565b61220d9190612ed2565b601d600082825461221e9190612e9b565b9091555050601854601b546122339083612eb3565b61223d9190612ed2565b601e600082825461224e9190612e9b565b90915550506018546019546122639083612eb3565b61226d9190612ed2565b601c600082825461227e9190612e9b565b909155506123669050565b6001600160a01b03871660009081526021602052604090205460ff1680156122b357506000601454115b15612366576122d260646118b86014548861243e90919063ffffffff16565b9050601454601654826122e59190612eb3565b6122ef9190612ed2565b601d60008282546123009190612e9b565b90915550506014546017546123159083612eb3565b61231f9190612ed2565b601e60008282546123309190612e9b565b90915550506014546015546123459083612eb3565b61234f9190612ed2565b601c60008282546123609190612e9b565b90915550505b80156123775761237787308361245d565b6123818186612f95565b94505b61238f87878761245d565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600061244a8284612eb3565b9392505050565b600061244a8284612ed2565b6001600160a01b0383166124835760405162461bcd60e51b8152600401610bdc90612f0d565b6001600160a01b0382166124a95760405162461bcd60e51b8152600401610bdc90612f52565b6001600160a01b038316600090815260208190526040902054818110156125215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bdc565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612558908490612e9b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125a491815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546125d99190612e9b565b6125e39190612e9b565b905060008215806125f2575081155b156125fc57505050565b60095461260a906014612eb3565b8311156126225760095461261f906014612eb3565b92505b6000600283601d54866126359190612eb3565b61263f9190612ed2565b6126499190612ed2565b90506000612657858361297c565b90504761266382612988565b600061266f478361297c565b9050600061268c876118b8601c548561243e90919063ffffffff16565b905060006126a9886118b8601e548661243e90919063ffffffff16565b90506000816126b88486612f95565b6126c29190612f95565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461271f576040519150601f19603f3d011682016040523d82523d6000602084013e612724565b606091505b509098505086158015906127385750600081115b1561278b576127478782612b48565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146127d8576040519150601f19603f3d011682016040523d82523d6000602084013e6127dd565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa158015612859573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287d9190612ef4565b9050600061289c6127106118b8600b548561243e90919063ffffffff16565b905080156128d1576128d17f000000000000000000000000000000000000000000000000000000000000000061dead8361245d565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561293157600080fd5b505af1158015612945573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b600061244a8284612f95565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106129bd576129bd612fac565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a5f9190612fc2565b81600181518110612a7257612a72612fac565b60200260200101906001600160a01b031690816001600160a01b031681525050612abd307f00000000000000000000000000000000000000000000000000000000000000008461199f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612b12908590600090869030904290600401612fdf565b600060405180830381600087803b158015612b2c57600080fd5b505af1158015612b40573d6000803e3d6000fd5b505050505050565b612b73307f00000000000000000000000000000000000000000000000000000000000000008461199f565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612bfd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c229190613050565b5050505050565b600060208083528351808285015260005b81811015612c5657858101830151858201604001528201612c3a565b81811115612c68576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461172257600080fd5b60008060408385031215612ca657600080fd5b8235612cb181612c7e565b946020939093013593505050565b600060208284031215612cd157600080fd5b813561244a81612c7e565b600080600060608486031215612cf157600080fd5b8335612cfc81612c7e565b92506020840135612d0c81612c7e565b929592945050506040919091013590565b8035801515811461149557600080fd5b600080600060608486031215612d4257600080fd5b8335925060208401359150612d5960408501612d1d565b90509250925092565b60008060408385031215612d7557600080fd5b8235612d8081612c7e565b9150612d8e60208401612d1d565b90509250929050565b600080600060608486031215612dac57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612dd557600080fd5b5035919050565b60008060408385031215612def57600080fd5b8235612dfa81612c7e565b91506020830135612e0a81612c7e565b809150509250929050565b600181811c90821680612e2957607f821691505b60208210811415612e4a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612eae57612eae612e85565b500190565b6000816000190483118215151615612ecd57612ecd612e85565b500290565b600082612eef57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612f0657600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612fa757612fa7612e85565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612fd457600080fd5b815161244a81612c7e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561302f5784516001600160a01b03168352938301939183019160010161300a565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561306557600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122096229ede8f02aece123b50ce08e9ccbe5b8a8efc527d6da98f8a083aa65a215b64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103a65760003560e01c80638da5cb5b116101e7578063c02466681161010d578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610a9e578063f637434214610abe578063f8b45b0514610ad4578063fe72b27a14610aea57600080fd5b8063e2f4560514610a3d578063e884f26014610a53578063ea1644d514610a68578063f11a24d314610a8857600080fd5b8063d257b34f116100dc578063d257b34f146109a1578063d85ba063146109c1578063dcb5650b146109d7578063dd62ed3e146109f757600080fd5b8063c024666814610931578063c17b5b8c14610951578063c876d0b914610971578063c8c8ebe41461098b57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a00146108ab578063a9059cbb146108c1578063aacebbe3146108e1578063b62496f51461090157600080fd5b80639ec22c0e146108495780639fccce321461085f578063a0d82dc514610875578063a457c2d71461088b57600080fd5b806395d89b41116101c157806395d89b41146107de578063979bdfcc146107f35780639a7a23d6146108135780639c3b4fdc1461083357600080fd5b80638da5cb5b1461078a5780638ea5220f146107a857806392136913146107c857600080fd5b8063313ce567116102cc5780636a486a8e1161026a5780637571336a116102395780637571336a1461071f5780637bce5a041461073f5780638095d564146107555780638a8c523c1461077557600080fd5b80636a486a8e146106a957806370a08231146106bf578063715018a6146106f5578063751039fc1461070a57600080fd5b80634a62bb65116102a65780634a62bb65146106175780634fbee193146106315780635cbd45531461066a5780636440f7191461068957600080fd5b8063313ce567146105a757806339509351146105c357806349bd5a5e146105e357600080fd5b8063199ffc72116103445780632598cdb2116103135780632598cdb21461054157806327c8f835146105615780632c3e486c146105775780632e82f1a01461058d57600080fd5b8063199ffc72146104df5780631a8145bb146104f55780631f3fed8f1461050b57806323b872dd1461052157600080fd5b80631694505e116103805780631694505e1461043c57806318160ddd146104885780631816467f146104a7578063184c16c5146104c957600080fd5b806306fdde03146103b2578063095ea7b3146103dd57806310d5de531461040d57600080fd5b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610b0a565b6040516103d49190612c29565b60405180910390f35b3480156103e957600080fd5b506103fd6103f8366004612c93565b610b9c565b60405190151581526020016103d4565b34801561041957600080fd5b506103fd610428366004612cbf565b602080526000908152604090205460ff1681565b34801561044857600080fd5b506104707f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103d4565b34801561049457600080fd5b506002545b6040519081526020016103d4565b3480156104b357600080fd5b506104c76104c2366004612cbf565b610bb2565b005b3480156104d557600080fd5b50610499600f5481565b3480156104eb57600080fd5b50610499600b5481565b34801561050157600080fd5b50610499601d5481565b34801561051757600080fd5b50610499601c5481565b34801561052d57600080fd5b506103fd61053c366004612cdc565b610c42565b34801561054d57600080fd5b50600654610470906001600160a01b031681565b34801561056d57600080fd5b5061047061dead81565b34801561058357600080fd5b50610499600d5481565b34801561059957600080fd5b50600c546103fd9060ff1681565b3480156105b357600080fd5b50604051601281526020016103d4565b3480156105cf57600080fd5b506103fd6105de366004612c93565b610cec565b3480156105ef57600080fd5b506104707f0000000000000000000000007cdfd468bd168a6b9d2eb1ceb4730b55c21a9b8b81565b34801561062357600080fd5b506011546103fd9060ff1681565b34801561063d57600080fd5b506103fd61064c366004612cbf565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561067657600080fd5b506011546103fd90610100900460ff1681565b34801561069557600080fd5b506104c76106a4366004612d2d565b610d28565b3480156106b557600080fd5b5061049960185481565b3480156106cb57600080fd5b506104996106da366004612cbf565b6001600160a01b031660009081526020819052604090205490565b34801561070157600080fd5b506104c7610e51565b34801561071657600080fd5b506104c7610e87565b34801561072b57600080fd5b506104c761073a366004612d62565b610ebf565b34801561074b57600080fd5b5061049960155481565b34801561076157600080fd5b506104c7610770366004612d97565b610f13565b34801561078157600080fd5b506104c7610fbb565b34801561079657600080fd5b506005546001600160a01b0316610470565b3480156107b457600080fd5b50600754610470906001600160a01b031681565b3480156107d457600080fd5b5061049960195481565b3480156107ea57600080fd5b506103c7610ffc565b3480156107ff57600080fd5b506011546103fd9062010000900460ff1681565b34801561081f57600080fd5b506104c761082e366004612d62565b61100b565b34801561083f57600080fd5b5061049960175481565b34801561085557600080fd5b5061049960105481565b34801561086b57600080fd5b50610499601e5481565b34801561088157600080fd5b50610499601b5481565b34801561089757600080fd5b506103fd6108a6366004612c93565b6110eb565b3480156108b757600080fd5b50610499600e5481565b3480156108cd57600080fd5b506103fd6108dc366004612c93565b611184565b3480156108ed57600080fd5b506104c76108fc366004612cbf565b611191565b34801561090d57600080fd5b506103fd61091c366004612cbf565b60216020526000908152604090205460ff1681565b34801561093d57600080fd5b506104c761094c366004612d62565b611218565b34801561095d57600080fd5b506104c761096c366004612d97565b6112a1565b34801561097d57600080fd5b506013546103fd9060ff1681565b34801561099757600080fd5b5061049960085481565b3480156109ad57600080fd5b506103fd6109bc366004612dc3565b611344565b3480156109cd57600080fd5b5061049960145481565b3480156109e357600080fd5b506104c76109f2366004612dc3565b61149a565b348015610a0357600080fd5b50610499610a12366004612ddc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a4957600080fd5b5061049960095481565b348015610a5f57600080fd5b506103fd61157a565b348015610a7457600080fd5b506104c7610a83366004612dc3565b6115b7565b348015610a9457600080fd5b5061049960165481565b348015610aaa57600080fd5b506104c7610ab9366004612cbf565b61168a565b348015610aca57600080fd5b50610499601a5481565b348015610ae057600080fd5b50610499600a5481565b348015610af657600080fd5b506103fd610b05366004612dc3565b611725565b606060038054610b1990612e15565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4590612e15565b8015610b925780601f10610b6757610100808354040283529160200191610b92565b820191906000526020600020905b815481529060010190602001808311610b7557829003601f168201915b5050505050905090565b6000610ba933848461199f565b50600192915050565b6005546001600160a01b03163314610be55760405162461bcd60e51b8152600401610bdc90612e50565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c4f848484611ac3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cd45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bdc565b610ce1853385840361199f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ba9918590610d23908690612e9b565b61199f565b6005546001600160a01b03163314610d525760405162461bcd60e51b8152600401610bdc90612e50565b610258831015610dc05760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610bdc565b6103e88211158015610dd0575060015b610e355760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610bdc565b600d92909255600b55600c805460ff1916911515919091179055565b6005546001600160a01b03163314610e7b5760405162461bcd60e51b8152600401610bdc90612e50565b610e856000612398565b565b6005546001600160a01b03163314610eb15760405162461bcd60e51b8152600401610bdc90612e50565b600254600855600254600a55565b6005546001600160a01b03163314610ee95760405162461bcd60e51b8152600401610bdc90612e50565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f3d5760405162461bcd60e51b8152600401610bdc90612e50565b60158390556016829055601781905580610f578385612e9b565b610f619190612e9b565b601481905560311015610fb65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333525206f72206c6573730000006044820152606401610bdc565b505050565b6005546001600160a01b03163314610fe55760405162461bcd60e51b8152600401610bdc90612e50565b6011805462ffff0019166201010017905542600e55565b606060048054610b1990612e15565b6005546001600160a01b031633146110355760405162461bcd60e51b8152600401610bdc90612e50565b7f0000000000000000000000007cdfd468bd168a6b9d2eb1ceb4730b55c21a9b8b6001600160a01b0316826001600160a01b031614156110dd5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bdc565b6110e782826123ea565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561116d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bdc565b61117a338585840361199f565b5060019392505050565b6000610ba9338484611ac3565b6005546001600160a01b031633146111bb5760405162461bcd60e51b8152600401610bdc90612e50565b6006546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112425760405162461bcd60e51b8152600401610bdc90612e50565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146112cb5760405162461bcd60e51b8152600401610bdc90612e50565b6019839055601a829055601b819055806112e58385612e9b565b6112ef9190612e9b565b601881905560631015610fb65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610bdc565b6005546000906001600160a01b031633146113715760405162461bcd60e51b8152600401610bdc90612e50565b61271061137d60025490565b611388906001612eb3565b6113929190612ed2565b8210156113ff5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bdc565b6103e861140b60025490565b611416906005612eb3565b6114209190612ed2565b82111561148c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bdc565b50600981905560015b919050565b6005546001600160a01b031633146114c45760405162461bcd60e51b8152600401610bdc90612e50565b670de0b6b3a76400006103e86114d960025490565b6114e4906005612eb3565b6114ee9190612ed2565b6114f89190612ed2565b8110156115625760405162461bcd60e51b815260206004820152603260248201527f43616e6e6f74206368616e6765206d61785472616e73616374696f6e416d6f756044820152716e74206c6f776572207468616e20302e322560701b6064820152608401610bdc565b61157481670de0b6b3a7640000612eb3565b60085550565b6005546000906001600160a01b031633146115a75760405162461bcd60e51b8152600401610bdc90612e50565b506013805460ff19169055600190565b6005546001600160a01b031633146115e15760405162461bcd60e51b8152600401610bdc90612e50565b670de0b6b3a76400006103e86115f660025490565b61160190600a612eb3565b61160b9190612ed2565b6116159190612ed2565b8110156116725760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206368616e6765206d617857616c6c6574206c6f776572207468604482015264616e20312560d81b6064820152608401610bdc565b61168481670de0b6b3a7640000612eb3565b600a5550565b6005546001600160a01b031633146116b45760405162461bcd60e51b8152600401610bdc90612e50565b6001600160a01b0381166117195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bdc565b61172281612398565b50565b6005546000906001600160a01b031633146117525760405162461bcd60e51b8152600401610bdc90612e50565b600f546010546117629190612e9b565b42116117b05760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610bdc565b6103e88211156118155760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610bdc565b426010556040516370a0823160e01b81526001600160a01b037f0000000000000000000000007cdfd468bd168a6b9d2eb1ceb4730b55c21a9b8b16600482015260009030906370a0823190602401602060405180830381865afa158015611880573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a49190612ef4565b905060006118be6127106118b8848761243e565b90612451565b905080156118f3576118f37f0000000000000000000000007cdfd468bd168a6b9d2eb1ceb4730b55c21a9b8b61dead8361245d565b60007f0000000000000000000000007cdfd468bd168a6b9d2eb1ceb4730b55c21a9b8b9050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561195357600080fd5b505af1158015611967573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611a015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bdc565b6001600160a01b038216611a625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bdc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611ae95760405162461bcd60e51b8152600401610bdc90612f0d565b6001600160a01b038216611b0f5760405162461bcd60e51b8152600401610bdc90612f52565b80611b2057610fb68383600061245d565b60115460ff1615611fda576005546001600160a01b03848116911614801590611b5757506005546001600160a01b03838116911614155b8015611b6b57506001600160a01b03821615155b8015611b8257506001600160a01b03821661dead14155b8015611b985750600554600160a01b900460ff16155b15611fda57601154610100900460ff16611c30576001600160a01b0383166000908152601f602052604090205460ff1680611beb57506001600160a01b0382166000908152601f602052604090205460ff165b611c305760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bdc565b60135460ff1615611d77576005546001600160a01b03838116911614801590611c8b57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611cc957507f0000000000000000000000007cdfd468bd168a6b9d2eb1ceb4730b55c21a9b8b6001600160a01b0316826001600160a01b031614155b15611d7757326000908152601260205260409020544311611d645760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bdc565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611db757506001600160a01b038216600090815260208052604090205460ff16155b15611e9b57600854811115611e2c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bdc565b600a546001600160a01b038316600090815260208190526040902054611e529083612e9b565b1115611e965760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bdc565b611fda565b6001600160a01b03821660009081526021602052604090205460ff168015611edb57506001600160a01b038316600090815260208052604090205460ff16155b15611f5157600854811115611e965760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bdc565b6001600160a01b038216600090815260208052604090205460ff16611fda57600a546001600160a01b038316600090815260208190526040902054611f969083612e9b565b1115611fda5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bdc565b3060009081526020819052604090205460095481108015908190612006575060115462010000900460ff165b801561201c5750600554600160a01b900460ff16155b801561204157506001600160a01b03851660009081526021602052604090205460ff16155b801561206657506001600160a01b0385166000908152601f602052604090205460ff16155b801561208b57506001600160a01b0384166000908152601f602052604090205460ff16155b156120b9576005805460ff60a01b1916600160a01b1790556120ab6125b2565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156120eb57506001600160a01b03841660009081526021602052604090205460ff165b80156120f95750600c5460ff165b80156121145750600d54600e546121109190612e9b565b4210155b801561213957506001600160a01b0385166000908152601f602052604090205460ff16155b15612148576121466127ec565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061219657506001600160a01b0385166000908152601f602052604090205460ff165b1561219f575060005b60008115612384576001600160a01b03861660009081526021602052604090205460ff1680156121d157506000601854115b15612289576121f060646118b86018548861243e90919063ffffffff16565b9050601854601a54826122039190612eb3565b61220d9190612ed2565b601d600082825461221e9190612e9b565b9091555050601854601b546122339083612eb3565b61223d9190612ed2565b601e600082825461224e9190612e9b565b90915550506018546019546122639083612eb3565b61226d9190612ed2565b601c600082825461227e9190612e9b565b909155506123669050565b6001600160a01b03871660009081526021602052604090205460ff1680156122b357506000601454115b15612366576122d260646118b86014548861243e90919063ffffffff16565b9050601454601654826122e59190612eb3565b6122ef9190612ed2565b601d60008282546123009190612e9b565b90915550506014546017546123159083612eb3565b61231f9190612ed2565b601e60008282546123309190612e9b565b90915550506014546015546123459083612eb3565b61234f9190612ed2565b601c60008282546123609190612e9b565b90915550505b80156123775761237787308361245d565b6123818186612f95565b94505b61238f87878761245d565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600061244a8284612eb3565b9392505050565b600061244a8284612ed2565b6001600160a01b0383166124835760405162461bcd60e51b8152600401610bdc90612f0d565b6001600160a01b0382166124a95760405162461bcd60e51b8152600401610bdc90612f52565b6001600160a01b038316600090815260208190526040902054818110156125215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bdc565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612558908490612e9b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125a491815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546125d99190612e9b565b6125e39190612e9b565b905060008215806125f2575081155b156125fc57505050565b60095461260a906014612eb3565b8311156126225760095461261f906014612eb3565b92505b6000600283601d54866126359190612eb3565b61263f9190612ed2565b6126499190612ed2565b90506000612657858361297c565b90504761266382612988565b600061266f478361297c565b9050600061268c876118b8601c548561243e90919063ffffffff16565b905060006126a9886118b8601e548661243e90919063ffffffff16565b90506000816126b88486612f95565b6126c29190612f95565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461271f576040519150601f19603f3d011682016040523d82523d6000602084013e612724565b606091505b509098505086158015906127385750600081115b1561278b576127478782612b48565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146127d8576040519150601f19603f3d011682016040523d82523d6000602084013e6127dd565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000007cdfd468bd168a6b9d2eb1ceb4730b55c21a9b8b166004820152600090819030906370a0823190602401602060405180830381865afa158015612859573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287d9190612ef4565b9050600061289c6127106118b8600b548561243e90919063ffffffff16565b905080156128d1576128d17f0000000000000000000000007cdfd468bd168a6b9d2eb1ceb4730b55c21a9b8b61dead8361245d565b60007f0000000000000000000000007cdfd468bd168a6b9d2eb1ceb4730b55c21a9b8b9050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561293157600080fd5b505af1158015612945573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b600061244a8284612f95565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106129bd576129bd612fac565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a5f9190612fc2565b81600181518110612a7257612a72612fac565b60200260200101906001600160a01b031690816001600160a01b031681525050612abd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461199f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612b12908590600090869030904290600401612fdf565b600060405180830381600087803b158015612b2c57600080fd5b505af1158015612b40573d6000803e3d6000fd5b505050505050565b612b73307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461199f565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612bfd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c229190613050565b5050505050565b600060208083528351808285015260005b81811015612c5657858101830151858201604001528201612c3a565b81811115612c68576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461172257600080fd5b60008060408385031215612ca657600080fd5b8235612cb181612c7e565b946020939093013593505050565b600060208284031215612cd157600080fd5b813561244a81612c7e565b600080600060608486031215612cf157600080fd5b8335612cfc81612c7e565b92506020840135612d0c81612c7e565b929592945050506040919091013590565b8035801515811461149557600080fd5b600080600060608486031215612d4257600080fd5b8335925060208401359150612d5960408501612d1d565b90509250925092565b60008060408385031215612d7557600080fd5b8235612d8081612c7e565b9150612d8e60208401612d1d565b90509250929050565b600080600060608486031215612dac57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612dd557600080fd5b5035919050565b60008060408385031215612def57600080fd5b8235612dfa81612c7e565b91506020830135612e0a81612c7e565b809150509250929050565b600181811c90821680612e2957607f821691505b60208210811415612e4a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612eae57612eae612e85565b500190565b6000816000190483118215151615612ecd57612ecd612e85565b500290565b600082612eef57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612f0657600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612fa757612fa7612e85565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612fd457600080fd5b815161244a81612c7e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561302f5784516001600160a01b03168352938301939183019160010161300a565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561306557600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122096229ede8f02aece123b50ce08e9ccbe5b8a8efc527d6da98f8a083aa65a215b64736f6c634300080a0033

Deployed Bytecode Sourcemap

29616:19195:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9170:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11337:169;;;;;;;;;;-1:-1:-1;11337:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11337:169:0;1072:187:1;31244:63:0;;;;;;;;;;-1:-1:-1;31244:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29691:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;29691:51:0;1516:230:1;10290:108:0;;;;;;;;;;-1:-1:-1;10378:12:0;;10290:108;;;1897:25:1;;;1885:2;1870:18;10290:108:0;1751:177:1;38141:157:0;;;;;;;;;;-1:-1:-1;38141:157:0;;;;;:::i;:::-;;:::i;:::-;;30256:47;;;;;;;;;;;;;;;;30071:35;;;;;;;;;;;;;;;;31028:33;;;;;;;;;;;;;;;;30988;;;;;;;;;;;;;;;;11988:492;;;;;;;;;;-1:-1:-1;11988:492:0;;;;;:::i;:::-;;:::i;29886:30::-;;;;;;;;;;-1:-1:-1;29886:30:0;;;;-1:-1:-1;;;;;29886:30:0;;;29794:53;;;;;;;;;;;;29840:6;29794:53;;30166:45;;;;;;;;;;;;;;;;30126:33;;;;;;;;;;-1:-1:-1;30126:33:0;;;;;;;;10132:93;;;;;;;;;;-1:-1:-1;10132:93:0;;10215:2;2744:36:1;;2732:2;2717:18;10132:93:0;2602:184:1;12889:215:0;;;;;;;;;;-1:-1:-1;12889:215:0;;;;;:::i;:::-;;:::i;29749:38::-;;;;;;;;;;;;;;;30354:33;;;;;;;;;;-1:-1:-1;30354:33:0;;;;;;;;38306:126;;;;;;;;;;-1:-1:-1;38306:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38396:28:0;38372:4;38396:28;;;:19;:28;;;;;;;;;38306:126;30394:27;;;;;;;;;;-1:-1:-1;30394:27:0;;;;;;;;;;;46390:558;;;;;;;;;;-1:-1:-1;46390:558:0;;;;;:::i;:::-;;:::i;30843:28::-;;;;;;;;;;;;;;;;10461:127;;;;;;;;;;-1:-1:-1;10461:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10562:18:0;10535:7;10562:18;;;;;;;;;;;;10461:127;2405:103;;;;;;;;;;;;;:::i;36057:133::-;;;;;;;;;;;;;:::i;36198:167::-;;;;;;;;;;-1:-1:-1;36198:167:0;;;;;:::i;:::-;;:::i;30736:30::-;;;;;;;;;;;;;;;;36373:403;;;;;;;;;;-1:-1:-1;36373:403:0;;;;;:::i;:::-;;:::i;34590:156::-;;;;;;;;;;;;;:::i;2097:87::-;;;;;;;;;;-1:-1:-1;2170:6:0;;-1:-1:-1;;;;;2170:6:0;2097:87;;29923:24;;;;;;;;;;-1:-1:-1;29923:24:0;;;;-1:-1:-1;;;;;29923:24:0;;;30878:31;;;;;;;;;;;;;;;;9389:104;;;;;;;;;;;;;:::i;30428:38::-;;;;;;;;;;-1:-1:-1;30428:38:0;;;;;;;;;;;37394:304;;;;;;;;;;-1:-1:-1;37394:304:0;;;;;:::i;:::-;;:::i;30810:24::-;;;;;;;;;;;;;;;;30310:35;;;;;;;;;;;;;;;;31068:27;;;;;;;;;;;;;;;;30954:25;;;;;;;;;;;;;;;;13607:413;;;;;;;;;;-1:-1:-1;13607:413:0;;;;;:::i;:::-;;:::i;30218:29::-;;;;;;;;;;;;;;;;10801:175;;;;;;;;;;-1:-1:-1;10801:175:0;;;;;:::i;:::-;;:::i;37902:231::-;;;;;;;;;;-1:-1:-1;37902:231:0;;;;;:::i;:::-;;:::i;31465:57::-;;;;;;;;;;-1:-1:-1;31465:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37204:182;;;;;;;;;;-1:-1:-1;37204:182:0;;;;;:::i;:::-;;:::i;36784:412::-;;;;;;;;;;-1:-1:-1;36784:412:0;;;;;:::i;:::-;;:::i;30653:40::-;;;;;;;;;;-1:-1:-1;30653:40:0;;;;;;;;29956:35;;;;;;;;;;;;;;;;35012:496;;;;;;;;;;-1:-1:-1;35012:496:0;;;;;:::i;:::-;;:::i;30702:27::-;;;;;;;;;;;;;;;;35516:272;;;;;;;;;;-1:-1:-1;35516:272:0;;;;;:::i;:::-;;:::i;11039:151::-;;;;;;;;;;-1:-1:-1;11039:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11155:18:0;;;11128:7;11155:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11039:151;29998:33;;;;;;;;;;;;;;;;34807:135;;;;;;;;;;;;;:::i;35796:253::-;;;;;;;;;;-1:-1:-1;35796:253:0;;;;;:::i;:::-;;:::i;30773:30::-;;;;;;;;;;;;;;;;2663:201;;;;;;;;;;-1:-1:-1;2663:201:0;;;;;:::i;:::-;;:::i;30916:31::-;;;;;;;;;;;;;;;;30038:24;;;;;;;;;;;;;;;;47752:1056;;;;;;;;;;-1:-1:-1;47752:1056:0;;;;;:::i;:::-;;:::i;9170:100::-;9224:13;9257:5;9250:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9170:100;:::o;11337:169::-;11420:4;11437:39;888:10;11460:7;11469:6;11437:8;:39::i;:::-;-1:-1:-1;11494:4:0;11337:169;;;;:::o;38141:157::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;;;;;;;;;38248:9:::1;::::0;38220:38:::1;::::0;-1:-1:-1;;;;;38248:9:0;;::::1;::::0;38220:38;::::1;::::0;::::1;::::0;38248:9:::1;::::0;38220:38:::1;38269:9;:21:::0;;-1:-1:-1;;;;;;38269:21:0::1;-1:-1:-1::0;;;;;38269:21:0;;;::::1;::::0;;;::::1;::::0;;38141:157::o;11988:492::-;12128:4;12145:36;12155:6;12163:9;12174:6;12145:9;:36::i;:::-;-1:-1:-1;;;;;12221:19:0;;12194:24;12221:19;;;:11;:19;;;;;;;;888:10;12221:33;;;;;;;;12273:26;;;;12265:79;;;;-1:-1:-1;;;12265:79:0;;5444:2:1;12265:79:0;;;5426:21:1;5483:2;5463:18;;;5456:30;5522:34;5502:18;;;5495:62;-1:-1:-1;;;5573:18:1;;;5566:38;5621:19;;12265:79:0;5242:404:1;12265:79:0;12380:57;12389:6;888:10;12430:6;12411:16;:25;12380:8;:57::i;:::-;-1:-1:-1;12468:4:0;;11988:492;-1:-1:-1;;;;11988:492:0:o;12889:215::-;888:10;12977:4;13026:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13026:34:0;;;;;;;;;;12977:4;;12994:80;;13017:7;;13026:47;;13063:10;;13026:47;:::i;:::-;12994:8;:80::i;46390:558::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;46595:3:::1;46572:19;:26;;46550:127;;;::::0;-1:-1:-1;;;46550:127:0;;6118:2:1;46550:127:0::1;::::0;::::1;6100:21:1::0;6157:2;6137:18;;;6130:30;6196:34;6176:18;;;6169:62;-1:-1:-1;;;6247:18:1;;;6240:49;6306:19;;46550:127:0::1;5916:415:1::0;46550:127:0::1;46722:4;46710:8;:16;;:33;;;;-1:-1:-1::0;46730:13:0;46710:33:::1;46688:131;;;::::0;-1:-1:-1;;;46688:131:0;;6538:2:1;46688:131:0::1;::::0;::::1;6520:21:1::0;6577:2;6557:18;;;6550:30;6616:34;6596:18;;;6589:62;-1:-1:-1;;;6667:18:1;;;6660:46;6723:19;;46688:131:0::1;6336:412:1::0;46688:131:0::1;46830:15;:37:::0;;;;46878:16:::1;:27:::0;46916:13:::1;:24:::0;;-1:-1:-1;;46916:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46390:558::o;2405:103::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;2470:30:::1;2497:1;2470:18;:30::i;:::-;2405:103::o:0;36057:133::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;10378:12;;36110:20:::1;:36:::0;10378:12;;36157:9:::1;:25:::0;36057:133::o;36198:167::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36311:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;36311:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36198:167::o;36373:403::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;36523:15:::1;:31:::0;;;36565:15:::1;:31:::0;;;36607:9:::1;:19:::0;;;36619:7;36652:33:::1;36583:13:::0;36541;36652:33:::1;:::i;:::-;:45;;;;:::i;:::-;36637:12;:60:::0;;;36732:2:::1;-1:-1:-1::0;36716:18:0::1;36708:60;;;::::0;-1:-1:-1;;;36708:60:0;;6955:2:1;36708:60:0::1;::::0;::::1;6937:21:1::0;6994:2;6974:18;;;6967:30;7033:31;7013:18;;;7006:59;7082:18;;36708:60:0::1;6753:353:1::0;36708:60:0::1;36373:403:::0;;;:::o;34590:156::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;34645:18:::1;:25:::0;;-1:-1:-1;;34681:14:0;;;;;34723:15:::1;34706:14;:32:::0;34590:156::o;9389:104::-;9445:13;9478:7;9471:14;;;;;:::i;37394:304::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;37538:13:::1;-1:-1:-1::0;;;;;37530:21:0::1;:4;-1:-1:-1::0;;;;;37530:21:0::1;;;37508:128;;;::::0;-1:-1:-1;;;37508:128:0;;7313:2:1;37508:128:0::1;::::0;::::1;7295:21:1::0;7352:2;7332:18;;;7325:30;7391:34;7371:18;;;7364:62;7462:27;7442:18;;;7435:55;7507:19;;37508:128:0::1;7111:421:1::0;37508:128:0::1;37649:41;37678:4;37684:5;37649:28;:41::i;:::-;37394:304:::0;;:::o;13607:413::-;888:10;13700:4;13744:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13744:34:0;;;;;;;;;;13797:35;;;;13789:85;;;;-1:-1:-1;;;13789:85:0;;7739:2:1;13789:85:0;;;7721:21:1;7778:2;7758:18;;;7751:30;7817:34;7797:18;;;7790:62;-1:-1:-1;;;7868:18:1;;;7861:35;7913:19;;13789:85:0;7537:401:1;13789:85:0;13910:67;888:10;13933:7;13961:15;13942:16;:34;13910:8;:67::i;:::-;-1:-1:-1;14008:4:0;;13607:413;-1:-1:-1;;;13607:413:0:o;10801:175::-;10887:4;10904:42;888:10;10928:9;10939:6;10904:9;:42::i;37902:231::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;38062:15:::1;::::0;38019:59:::1;::::0;-1:-1:-1;;;;;38062:15:0;;::::1;::::0;38019:59;::::1;::::0;::::1;::::0;38062:15:::1;::::0;38019:59:::1;38089:15;:36:::0;;-1:-1:-1;;;;;;38089:36:0::1;-1:-1:-1::0;;;;;38089:36:0;;;::::1;::::0;;;::::1;::::0;;37902:231::o;37204:182::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37289:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37289:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37344:34;;1212:41:1;;;37344:34:0::1;::::0;1185:18:1;37344:34:0::1;;;;;;;37204:182:::0;;:::o;36784:412::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;36935:16:::1;:32:::0;;;36978:16:::1;:32:::0;;;37021:10:::1;:20:::0;;;37034:7;37068:35:::1;36997:13:::0;36954;37068:35:::1;:::i;:::-;:48;;;;:::i;:::-;37052:13;:64:::0;;;37152:2:::1;-1:-1:-1::0;37135:19:0::1;37127:61;;;::::0;-1:-1:-1;;;37127:61:0;;8145:2:1;37127:61:0::1;::::0;::::1;8127:21:1::0;8184:2;8164:18;;;8157:30;8223:31;8203:18;;;8196:59;8272:18;;37127:61:0::1;7943:353:1::0;35012:496:0;2170:6;;35120:4;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;35199:5:::1;35178:13;10378:12:::0;;;10290:108;35178:13:::1;:17;::::0;35194:1:::1;35178:17;:::i;:::-;35177:27;;;;:::i;:::-;35164:9;:40;;35142:143;;;::::0;-1:-1:-1;;;35142:143:0;;8898:2:1;35142:143:0::1;::::0;::::1;8880:21:1::0;8937:2;8917:18;;;8910:30;8976:34;8956:18;;;8949:62;-1:-1:-1;;;9027:18:1;;;9020:51;9088:19;;35142:143:0::1;8696:417:1::0;35142:143:0::1;35353:4;35332:13;10378:12:::0;;;10290:108;35332:13:::1;:17;::::0;35348:1:::1;35332:17;:::i;:::-;35331:26;;;;:::i;:::-;35318:9;:39;;35296:141;;;::::0;-1:-1:-1;;;35296:141:0;;9320:2:1;35296:141:0::1;::::0;::::1;9302:21:1::0;9359:2;9339:18;;;9332:30;9398:34;9378:18;;;9371:62;-1:-1:-1;;;9449:18:1;;;9442:50;9509:19;;35296:141:0::1;9118:416:1::0;35296:141:0::1;-1:-1:-1::0;35448:18:0::1;:30:::0;;;35496:4:::1;2388:1;35012:496:::0;;;:::o;35516:272::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;35647:4:::1;35639;35618:13;10378:12:::0;;;10290:108;35618:13:::1;:17;::::0;35634:1:::1;35618:17;:::i;:::-;35617:26;;;;:::i;:::-;35616:35;;;;:::i;:::-;35606:6;:45;;35584:145;;;::::0;-1:-1:-1;;;35584:145:0;;9741:2:1;35584:145:0::1;::::0;::::1;9723:21:1::0;9780:2;9760:18;;;9753:30;9819:34;9799:18;;;9792:62;-1:-1:-1;;;9870:18:1;;;9863:48;9928:19;;35584:145:0::1;9539:414:1::0;35584:145:0::1;35763:17;:6:::0;35773::::1;35763:17;:::i;:::-;35740:20;:40:::0;-1:-1:-1;35516:272:0:o;34807:135::-;2170:6;;34867:4;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;-1:-1:-1;34884:20:0::1;:28:::0;;-1:-1:-1;;34884:28:0::1;::::0;;;34807:135;:::o;35796:253::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;35932:4:::1;35924;35902:13;10378:12:::0;;;10290:108;35902:13:::1;:18;::::0;35918:2:::1;35902:18;:::i;:::-;35901:27;;;;:::i;:::-;35900:36;;;;:::i;:::-;35890:6;:46;;35868:133;;;::::0;-1:-1:-1;;;35868:133:0;;10160:2:1;35868:133:0::1;::::0;::::1;10142:21:1::0;10199:2;10179:18;;;10172:30;10238:34;10218:18;;;10211:62;-1:-1:-1;;;10289:18:1;;;10282:35;10334:19;;35868:133:0::1;9958:401:1::0;35868:133:0::1;36024:17;:6:::0;36034::::1;36024:17;:::i;:::-;36012:9;:29:::0;-1:-1:-1;35796:253:0:o;2663:201::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2752:22:0;::::1;2744:73;;;::::0;-1:-1:-1;;;2744:73:0;;10566:2:1;2744:73:0::1;::::0;::::1;10548:21:1::0;10605:2;10585:18;;;10578:30;10644:34;10624:18;;;10617:62;-1:-1:-1;;;10695:18:1;;;10688:36;10741:19;;2744:73:0::1;10364:402:1::0;2744:73:0::1;2828:28;2847:8;2828:18;:28::i;:::-;2663:201:::0;:::o;47752:1056::-;2170:6;;47863:4;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;47948:19:::1;;47925:20;;:42;;;;:::i;:::-;47907:15;:60;47885:142;;;::::0;-1:-1:-1;;;47885:142:0;;10973:2:1;47885:142:0::1;::::0;::::1;10955:21:1::0;;;10992:18;;;10985:30;11051:34;11031:18;;;11024:62;11103:18;;47885:142:0::1;10771:356:1::0;47885:142:0::1;48057:4;48046:7;:15;;48038:70;;;::::0;-1:-1:-1;;;48038:70:0;;11334:2:1;48038:70:0::1;::::0;::::1;11316:21:1::0;11373:2;11353:18;;;11346:30;11412:34;11392:18;;;11385:62;-1:-1:-1;;;11463:18:1;;;11456:40;11513:19;;48038:70:0::1;11132:406:1::0;48038:70:0::1;48142:15;48119:20;:38:::0;48243:29:::1;::::0;-1:-1:-1;;;48243:29:0;;-1:-1:-1;;;;;48258:13:0::1;1707:32:1::0;48243:29:0::1;::::0;::::1;1689:51:1::0;48212:28:0::1;::::0;48243:4:::1;::::0;:14:::1;::::0;1662:18:1;;48243:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48212:60:::0;-1:-1:-1;48322:20:0::1;48345:44;48383:5;48345:33;48212:60:::0;48370:7;48345:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;48322:67:::0;-1:-1:-1;48494:16:0;;48490:110:::1;;48527:61;48543:13;48566:6;48575:12;48527:15;:61::i;:::-;48675:19;48712:13;48675:51;;48737:4;-1:-1:-1::0;;;;;48737:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48764:14:0::1;::::0;::::1;::::0;-1:-1:-1;48764:14:0;;-1:-1:-1;48764:14:0::1;-1:-1:-1::0;48796:4:0::1;::::0;47752:1056;-1:-1:-1;;;;47752:1056:0:o;17332:380::-;-1:-1:-1;;;;;17468:19:0;;17460:68;;;;-1:-1:-1;;;17460:68:0;;11934:2:1;17460:68:0;;;11916:21:1;11973:2;11953:18;;;11946:30;12012:34;11992:18;;;11985:62;-1:-1:-1;;;12063:18:1;;;12056:34;12107:19;;17460:68:0;11732:400:1;17460:68:0;-1:-1:-1;;;;;17547:21:0;;17539:68;;;;-1:-1:-1;;;17539:68:0;;12339:2:1;17539:68:0;;;12321:21:1;12378:2;12358:18;;;12351:30;12417:34;12397:18;;;12390:62;-1:-1:-1;;;12468:18:1;;;12461:32;12510:19;;17539:68:0;12137:398:1;17539:68:0;-1:-1:-1;;;;;17620:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17672:32;;1897:25:1;;;17672:32:0;;1870:18:1;17672:32:0;;;;;;;17332:380;;;:::o;38484:5012::-;-1:-1:-1;;;;;38616:18:0;;38608:68;;;;-1:-1:-1;;;38608:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38695:16:0;;38687:64;;;;-1:-1:-1;;;38687:64:0;;;;;;;:::i;:::-;38768:11;38764:93;;38796:28;38812:4;38818:2;38822:1;38796:15;:28::i;38764:93::-;38873:14;;;;38869:2481;;;2170:6;;-1:-1:-1;;;;;38926:15:0;;;2170:6;;38926:15;;;;:49;;-1:-1:-1;2170:6:0;;-1:-1:-1;;;;;38962:13:0;;;2170:6;;38962:13;;38926:49;:86;;;;-1:-1:-1;;;;;;38996:16:0;;;;38926:86;:128;;;;-1:-1:-1;;;;;;39033:21:0;;39047:6;39033:21;;38926:128;:158;;;;-1:-1:-1;39076:8:0;;-1:-1:-1;;;39076:8:0;;;;39075:9;38926:158;38904:2435;;;39124:7;;;;;;;39119:217;;-1:-1:-1;;;;;39190:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39219:23:0;;;;;;:19;:23;;;;;;;;39190:52;39156:160;;;;-1:-1:-1;;;39156:160:0;;13552:2:1;39156:160:0;;;13534:21:1;13591:2;13571:18;;;13564:30;-1:-1:-1;;;13610:18:1;;;13603:52;13672:18;;39156:160:0;13350:346:1;39156:160:0;39492:20;;;;39488:641;;;2170:6;;-1:-1:-1;;;;;39567:13:0;;;2170:6;;39567:13;;;;:72;;;39623:15;-1:-1:-1;;;;;39609:30:0;:2;-1:-1:-1;;;;;39609:30:0;;;39567:72;:129;;;;;39682:13;-1:-1:-1;;;;;39668:28:0;:2;-1:-1:-1;;;;;39668:28:0;;;39567:129;39537:573;;;39814:9;39785:39;;;;:28;:39;;;;;;39860:12;-1:-1:-1;39747:258:0;;;;-1:-1:-1;;;39747:258:0;;13903:2:1;39747:258:0;;;13885:21:1;13942:2;13922:18;;;13915:30;13981:34;13961:18;;;13954:62;14052:34;14032:18;;;14025:62;-1:-1:-1;;;14103:19:1;;;14096:40;14153:19;;39747:258:0;13701:477:1;39747:258:0;40061:9;40032:39;;;;:28;:39;;;;;40074:12;40032:54;;39537:573;-1:-1:-1;;;;;40203:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40260:35:0;;;;;;:31;:35;;;;;;;;40259:36;40203:92;40177:1147;;;40382:20;;40372:6;:30;;40338:169;;;;-1:-1:-1;;;40338:169:0;;14385:2:1;40338:169:0;;;14367:21:1;14424:2;14404:18;;;14397:30;14463:34;14443:18;;;14436:62;-1:-1:-1;;;14514:18:1;;;14507:51;14575:19;;40338:169:0;14183:417:1;40338:169:0;40590:9;;-1:-1:-1;;;;;10562:18:0;;10535:7;10562:18;;;;;;;;;;;40564:22;;:6;:22;:::i;:::-;:35;;40530:140;;;;-1:-1:-1;;;40530:140:0;;14807:2:1;40530:140:0;;;14789:21:1;14846:2;14826:18;;;14819:30;-1:-1:-1;;;14865:18:1;;;14858:49;14924:18;;40530:140:0;14605:343:1;40530:140:0;40177:1147;;;-1:-1:-1;;;;;40768:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;40823:37:0;;;;;;:31;:37;;;;;;;;40822:38;40768:92;40742:582;;;40947:20;;40937:6;:30;;40903:170;;;;-1:-1:-1;;;40903:170:0;;15155:2:1;40903:170:0;;;15137:21:1;15194:2;15174:18;;;15167:30;15233:34;15213:18;;;15206:62;-1:-1:-1;;;15284:18:1;;;15277:52;15346:19;;40903:170:0;14953:418:1;40742:582:0;-1:-1:-1;;;;;41104:35:0;;;;;;:31;:35;;;;;;;;41099:225;;41224:9;;-1:-1:-1;;;;;10562:18:0;;10535:7;10562:18;;;;;;;;;;;41198:22;;:6;:22;:::i;:::-;:35;;41164:140;;;;-1:-1:-1;;;41164:140:0;;14807:2:1;41164:140:0;;;14789:21:1;14846:2;14826:18;;;14819:30;-1:-1:-1;;;14865:18:1;;;14858:49;14924:18;;41164:140:0;14605:343:1;41164:140:0;41411:4;41362:28;10562:18;;;;;;;;;;;41469;;41445:42;;;;;;;41518;;-1:-1:-1;41542:18:0;;;;;;;41518:42;:68;;;;-1:-1:-1;41578:8:0;;-1:-1:-1;;;41578:8:0;;;;41577:9;41518:68;:117;;;;-1:-1:-1;;;;;;41604:31:0;;;;;;:25;:31;;;;;;;;41603:32;41518:117;:160;;;;-1:-1:-1;;;;;;41653:25:0;;;;;;:19;:25;;;;;;;;41652:26;41518:160;:201;;;;-1:-1:-1;;;;;;41696:23:0;;;;;;:19;:23;;;;;;;;41695:24;41518:201;41500:333;;;41746:8;:15;;-1:-1:-1;;;;41746:15:0;-1:-1:-1;;;41746:15:0;;;41778:10;:8;:10::i;:::-;41805:8;:16;;-1:-1:-1;;;;41805:16:0;;;41500:333;41864:8;;-1:-1:-1;;;41864:8:0;;;;41863:9;:55;;;;-1:-1:-1;;;;;;41889:29:0;;;;;;:25;:29;;;;;;;;41863:55;:85;;;;-1:-1:-1;41935:13:0;;;;41863:85;:153;;;;;42001:15;;41984:14;;:32;;;;:::i;:::-;41965:15;:51;;41863:153;:196;;;;-1:-1:-1;;;;;;42034:25:0;;;;;;:19;:25;;;;;;;;42033:26;41863:196;41845:282;;;42086:29;:27;:29::i;:::-;;41845:282;42155:8;;-1:-1:-1;;;;;42265:25:0;;42139:12;42265:25;;;:19;:25;;;;;;42155:8;-1:-1:-1;;;42155:8:0;;;;;42154:9;;42265:25;;:52;;-1:-1:-1;;;;;;42294:23:0;;;;;;:19;:23;;;;;;;;42265:52;42261:100;;;-1:-1:-1;42344:5:0;42261:100;42373:12;42478:7;42474:969;;;-1:-1:-1;;;;;42530:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42579:1;42563:13;;:17;42530:50;42526:768;;;42608:34;42638:3;42608:25;42619:13;;42608:6;:10;;:25;;;;:::i;:34::-;42601:41;;42711:13;;42691:16;;42684:4;:23;;;;:::i;:::-;42683:41;;;;:::i;:::-;42661:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42781:13:0;;42767:10;;42760:17;;:4;:17;:::i;:::-;42759:35;;;;:::i;:::-;42743:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;42863:13:0;;42843:16;;42836:23;;:4;:23;:::i;:::-;42835:41;;;;:::i;:::-;42813:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;42526:768:0;;-1:-1:-1;42526:768:0;;-1:-1:-1;;;;;42938:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42988:1;42973:12;;:16;42938:51;42934:360;;;43017:33;43046:3;43017:24;43028:12;;43017:6;:10;;:24;;;;:::i;:33::-;43010:40;;43118:12;;43099:15;;43092:4;:22;;;;:::i;:::-;43091:39;;;;:::i;:::-;43069:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43186:12:0;;43173:9;;43166:16;;:4;:16;:::i;:::-;43165:33;;;;:::i;:::-;43149:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43266:12:0;;43247:15;;43240:22;;:4;:22;:::i;:::-;43239:39;;;;:::i;:::-;43217:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42934:360:0;43314:8;;43310:91;;43343:42;43359:4;43373;43380;43343:15;:42::i;:::-;43417:14;43427:4;43417:14;;:::i;:::-;;;42474:969;43455:33;43471:4;43477:2;43481:6;43455:15;:33::i;:::-;38597:4899;;;;38484:5012;;;:::o;3024:191::-;3117:6;;;-1:-1:-1;;;;;3134:17:0;;;-1:-1:-1;;;;;;3134:17:0;;;;;;;3167:40;;3117:6;;;3134:17;3117:6;;3167:40;;3098:16;;3167:40;3087:128;3024:191;:::o;37706:188::-;-1:-1:-1;;;;;37789:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;37789:39:0;;;;;;;;;;37846:40;;37789:39;;:31;37846:40;;;37706:188;;:::o;22785:98::-;22843:7;22870:5;22874:1;22870;:5;:::i;:::-;22863:12;22785:98;-1:-1:-1;;;22785:98:0:o;23184:::-;23242:7;23269:5;23273:1;23269;:5;:::i;14510:733::-;-1:-1:-1;;;;;14650:20:0;;14642:70;;;;-1:-1:-1;;;14642:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14731:23:0;;14723:71;;;;-1:-1:-1;;;14723:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14891:17:0;;14867:21;14891:17;;;;;;;;;;;14927:23;;;;14919:74;;;;-1:-1:-1;;;14919:74:0;;15708:2:1;14919:74:0;;;15690:21:1;15747:2;15727:18;;;15720:30;15786:34;15766:18;;;15759:62;-1:-1:-1;;;15837:18:1;;;15830:36;15883:19;;14919:74:0;15506:402:1;14919:74:0;-1:-1:-1;;;;;15029:17:0;;;:9;:17;;;;;;;;;;;15049:22;;;15029:42;;15093:20;;;;;;;;:30;;15065:6;;15029:9;15093:30;;15065:6;;15093:30;:::i;:::-;;;;;;;;15158:9;-1:-1:-1;;;;;15141:35:0;15150:6;-1:-1:-1;;;;;15141:35:0;;15169:6;15141:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;15141:35:0;;;;;;;;14631:612;14510:733;;;:::o;44626:1756::-;44709:4;44665:23;10562:18;;;;;;;;;;;44665:50;;44726:25;44822:12;;44788:18;;44754;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;44726:108;-1:-1:-1;44845:12:0;44874:20;;;:46;;-1:-1:-1;44898:22:0;;44874:46;44870:85;;;44937:7;;;44626:1756::o;44870:85::-;44989:18;;:23;;45010:2;44989:23;:::i;:::-;44971:15;:41;44967:115;;;45047:18;;:23;;45068:2;45047:23;:::i;:::-;45029:41;;44967:115;45143:23;45256:1;45223:17;45188:18;;45170:15;:36;;;;:::i;:::-;45169:71;;;;:::i;:::-;:88;;;;:::i;:::-;45143:114;-1:-1:-1;45268:26:0;45297:36;:15;45143:114;45297:19;:36::i;:::-;45268:65;-1:-1:-1;45374:21:0;45408:36;45268:65;45408:16;:36::i;:::-;45457:18;45478:44;:21;45504:17;45478:25;:44::i;:::-;45457:65;;45535:23;45561:81;45614:17;45561:34;45576:18;;45561:10;:14;;:34;;;;:::i;:81::-;45535:107;;45653:17;45673:51;45706:17;45673:28;45688:12;;45673:10;:14;;:28;;;;:::i;:51::-;45653:71;-1:-1:-1;45737:23:0;45653:71;45763:28;45776:15;45763:10;:28;:::i;:::-;:40;;;;:::i;:::-;45837:1;45816:18;:22;;;45849:18;:22;;;45882:12;:16;;;45933:9;;45925:45;;45737:66;;-1:-1:-1;;;;;;45933:9:0;;45956;;45925:45;45837:1;45925:45;45956:9;45933;45925:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45911:59:0;;-1:-1:-1;;45987:19:0;;;;;:42;;;46028:1;46010:15;:19;45987:42;45983:278;;;46046:46;46059:15;46076;46046:12;:46::i;:::-;46216:18;;46112:137;;;16325:25:1;;;16381:2;16366:18;;16359:34;;;16409:18;;;16402:34;;;;46112:137:0;;;;;;16313:2:1;46112:137:0;;;45983:278;46295:15;;46287:87;;-1:-1:-1;;;;;46295:15:0;;;;46338:21;;46287:87;;;;46338:21;46295:15;46287:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;44626:1756:0:o;46956:788::-;47047:15;47030:14;:32;47148:29;;-1:-1:-1;;;47148:29:0;;-1:-1:-1;;;;;47163:13:0;1707:32:1;47148:29:0;;;1689:51:1;47013:4:0;;;;47148;;:14;;1662:18:1;;47148:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47117:60;;47227:20;47250:77;47311:5;47250:42;47275:16;;47250:20;:24;;:42;;;;:::i;:77::-;47227:100;-1:-1:-1;47432:16:0;;47428:110;;47465:61;47481:13;47504:6;47513:12;47465:15;:61::i;:::-;47613:19;47650:13;47613:51;;47675:4;-1:-1:-1;;;;;47675:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47702:12:0;;;;-1:-1:-1;47702:12:0;;-1:-1:-1;47702:12:0;47732:4;47725:11;;;;;46956:788;:::o;22428:98::-;22486:7;22513:5;22517:1;22513;:5;:::i;43504:589::-;43654:16;;;43668:1;43654:16;;;;;;;;43630:21;;43654:16;;;;;;;;;;-1:-1:-1;43654:16:0;43630:40;;43699:4;43681;43686:1;43681:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43681:23:0;;;-1:-1:-1;;;;;43681:23:0;;;;;43725:15;-1:-1:-1;;;;;43725:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43715:4;43720:1;43715:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43715:32:0;;;-1:-1:-1;;;;;43715:32:0;;;;;43760:62;43777:4;43792:15;43810:11;43760:8;:62::i;:::-;43861:224;;-1:-1:-1;;;43861:224:0;;-1:-1:-1;;;;;43861:15:0;:66;;;;:224;;43942:11;;43968:1;;44012:4;;44039;;44059:15;;43861:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43559:534;43504:589;:::o;44101:517::-;44249:62;44266:4;44281:15;44299:11;44249:8;:62::i;:::-;44354:256;;-1:-1:-1;;;44354:256:0;;44426:4;44354:256;;;18293:34:1;18343:18;;;18336:34;;;44472:1:0;18386:18:1;;;18379:34;;;18429:18;;;18422:34;29840:6:0;18472:19:1;;;18465:44;44584:15:0;18525:19:1;;;18518:35;44354:15:0;-1:-1:-1;;;;;44354:31:0;;;;44393:9;;18227:19:1;;44354:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44101:517;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2791:160::-;2856:20;;2912:13;;2905:21;2895:32;;2885:60;;2941:1;2938;2931:12;2956:316;3030:6;3038;3046;3099:2;3087:9;3078:7;3074:23;3070:32;3067:52;;;3115:1;3112;3105:12;3067:52;3151:9;3138:23;3128:33;;3208:2;3197:9;3193:18;3180:32;3170:42;;3231:35;3262:2;3251:9;3247:18;3231:35;:::i;:::-;3221:45;;2956:316;;;;;:::o;3277:315::-;3342:6;3350;3403:2;3391:9;3382:7;3378:23;3374:32;3371:52;;;3419:1;3416;3409:12;3371:52;3458:9;3445:23;3477:31;3502:5;3477:31;:::i;:::-;3527:5;-1:-1:-1;3551:35:1;3582:2;3567:18;;3551:35;:::i;:::-;3541:45;;3277:315;;;;;:::o;3597:316::-;3674:6;3682;3690;3743:2;3731:9;3722:7;3718:23;3714:32;3711:52;;;3759:1;3756;3749:12;3711:52;-1:-1:-1;;3782:23:1;;;3852:2;3837:18;;3824:32;;-1:-1:-1;3903:2:1;3888:18;;;3875:32;;3597:316;-1:-1:-1;3597:316:1:o;3918:180::-;3977:6;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;-1:-1:-1;4069:23:1;;3918:180;-1:-1:-1;3918:180:1:o;4103:388::-;4171:6;4179;4232:2;4220:9;4211:7;4207:23;4203:32;4200:52;;;4248:1;4245;4238:12;4200:52;4287:9;4274:23;4306:31;4331:5;4306:31;:::i;:::-;4356:5;-1:-1:-1;4413:2:1;4398:18;;4385:32;4426:33;4385:32;4426:33;:::i;:::-;4478:7;4468:17;;;4103:388;;;;;:::o;4496:380::-;4575:1;4571:12;;;;4618;;;4639:61;;4693:4;4685:6;4681:17;4671:27;;4639:61;4746:2;4738:6;4735:14;4715:18;4712:38;4709:161;;;4792:10;4787:3;4783:20;4780:1;4773:31;4827:4;4824:1;4817:15;4855:4;4852:1;4845:15;4709:161;;4496:380;;;:::o;4881:356::-;5083:2;5065:21;;;5102:18;;;5095:30;5161:34;5156:2;5141:18;;5134:62;5228:2;5213:18;;4881:356::o;5651:127::-;5712:10;5707:3;5703:20;5700:1;5693:31;5743:4;5740:1;5733:15;5767:4;5764:1;5757:15;5783:128;5823:3;5854:1;5850:6;5847:1;5844:13;5841:39;;;5860:18;;:::i;:::-;-1:-1:-1;5896:9:1;;5783:128::o;8301:168::-;8341:7;8407:1;8403;8399:6;8395:14;8392:1;8389:21;8384:1;8377:9;8370:17;8366:45;8363:71;;;8414:18;;:::i;:::-;-1:-1:-1;8454:9:1;;8301:168::o;8474:217::-;8514:1;8540;8530:132;;8584:10;8579:3;8575:20;8572:1;8565:31;8619:4;8616:1;8609:15;8647:4;8644:1;8637:15;8530:132;-1:-1:-1;8676:9:1;;8474:217::o;11543:184::-;11613:6;11666:2;11654:9;11645:7;11641:23;11637:32;11634:52;;;11682:1;11679;11672:12;11634:52;-1:-1:-1;11705:16:1;;11543:184;-1:-1:-1;11543:184:1:o;12540:401::-;12742:2;12724:21;;;12781:2;12761:18;;;12754:30;12820:34;12815:2;12800:18;;12793:62;-1:-1:-1;;;12886:2:1;12871:18;;12864:35;12931:3;12916:19;;12540:401::o;12946:399::-;13148:2;13130:21;;;13187:2;13167:18;;;13160:30;13226:34;13221:2;13206:18;;13199:62;-1:-1:-1;;;13292:2:1;13277:18;;13270:33;13335:3;13320:19;;12946:399::o;15376:125::-;15416:4;15444:1;15441;15438:8;15435:34;;;15449:18;;:::i;:::-;-1:-1:-1;15486:9:1;;15376:125::o;16579:127::-;16640:10;16635:3;16631:20;16628:1;16621:31;16671:4;16668:1;16661:15;16695:4;16692:1;16685:15;16711:251;16781:6;16834:2;16822:9;16813:7;16809:23;16805:32;16802:52;;;16850:1;16847;16840:12;16802:52;16882:9;16876:16;16901:31;16926:5;16901:31;:::i;16967:980::-;17229:4;17277:3;17266:9;17262:19;17308:6;17297:9;17290:25;17334:2;17372:6;17367:2;17356:9;17352:18;17345:34;17415:3;17410:2;17399:9;17395:18;17388:31;17439:6;17474;17468:13;17505:6;17497;17490:22;17543:3;17532:9;17528:19;17521:26;;17582:2;17574:6;17570:15;17556:29;;17603:1;17613:195;17627:6;17624:1;17621:13;17613:195;;;17692:13;;-1:-1:-1;;;;;17688:39:1;17676:52;;17783:15;;;;17748:12;;;;17724:1;17642:9;17613:195;;;-1:-1:-1;;;;;;;17864:32:1;;;;17859:2;17844:18;;17837:60;-1:-1:-1;;;17928:3:1;17913:19;17906:35;17825:3;16967:980;-1:-1:-1;;;16967:980:1:o;18564:306::-;18652:6;18660;18668;18721:2;18709:9;18700:7;18696:23;18692:32;18689:52;;;18737:1;18734;18727:12;18689:52;18766:9;18760:16;18750:26;;18816:2;18805:9;18801:18;18795:25;18785:35;;18860:2;18849:9;18845:18;18839:25;18829:35;;18564:306;;;;;:::o

Swarm Source

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