ETH Price: $2,379.27 (-0.46%)

Token

Nyanko (NYANKO)
 

Overview

Max Total Supply

1,000,000,000 NYANKO

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.83587984942645308 NYANKO

Value
$0.00
0xb053f4aa31b24ece46556e246293a620d9fc5d95
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:
Nyanko

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-28
*/

/*
 * SPDX-License-Identifier: MIT
*/

pragma solidity >=0.8.16;
pragma experimental ABIEncoderV2;

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

////// 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(0), account, amount);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract Nyanko 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;
    address public lpWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

    constructor() ERC20("Nyanko", "NYANKO") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 5;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 10;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1000000000 * 1e18;

        maxTransactionAmount = (totalSupply) / 100;
        maxWallet = (totalSupply) / 100;
        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;

        marketingWallet = address(0x0E1c57fcA9aBD6a133547C1417323697B7F0722e); 
        devWallet = address(0x0E1c57fcA9aBD6a133547C1417323697B7F0722e);
        lpWallet = msg.sender;

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

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

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

    receive() external payable {}

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

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

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

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

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

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

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

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

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

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 10, "Must keep fees at  20% 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 updateLPWallet(address newLPWallet)
        external
        onlyOwner
    {
        lpWallet = newLPWallet;
    }

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

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

    event BoughtEarly(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 (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                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 &&
            swapEnabled &&
            !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
            lpWallet,
            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 setAutoLPBurnSettings(
        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();
        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();
        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":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"lpWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"newLPWallet","type":"address"}],"name":"updateLPWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600c55600d8054600160ff199182168117909255610e10600e556107086010556012805462ffffff1916831790556014805490911690911790553480156200004d57600080fd5b50604051806040016040528060068152602001654e79616e6b6f60d01b815250604051806040016040528060068152602001654e59414e4b4f60d01b81525081600390816200009d919062000778565b506004620000ac828262000778565b505050620000c9620000c36200041e60201b60201c565b62000422565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000eb81600162000474565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000136573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015c919062000844565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001aa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d0919062000844565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200021e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000244919062000844565b6001600160a01b031660a08190526200025f90600162000474565b60a0516200026f906001620004ee565b6005600080600a81806b033b2e3c9fd0803ce8000000620002926064826200088c565b600955620002a26064826200088c565b600b55612710620002b5826005620008af565b620002c191906200088c565b600a5560168790556017869055601885905584620002e08789620008d1565b620002ec9190620008d1565b601555601a849055601b839055601c829055816200030b8486620008d1565b620003179190620008d1565b601955600680546001600160a01b0319908116730e1c57fca9abd6a133547c1417323697b7f0722e90811790925560078054821690921790915560088054909116331790556200037b620003736005546001600160a01b031690565b600162000542565b6200038830600162000542565b6200039761dead600162000542565b600654620003b0906001600160a01b0316600162000542565b620003cf620003c76005546001600160a01b031690565b600162000474565b620003dc30600162000474565b620003eb61dead600162000474565b60065462000404906001600160a01b0316600162000474565b620004103382620005ea565b5050505050505050620008ed565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004c35760405162461bcd60e51b8152602060048201819052602482015260008051602062003af883398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200058d5760405162461bcd60e51b8152602060048201819052602482015260008051602062003af88339815191526044820152606401620004ba565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006425760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004ba565b8060026000828254620006569190620008d1565b90915550506001600160a01b0382166000908152602081905260408120805483929062000685908490620008d1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006ff57607f821691505b6020821081036200072057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006cf57600081815260208120601f850160051c810160208610156200074f5750805b601f850160051c820191505b8181101562000770578281556001016200075b565b505050505050565b81516001600160401b03811115620007945762000794620006d4565b620007ac81620007a58454620006ea565b8462000726565b602080601f831160018114620007e45760008415620007cb5750858301515b600019600386901b1c1916600185901b17855562000770565b600085815260208120601f198616915b828110156200081557888601518255948401946001909101908401620007f4565b5085821015620008345787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200085757600080fd5b81516001600160a01b03811681146200086f57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600082620008aa57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615620008cc57620008cc62000876565b500290565b80820180821115620008e757620008e762000876565b92915050565b60805160a0516131836200097560003960008181610617015281816111e201528181611943015281816119de01528181611a0a01528181611d7f015281816128f00152818161299201526129be01526000818161047001528181611d4101528181612a9f01528181612b5801528181612b9401528181612c0e0152612c7601526131836000f3fe6080604052600436106103c75760003560e01c80638da5cb5b116101f2578063c02466681161010d578063e2f45605116100a0578063f63743421161006f578063f637434214610b1f578063f8b45b0514610b35578063fbc10c5514610b4b578063fe72b27a14610b6b57600080fd5b8063e2f4560514610abe578063e884f26014610ad4578063f11a24d314610ae9578063f2fde38b14610aff57600080fd5b8063c8c8ebe4116100dc578063c8c8ebe414610a2c578063d257b34f14610a42578063d85ba06314610a62578063dd62ed3e14610a7857600080fd5b8063c0246668146109b2578063c17b5b8c146109d2578063c18bc195146109f2578063c876d0b914610a1257600080fd5b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610923578063aacebbe314610943578063b62496f514610963578063bbc0c7421461099357600080fd5b80639fccce32146108c1578063a0d82dc5146108d7578063a457c2d7146108ed578063a4c82a001461090d57600080fd5b806395d89b41116101c157806395d89b41146108605780639a7a23d6146108755780639c3b4fdc146108955780639ec22c0e146108ab57600080fd5b80638da5cb5b146107ec5780638ea5220f1461080a578063921369131461082a578063924de9b71461084057600080fd5b806339509351116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146107815780637bce5a04146107a15780638095d564146107b75780638a8c523c146107d757600080fd5b8063715018a614610717578063730c18881461072c578063751039fc1461074c5780637571336a1461076157600080fd5b80636303516c116102b15780636303516c1461068b5780636a486a8e146106ab5780636ddd1713146106c157806370a08231146106e157600080fd5b806339509351146105e557806349bd5a5e146106055780634a62bb65146106395780634fbee1931461065357600080fd5b80631a8145bb1161035a57806327c8f8351161032957806327c8f835146105835780632c3e486c146105995780632e82f1a0146105af578063313ce567146105c957600080fd5b80631a8145bb146105175780631f3fed8f1461052d578063203e727e1461054357806323b872dd1461056357600080fd5b806318160ddd1161039657806318160ddd146104aa5780631816467f146104c9578063184c16c5146104eb578063199ffc721461050157600080fd5b806306fdde03146103d3578063095ea7b3146103fe57806310d5de531461042e5780631694505e1461045e57600080fd5b366103ce57005b600080fd5b3480156103df57600080fd5b506103e8610b8b565b6040516103f59190612cee565b60405180910390f35b34801561040a57600080fd5b5061041e610419366004612d51565b610c1d565b60405190151581526020016103f5565b34801561043a57600080fd5b5061041e610449366004612d7d565b60216020526000908152604090205460ff1681565b34801561046a57600080fd5b506104927f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103f5565b3480156104b657600080fd5b506002545b6040519081526020016103f5565b3480156104d557600080fd5b506104e96104e4366004612d7d565b610c34565b005b3480156104f757600080fd5b506104bb60105481565b34801561050d57600080fd5b506104bb600c5481565b34801561052357600080fd5b506104bb601e5481565b34801561053957600080fd5b506104bb601d5481565b34801561054f57600080fd5b506104e961055e366004612d9a565b610cc4565b34801561056f57600080fd5b5061041e61057e366004612db3565b610da1565b34801561058f57600080fd5b5061049261dead81565b3480156105a557600080fd5b506104bb600e5481565b3480156105bb57600080fd5b50600d5461041e9060ff1681565b3480156105d557600080fd5b50604051601281526020016103f5565b3480156105f157600080fd5b5061041e610600366004612d51565b610e4b565b34801561061157600080fd5b506104927f000000000000000000000000000000000000000000000000000000000000000081565b34801561064557600080fd5b5060125461041e9060ff1681565b34801561065f57600080fd5b5061041e61066e366004612d7d565b6001600160a01b0316600090815260208052604090205460ff1690565b34801561069757600080fd5b50600854610492906001600160a01b031681565b3480156106b757600080fd5b506104bb60195481565b3480156106cd57600080fd5b5060125461041e9062010000900460ff1681565b3480156106ed57600080fd5b506104bb6106fc366004612d7d565b6001600160a01b031660009081526020819052604090205490565b34801561072357600080fd5b506104e9610e87565b34801561073857600080fd5b506104e9610747366004612e04565b610ebd565b34801561075857600080fd5b5061041e610fe6565b34801561076d57600080fd5b506104e961077c366004612e39565b611023565b34801561078d57600080fd5b50600654610492906001600160a01b031681565b3480156107ad57600080fd5b506104bb60165481565b3480156107c357600080fd5b506104e96107d2366004612e6e565b611078565b3480156107e357600080fd5b506104e9611120565b3480156107f857600080fd5b506005546001600160a01b0316610492565b34801561081657600080fd5b50600754610492906001600160a01b031681565b34801561083657600080fd5b506104bb601a5481565b34801561084c57600080fd5b506104e961085b366004612e9a565b611161565b34801561086c57600080fd5b506103e86111a7565b34801561088157600080fd5b506104e9610890366004612e39565b6111b6565b3480156108a157600080fd5b506104bb60185481565b3480156108b757600080fd5b506104bb60115481565b3480156108cd57600080fd5b506104bb601f5481565b3480156108e357600080fd5b506104bb601c5481565b3480156108f957600080fd5b5061041e610908366004612d51565b611295565b34801561091957600080fd5b506104bb600f5481565b34801561092f57600080fd5b5061041e61093e366004612d51565b61132e565b34801561094f57600080fd5b506104e961095e366004612d7d565b61133b565b34801561096f57600080fd5b5061041e61097e366004612d7d565b60226020526000908152604090205460ff1681565b34801561099f57600080fd5b5060125461041e90610100900460ff1681565b3480156109be57600080fd5b506104e96109cd366004612e39565b6113c2565b3480156109de57600080fd5b506104e96109ed366004612e6e565b611449565b3480156109fe57600080fd5b506104e9610a0d366004612d9a565b6114ec565b348015610a1e57600080fd5b5060145461041e9060ff1681565b348015610a3857600080fd5b506104bb60095481565b348015610a4e57600080fd5b5061041e610a5d366004612d9a565b6115bd565b348015610a6e57600080fd5b506104bb60155481565b348015610a8457600080fd5b506104bb610a93366004612eb5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610aca57600080fd5b506104bb600a5481565b348015610ae057600080fd5b5061041e611714565b348015610af557600080fd5b506104bb60175481565b348015610b0b57600080fd5b506104e9610b1a366004612d7d565b611751565b348015610b2b57600080fd5b506104bb601b5481565b348015610b4157600080fd5b506104bb600b5481565b348015610b5757600080fd5b506104e9610b66366004612d7d565b6117ec565b348015610b7757600080fd5b5061041e610b86366004612d9a565b611838565b606060038054610b9a90612eee565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc690612eee565b8015610c135780601f10610be857610100808354040283529160200191610c13565b820191906000526020600020905b815481529060010190602001808311610bf657829003601f168201915b5050505050905090565b6000610c2a338484611a89565b5060015b92915050565b6005546001600160a01b03163314610c675760405162461bcd60e51b8152600401610c5e90612f28565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cee5760405162461bcd60e51b8152600401610c5e90612f28565b670de0b6b3a76400006103e8610d0360025490565b610d0e906001612f73565b610d189190612f92565b610d229190612f92565b811015610d895760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c5e565b610d9b81670de0b6b3a7640000612f73565b60095550565b6000610dae848484611bad565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e335760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c5e565b610e408533858403611a89565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c2a918590610e82908690612fb4565b611a89565b6005546001600160a01b03163314610eb15760405162461bcd60e51b8152600401610c5e90612f28565b610ebb6000612481565b565b6005546001600160a01b03163314610ee75760405162461bcd60e51b8152600401610c5e90612f28565b610258831015610f555760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c5e565b6103e88211158015610f65575060015b610fca5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c5e565b600e92909255600c55600d805460ff1916911515919091179055565b6005546000906001600160a01b031633146110135760405162461bcd60e51b8152600401610c5e90612f28565b506012805460ff19169055600190565b6005546001600160a01b0316331461104d5760405162461bcd60e51b8152600401610c5e90612f28565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110a25760405162461bcd60e51b8152600401610c5e90612f28565b601683905560178290556018819055806110bc8385612fb4565b6110c69190612fb4565b60158190556005101561111b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c5e565b505050565b6005546001600160a01b0316331461114a5760405162461bcd60e51b8152600401610c5e90612f28565b6012805462ffff0019166201010017905542600f55565b6005546001600160a01b0316331461118b5760405162461bcd60e51b8152600401610c5e90612f28565b60128054911515620100000262ff000019909216919091179055565b606060048054610b9a90612eee565b6005546001600160a01b031633146111e05760405162461bcd60e51b8152600401610c5e90612f28565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036112875760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c5e565b61129182826124d3565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156113175760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c5e565b6113243385858403611a89565b5060019392505050565b6000610c2a338484611bad565b6005546001600160a01b031633146113655760405162461bcd60e51b8152600401610c5e90612f28565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113ec5760405162461bcd60e51b8152600401610c5e90612f28565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146114735760405162461bcd60e51b8152600401610c5e90612f28565b601a839055601b829055601c8190558061148d8385612fb4565b6114979190612fb4565b6019819055600a101561111b5760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742020323025206f72206c65737300006044820152606401610c5e565b6005546001600160a01b031633146115165760405162461bcd60e51b8152600401610c5e90612f28565b670de0b6b3a76400006103e861152b60025490565b611536906005612f73565b6115409190612f92565b61154a9190612f92565b8110156115a55760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c5e565b6115b781670de0b6b3a7640000612f73565b600b5550565b6005546000906001600160a01b031633146115ea5760405162461bcd60e51b8152600401610c5e90612f28565b620186a06115f760025490565b611602906001612f73565b61160c9190612f92565b8210156116795760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c5e565b6103e861168560025490565b611690906005612f73565b61169a9190612f92565b8211156117065760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c5e565b50600a81905560015b919050565b6005546000906001600160a01b031633146117415760405162461bcd60e51b8152600401610c5e90612f28565b506014805460ff19169055600190565b6005546001600160a01b0316331461177b5760405162461bcd60e51b8152600401610c5e90612f28565b6001600160a01b0381166117e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c5e565b6117e981612481565b50565b6005546001600160a01b031633146118165760405162461bcd60e51b8152600401610c5e90612f28565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146118655760405162461bcd60e51b8152600401610c5e90612f28565b6010546011546118759190612fb4565b42116118c35760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c5e565b6103e88211156119285760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c5e565b426011556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa158015611993573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b79190612fc7565b905060006119d16127106119cb8487612527565b9061253a565b90508015611a0657611a067f000000000000000000000000000000000000000000000000000000000000000061dead83612546565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611a6657600080fd5b505af1158015611a7a573d6000803e3d6000fd5b50600198975050505050505050565b6001600160a01b038316611aeb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c5e565b6001600160a01b038216611b4c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c5e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611bd35760405162461bcd60e51b8152600401610c5e90612fe0565b6001600160a01b038216611bf95760405162461bcd60e51b8152600401610c5e90613025565b80600003611c0d5761111b83836000612546565b60125460ff16156120c8576005546001600160a01b03848116911614801590611c4457506005546001600160a01b03838116911614155b8015611c5857506001600160a01b03821615155b8015611c6f57506001600160a01b03821661dead14155b8015611c855750600554600160a01b900460ff16155b156120c857601254610100900460ff16611d1b576001600160a01b038316600090815260208052604090205460ff1680611cd657506001600160a01b038216600090815260208052604090205460ff165b611d1b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c5e565b60145460ff1615611e62576005546001600160a01b03838116911614801590611d7657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611db457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611e6257326000908152601360205260409020544311611e4f5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c5e565b3260009081526013602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff168015611ea357506001600160a01b03821660009081526021602052604090205460ff16155b15611f8757600954811115611f185760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c5e565b600b546001600160a01b038316600090815260208190526040902054611f3e9083612fb4565b1115611f825760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c5e565b6120c8565b6001600160a01b03821660009081526022602052604090205460ff168015611fc857506001600160a01b03831660009081526021602052604090205460ff16155b1561203e57600954811115611f825760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c5e565b6001600160a01b03821660009081526021602052604090205460ff166120c857600b546001600160a01b0383166000908152602081905260409020546120849083612fb4565b11156120c85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c5e565b30600090815260208190526040902054600a54811080159081906120f4575060125462010000900460ff165b801561210a5750600554600160a01b900460ff16155b801561212f57506001600160a01b03851660009081526022602052604090205460ff16155b801561215357506001600160a01b038516600090815260208052604090205460ff16155b801561217757506001600160a01b038416600090815260208052604090205460ff16155b156121a5576005805460ff60a01b1916600160a01b17905561219761269b565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156121d757506001600160a01b03841660009081526022602052604090205460ff165b80156121e55750600d5460ff165b80156122005750600e54600f546121fc9190612fb4565b4210155b801561222457506001600160a01b038516600090815260208052604090205460ff16155b15612233576122316128d5565b505b6005546001600160a01b038616600090815260208052604090205460ff600160a01b90920482161591168061227f57506001600160a01b038516600090815260208052604090205460ff165b15612288575060005b6000811561246d576001600160a01b03861660009081526022602052604090205460ff1680156122ba57506000601954115b15612372576122d960646119cb6019548861252790919063ffffffff16565b9050601954601b54826122ec9190612f73565b6122f69190612f92565b601e60008282546123079190612fb4565b9091555050601954601c5461231c9083612f73565b6123269190612f92565b601f60008282546123379190612fb4565b9091555050601954601a5461234c9083612f73565b6123569190612f92565b601d60008282546123679190612fb4565b9091555061244f9050565b6001600160a01b03871660009081526022602052604090205460ff16801561239c57506000601554115b1561244f576123bb60646119cb6015548861252790919063ffffffff16565b9050601554601754826123ce9190612f73565b6123d89190612f92565b601e60008282546123e99190612fb4565b90915550506015546018546123fe9083612f73565b6124089190612f92565b601f60008282546124199190612fb4565b909155505060155460165461242e9083612f73565b6124389190612f92565b601d60008282546124499190612fb4565b90915550505b801561246057612460873083612546565b61246a8186613068565b94505b612478878787612546565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006125338284612f73565b9392505050565b60006125338284612f92565b6001600160a01b03831661256c5760405162461bcd60e51b8152600401610c5e90612fe0565b6001600160a01b0382166125925760405162461bcd60e51b8152600401610c5e90613025565b6001600160a01b0383166000908152602081905260409020548181101561260a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c5e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612641908490612fb4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161268d91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601f54601d54601e546126c29190612fb4565b6126cc9190612fb4565b905060008215806126db575081155b156126e557505050565b600a546126f3906014612f73565b83111561270b57600a54612708906014612f73565b92505b6000600283601e548661271e9190612f73565b6127289190612f92565b6127329190612f92565b905060006127408583612a3c565b90504761274c82612a48565b60006127584783612a3c565b90506000612775876119cb601d548561252790919063ffffffff16565b90506000612792886119cb601f548661252790919063ffffffff16565b90506000816127a18486613068565b6127ab9190613068565b6000601e819055601d819055601f8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612808576040519150601f19603f3d011682016040523d82523d6000602084013e61280d565b606091505b509098505086158015906128215750600081115b15612874576128308782612c08565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146128c1576040519150601f19603f3d011682016040523d82523d6000602084013e6128c6565b606091505b50505050505050505050505050565b42600f556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa158015612942573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129669190612fc7565b905060006129856127106119cb600c548561252790919063ffffffff16565b905080156129ba576129ba7f000000000000000000000000000000000000000000000000000000000000000061dead83612546565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612a1a57600080fd5b505af1158015612a2e573d6000803e3d6000fd5b505050506001935050505090565b60006125338284613068565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a7d57612a7d61307b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612afb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b1f9190613091565b81600181518110612b3257612b3261307b565b60200260200101906001600160a01b031690816001600160a01b031681525050612b7d307f000000000000000000000000000000000000000000000000000000000000000084611a89565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612bd29085906000908690309042906004016130ae565b600060405180830381600087803b158015612bec57600080fd5b505af1158015612c00573d6000803e3d6000fd5b505050505050565b612c33307f000000000000000000000000000000000000000000000000000000000000000084611a89565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015612cc2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612ce7919061311f565b5050505050565b600060208083528351808285015260005b81811015612d1b57858101830151858201604001528201612cff565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146117e957600080fd5b60008060408385031215612d6457600080fd5b8235612d6f81612d3c565b946020939093013593505050565b600060208284031215612d8f57600080fd5b813561253381612d3c565b600060208284031215612dac57600080fd5b5035919050565b600080600060608486031215612dc857600080fd5b8335612dd381612d3c565b92506020840135612de381612d3c565b929592945050506040919091013590565b8035801515811461170f57600080fd5b600080600060608486031215612e1957600080fd5b8335925060208401359150612e3060408501612df4565b90509250925092565b60008060408385031215612e4c57600080fd5b8235612e5781612d3c565b9150612e6560208401612df4565b90509250929050565b600080600060608486031215612e8357600080fd5b505081359360208301359350604090920135919050565b600060208284031215612eac57600080fd5b61253382612df4565b60008060408385031215612ec857600080fd5b8235612ed381612d3c565b91506020830135612ee381612d3c565b809150509250929050565b600181811c90821680612f0257607f821691505b602082108103612f2257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612f8d57612f8d612f5d565b500290565b600082612faf57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610c2e57610c2e612f5d565b600060208284031215612fd957600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610c2e57610c2e612f5d565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156130a357600080fd5b815161253381612d3c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130fe5784516001600160a01b0316835293830193918301916001016130d9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561313457600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122022639b2cecdaa2ff011bbf24e1155a3e637902108a65d2bd7e9b0a8beeb636ec64736f6c634300081000334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103c75760003560e01c80638da5cb5b116101f2578063c02466681161010d578063e2f45605116100a0578063f63743421161006f578063f637434214610b1f578063f8b45b0514610b35578063fbc10c5514610b4b578063fe72b27a14610b6b57600080fd5b8063e2f4560514610abe578063e884f26014610ad4578063f11a24d314610ae9578063f2fde38b14610aff57600080fd5b8063c8c8ebe4116100dc578063c8c8ebe414610a2c578063d257b34f14610a42578063d85ba06314610a62578063dd62ed3e14610a7857600080fd5b8063c0246668146109b2578063c17b5b8c146109d2578063c18bc195146109f2578063c876d0b914610a1257600080fd5b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610923578063aacebbe314610943578063b62496f514610963578063bbc0c7421461099357600080fd5b80639fccce32146108c1578063a0d82dc5146108d7578063a457c2d7146108ed578063a4c82a001461090d57600080fd5b806395d89b41116101c157806395d89b41146108605780639a7a23d6146108755780639c3b4fdc146108955780639ec22c0e146108ab57600080fd5b80638da5cb5b146107ec5780638ea5220f1461080a578063921369131461082a578063924de9b71461084057600080fd5b806339509351116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146107815780637bce5a04146107a15780638095d564146107b75780638a8c523c146107d757600080fd5b8063715018a614610717578063730c18881461072c578063751039fc1461074c5780637571336a1461076157600080fd5b80636303516c116102b15780636303516c1461068b5780636a486a8e146106ab5780636ddd1713146106c157806370a08231146106e157600080fd5b806339509351146105e557806349bd5a5e146106055780634a62bb65146106395780634fbee1931461065357600080fd5b80631a8145bb1161035a57806327c8f8351161032957806327c8f835146105835780632c3e486c146105995780632e82f1a0146105af578063313ce567146105c957600080fd5b80631a8145bb146105175780631f3fed8f1461052d578063203e727e1461054357806323b872dd1461056357600080fd5b806318160ddd1161039657806318160ddd146104aa5780631816467f146104c9578063184c16c5146104eb578063199ffc721461050157600080fd5b806306fdde03146103d3578063095ea7b3146103fe57806310d5de531461042e5780631694505e1461045e57600080fd5b366103ce57005b600080fd5b3480156103df57600080fd5b506103e8610b8b565b6040516103f59190612cee565b60405180910390f35b34801561040a57600080fd5b5061041e610419366004612d51565b610c1d565b60405190151581526020016103f5565b34801561043a57600080fd5b5061041e610449366004612d7d565b60216020526000908152604090205460ff1681565b34801561046a57600080fd5b506104927f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103f5565b3480156104b657600080fd5b506002545b6040519081526020016103f5565b3480156104d557600080fd5b506104e96104e4366004612d7d565b610c34565b005b3480156104f757600080fd5b506104bb60105481565b34801561050d57600080fd5b506104bb600c5481565b34801561052357600080fd5b506104bb601e5481565b34801561053957600080fd5b506104bb601d5481565b34801561054f57600080fd5b506104e961055e366004612d9a565b610cc4565b34801561056f57600080fd5b5061041e61057e366004612db3565b610da1565b34801561058f57600080fd5b5061049261dead81565b3480156105a557600080fd5b506104bb600e5481565b3480156105bb57600080fd5b50600d5461041e9060ff1681565b3480156105d557600080fd5b50604051601281526020016103f5565b3480156105f157600080fd5b5061041e610600366004612d51565b610e4b565b34801561061157600080fd5b506104927f0000000000000000000000006ebd353db9ae746794f356ad17d1ed5afab94b5f81565b34801561064557600080fd5b5060125461041e9060ff1681565b34801561065f57600080fd5b5061041e61066e366004612d7d565b6001600160a01b0316600090815260208052604090205460ff1690565b34801561069757600080fd5b50600854610492906001600160a01b031681565b3480156106b757600080fd5b506104bb60195481565b3480156106cd57600080fd5b5060125461041e9062010000900460ff1681565b3480156106ed57600080fd5b506104bb6106fc366004612d7d565b6001600160a01b031660009081526020819052604090205490565b34801561072357600080fd5b506104e9610e87565b34801561073857600080fd5b506104e9610747366004612e04565b610ebd565b34801561075857600080fd5b5061041e610fe6565b34801561076d57600080fd5b506104e961077c366004612e39565b611023565b34801561078d57600080fd5b50600654610492906001600160a01b031681565b3480156107ad57600080fd5b506104bb60165481565b3480156107c357600080fd5b506104e96107d2366004612e6e565b611078565b3480156107e357600080fd5b506104e9611120565b3480156107f857600080fd5b506005546001600160a01b0316610492565b34801561081657600080fd5b50600754610492906001600160a01b031681565b34801561083657600080fd5b506104bb601a5481565b34801561084c57600080fd5b506104e961085b366004612e9a565b611161565b34801561086c57600080fd5b506103e86111a7565b34801561088157600080fd5b506104e9610890366004612e39565b6111b6565b3480156108a157600080fd5b506104bb60185481565b3480156108b757600080fd5b506104bb60115481565b3480156108cd57600080fd5b506104bb601f5481565b3480156108e357600080fd5b506104bb601c5481565b3480156108f957600080fd5b5061041e610908366004612d51565b611295565b34801561091957600080fd5b506104bb600f5481565b34801561092f57600080fd5b5061041e61093e366004612d51565b61132e565b34801561094f57600080fd5b506104e961095e366004612d7d565b61133b565b34801561096f57600080fd5b5061041e61097e366004612d7d565b60226020526000908152604090205460ff1681565b34801561099f57600080fd5b5060125461041e90610100900460ff1681565b3480156109be57600080fd5b506104e96109cd366004612e39565b6113c2565b3480156109de57600080fd5b506104e96109ed366004612e6e565b611449565b3480156109fe57600080fd5b506104e9610a0d366004612d9a565b6114ec565b348015610a1e57600080fd5b5060145461041e9060ff1681565b348015610a3857600080fd5b506104bb60095481565b348015610a4e57600080fd5b5061041e610a5d366004612d9a565b6115bd565b348015610a6e57600080fd5b506104bb60155481565b348015610a8457600080fd5b506104bb610a93366004612eb5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610aca57600080fd5b506104bb600a5481565b348015610ae057600080fd5b5061041e611714565b348015610af557600080fd5b506104bb60175481565b348015610b0b57600080fd5b506104e9610b1a366004612d7d565b611751565b348015610b2b57600080fd5b506104bb601b5481565b348015610b4157600080fd5b506104bb600b5481565b348015610b5757600080fd5b506104e9610b66366004612d7d565b6117ec565b348015610b7757600080fd5b5061041e610b86366004612d9a565b611838565b606060038054610b9a90612eee565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc690612eee565b8015610c135780601f10610be857610100808354040283529160200191610c13565b820191906000526020600020905b815481529060010190602001808311610bf657829003601f168201915b5050505050905090565b6000610c2a338484611a89565b5060015b92915050565b6005546001600160a01b03163314610c675760405162461bcd60e51b8152600401610c5e90612f28565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cee5760405162461bcd60e51b8152600401610c5e90612f28565b670de0b6b3a76400006103e8610d0360025490565b610d0e906001612f73565b610d189190612f92565b610d229190612f92565b811015610d895760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c5e565b610d9b81670de0b6b3a7640000612f73565b60095550565b6000610dae848484611bad565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e335760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c5e565b610e408533858403611a89565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c2a918590610e82908690612fb4565b611a89565b6005546001600160a01b03163314610eb15760405162461bcd60e51b8152600401610c5e90612f28565b610ebb6000612481565b565b6005546001600160a01b03163314610ee75760405162461bcd60e51b8152600401610c5e90612f28565b610258831015610f555760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c5e565b6103e88211158015610f65575060015b610fca5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c5e565b600e92909255600c55600d805460ff1916911515919091179055565b6005546000906001600160a01b031633146110135760405162461bcd60e51b8152600401610c5e90612f28565b506012805460ff19169055600190565b6005546001600160a01b0316331461104d5760405162461bcd60e51b8152600401610c5e90612f28565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110a25760405162461bcd60e51b8152600401610c5e90612f28565b601683905560178290556018819055806110bc8385612fb4565b6110c69190612fb4565b60158190556005101561111b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610c5e565b505050565b6005546001600160a01b0316331461114a5760405162461bcd60e51b8152600401610c5e90612f28565b6012805462ffff0019166201010017905542600f55565b6005546001600160a01b0316331461118b5760405162461bcd60e51b8152600401610c5e90612f28565b60128054911515620100000262ff000019909216919091179055565b606060048054610b9a90612eee565b6005546001600160a01b031633146111e05760405162461bcd60e51b8152600401610c5e90612f28565b7f0000000000000000000000006ebd353db9ae746794f356ad17d1ed5afab94b5f6001600160a01b0316826001600160a01b0316036112875760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c5e565b61129182826124d3565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156113175760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c5e565b6113243385858403611a89565b5060019392505050565b6000610c2a338484611bad565b6005546001600160a01b031633146113655760405162461bcd60e51b8152600401610c5e90612f28565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113ec5760405162461bcd60e51b8152600401610c5e90612f28565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146114735760405162461bcd60e51b8152600401610c5e90612f28565b601a839055601b829055601c8190558061148d8385612fb4565b6114979190612fb4565b6019819055600a101561111b5760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742020323025206f72206c65737300006044820152606401610c5e565b6005546001600160a01b031633146115165760405162461bcd60e51b8152600401610c5e90612f28565b670de0b6b3a76400006103e861152b60025490565b611536906005612f73565b6115409190612f92565b61154a9190612f92565b8110156115a55760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610c5e565b6115b781670de0b6b3a7640000612f73565b600b5550565b6005546000906001600160a01b031633146115ea5760405162461bcd60e51b8152600401610c5e90612f28565b620186a06115f760025490565b611602906001612f73565b61160c9190612f92565b8210156116795760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c5e565b6103e861168560025490565b611690906005612f73565b61169a9190612f92565b8211156117065760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c5e565b50600a81905560015b919050565b6005546000906001600160a01b031633146117415760405162461bcd60e51b8152600401610c5e90612f28565b506014805460ff19169055600190565b6005546001600160a01b0316331461177b5760405162461bcd60e51b8152600401610c5e90612f28565b6001600160a01b0381166117e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c5e565b6117e981612481565b50565b6005546001600160a01b031633146118165760405162461bcd60e51b8152600401610c5e90612f28565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146118655760405162461bcd60e51b8152600401610c5e90612f28565b6010546011546118759190612fb4565b42116118c35760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c5e565b6103e88211156119285760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c5e565b426011556040516370a0823160e01b81526001600160a01b037f0000000000000000000000006ebd353db9ae746794f356ad17d1ed5afab94b5f16600482015260009030906370a0823190602401602060405180830381865afa158015611993573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b79190612fc7565b905060006119d16127106119cb8487612527565b9061253a565b90508015611a0657611a067f0000000000000000000000006ebd353db9ae746794f356ad17d1ed5afab94b5f61dead83612546565b60007f0000000000000000000000006ebd353db9ae746794f356ad17d1ed5afab94b5f9050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611a6657600080fd5b505af1158015611a7a573d6000803e3d6000fd5b50600198975050505050505050565b6001600160a01b038316611aeb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c5e565b6001600160a01b038216611b4c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c5e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611bd35760405162461bcd60e51b8152600401610c5e90612fe0565b6001600160a01b038216611bf95760405162461bcd60e51b8152600401610c5e90613025565b80600003611c0d5761111b83836000612546565b60125460ff16156120c8576005546001600160a01b03848116911614801590611c4457506005546001600160a01b03838116911614155b8015611c5857506001600160a01b03821615155b8015611c6f57506001600160a01b03821661dead14155b8015611c855750600554600160a01b900460ff16155b156120c857601254610100900460ff16611d1b576001600160a01b038316600090815260208052604090205460ff1680611cd657506001600160a01b038216600090815260208052604090205460ff165b611d1b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c5e565b60145460ff1615611e62576005546001600160a01b03838116911614801590611d7657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611db457507f0000000000000000000000006ebd353db9ae746794f356ad17d1ed5afab94b5f6001600160a01b0316826001600160a01b031614155b15611e6257326000908152601360205260409020544311611e4f5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c5e565b3260009081526013602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff168015611ea357506001600160a01b03821660009081526021602052604090205460ff16155b15611f8757600954811115611f185760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c5e565b600b546001600160a01b038316600090815260208190526040902054611f3e9083612fb4565b1115611f825760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c5e565b6120c8565b6001600160a01b03821660009081526022602052604090205460ff168015611fc857506001600160a01b03831660009081526021602052604090205460ff16155b1561203e57600954811115611f825760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c5e565b6001600160a01b03821660009081526021602052604090205460ff166120c857600b546001600160a01b0383166000908152602081905260409020546120849083612fb4565b11156120c85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c5e565b30600090815260208190526040902054600a54811080159081906120f4575060125462010000900460ff165b801561210a5750600554600160a01b900460ff16155b801561212f57506001600160a01b03851660009081526022602052604090205460ff16155b801561215357506001600160a01b038516600090815260208052604090205460ff16155b801561217757506001600160a01b038416600090815260208052604090205460ff16155b156121a5576005805460ff60a01b1916600160a01b17905561219761269b565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156121d757506001600160a01b03841660009081526022602052604090205460ff165b80156121e55750600d5460ff165b80156122005750600e54600f546121fc9190612fb4565b4210155b801561222457506001600160a01b038516600090815260208052604090205460ff16155b15612233576122316128d5565b505b6005546001600160a01b038616600090815260208052604090205460ff600160a01b90920482161591168061227f57506001600160a01b038516600090815260208052604090205460ff165b15612288575060005b6000811561246d576001600160a01b03861660009081526022602052604090205460ff1680156122ba57506000601954115b15612372576122d960646119cb6019548861252790919063ffffffff16565b9050601954601b54826122ec9190612f73565b6122f69190612f92565b601e60008282546123079190612fb4565b9091555050601954601c5461231c9083612f73565b6123269190612f92565b601f60008282546123379190612fb4565b9091555050601954601a5461234c9083612f73565b6123569190612f92565b601d60008282546123679190612fb4565b9091555061244f9050565b6001600160a01b03871660009081526022602052604090205460ff16801561239c57506000601554115b1561244f576123bb60646119cb6015548861252790919063ffffffff16565b9050601554601754826123ce9190612f73565b6123d89190612f92565b601e60008282546123e99190612fb4565b90915550506015546018546123fe9083612f73565b6124089190612f92565b601f60008282546124199190612fb4565b909155505060155460165461242e9083612f73565b6124389190612f92565b601d60008282546124499190612fb4565b90915550505b801561246057612460873083612546565b61246a8186613068565b94505b612478878787612546565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006125338284612f73565b9392505050565b60006125338284612f92565b6001600160a01b03831661256c5760405162461bcd60e51b8152600401610c5e90612fe0565b6001600160a01b0382166125925760405162461bcd60e51b8152600401610c5e90613025565b6001600160a01b0383166000908152602081905260409020548181101561260a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c5e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612641908490612fb4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161268d91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601f54601d54601e546126c29190612fb4565b6126cc9190612fb4565b905060008215806126db575081155b156126e557505050565b600a546126f3906014612f73565b83111561270b57600a54612708906014612f73565b92505b6000600283601e548661271e9190612f73565b6127289190612f92565b6127329190612f92565b905060006127408583612a3c565b90504761274c82612a48565b60006127584783612a3c565b90506000612775876119cb601d548561252790919063ffffffff16565b90506000612792886119cb601f548661252790919063ffffffff16565b90506000816127a18486613068565b6127ab9190613068565b6000601e819055601d819055601f8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612808576040519150601f19603f3d011682016040523d82523d6000602084013e61280d565b606091505b509098505086158015906128215750600081115b15612874576128308782612c08565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146128c1576040519150601f19603f3d011682016040523d82523d6000602084013e6128c6565b606091505b50505050505050505050505050565b42600f556040516370a0823160e01b81526001600160a01b037f0000000000000000000000006ebd353db9ae746794f356ad17d1ed5afab94b5f166004820152600090819030906370a0823190602401602060405180830381865afa158015612942573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129669190612fc7565b905060006129856127106119cb600c548561252790919063ffffffff16565b905080156129ba576129ba7f0000000000000000000000006ebd353db9ae746794f356ad17d1ed5afab94b5f61dead83612546565b60007f0000000000000000000000006ebd353db9ae746794f356ad17d1ed5afab94b5f9050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612a1a57600080fd5b505af1158015612a2e573d6000803e3d6000fd5b505050506001935050505090565b60006125338284613068565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a7d57612a7d61307b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612afb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b1f9190613091565b81600181518110612b3257612b3261307b565b60200260200101906001600160a01b031690816001600160a01b031681525050612b7d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a89565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612bd29085906000908690309042906004016130ae565b600060405180830381600087803b158015612bec57600080fd5b505af1158015612c00573d6000803e3d6000fd5b505050505050565b612c33307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a89565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015612cc2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612ce7919061311f565b5050505050565b600060208083528351808285015260005b81811015612d1b57858101830151858201604001528201612cff565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146117e957600080fd5b60008060408385031215612d6457600080fd5b8235612d6f81612d3c565b946020939093013593505050565b600060208284031215612d8f57600080fd5b813561253381612d3c565b600060208284031215612dac57600080fd5b5035919050565b600080600060608486031215612dc857600080fd5b8335612dd381612d3c565b92506020840135612de381612d3c565b929592945050506040919091013590565b8035801515811461170f57600080fd5b600080600060608486031215612e1957600080fd5b8335925060208401359150612e3060408501612df4565b90509250925092565b60008060408385031215612e4c57600080fd5b8235612e5781612d3c565b9150612e6560208401612df4565b90509250929050565b600080600060608486031215612e8357600080fd5b505081359360208301359350604090920135919050565b600060208284031215612eac57600080fd5b61253382612df4565b60008060408385031215612ec857600080fd5b8235612ed381612d3c565b91506020830135612ee381612d3c565b809150509250929050565b600181811c90821680612f0257607f821691505b602082108103612f2257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612f8d57612f8d612f5d565b500290565b600082612faf57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610c2e57610c2e612f5d565b600060208284031215612fd957600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610c2e57610c2e612f5d565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156130a357600080fd5b815161253381612d3c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130fe5784516001600160a01b0316835293830193918301916001016130d9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561313457600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122022639b2cecdaa2ff011bbf24e1155a3e637902108a65d2bd7e9b0a8beeb636ec64736f6c63430008100033

Deployed Bytecode Sourcemap

32055:19503:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8883:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11050:169;;;;;;;;;;-1:-1:-1;11050:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11050:169:0;1023:187:1;33712:63:0;;;;;;;;;;-1:-1:-1;33712:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32131:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;32131:51:0;1467:230:1;10003:108:0;;;;;;;;;;-1:-1:-1;10091:12:0;;10003:108;;;1848:25:1;;;1836:2;1821:18;10003:108:0;1702:177:1;40947:157:0;;;;;;;;;;-1:-1:-1;40947:157:0;;;;;:::i;:::-;;:::i;:::-;;32726:47;;;;;;;;;;;;;;;;32541:36;;;;;;;;;;;;;;;;33496:33;;;;;;;;;;;;;;;;33456;;;;;;;;;;;;;;;;38125:275;;;;;;;;;;-1:-1:-1;38125:275:0;;;;;:::i;:::-;;:::i;11701:492::-;;;;;;;;;;-1:-1:-1;11701:492:0;;;;;:::i;:::-;;:::i;32234:53::-;;;;;;;;;;;;32280:6;32234:53;;32636:45;;;;;;;;;;;;;;;;32597:32;;;;;;;;;;-1:-1:-1;32597:32:0;;;;;;;;9845:93;;;;;;;;;;-1:-1:-1;9845:93:0;;9928:2;2880:36:1;;2868:2;2853:18;9845:93:0;2738:184:1;12602:215:0;;;;;;;;;;-1:-1:-1;12602:215:0;;;;;:::i;:::-;;:::i;32189:38::-;;;;;;;;;;;;;;;32824:33;;;;;;;;;;-1:-1:-1;32824:33:0;;;;;;;;41112:126;;;;;;;;;;-1:-1:-1;41112:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41202:28:0;41178:4;41202:28;;;:19;:28;;;;;;;;;41112:126;32394:23;;;;;;;;;;-1:-1:-1;32394:23:0;;;;-1:-1:-1;;;;;32394:23:0;;;33311:28;;;;;;;;;;;;;;;;32904:31;;;;;;;;;;-1:-1:-1;32904:31:0;;;;;;;;;;;10174:127;;;;;;;;;;-1:-1:-1;10174:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10275:18:0;10248:7;10275:18;;;;;;;;;;;;10174:127;2118:103;;;;;;;;;;;;;:::i;49198:555::-;;;;;;;;;;-1:-1:-1;49198:555:0;;;;;:::i;:::-;;:::i;37233:121::-;;;;;;;;;;;;;:::i;38672:167::-;;;;;;;;;;-1:-1:-1;38672:167:0;;;;;:::i;:::-;;:::i;32326:30::-;;;;;;;;;;-1:-1:-1;32326:30:0;;;;-1:-1:-1;;;;;32326:30:0;;;33204;;;;;;;;;;;;;;;;39043:402;;;;;;;;;;-1:-1:-1;39043:402:0;;;;;:::i;:::-;;:::i;37026:155::-;;;;;;;;;;;;;:::i;1467:87::-;;;;;;;;;;-1:-1:-1;1540:6:0;;-1:-1:-1;;;;;1540:6:0;1467:87;;32363:24;;;;;;;;;;-1:-1:-1;32363:24:0;;;;-1:-1:-1;;;;;32363:24:0;;;33346:31;;;;;;;;;;;;;;;;38935:100;;;;;;;;;;-1:-1:-1;38935:100:0;;;;;:::i;:::-;;:::i;9102:104::-;;;;;;;;;;;;;:::i;40064:304::-;;;;;;;;;;-1:-1:-1;40064:304:0;;;;;:::i;:::-;;:::i;33278:24::-;;;;;;;;;;;;;;;;32780:35;;;;;;;;;;;;;;;;33536:27;;;;;;;;;;;;;;;;33422:25;;;;;;;;;;;;;;;;13320:413;;;;;;;;;;-1:-1:-1;13320:413:0;;;;;:::i;:::-;;:::i;32688:29::-;;;;;;;;;;;;;;;;10514:175;;;;;;;;;;-1:-1:-1;10514:175:0;;;;;:::i;:::-;;:::i;40572:231::-;;;;;;;;;;-1:-1:-1;40572:231:0;;;;;:::i;:::-;;:::i;33933:57::-;;;;;;;;;;-1:-1:-1;33933:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32864:33;;;;;;;;;;-1:-1:-1;32864:33:0;;;;;;;;;;;39874:182;;;;;;;;;;-1:-1:-1;39874:182:0;;;;;:::i;:::-;;:::i;39453:413::-;;;;;;;;;;-1:-1:-1;39453:413:0;;;;;:::i;:::-;;:::i;38408:256::-;;;;;;;;;;-1:-1:-1;38408:256:0;;;;;:::i;:::-;;:::i;33122:39::-;;;;;;;;;;-1:-1:-1;33122:39:0;;;;;;;;32426:35;;;;;;;;;;;;;;;;37620:497;;;;;;;;;;-1:-1:-1;37620:497:0;;;;;:::i;:::-;;:::i;33170:27::-;;;;;;;;;;;;;;;;10752:151;;;;;;;;;;-1:-1:-1;10752:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10868:18:0;;;10841:7;10868:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10752:151;32468:33;;;;;;;;;;;;;;;;37415:135;;;;;;;;;;;;;:::i;33241:30::-;;;;;;;;;;;;;;;;2376:201;;;;;;;;;;-1:-1:-1;2376:201:0;;;;;:::i;:::-;;:::i;33384:31::-;;;;;;;;;;;;;;;;32508:24;;;;;;;;;;;;;;;;40811:128;;;;;;;;;;-1:-1:-1;40811:128:0;;;;;:::i;:::-;;:::i;50529:1026::-;;;;;;;;;;-1:-1:-1;50529:1026:0;;;;;:::i;:::-;;:::i;8883:100::-;8937:13;8970:5;8963:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8883:100;:::o;11050:169::-;11133:4;11150:39;220:10;11173:7;11182:6;11150:8;:39::i;:::-;-1:-1:-1;11207:4:0;11050:169;;;;;:::o;40947:157::-;1540:6;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;;;;;;;;;41054:9:::1;::::0;41026:38:::1;::::0;-1:-1:-1;;;;;41054:9:0;;::::1;::::0;41026:38;::::1;::::0;::::1;::::0;41054:9:::1;::::0;41026:38:::1;41075:9;:21:::0;;-1:-1:-1;;;;;;41075:21:0::1;-1:-1:-1::0;;;;;41075:21:0;;;::::1;::::0;;;::::1;::::0;;40947:157::o;38125:275::-;1540:6;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;38262:4:::1;38254;38233:13;10091:12:::0;;;10003:108;38233:13:::1;:17;::::0;38249:1:::1;38233:17;:::i;:::-;38232:26;;;;:::i;:::-;38231:35;;;;:::i;:::-;38221:6;:45;;38199:142;;;::::0;-1:-1:-1;;;38199:142:0;;6107:2:1;38199:142:0::1;::::0;::::1;6089:21:1::0;6146:2;6126:18;;;6119:30;6185:34;6165:18;;;6158:62;-1:-1:-1;;;6236:18:1;;;6229:45;6291:19;;38199:142:0::1;5905:411:1::0;38199:142:0::1;38375:17;:6:::0;38385::::1;38375:17;:::i;:::-;38352:20;:40:::0;-1:-1:-1;38125:275:0:o;11701:492::-;11841:4;11858:36;11868:6;11876:9;11887:6;11858:9;:36::i;:::-;-1:-1:-1;;;;;11934:19:0;;11907:24;11934:19;;;:11;:19;;;;;;;;220:10;11934:33;;;;;;;;11986:26;;;;11978:79;;;;-1:-1:-1;;;11978:79:0;;6523:2:1;11978:79:0;;;6505:21:1;6562:2;6542:18;;;6535:30;6601:34;6581:18;;;6574:62;-1:-1:-1;;;6652:18:1;;;6645:38;6700:19;;11978:79:0;6321:404:1;11978:79:0;12093:57;12102:6;220:10;12143:6;12124:16;:25;12093:8;:57::i;:::-;-1:-1:-1;12181:4:0;;11701:492;-1:-1:-1;;;;11701:492:0:o;12602:215::-;220:10;12690:4;12739:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12739:34:0;;;;;;;;;;12690:4;;12707:80;;12730:7;;12739:47;;12776:10;;12739:47;:::i;:::-;12707:8;:80::i;2118:103::-;1540:6;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;2183:30:::1;2210:1;2183:18;:30::i;:::-;2118:103::o:0;49198:555::-;1540:6;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;49400:3:::1;49377:19;:26;;49355:127;;;::::0;-1:-1:-1;;;49355:127:0;;7062:2:1;49355:127:0::1;::::0;::::1;7044:21:1::0;7101:2;7081:18;;;7074:30;7140:34;7120:18;;;7113:62;-1:-1:-1;;;7191:18:1;;;7184:49;7250:19;;49355:127:0::1;6860:415:1::0;49355:127:0::1;49527:4;49515:8;:16;;:33;;;;-1:-1:-1::0;49535:13:0;49515:33:::1;49493:131;;;::::0;-1:-1:-1;;;49493:131:0;;7482:2:1;49493:131:0::1;::::0;::::1;7464:21:1::0;7521:2;7501:18;;;7494:30;7560:34;7540:18;;;7533:62;-1:-1:-1;;;7611:18:1;;;7604:46;7667:19;;49493:131:0::1;7280:412:1::0;49493:131:0::1;49635:15;:37:::0;;;;49683:16:::1;:27:::0;49721:13:::1;:24:::0;;-1:-1:-1;;49721:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49198:555::o;37233:121::-;1540:6;;37285:4;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;-1:-1:-1;37302:14:0::1;:22:::0;;-1:-1:-1;;37302:22:0::1;::::0;;;37233:121;:::o;38672:167::-;1540:6;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38785:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;38785:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38672:167::o;39043:402::-;1540:6;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;39193:15:::1;:31:::0;;;39235:15:::1;:31:::0;;;39277:9:::1;:19:::0;;;39289:7;39322:33:::1;39253:13:::0;39211;39322:33:::1;:::i;:::-;:45;;;;:::i;:::-;39307:12;:60:::0;;;39402:1:::1;-1:-1:-1::0;39386:17:0::1;39378:59;;;::::0;-1:-1:-1;;;39378:59:0;;7899:2:1;39378:59:0::1;::::0;::::1;7881:21:1::0;7938:2;7918:18;;;7911:30;7977:31;7957:18;;;7950:59;8026:18;;39378:59:0::1;7697:353:1::0;39378:59:0::1;39043:402:::0;;;:::o;37026:155::-;1540:6;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;37081:13:::1;:20:::0;;-1:-1:-1;;37112:18:0;;;;;37158:15:::1;37141:14;:32:::0;37026:155::o;38935:100::-;1540:6;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;39006:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39006:21:0;;::::1;::::0;;;::::1;::::0;;38935:100::o;9102:104::-;9158:13;9191:7;9184:14;;;;;:::i;40064:304::-;1540:6;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;40208:13:::1;-1:-1:-1::0;;;;;40200:21:0::1;:4;-1:-1:-1::0;;;;;40200:21:0::1;::::0;40178:128:::1;;;::::0;-1:-1:-1;;;40178:128:0;;8257:2:1;40178:128:0::1;::::0;::::1;8239:21:1::0;8296:2;8276:18;;;8269:30;8335:34;8315:18;;;8308:62;8406:27;8386:18;;;8379:55;8451:19;;40178:128:0::1;8055:421:1::0;40178:128:0::1;40319:41;40348:4;40354:5;40319:28;:41::i;:::-;40064:304:::0;;:::o;13320:413::-;220:10;13413:4;13457:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13457:34:0;;;;;;;;;;13510:35;;;;13502:85;;;;-1:-1:-1;;;13502:85:0;;8683:2:1;13502:85:0;;;8665:21:1;8722:2;8702:18;;;8695:30;8761:34;8741:18;;;8734:62;-1:-1:-1;;;8812:18:1;;;8805:35;8857:19;;13502:85:0;8481:401:1;13502:85:0;13623:67;220:10;13646:7;13674:15;13655:16;:34;13623:8;:67::i;:::-;-1:-1:-1;13721:4:0;;13320:413;-1:-1:-1;;;13320:413:0:o;10514:175::-;10600:4;10617:42;220:10;10641:9;10652:6;10617:9;:42::i;40572:231::-;1540:6;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;40732:15:::1;::::0;40689:59:::1;::::0;-1:-1:-1;;;;;40732:15:0;;::::1;::::0;40689:59;::::1;::::0;::::1;::::0;40732:15:::1;::::0;40689:59:::1;40759:15;:36:::0;;-1:-1:-1;;;;;;40759:36:0::1;-1:-1:-1::0;;;;;40759:36:0;;;::::1;::::0;;;::::1;::::0;;40572:231::o;39874:182::-;1540:6;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39959:28:0;::::1;;::::0;;;:19:::1;:28:::0;;;;;;;;:39;;-1:-1:-1;;39959:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40014:34;;1163:41:1;;;40014:34:0::1;::::0;1136:18:1;40014:34:0::1;;;;;;;39874:182:::0;;:::o;39453:413::-;1540:6;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;39604:16:::1;:32:::0;;;39647:16:::1;:32:::0;;;39690:10:::1;:20:::0;;;39703:7;39737:35:::1;39666:13:::0;39623;39737:35:::1;:::i;:::-;:48;;;;:::i;:::-;39721:13;:64:::0;;;39821:2:::1;-1:-1:-1::0;39804:19:0::1;39796:62;;;::::0;-1:-1:-1;;;39796:62:0;;9089:2:1;39796:62:0::1;::::0;::::1;9071:21:1::0;9128:2;9108:18;;;9101:30;9167:32;9147:18;;;9140:60;9217:18;;39796:62:0::1;8887:354:1::0;38408:256:0;1540:6;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;38548:4:::1;38540;38519:13;10091:12:::0;;;10003:108;38519:13:::1;:17;::::0;38535:1:::1;38519:17;:::i;:::-;38518:26;;;;:::i;:::-;38517:35;;;;:::i;:::-;38507:6;:45;;38485:131;;;::::0;-1:-1:-1;;;38485:131:0;;9448:2:1;38485:131:0::1;::::0;::::1;9430:21:1::0;9487:2;9467:18;;;9460:30;9526:34;9506:18;;;9499:62;-1:-1:-1;;;9577:18:1;;;9570:34;9621:19;;38485:131:0::1;9246:400:1::0;38485:131:0::1;38639:17;:6:::0;38649::::1;38639:17;:::i;:::-;38627:9;:29:::0;-1:-1:-1;38408:256:0:o;37620:497::-;1540:6;;37728:4;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;37807:6:::1;37786:13;10091:12:::0;;;10003:108;37786:13:::1;:17;::::0;37802:1:::1;37786:17;:::i;:::-;37785:28;;;;:::i;:::-;37772:9;:41;;37750:144;;;::::0;-1:-1:-1;;;37750:144:0;;9853:2:1;37750:144:0::1;::::0;::::1;9835:21:1::0;9892:2;9872:18;;;9865:30;9931:34;9911:18;;;9904:62;-1:-1:-1;;;9982:18:1;;;9975:51;10043:19;;37750:144:0::1;9651:417:1::0;37750:144:0::1;37962:4;37941:13;10091:12:::0;;;10003:108;37941:13:::1;:17;::::0;37957:1:::1;37941:17;:::i;:::-;37940:26;;;;:::i;:::-;37927:9;:39;;37905:141;;;::::0;-1:-1:-1;;;37905:141:0;;10275:2:1;37905:141:0::1;::::0;::::1;10257:21:1::0;10314:2;10294:18;;;10287:30;10353:34;10333:18;;;10326:62;-1:-1:-1;;;10404:18:1;;;10397:50;10464:19;;37905:141:0::1;10073:416:1::0;37905:141:0::1;-1:-1:-1::0;38057:18:0::1;:30:::0;;;38105:4:::1;1758:1;37620:497:::0;;;:::o;37415:135::-;1540:6;;37475:4;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;-1:-1:-1;37492:20:0::1;:28:::0;;-1:-1:-1;;37492:28:0::1;::::0;;;37415:135;:::o;2376:201::-;1540:6;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2465:22:0;::::1;2457:73;;;::::0;-1:-1:-1;;;2457:73:0;;10696:2:1;2457:73:0::1;::::0;::::1;10678:21:1::0;10735:2;10715:18;;;10708:30;10774:34;10754:18;;;10747:62;-1:-1:-1;;;10825:18:1;;;10818:36;10871:19;;2457:73:0::1;10494:402:1::0;2457:73:0::1;2541:28;2560:8;2541:18;:28::i;:::-;2376:201:::0;:::o;40811:128::-;1540:6;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;40909:8:::1;:22:::0;;-1:-1:-1;;;;;;40909:22:0::1;-1:-1:-1::0;;;;;40909:22:0;;;::::1;::::0;;;::::1;::::0;;40811:128::o;50529:1026::-;1540:6;;50640:4;;-1:-1:-1;;;;;1540:6:0;220:10;1687:23;1679:68;;;;-1:-1:-1;;;1679:68:0;;;;;;;:::i;:::-;50725:19:::1;;50702:20;;:42;;;;:::i;:::-;50684:15;:60;50662:142;;;::::0;-1:-1:-1;;;50662:142:0;;11103:2:1;50662:142:0::1;::::0;::::1;11085:21:1::0;;;11122:18;;;11115:30;11181:34;11161:18;;;11154:62;11233:18;;50662:142:0::1;10901:356:1::0;50662:142:0::1;50834:4;50823:7;:15;;50815:70;;;::::0;-1:-1:-1;;;50815:70:0;;11464:2:1;50815:70:0::1;::::0;::::1;11446:21:1::0;11503:2;11483:18;;;11476:30;11542:34;11522:18;;;11515:62;-1:-1:-1;;;11593:18:1;;;11586:40;11643:19;;50815:70:0::1;11262:406:1::0;50815:70:0::1;50919:15;50896:20;:38:::0;51020:29:::1;::::0;-1:-1:-1;;;51020:29:0;;-1:-1:-1;;;;;51035:13:0::1;1658:32:1::0;51020:29:0::1;::::0;::::1;1640:51:1::0;50989:28:0::1;::::0;51020:4:::1;::::0;:14:::1;::::0;1613:18:1;;51020:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50989:60:::0;-1:-1:-1;51099:20:0::1;51122:44;51160:5;51122:33;50989:60:::0;51147:7;51122:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;51099:67:::0;-1:-1:-1;51271:16:0;;51267:110:::1;;51304:61;51320:13;51343:6;51352:12;51304:15;:61::i;:::-;51452:19;51489:13;51452:51;;51514:4;-1:-1:-1::0;;;;;51514:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;51543:4:0::1;::::0;50529:1026;-1:-1:-1;;;;;;;;50529:1026:0:o;17004:380::-;-1:-1:-1;;;;;17140:19:0;;17132:68;;;;-1:-1:-1;;;17132:68:0;;12064:2:1;17132:68:0;;;12046:21:1;12103:2;12083:18;;;12076:30;12142:34;12122:18;;;12115:62;-1:-1:-1;;;12193:18:1;;;12186:34;12237:19;;17132:68:0;11862:400:1;17132:68:0;-1:-1:-1;;;;;17219:21:0;;17211:68;;;;-1:-1:-1;;;17211:68:0;;12469:2:1;17211:68:0;;;12451:21:1;12508:2;12488:18;;;12481:30;12547:34;12527:18;;;12520:62;-1:-1:-1;;;12598:18:1;;;12591:32;12640:19;;17211:68:0;12267:398:1;17211:68:0;-1:-1:-1;;;;;17292:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17344:32;;1848:25:1;;;17344:32:0;;1821:18:1;17344:32:0;;;;;;;17004:380;;;:::o;41296:5011::-;-1:-1:-1;;;;;41428:18:0;;41420:68;;;;-1:-1:-1;;;41420:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41507:16:0;;41499:64;;;;-1:-1:-1;;;41499:64:0;;;;;;;:::i;:::-;41580:6;41590:1;41580:11;41576:93;;41608:28;41624:4;41630:2;41634:1;41608:15;:28::i;41576:93::-;41685:14;;;;41681:2487;;;1540:6;;-1:-1:-1;;;;;41738:15:0;;;1540:6;;41738:15;;;;:49;;-1:-1:-1;1540:6:0;;-1:-1:-1;;;;;41774:13:0;;;1540:6;;41774:13;;41738:49;:86;;;;-1:-1:-1;;;;;;41808:16:0;;;;41738:86;:128;;;;-1:-1:-1;;;;;;41845:21:0;;41859:6;41845:21;;41738:128;:158;;;;-1:-1:-1;41888:8:0;;-1:-1:-1;;;41888:8:0;;;;41887:9;41738:158;41716:2441;;;41936:13;;;;;;;41931:223;;-1:-1:-1;;;;;42008:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42037:23:0;;;;;;:19;:23;;;;;;;;42008:52;41974:160;;;;-1:-1:-1;;;41974:160:0;;13682:2:1;41974:160:0;;;13664:21:1;13721:2;13701:18;;;13694:30;-1:-1:-1;;;13740:18:1;;;13733:52;13802:18;;41974:160:0;13480:346:1;41974:160:0;42310:20;;;;42306:641;;;1540:6;;-1:-1:-1;;;;;42385:13:0;;;1540:6;;42385:13;;;;:72;;;42441:15;-1:-1:-1;;;;;42427:30:0;:2;-1:-1:-1;;;;;42427:30:0;;;42385:72;:129;;;;;42500:13;-1:-1:-1;;;;;42486:28:0;:2;-1:-1:-1;;;;;42486:28:0;;;42385:129;42355:573;;;42632:9;42603:39;;;;:28;:39;;;;;;42678:12;-1:-1:-1;42565:258:0;;;;-1:-1:-1;;;42565:258:0;;14033:2:1;42565:258:0;;;14015:21:1;14072:2;14052:18;;;14045:30;14111:34;14091:18;;;14084:62;14182:34;14162:18;;;14155:62;-1:-1:-1;;;14233:19:1;;;14226:40;14283:19;;42565:258:0;13831:477:1;42565:258:0;42879:9;42850:39;;;;:28;:39;;;;;42892:12;42850:54;;42355:573;-1:-1:-1;;;;;43021:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;43078:35:0;;;;;;:31;:35;;;;;;;;43077:36;43021:92;42995:1147;;;43200:20;;43190:6;:30;;43156:169;;;;-1:-1:-1;;;43156:169:0;;14515:2:1;43156:169:0;;;14497:21:1;14554:2;14534:18;;;14527:30;14593:34;14573:18;;;14566:62;-1:-1:-1;;;14644:18:1;;;14637:51;14705:19;;43156:169:0;14313:417:1;43156:169:0;43408:9;;-1:-1:-1;;;;;10275:18:0;;10248:7;10275:18;;;;;;;;;;;43382:22;;:6;:22;:::i;:::-;:35;;43348:140;;;;-1:-1:-1;;;43348:140:0;;14937:2:1;43348:140:0;;;14919:21:1;14976:2;14956:18;;;14949:30;-1:-1:-1;;;14995:18:1;;;14988:49;15054:18;;43348:140:0;14735:343:1;43348:140:0;42995:1147;;;-1:-1:-1;;;;;43586:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;43641:37:0;;;;;;:31;:37;;;;;;;;43640:38;43586:92;43560:582;;;43765:20;;43755:6;:30;;43721:170;;;;-1:-1:-1;;;43721:170:0;;15285:2:1;43721:170:0;;;15267:21:1;15324:2;15304:18;;;15297:30;15363:34;15343:18;;;15336:62;-1:-1:-1;;;15414:18:1;;;15407:52;15476:19;;43721:170:0;15083:418:1;43560:582:0;-1:-1:-1;;;;;43922:35:0;;;;;;:31;:35;;;;;;;;43917:225;;44042:9;;-1:-1:-1;;;;;10275:18:0;;10248:7;10275:18;;;;;;;;;;;44016:22;;:6;:22;:::i;:::-;:35;;43982:140;;;;-1:-1:-1;;;43982:140:0;;14937:2:1;43982:140:0;;;14919:21:1;14976:2;14956:18;;;14949:30;-1:-1:-1;;;14995:18:1;;;14988:49;15054:18;;43982:140:0;14735:343:1;43982:140:0;44229:4;44180:28;10275:18;;;;;;;;;;;44287;;44263:42;;;;;;;44336:35;;-1:-1:-1;44360:11:0;;;;;;;44336:35;:61;;;;-1:-1:-1;44389:8:0;;-1:-1:-1;;;44389:8:0;;;;44388:9;44336:61;:110;;;;-1:-1:-1;;;;;;44415:31:0;;;;;;:25;:31;;;;;;;;44414:32;44336:110;:153;;;;-1:-1:-1;;;;;;44464:25:0;;;;;;:19;:25;;;;;;;;44463:26;44336:153;:194;;;;-1:-1:-1;;;;;;44507:23:0;;;;;;:19;:23;;;;;;;;44506:24;44336:194;44318:326;;;44557:8;:15;;-1:-1:-1;;;;44557:15:0;-1:-1:-1;;;44557:15:0;;;44589:10;:8;:10::i;:::-;44616:8;:16;;-1:-1:-1;;;;44616:16:0;;;44318:326;44675:8;;-1:-1:-1;;;44675:8:0;;;;44674:9;:55;;;;-1:-1:-1;;;;;;44700:29:0;;;;;;:25;:29;;;;;;;;44674:55;:85;;;;-1:-1:-1;44746:13:0;;;;44674:85;:153;;;;;44812:15;;44795:14;;:32;;;;:::i;:::-;44776:15;:51;;44674:153;:196;;;;-1:-1:-1;;;;;;44845:25:0;;;;;;:19;:25;;;;;;;;44844:26;44674:196;44656:282;;;44897:29;:27;:29::i;:::-;;44656:282;44966:8;;-1:-1:-1;;;;;45076:25:0;;44950:12;45076:25;;;:19;:25;;;;;;44966:8;-1:-1:-1;;;44966:8:0;;;;;44965:9;;45076:25;;:52;;-1:-1:-1;;;;;;45105:23:0;;;;;;:19;:23;;;;;;;;45076:52;45072:100;;;-1:-1:-1;45155:5:0;45072:100;45184:12;45289:7;45285:969;;;-1:-1:-1;;;;;45341:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;45390:1;45374:13;;:17;45341:50;45337:768;;;45419:34;45449:3;45419:25;45430:13;;45419:6;:10;;:25;;;;:::i;:34::-;45412:41;;45522:13;;45502:16;;45495:4;:23;;;;:::i;:::-;45494:41;;;;:::i;:::-;45472:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45592:13:0;;45578:10;;45571:17;;:4;:17;:::i;:::-;45570:35;;;;:::i;:::-;45554:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;45674:13:0;;45654:16;;45647:23;;:4;:23;:::i;:::-;45646:41;;;;:::i;:::-;45624:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;45337:768:0;;-1:-1:-1;45337:768:0;;-1:-1:-1;;;;;45749:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;45799:1;45784:12;;:16;45749:51;45745:360;;;45828:33;45857:3;45828:24;45839:12;;45828:6;:10;;:24;;;;:::i;:33::-;45821:40;;45929:12;;45910:15;;45903:4;:22;;;;:::i;:::-;45902:39;;;;:::i;:::-;45880:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45997:12:0;;45984:9;;45977:16;;:4;:16;:::i;:::-;45976:33;;;;:::i;:::-;45960:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;46077:12:0;;46058:15;;46051:22;;:4;:22;:::i;:::-;46050:39;;;;:::i;:::-;46028:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45745:360:0;46125:8;;46121:91;;46154:42;46170:4;46184;46191;46154:15;:42::i;:::-;46228:14;46238:4;46228:14;;:::i;:::-;;;45285:969;46266:33;46282:4;46288:2;46292:6;46266:15;:33::i;:::-;41409:4898;;;;41296:5011;;;:::o;2737:191::-;2830:6;;;-1:-1:-1;;;;;2847:17:0;;;-1:-1:-1;;;;;;2847:17:0;;;;;;;2880:40;;2830:6;;;2847:17;2830:6;;2880:40;;2811:16;;2880:40;2800:128;2737:191;:::o;40376:188::-;-1:-1:-1;;;;;40459:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40459:39:0;;;;;;;;;;40516:40;;40459:39;;:31;40516:40;;;40376:188;;:::o;22457:98::-;22515:7;22542:5;22546:1;22542;:5;:::i;:::-;22535:12;22457:98;-1:-1:-1;;;22457:98:0:o;22856:::-;22914:7;22941:5;22945:1;22941;:5;:::i;14223:733::-;-1:-1:-1;;;;;14363:20:0;;14355:70;;;;-1:-1:-1;;;14355:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14444:23:0;;14436:71;;;;-1:-1:-1;;;14436:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14604:17:0;;14580:21;14604:17;;;;;;;;;;;14640:23;;;;14632:74;;;;-1:-1:-1;;;14632:74:0;;15841:2:1;14632:74:0;;;15823:21:1;15880:2;15860:18;;;15853:30;15919:34;15899:18;;;15892:62;-1:-1:-1;;;15970:18:1;;;15963:36;16016:19;;14632:74:0;15639:402:1;14632:74:0;-1:-1:-1;;;;;14742:17:0;;;:9;:17;;;;;;;;;;;14762:22;;;14742:42;;14806:20;;;;;;;;:30;;14778:6;;14742:9;14806:30;;14778:6;;14806:30;:::i;:::-;;;;;;;;14871:9;-1:-1:-1;;;;;14854:35:0;14863:6;-1:-1:-1;;;;;14854:35:0;;14882:6;14854:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;14854:35:0;;;;;;;;14344:612;14223:733;;;:::o;47434:1756::-;47517:4;47473:23;10275:18;;;;;;;;;;;47473:50;;47534:25;47630:12;;47596:18;;47562;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;47534:108;-1:-1:-1;47653:12:0;47682:20;;;:46;;-1:-1:-1;47706:22:0;;47682:46;47678:85;;;47745:7;;;47434:1756::o;47678:85::-;47797:18;;:23;;47818:2;47797:23;:::i;:::-;47779:15;:41;47775:115;;;47855:18;;:23;;47876:2;47855:23;:::i;:::-;47837:41;;47775:115;47951:23;48064:1;48031:17;47996:18;;47978:15;:36;;;;:::i;:::-;47977:71;;;;:::i;:::-;:88;;;;:::i;:::-;47951:114;-1:-1:-1;48076:26:0;48105:36;:15;47951:114;48105:19;:36::i;:::-;48076:65;-1:-1:-1;48182:21:0;48216:36;48076:65;48216:16;:36::i;:::-;48265:18;48286:44;:21;48312:17;48286:25;:44::i;:::-;48265:65;;48343:23;48369:81;48422:17;48369:34;48384:18;;48369:10;:14;;:34;;;;:::i;:81::-;48343:107;;48461:17;48481:51;48514:17;48481:28;48496:12;;48481:10;:14;;:28;;;;:::i;:51::-;48461:71;-1:-1:-1;48545:23:0;48461:71;48571:28;48584:15;48571:10;:28;:::i;:::-;:40;;;;:::i;:::-;48645:1;48624:18;:22;;;48657:18;:22;;;48690:12;:16;;;48741:9;;48733:45;;48545:66;;-1:-1:-1;;;;;;48741:9:0;;48764;;48733:45;48645:1;48733:45;48764:9;48741;48733:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48719:59:0;;-1:-1:-1;;48795:19:0;;;;;:42;;;48836:1;48818:15;:19;48795:42;48791:278;;;48854:46;48867:15;48884;48854:12;:46::i;:::-;49024:18;;48920:137;;;16458:25:1;;;16514:2;16499:18;;16492:34;;;16542:18;;;16535:34;;;;48920:137:0;;;;;;16446:2:1;48920:137:0;;;48791:278;49103:15;;49095:87;;-1:-1:-1;;;;;49103:15:0;;;;49146:21;;49095:87;;;;49146:21;49103:15;49095:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;47434:1756:0:o;49761:760::-;49852:15;49835:14;:32;49953:29;;-1:-1:-1;;;49953:29:0;;-1:-1:-1;;;;;49968:13:0;1658:32:1;49953:29:0;;;1640:51:1;49818:4:0;;;;49953;;:14;;1613:18:1;;49953:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49922:60;;50032:20;50055:77;50116:5;50055:42;50080:16;;50055:20;:24;;:42;;;;:::i;:77::-;50032:100;-1:-1:-1;50237:16:0;;50233:110;;50270:61;50286:13;50309:6;50318:12;50270:15;:61::i;:::-;50418:19;50455:13;50418:51;;50480:4;-1:-1:-1;;;;;50480:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50509:4;50502:11;;;;;49761:760;:::o;22100:98::-;22158:7;22185:5;22189:1;22185;:5;:::i;46315:589::-;46465:16;;;46479:1;46465:16;;;;;;;;46441:21;;46465:16;;;;;;;;;;-1:-1:-1;46465:16:0;46441:40;;46510:4;46492;46497:1;46492:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46492:23:0;;;-1:-1:-1;;;;;46492:23:0;;;;;46536:15;-1:-1:-1;;;;;46536:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46526:4;46531:1;46526:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46526:32:0;;;-1:-1:-1;;;;;46526:32:0;;;;;46571:62;46588:4;46603:15;46621:11;46571:8;:62::i;:::-;46672:224;;-1:-1:-1;;;46672:224:0;;-1:-1:-1;;;;;46672:15:0;:66;;;;:224;;46753:11;;46779:1;;46823:4;;46850;;46870:15;;46672:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46370:534;46315:589;:::o;46912:514::-;47060:62;47077:4;47092:15;47110:11;47060:8;:62::i;:::-;47369:8;;47165:253;;-1:-1:-1;;;47165:253:0;;47237:4;47165:253;;;18426:34:1;18476:18;;;18469:34;;;47283:1:0;18519:18:1;;;18512:34;;;18562:18;;;18555:34;-1:-1:-1;;;;;47369:8:0;;;18605:19:1;;;18598:44;47392:15:0;18658:19:1;;;18651:35;47165:15:0;:31;;;;;;47204:9;;18360:19:1;;47165:253:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46912:514;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:160::-;2992:20;;3048:13;;3041:21;3031:32;;3021:60;;3077:1;3074;3067:12;3092:316;3166:6;3174;3182;3235:2;3223:9;3214:7;3210:23;3206:32;3203:52;;;3251:1;3248;3241:12;3203:52;3287:9;3274:23;3264:33;;3344:2;3333:9;3329:18;3316:32;3306:42;;3367:35;3398:2;3387:9;3383:18;3367:35;:::i;:::-;3357:45;;3092:316;;;;;:::o;3413:315::-;3478:6;3486;3539:2;3527:9;3518:7;3514:23;3510:32;3507:52;;;3555:1;3552;3545:12;3507:52;3594:9;3581:23;3613:31;3638:5;3613:31;:::i;:::-;3663:5;-1:-1:-1;3687:35:1;3718:2;3703:18;;3687:35;:::i;:::-;3677:45;;3413:315;;;;;:::o;3733:316::-;3810:6;3818;3826;3879:2;3867:9;3858:7;3854:23;3850:32;3847:52;;;3895:1;3892;3885:12;3847:52;-1:-1:-1;;3918:23:1;;;3988:2;3973:18;;3960:32;;-1:-1:-1;4039:2:1;4024:18;;;4011:32;;3733:316;-1:-1:-1;3733:316:1:o;4054:180::-;4110:6;4163:2;4151:9;4142:7;4138:23;4134:32;4131:52;;;4179:1;4176;4169:12;4131:52;4202:26;4218:9;4202:26;:::i;4239:388::-;4307:6;4315;4368:2;4356:9;4347:7;4343:23;4339:32;4336:52;;;4384:1;4381;4374:12;4336:52;4423:9;4410:23;4442:31;4467:5;4442:31;:::i;:::-;4492:5;-1:-1:-1;4549:2:1;4534:18;;4521:32;4562:33;4521:32;4562:33;:::i;:::-;4614:7;4604:17;;;4239:388;;;;;:::o;4632:380::-;4711:1;4707:12;;;;4754;;;4775:61;;4829:4;4821:6;4817:17;4807:27;;4775:61;4882:2;4874:6;4871:14;4851:18;4848:38;4845:161;;4928:10;4923:3;4919:20;4916:1;4909:31;4963:4;4960:1;4953:15;4991:4;4988:1;4981:15;4845:161;;4632:380;;;:::o;5017:356::-;5219:2;5201:21;;;5238:18;;;5231:30;5297:34;5292:2;5277:18;;5270:62;5364:2;5349:18;;5017:356::o;5378:127::-;5439:10;5434:3;5430:20;5427:1;5420:31;5470:4;5467:1;5460:15;5494:4;5491:1;5484:15;5510:168;5550:7;5616:1;5612;5608:6;5604:14;5601:1;5598:21;5593:1;5586:9;5579:17;5575:45;5572:71;;;5623:18;;:::i;:::-;-1:-1:-1;5663:9:1;;5510:168::o;5683:217::-;5723:1;5749;5739:132;;5793:10;5788:3;5784:20;5781:1;5774:31;5828:4;5825:1;5818:15;5856:4;5853:1;5846:15;5739:132;-1:-1:-1;5885:9:1;;5683:217::o;6730:125::-;6795:9;;;6816:10;;;6813:36;;;6829:18;;:::i;11673:184::-;11743:6;11796:2;11784:9;11775:7;11771:23;11767:32;11764:52;;;11812:1;11809;11802:12;11764:52;-1:-1:-1;11835:16:1;;11673:184;-1:-1:-1;11673:184:1:o;12670:401::-;12872:2;12854:21;;;12911:2;12891:18;;;12884:30;12950:34;12945:2;12930:18;;12923:62;-1:-1:-1;;;13016:2:1;13001:18;;12994:35;13061:3;13046:19;;12670:401::o;13076:399::-;13278:2;13260:21;;;13317:2;13297:18;;;13290:30;13356:34;13351:2;13336:18;;13329:62;-1:-1:-1;;;13422:2:1;13407:18;;13400:33;13465:3;13450:19;;13076:399::o;15506:128::-;15573:9;;;15594:11;;;15591:37;;;15608:18;;:::i;16712:127::-;16773:10;16768:3;16764:20;16761:1;16754:31;16804:4;16801:1;16794:15;16828:4;16825:1;16818:15;16844:251;16914:6;16967:2;16955:9;16946:7;16942:23;16938:32;16935:52;;;16983:1;16980;16973:12;16935:52;17015:9;17009:16;17034:31;17059:5;17034:31;:::i;17100:980::-;17362:4;17410:3;17399:9;17395:19;17441:6;17430:9;17423:25;17467:2;17505:6;17500:2;17489:9;17485:18;17478:34;17548:3;17543:2;17532:9;17528:18;17521:31;17572:6;17607;17601:13;17638:6;17630;17623:22;17676:3;17665:9;17661:19;17654:26;;17715:2;17707:6;17703:15;17689:29;;17736:1;17746:195;17760:6;17757:1;17754:13;17746:195;;;17825:13;;-1:-1:-1;;;;;17821:39:1;17809:52;;17916:15;;;;17881:12;;;;17857:1;17775:9;17746:195;;;-1:-1:-1;;;;;;;17997:32:1;;;;17992:2;17977:18;;17970:60;-1:-1:-1;;;18061:3:1;18046:19;18039:35;17958:3;17100:980;-1:-1:-1;;;17100:980:1:o;18697:306::-;18785:6;18793;18801;18854:2;18842:9;18833:7;18829:23;18825:32;18822:52;;;18870:1;18867;18860:12;18822:52;18899:9;18893:16;18883:26;;18949:2;18938:9;18934:18;18928:25;18918:35;;18993:2;18982:9;18978:18;18972:25;18962:35;;18697:306;;;;;:::o

Swarm Source

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