ETH Price: $2,449.76 (+2.12%)

Token

Long live pepe (LVPEPE)
 

Overview

Max Total Supply

100,000,000,000 LVPEPE

Holders

58

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
999,043,512.355031752926870703 LVPEPE

Value
$0.00
0x3A25C0c5278a4750814611807723442d52A57C54
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:
LVPEPE

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-06-04
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.20;
pragma experimental ABIEncoderV2;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (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);
}

// OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.6.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 subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

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

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

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

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

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

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

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

    bool public tradingActive;
    bool public swapEnabled;
    bool private _swapping;

    uint256 public maxTransaction;
    uint256 public maxWallet;
    uint256 public swapTokensAtAmount;

    uint256 public buyTotalFees;
    uint256 private _buyMarketingFee;
    uint256 private _buyDevelopmentFee;
    uint256 private _buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private _sellMarketingFee;
    uint256 private _sellDevelopmentFee;
    uint256 private _sellLiquidityFee;

    uint256 private _tokensForMarketing;
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;
    uint256 private _previousFee;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromMaxTransaction;
    mapping(address => bool) private _automatedMarketMakerPairs;

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

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

    constructor() ERC20("Long live pepe", "LVPEPE") {
        uint256 totalSupply = 100_000_000_000 ether;
        address PepeWallet = 0xC134bd0B10e61411aB8a410060081D32D19eCC36;
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        maxTransaction = totalSupply;
        maxWallet = totalSupply;
        swapTokensAtAmount = (totalSupply * 1) / 1000;

        _buyMarketingFee = 0;
        _buyDevelopmentFee = 0;
        _buyLiquidityFee = 0;
        buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;

        _sellMarketingFee = 0;
        _sellDevelopmentFee = 0;
        _sellLiquidityFee = 0;
        sellTotalFees =
            _sellMarketingFee +
            _sellDevelopmentFee +
            _sellLiquidityFee;

        _previousFee = sellTotalFees;

        marketingWallet = PepeWallet;
        developmentWallet = PepeWallet;
        liquidityWallet = PepeWallet;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(PepeWallet, true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(PepeWallet, true);

        _mint(owner(), totalSupply);
    }

    receive() external payable {}

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

    function PepeIsRisen() public onlyOwner {
        require(!tradingActive, "Trading already active.");

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

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

        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function PepeIsBased() public onlyOwner {
        require(!tradingActive, "Trading already active.");
        tradingActive = true;
        swapEnabled = true;
    }

    function setSwapEnabled(bool value) public onlyOwner {
        swapEnabled = value;
    }

    function setSwapTokensAtAmount(uint256 amount) public onlyOwner {
        require(
            amount >= (totalSupply() * 1) / 100000,
            "ERC20: Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            amount <= (totalSupply() * 5) / 1000,
            "ERC20: Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = amount;
    }

    function setMaxWalletAndMaxTransaction(
        uint256 _maxTransaction,
        uint256 _maxWallet
    ) public onlyOwner {
        require(
            _maxTransaction >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxTxn lower than 0.5%"
        );
        require(
            _maxWallet >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxWallet lower than 0.5%"
        );
        maxTransaction = _maxTransaction;
        maxWallet = _maxWallet;
    }

    function setBuyFees(
        uint256 _marketingFee,
        uint256 _developmentFee,
        uint256 _liquidityFee
    ) public onlyOwner {
        require(
            _marketingFee + _developmentFee + _liquidityFee <= 9900,
            "ERC20: Must keep fees at 3% or less"
        );
        _buyMarketingFee = _marketingFee;
        _buyDevelopmentFee = _developmentFee;
        _buyLiquidityFee = _liquidityFee;
        buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;
    }

    function setSellFees(
        uint256 _marketingFee,
        uint256 _developmentFee,
        uint256 _liquidityFee
    ) public onlyOwner {
        require(
            _marketingFee + _developmentFee + _liquidityFee <= 9900,
            "ERC20: Must keep fees at 3% or less"
        );
        _sellMarketingFee = _marketingFee;
        _sellDevelopmentFee = _developmentFee;
        _sellLiquidityFee = _liquidityFee;
        sellTotalFees =
            _sellMarketingFee +
            _sellDevelopmentFee +
            _sellLiquidityFee;
        _previousFee = sellTotalFees;
    }

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

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

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

    function excludeFromMaxTransaction(address account, bool value)
        public
        onlyOwner
    {
        _isExcludedFromMaxTransaction[account] = value;
        emit ExcludeFromLimits(account, value);
    }

    function bulkExcludeFromMaxTransaction(
        address[] calldata accounts,
        bool value
    ) public onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromMaxTransaction[accounts[i]] = value;
            emit ExcludeFromLimits(accounts[i], value);
        }
    }

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

    function bulkExcludeFromFees(address[] calldata accounts, bool value)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = value;
            emit ExcludeFromFees(accounts[i], value);
        }
    }

    function withdrawStuckTokens(address tkn) public onlyOwner {
        bool success;
        if (tkn == address(0))
            (success, ) = address(msg.sender).call{
                value: address(this).balance
            }("");
        else {
            require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
            uint256 amount = IERC20(tkn).balanceOf(address(this));
            IERC20(tkn).transfer(msg.sender, amount);
        }
    }

    function isExcludedFromMaxTransaction(address account)
        public
        view
        returns (bool)
    {
        return _isExcludedFromMaxTransaction[account];
    }

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

    function _setAutomatedMarketMakerPair(address pair, bool value) internal {
        _automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    sellTotalFees;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    sellTotalFees;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    sellTotalFees;
            }
            // on buy
            else if (_automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees;
                _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees;
                _tokensForDevelopment +=
                    (fees * _buyDevelopmentFee) /
                    buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function _swapBack() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;

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

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

        uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        _swapTokensForETH(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
            totalTokensToSwap
        );

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

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"PepeIsBased","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"PepeIsRisen","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"bulkExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"bulkExcludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"setDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityWallet","type":"address"}],"name":"setLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransaction","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setMaxWalletAndMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","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":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405234801562000010575f80fd5b506040518060400160405280600e81526020016d4c6f6e67206c697665207065706560901b815250604051806040016040528060068152602001654c565045504560d01b815250816003908162000068919062000661565b50600462000077828262000661565b505050620000946200008e6200025360201b60201c565b62000257565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526c01431e0fae6d7217caa00000009073c134bd0b10e61411ab8a410060081d32d19ecc3690620000e29030905f19620002a8565b600a829055600b8290556103e8620000fc8360016200073d565b6200010891906200075d565b600c555f600e819055600f81905560108190556200012781806200077d565b6200013391906200077d565b600d555f6012819055601381905560148190556200015281806200077d565b6200015e91906200077d565b6011819055601855600780546001600160a01b03199081166001600160a01b038481169182179093556008805483168217905560098054909216179055600554620001ac91166001620003d3565b620001b9306001620003d3565b620001c861dead6001620003d3565b620001d5816001620003d3565b620001f4620001ec6005546001600160a01b031690565b60016200043c565b620002013060016200043c565b6200021061dead60016200043c565b608051620002209060016200043c565b6200022d8160016200043c565b6200024b620002446005546001600160a01b031690565b836200049e565b505062000793565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316620003105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620003735760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000307565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620003dd6200055f565b6001600160a01b0382165f81815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b620004466200055f565b6001600160a01b0382165f818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910162000430565b6001600160a01b038216620004f65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000307565b8060025f8282546200050991906200077d565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620005bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000307565b565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620005eb57607f821691505b6020821081036200060a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005bd575f81815260208120601f850160051c81016020861015620006385750805b601f850160051c820191505b81811015620006595782815560010162000644565b505050505050565b81516001600160401b038111156200067d576200067d620005c2565b62000695816200068e8454620005d6565b8462000610565b602080601f831160018114620006cb575f8415620006b35750858301515b5f19600386901b1c1916600185901b17855562000659565b5f85815260208120601f198616915b82811015620006fb57888601518255948401946001909101908401620006da565b50858210156200071957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000757576200075762000729565b92915050565b5f826200077857634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000757576200075762000729565b608051612dc9620007eb5f395f8181610341015281816110db0152818161116a0152818161129c0152818161134701528181612632015281816126e9015281816127250152818161279901526127d80152612dc95ff3fe60806040526004361061026d575f3560e01c80637571336a1161014a578063c24a7a8c116100be578063d85ba06311610078578063d85ba06314610770578063dd62ed3e14610785578063e01af92c146107a4578063e2f45605146107c3578063f2fde38b146107d8578063f8b45b05146107f7575f80fd5b8063c24a7a8c146106cb578063c3f70b52146106ea578063c4a34954146106ff578063cb96372814610713578063d469801614610732578063d7d1d10e14610751575f80fd5b8063a457c2d71161010f578063a457c2d714610610578063a9059cbb1461062f578063afa4f3b21461064e578063bbc0c7421461066d578063c02466681461068d578063c04a5414146106ac575f80fd5b80637571336a1461058d57806375f0a874146105ac5780638da5cb5b146105cb57806395d89b41146105e8578063961b3001146105fc575f80fd5b8063313ce567116101e15780635d098b38116101a65780635d098b38146104d25780636a486a8e146104f15780636ddd17131461050657806370a0823114610526578063715018a61461055a57806372ac24861461056e575f80fd5b8063313ce56714610423578063395093511461043e57806342966c681461045d57806349bd5a5e1461047c5780634fbee1931461049b575f80fd5b80631694505e116102325780631694505e1461033057806318160ddd1461037b57806318d9ceae1461039957806323b872dd146103d057806327c8f835146103ef578063296f0a0c14610404575f80fd5b806306fdde0314610278578063095ea7b3146102a25780630d075d9c146102d15780630f683e90146102f2578063155ca7c114610311575f80fd5b3661027457005b5f80fd5b348015610283575f80fd5b5061028c61080c565b604051610299919061285c565b60405180910390f35b3480156102ad575f80fd5b506102c16102bc3660046128bb565b61089c565b6040519015158152602001610299565b3480156102dc575f80fd5b506102f06102eb3660046128e5565b6108b5565b005b3480156102fd575f80fd5b506102f061030c3660046128e5565b610928565b34801561031c575f80fd5b506102f061032b36600461291b565b610997565b34801561033b575f80fd5b506103637f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610299565b348015610386575f80fd5b506002545b604051908152602001610299565b3480156103a4575f80fd5b506102c16103b336600461299a565b6001600160a01b03165f908152601a602052604090205460ff1690565b3480156103db575f80fd5b506102c16103ea3660046129b5565b610a7e565b3480156103fa575f80fd5b5061036361dead81565b34801561040f575f80fd5b506102f061041e36600461299a565b610aa1565b34801561042e575f80fd5b5060405160128152602001610299565b348015610449575f80fd5b506102c16104583660046128bb565b610b1f565b348015610468575f80fd5b506102f06104773660046129f3565b610b40565b348015610487575f80fd5b50600654610363906001600160a01b031681565b3480156104a6575f80fd5b506102c16104b536600461299a565b6001600160a01b03165f9081526019602052604090205460ff1690565b3480156104dd575f80fd5b506102f06104ec36600461299a565b610b4d565b3480156104fc575f80fd5b5061038b60115481565b348015610511575f80fd5b506009546102c190600160a81b900460ff1681565b348015610531575f80fd5b5061038b61054036600461299a565b6001600160a01b03165f9081526020819052604090205490565b348015610565575f80fd5b506102f0610bcb565b348015610579575f80fd5b506102f061058836600461299a565b610bde565b348015610598575f80fd5b506102f06105a7366004612a0a565b610c5c565b3480156105b7575f80fd5b50600754610363906001600160a01b031681565b3480156105d6575f80fd5b506005546001600160a01b0316610363565b3480156105f3575f80fd5b5061028c610cc3565b348015610607575f80fd5b506102f0610cd2565b34801561061b575f80fd5b506102c161062a3660046128bb565b610d45565b34801561063a575f80fd5b506102c16106493660046128bb565b610dbf565b348015610659575f80fd5b506102f06106683660046129f3565b610dcc565b348015610678575f80fd5b506009546102c190600160a01b900460ff1681565b348015610698575f80fd5b506102f06106a7366004612a0a565b610f06565b3480156106b7575f80fd5b50600854610363906001600160a01b031681565b3480156106d6575f80fd5b506102f06106e5366004612a41565b610f65565b3480156106f5575f80fd5b5061038b600a5481565b34801561070a575f80fd5b506102f061107d565b34801561071e575f80fd5b506102f061072d36600461299a565b611410565b34801561073d575f80fd5b50600954610363906001600160a01b031681565b34801561075c575f80fd5b506102f061076b36600461291b565b6115ea565b34801561077b575f80fd5b5061038b600d5481565b348015610790575f80fd5b5061038b61079f366004612a61565b6116cb565b3480156107af575f80fd5b506102f06107be366004612a8d565b6116f5565b3480156107ce575f80fd5b5061038b600c5481565b3480156107e3575f80fd5b506102f06107f236600461299a565b61171b565b348015610802575f80fd5b5061038b600b5481565b60606003805461081b90612aa8565b80601f016020809104026020016040519081016040528092919081815260200182805461084790612aa8565b80156108925780601f1061086957610100808354040283529160200191610892565b820191905f5260205f20905b81548152906001019060200180831161087557829003601f168201915b5050505050905090565b5f336108a9818585611791565b60019150505b92915050565b6108bd6118b4565b6126ac816108cb8486612af4565b6108d59190612af4565b11156108fc5760405162461bcd60e51b81526004016108f390612b07565b60405180910390fd5b600e839055600f8290556010819055806109168385612af4565b6109209190612af4565b600d55505050565b6109306118b4565b6126ac8161093e8486612af4565b6109489190612af4565b11156109665760405162461bcd60e51b81526004016108f390612b07565b601283905560138290556014819055806109808385612af4565b61098a9190612af4565b6011819055601855505050565b61099f6118b4565b5f5b82811015610a78578160195f8686858181106109bf576109bf612b4a565b90506020020160208101906109d4919061299a565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055838382818110610a0d57610a0d612b4a565b9050602002016020810190610a22919061299a565b6001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df783604051610a5e911515815260200190565b60405180910390a280610a7081612b5e565b9150506109a1565b50505050565b5f33610a8b85828561190e565b610a96858585611980565b506001949350505050565b610aa96118b4565b6001600160a01b038116610acf5760405162461bcd60e51b81526004016108f390612b76565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db905f90a35050565b5f336108a9818585610b3183836116cb565b610b3b9190612af4565b611791565b610b4a3382612091565b50565b610b556118b4565b6001600160a01b038116610b7b5760405162461bcd60e51b81526004016108f390612b76565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a35050565b610bd36118b4565b610bdc5f6121c1565b565b610be66118b4565b6001600160a01b038116610c0c5760405162461bcd60e51b81526004016108f390612b76565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df8703965905f90a35050565b610c646118b4565b6001600160a01b0382165f818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b60606004805461081b90612aa8565b610cda6118b4565b600954600160a01b900460ff1615610d2e5760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339030b63932b0b23c9030b1ba34bb329760491b60448201526064016108f3565b6009805461ffff60a01b191661010160a01b179055565b5f3381610d5282866116cb565b905083811015610db25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108f3565b610a968286868403611791565b5f336108a9818585611980565b610dd46118b4565b620186a0610de160025490565b610dec906001612ba0565b610df69190612bb7565b811015610e6b5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e0000000060648201526084016108f3565b6103e8610e7760025490565b610e82906005612ba0565b610e8c9190612bb7565b811115610f015760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e000000000060648201526084016108f3565b600c55565b610f0e6118b4565b6001600160a01b0382165f81815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610cb7565b610f6d6118b4565b6103e8610f7960025490565b610f84906005612ba0565b610f8e9190612bb7565b821015610fee5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b60648201526084016108f3565b6103e8610ffa60025490565b611005906005612ba0565b61100f9190612bb7565b8110156110725760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b60648201526084016108f3565b600a91909155600b55565b6110856118b4565b600954600160a01b900460ff16156110d95760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339030b63932b0b23c9030b1ba34bb329760491b60448201526064016108f3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611135573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111599190612bd6565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111e89190612bd6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015611232573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112569190612bd6565b600680546001600160a01b0319166001600160a01b039290921691821790556112829030905f19611791565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f1960248301529091169063095ea7b3906044016020604051808303815f875af11580156112f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113169190612bf1565b5060065461132e906001600160a01b03166001612212565b600654611345906001600160a01b03166001610c5c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7194730611394306001600160a01b03165f9081526020819052604090205490565b5f806113a86005546001600160a01b031690565b426040518863ffffffff1660e01b81526004016113ca96959493929190612c0c565b60606040518083038185885af11580156113e6573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061140b9190612c47565b505050565b6114186118b4565b5f6001600160a01b03821661147057604051339047905f81818185875af1925050503d805f8114611464576040519150601f19603f3d011682016040523d82523d5f602084013e611469565b606091505b5050505050565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114d89190612c72565b116115115760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b60448201526064016108f3565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015611555573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115799190612c72565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0384169063a9059cbb906044016020604051808303815f875af11580156115c6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a789190612bf1565b6115f26118b4565b5f5b82811015610a785781601a5f86868581811061161257611612612b4a565b9050602002016020810190611627919061299a565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905583838281811061166057611660612b4a565b9050602002016020810190611675919061299a565b6001600160a01b03167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92836040516116b1911515815260200190565b60405180910390a2806116c381612b5e565b9150506115f4565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6116fd6118b4565b60098054911515600160a81b0260ff60a81b19909216919091179055565b6117236118b4565b6001600160a01b0381166117885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f3565b610b4a816121c1565b6001600160a01b0383166117f35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108f3565b6001600160a01b0382166118545760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108f3565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610bdc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f3565b5f61191984846116cb565b90505f198114610a7857818110156119735760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108f3565b610a788484848403611791565b6001600160a01b0383166119a65760405162461bcd60e51b81526004016108f390612c89565b6001600160a01b0382166119cc5760405162461bcd60e51b81526004016108f390612cce565b805f036119de5761140b83835f612265565b6005546001600160a01b03848116911614801590611a0a57506005546001600160a01b03838116911614155b8015611a1e57506001600160a01b03821615155b8015611a3557506001600160a01b03821661dead14155b8015611a4b5750600954600160b01b900460ff16155b15611d6557600954600160a01b900460ff16611aea576001600160a01b0383165f9081526019602052604090205460ff1680611a9e57506001600160a01b0382165f9081526019602052604090205460ff165b611aea5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e00000060448201526064016108f3565b6001600160a01b0383165f908152601b602052604090205460ff168015611b2957506001600160a01b0382165f908152601a602052604090205460ff16155b15611c1757600a54811115611b9f5760405162461bcd60e51b815260206004820152603660248201527f45524332303a20427579207472616e7366657220616d6f756e742065786365656044820152753239903a34329036b0bc2a3930b739b0b1ba34b7b71760511b60648201526084016108f3565b600b546001600160a01b0383165f90815260208190526040902054611bc49083612af4565b1115611c125760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016108f3565b611d65565b6001600160a01b0382165f908152601b602052604090205460ff168015611c5657506001600160a01b0383165f908152601a602052604090205460ff16155b15611cd357600a54811115611c125760405162461bcd60e51b815260206004820152603760248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e2e00000000000000000060648201526084016108f3565b6001600160a01b0382165f908152601a602052604090205460ff16611d6557600b546001600160a01b0383165f90815260208190526040902054611d179083612af4565b1115611d655760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016108f3565b305f90815260208190526040902054600c5481108015908190611d915750600954600160a81b900460ff165b8015611da75750600954600160b01b900460ff16155b8015611dcb57506001600160a01b0385165f908152601b602052604090205460ff16155b8015611def57506001600160a01b0385165f9081526019602052604090205460ff16155b8015611e1357506001600160a01b0384165f9081526019602052604090205460ff16155b15611e41576009805460ff60b01b1916600160b01b179055611e3361238d565b6009805460ff60b01b191690555b6009546001600160a01b0386165f9081526019602052604090205460ff600160b01b909204821615911680611e8d57506001600160a01b0385165f9081526019602052604090205460ff165b15611e9557505f5b5f8115612077576001600160a01b0386165f908152601b602052604090205460ff168015611ec457505f601154115b15611f8057611eea612710611ee4601154886125b590919063ffffffff16565b906125c7565b905060115460145482611efd9190612ba0565b611f079190612bb7565b60175f828254611f179190612af4565b9091555050601154601254611f2c9083612ba0565b611f369190612bb7565b60155f828254611f469190612af4565b9091555050601154601354611f5b9083612ba0565b611f659190612bb7565b60165f828254611f759190612af4565b909155506120599050565b6001600160a01b0387165f908152601b602052604090205460ff168015611fa857505f600d54115b1561205957611fc8612710611ee4600d54886125b590919063ffffffff16565b9050600d5460105482611fdb9190612ba0565b611fe59190612bb7565b60175f828254611ff59190612af4565b9091555050600d54600e5461200a9083612ba0565b6120149190612bb7565b60155f8282546120249190612af4565b9091555050600d54600f546120399083612ba0565b6120439190612bb7565b60165f8282546120539190612af4565b90915550505b801561206a5761206a873083612265565b6120748186612d11565b94505b612082878787612265565b50506018546011555050505050565b6001600160a01b0382166120f15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108f3565b6001600160a01b0382165f90815260208190526040902054818110156121645760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108f3565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661228b5760405162461bcd60e51b81526004016108f390612c89565b6001600160a01b0382166122b15760405162461bcd60e51b81526004016108f390612cce565b6001600160a01b0383165f90815260208190526040902054818110156123285760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108f3565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a78565b305f9081526020819052604081205490505f6016546015546017546123b29190612af4565b6123bc9190612af4565b90505f8215806123ca575081155b156123d457505050565b600c546123e290600a612ba0565b8311156123fa57600c546123f790600a612ba0565b92505b5f6002836017548661240c9190612ba0565b6124169190612bb7565b6124209190612bb7565b90505f61242d85836125d2565b905047612439826125dd565b5f61244447836125d2565b90505f61246087611ee4601554856125b590919063ffffffff16565b90505f61247c88611ee4601654866125b590919063ffffffff16565b90505f8161248a8486612d11565b6124949190612d11565b5f60178190556015819055601655905086158015906124b257505f81115b15612505576124c18782612793565b601754604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b039091169083905f81818185875af1925050503d805f811461254f576040519150601f19603f3d011682016040523d82523d5f602084013e612554565b606091505b50506007546040519199506001600160a01b03169047905f81818185875af1925050503d805f81146125a1576040519150601f19603f3d011682016040523d82523d5f602084013e6125a6565b606091505b50505050505050505050505050565b5f6125c08284612ba0565b9392505050565b5f6125c08284612bb7565b5f6125c08284612d11565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061261057612610612b4a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561268c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126b09190612bd6565b816001815181106126c3576126c3612b4a565b60200260200101906001600160a01b031690816001600160a01b03168152505061270e307f000000000000000000000000000000000000000000000000000000000000000084611791565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906127629085905f90869030904290600401612d24565b5f604051808303815f87803b158015612779575f80fd5b505af115801561278b573d5f803e3d5ffd5b505050505050565b6127be307f000000000000000000000000000000000000000000000000000000000000000084611791565b60095460405163f305d71960e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263f305d71992859261281b92309289925f9283929116904290600401612c0c565b60606040518083038185885af1158015612837573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906114699190612c47565b5f6020808352835180828501525f5b818110156128875785810183015185820160400152820161286b565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b4a575f80fd5b5f80604083850312156128cc575f80fd5b82356128d7816128a7565b946020939093013593505050565b5f805f606084860312156128f7575f80fd5b505081359360208301359350604090920135919050565b8015158114610b4a575f80fd5b5f805f6040848603121561292d575f80fd5b833567ffffffffffffffff80821115612944575f80fd5b818601915086601f830112612957575f80fd5b813581811115612965575f80fd5b8760208260051b8501011115612979575f80fd5b6020928301955093505084013561298f8161290e565b809150509250925092565b5f602082840312156129aa575f80fd5b81356125c0816128a7565b5f805f606084860312156129c7575f80fd5b83356129d2816128a7565b925060208401356129e2816128a7565b929592945050506040919091013590565b5f60208284031215612a03575f80fd5b5035919050565b5f8060408385031215612a1b575f80fd5b8235612a26816128a7565b91506020830135612a368161290e565b809150509250929050565b5f8060408385031215612a52575f80fd5b50508035926020909101359150565b5f8060408385031215612a72575f80fd5b8235612a7d816128a7565b91506020830135612a36816128a7565b5f60208284031215612a9d575f80fd5b81356125c08161290e565b600181811c90821680612abc57607f821691505b602082108103612ada57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108af576108af612ae0565b60208082526023908201527f45524332303a204d757374206b6565702066656573206174203325206f72206c60408201526265737360e81b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b5f60018201612b6f57612b6f612ae0565b5060010190565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b80820281158282048414176108af576108af612ae0565b5f82612bd157634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612be6575f80fd5b81516125c0816128a7565b5f60208284031215612c01575f80fd5b81516125c08161290e565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b5f805f60608486031215612c59575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215612c82575f80fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108af576108af612ae0565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612d725784516001600160a01b031683529383019391830191600101612d4d565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b6f02fa7c197b3a8733f68bb6cc0663b27f08d790e3927f74eb9d412a61d273364736f6c63430008140033

Deployed Bytecode

0x60806040526004361061026d575f3560e01c80637571336a1161014a578063c24a7a8c116100be578063d85ba06311610078578063d85ba06314610770578063dd62ed3e14610785578063e01af92c146107a4578063e2f45605146107c3578063f2fde38b146107d8578063f8b45b05146107f7575f80fd5b8063c24a7a8c146106cb578063c3f70b52146106ea578063c4a34954146106ff578063cb96372814610713578063d469801614610732578063d7d1d10e14610751575f80fd5b8063a457c2d71161010f578063a457c2d714610610578063a9059cbb1461062f578063afa4f3b21461064e578063bbc0c7421461066d578063c02466681461068d578063c04a5414146106ac575f80fd5b80637571336a1461058d57806375f0a874146105ac5780638da5cb5b146105cb57806395d89b41146105e8578063961b3001146105fc575f80fd5b8063313ce567116101e15780635d098b38116101a65780635d098b38146104d25780636a486a8e146104f15780636ddd17131461050657806370a0823114610526578063715018a61461055a57806372ac24861461056e575f80fd5b8063313ce56714610423578063395093511461043e57806342966c681461045d57806349bd5a5e1461047c5780634fbee1931461049b575f80fd5b80631694505e116102325780631694505e1461033057806318160ddd1461037b57806318d9ceae1461039957806323b872dd146103d057806327c8f835146103ef578063296f0a0c14610404575f80fd5b806306fdde0314610278578063095ea7b3146102a25780630d075d9c146102d15780630f683e90146102f2578063155ca7c114610311575f80fd5b3661027457005b5f80fd5b348015610283575f80fd5b5061028c61080c565b604051610299919061285c565b60405180910390f35b3480156102ad575f80fd5b506102c16102bc3660046128bb565b61089c565b6040519015158152602001610299565b3480156102dc575f80fd5b506102f06102eb3660046128e5565b6108b5565b005b3480156102fd575f80fd5b506102f061030c3660046128e5565b610928565b34801561031c575f80fd5b506102f061032b36600461291b565b610997565b34801561033b575f80fd5b506103637f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610299565b348015610386575f80fd5b506002545b604051908152602001610299565b3480156103a4575f80fd5b506102c16103b336600461299a565b6001600160a01b03165f908152601a602052604090205460ff1690565b3480156103db575f80fd5b506102c16103ea3660046129b5565b610a7e565b3480156103fa575f80fd5b5061036361dead81565b34801561040f575f80fd5b506102f061041e36600461299a565b610aa1565b34801561042e575f80fd5b5060405160128152602001610299565b348015610449575f80fd5b506102c16104583660046128bb565b610b1f565b348015610468575f80fd5b506102f06104773660046129f3565b610b40565b348015610487575f80fd5b50600654610363906001600160a01b031681565b3480156104a6575f80fd5b506102c16104b536600461299a565b6001600160a01b03165f9081526019602052604090205460ff1690565b3480156104dd575f80fd5b506102f06104ec36600461299a565b610b4d565b3480156104fc575f80fd5b5061038b60115481565b348015610511575f80fd5b506009546102c190600160a81b900460ff1681565b348015610531575f80fd5b5061038b61054036600461299a565b6001600160a01b03165f9081526020819052604090205490565b348015610565575f80fd5b506102f0610bcb565b348015610579575f80fd5b506102f061058836600461299a565b610bde565b348015610598575f80fd5b506102f06105a7366004612a0a565b610c5c565b3480156105b7575f80fd5b50600754610363906001600160a01b031681565b3480156105d6575f80fd5b506005546001600160a01b0316610363565b3480156105f3575f80fd5b5061028c610cc3565b348015610607575f80fd5b506102f0610cd2565b34801561061b575f80fd5b506102c161062a3660046128bb565b610d45565b34801561063a575f80fd5b506102c16106493660046128bb565b610dbf565b348015610659575f80fd5b506102f06106683660046129f3565b610dcc565b348015610678575f80fd5b506009546102c190600160a01b900460ff1681565b348015610698575f80fd5b506102f06106a7366004612a0a565b610f06565b3480156106b7575f80fd5b50600854610363906001600160a01b031681565b3480156106d6575f80fd5b506102f06106e5366004612a41565b610f65565b3480156106f5575f80fd5b5061038b600a5481565b34801561070a575f80fd5b506102f061107d565b34801561071e575f80fd5b506102f061072d36600461299a565b611410565b34801561073d575f80fd5b50600954610363906001600160a01b031681565b34801561075c575f80fd5b506102f061076b36600461291b565b6115ea565b34801561077b575f80fd5b5061038b600d5481565b348015610790575f80fd5b5061038b61079f366004612a61565b6116cb565b3480156107af575f80fd5b506102f06107be366004612a8d565b6116f5565b3480156107ce575f80fd5b5061038b600c5481565b3480156107e3575f80fd5b506102f06107f236600461299a565b61171b565b348015610802575f80fd5b5061038b600b5481565b60606003805461081b90612aa8565b80601f016020809104026020016040519081016040528092919081815260200182805461084790612aa8565b80156108925780601f1061086957610100808354040283529160200191610892565b820191905f5260205f20905b81548152906001019060200180831161087557829003601f168201915b5050505050905090565b5f336108a9818585611791565b60019150505b92915050565b6108bd6118b4565b6126ac816108cb8486612af4565b6108d59190612af4565b11156108fc5760405162461bcd60e51b81526004016108f390612b07565b60405180910390fd5b600e839055600f8290556010819055806109168385612af4565b6109209190612af4565b600d55505050565b6109306118b4565b6126ac8161093e8486612af4565b6109489190612af4565b11156109665760405162461bcd60e51b81526004016108f390612b07565b601283905560138290556014819055806109808385612af4565b61098a9190612af4565b6011819055601855505050565b61099f6118b4565b5f5b82811015610a78578160195f8686858181106109bf576109bf612b4a565b90506020020160208101906109d4919061299a565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055838382818110610a0d57610a0d612b4a565b9050602002016020810190610a22919061299a565b6001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df783604051610a5e911515815260200190565b60405180910390a280610a7081612b5e565b9150506109a1565b50505050565b5f33610a8b85828561190e565b610a96858585611980565b506001949350505050565b610aa96118b4565b6001600160a01b038116610acf5760405162461bcd60e51b81526004016108f390612b76565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db905f90a35050565b5f336108a9818585610b3183836116cb565b610b3b9190612af4565b611791565b610b4a3382612091565b50565b610b556118b4565b6001600160a01b038116610b7b5760405162461bcd60e51b81526004016108f390612b76565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a35050565b610bd36118b4565b610bdc5f6121c1565b565b610be66118b4565b6001600160a01b038116610c0c5760405162461bcd60e51b81526004016108f390612b76565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df8703965905f90a35050565b610c646118b4565b6001600160a01b0382165f818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b60606004805461081b90612aa8565b610cda6118b4565b600954600160a01b900460ff1615610d2e5760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339030b63932b0b23c9030b1ba34bb329760491b60448201526064016108f3565b6009805461ffff60a01b191661010160a01b179055565b5f3381610d5282866116cb565b905083811015610db25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108f3565b610a968286868403611791565b5f336108a9818585611980565b610dd46118b4565b620186a0610de160025490565b610dec906001612ba0565b610df69190612bb7565b811015610e6b5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e0000000060648201526084016108f3565b6103e8610e7760025490565b610e82906005612ba0565b610e8c9190612bb7565b811115610f015760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e000000000060648201526084016108f3565b600c55565b610f0e6118b4565b6001600160a01b0382165f81815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610cb7565b610f6d6118b4565b6103e8610f7960025490565b610f84906005612ba0565b610f8e9190612bb7565b821015610fee5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b60648201526084016108f3565b6103e8610ffa60025490565b611005906005612ba0565b61100f9190612bb7565b8110156110725760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b60648201526084016108f3565b600a91909155600b55565b6110856118b4565b600954600160a01b900460ff16156110d95760405162461bcd60e51b81526020600482015260176024820152762a3930b234b7339030b63932b0b23c9030b1ba34bb329760491b60448201526064016108f3565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611135573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111599190612bd6565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111e89190612bd6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015611232573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112569190612bd6565b600680546001600160a01b0319166001600160a01b039290921691821790556112829030905f19611791565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811660048301525f1960248301529091169063095ea7b3906044016020604051808303815f875af11580156112f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113169190612bf1565b5060065461132e906001600160a01b03166001612212565b600654611345906001600160a01b03166001610c5c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7194730611394306001600160a01b03165f9081526020819052604090205490565b5f806113a86005546001600160a01b031690565b426040518863ffffffff1660e01b81526004016113ca96959493929190612c0c565b60606040518083038185885af11580156113e6573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061140b9190612c47565b505050565b6114186118b4565b5f6001600160a01b03821661147057604051339047905f81818185875af1925050503d805f8114611464576040519150601f19603f3d011682016040523d82523d5f602084013e611469565b606091505b5050505050565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114d89190612c72565b116115115760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b60448201526064016108f3565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015611555573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115799190612c72565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0384169063a9059cbb906044016020604051808303815f875af11580156115c6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a789190612bf1565b6115f26118b4565b5f5b82811015610a785781601a5f86868581811061161257611612612b4a565b9050602002016020810190611627919061299a565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905583838281811061166057611660612b4a565b9050602002016020810190611675919061299a565b6001600160a01b03167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92836040516116b1911515815260200190565b60405180910390a2806116c381612b5e565b9150506115f4565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6116fd6118b4565b60098054911515600160a81b0260ff60a81b19909216919091179055565b6117236118b4565b6001600160a01b0381166117885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f3565b610b4a816121c1565b6001600160a01b0383166117f35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108f3565b6001600160a01b0382166118545760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108f3565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610bdc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108f3565b5f61191984846116cb565b90505f198114610a7857818110156119735760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108f3565b610a788484848403611791565b6001600160a01b0383166119a65760405162461bcd60e51b81526004016108f390612c89565b6001600160a01b0382166119cc5760405162461bcd60e51b81526004016108f390612cce565b805f036119de5761140b83835f612265565b6005546001600160a01b03848116911614801590611a0a57506005546001600160a01b03838116911614155b8015611a1e57506001600160a01b03821615155b8015611a3557506001600160a01b03821661dead14155b8015611a4b5750600954600160b01b900460ff16155b15611d6557600954600160a01b900460ff16611aea576001600160a01b0383165f9081526019602052604090205460ff1680611a9e57506001600160a01b0382165f9081526019602052604090205460ff165b611aea5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e00000060448201526064016108f3565b6001600160a01b0383165f908152601b602052604090205460ff168015611b2957506001600160a01b0382165f908152601a602052604090205460ff16155b15611c1757600a54811115611b9f5760405162461bcd60e51b815260206004820152603660248201527f45524332303a20427579207472616e7366657220616d6f756e742065786365656044820152753239903a34329036b0bc2a3930b739b0b1ba34b7b71760511b60648201526084016108f3565b600b546001600160a01b0383165f90815260208190526040902054611bc49083612af4565b1115611c125760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016108f3565b611d65565b6001600160a01b0382165f908152601b602052604090205460ff168015611c5657506001600160a01b0383165f908152601a602052604090205460ff16155b15611cd357600a54811115611c125760405162461bcd60e51b815260206004820152603760248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e2e00000000000000000060648201526084016108f3565b6001600160a01b0382165f908152601a602052604090205460ff16611d6557600b546001600160a01b0383165f90815260208190526040902054611d179083612af4565b1115611d655760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016108f3565b305f90815260208190526040902054600c5481108015908190611d915750600954600160a81b900460ff165b8015611da75750600954600160b01b900460ff16155b8015611dcb57506001600160a01b0385165f908152601b602052604090205460ff16155b8015611def57506001600160a01b0385165f9081526019602052604090205460ff16155b8015611e1357506001600160a01b0384165f9081526019602052604090205460ff16155b15611e41576009805460ff60b01b1916600160b01b179055611e3361238d565b6009805460ff60b01b191690555b6009546001600160a01b0386165f9081526019602052604090205460ff600160b01b909204821615911680611e8d57506001600160a01b0385165f9081526019602052604090205460ff165b15611e9557505f5b5f8115612077576001600160a01b0386165f908152601b602052604090205460ff168015611ec457505f601154115b15611f8057611eea612710611ee4601154886125b590919063ffffffff16565b906125c7565b905060115460145482611efd9190612ba0565b611f079190612bb7565b60175f828254611f179190612af4565b9091555050601154601254611f2c9083612ba0565b611f369190612bb7565b60155f828254611f469190612af4565b9091555050601154601354611f5b9083612ba0565b611f659190612bb7565b60165f828254611f759190612af4565b909155506120599050565b6001600160a01b0387165f908152601b602052604090205460ff168015611fa857505f600d54115b1561205957611fc8612710611ee4600d54886125b590919063ffffffff16565b9050600d5460105482611fdb9190612ba0565b611fe59190612bb7565b60175f828254611ff59190612af4565b9091555050600d54600e5461200a9083612ba0565b6120149190612bb7565b60155f8282546120249190612af4565b9091555050600d54600f546120399083612ba0565b6120439190612bb7565b60165f8282546120539190612af4565b90915550505b801561206a5761206a873083612265565b6120748186612d11565b94505b612082878787612265565b50506018546011555050505050565b6001600160a01b0382166120f15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108f3565b6001600160a01b0382165f90815260208190526040902054818110156121645760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108f3565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601b6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661228b5760405162461bcd60e51b81526004016108f390612c89565b6001600160a01b0382166122b15760405162461bcd60e51b81526004016108f390612cce565b6001600160a01b0383165f90815260208190526040902054818110156123285760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108f3565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a78565b305f9081526020819052604081205490505f6016546015546017546123b29190612af4565b6123bc9190612af4565b90505f8215806123ca575081155b156123d457505050565b600c546123e290600a612ba0565b8311156123fa57600c546123f790600a612ba0565b92505b5f6002836017548661240c9190612ba0565b6124169190612bb7565b6124209190612bb7565b90505f61242d85836125d2565b905047612439826125dd565b5f61244447836125d2565b90505f61246087611ee4601554856125b590919063ffffffff16565b90505f61247c88611ee4601654866125b590919063ffffffff16565b90505f8161248a8486612d11565b6124949190612d11565b5f60178190556015819055601655905086158015906124b257505f81115b15612505576124c18782612793565b601754604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b039091169083905f81818185875af1925050503d805f811461254f576040519150601f19603f3d011682016040523d82523d5f602084013e612554565b606091505b50506007546040519199506001600160a01b03169047905f81818185875af1925050503d805f81146125a1576040519150601f19603f3d011682016040523d82523d5f602084013e6125a6565b606091505b50505050505050505050505050565b5f6125c08284612ba0565b9392505050565b5f6125c08284612bb7565b5f6125c08284612d11565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061261057612610612b4a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561268c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126b09190612bd6565b816001815181106126c3576126c3612b4a565b60200260200101906001600160a01b031690816001600160a01b03168152505061270e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611791565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906127629085905f90869030904290600401612d24565b5f604051808303815f87803b158015612779575f80fd5b505af115801561278b573d5f803e3d5ffd5b505050505050565b6127be307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611791565b60095460405163f305d71960e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263f305d71992859261281b92309289925f9283929116904290600401612c0c565b60606040518083038185885af1158015612837573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906114699190612c47565b5f6020808352835180828501525f5b818110156128875785810183015185820160400152820161286b565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610b4a575f80fd5b5f80604083850312156128cc575f80fd5b82356128d7816128a7565b946020939093013593505050565b5f805f606084860312156128f7575f80fd5b505081359360208301359350604090920135919050565b8015158114610b4a575f80fd5b5f805f6040848603121561292d575f80fd5b833567ffffffffffffffff80821115612944575f80fd5b818601915086601f830112612957575f80fd5b813581811115612965575f80fd5b8760208260051b8501011115612979575f80fd5b6020928301955093505084013561298f8161290e565b809150509250925092565b5f602082840312156129aa575f80fd5b81356125c0816128a7565b5f805f606084860312156129c7575f80fd5b83356129d2816128a7565b925060208401356129e2816128a7565b929592945050506040919091013590565b5f60208284031215612a03575f80fd5b5035919050565b5f8060408385031215612a1b575f80fd5b8235612a26816128a7565b91506020830135612a368161290e565b809150509250929050565b5f8060408385031215612a52575f80fd5b50508035926020909101359150565b5f8060408385031215612a72575f80fd5b8235612a7d816128a7565b91506020830135612a36816128a7565b5f60208284031215612a9d575f80fd5b81356125c08161290e565b600181811c90821680612abc57607f821691505b602082108103612ada57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156108af576108af612ae0565b60208082526023908201527f45524332303a204d757374206b6565702066656573206174203325206f72206c60408201526265737360e81b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b5f60018201612b6f57612b6f612ae0565b5060010190565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b80820281158282048414176108af576108af612ae0565b5f82612bd157634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612be6575f80fd5b81516125c0816128a7565b5f60208284031215612c01575f80fd5b81516125c08161290e565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b5f805f60608486031215612c59575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215612c82575f80fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108af576108af612ae0565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612d725784516001600160a01b031683529383019391830191600101612d4d565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b6f02fa7c197b3a8733f68bb6cc0663b27f08d790e3927f74eb9d412a61d273364736f6c63430008140033

Deployed Bytecode Sourcemap

34704:16422:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9439:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11940:242;;;;;;;;;;-1:-1:-1;11940:242:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11940:242:0;1023:187:1;40426:516:0;;;;;;;;;;-1:-1:-1;40426:516:0;;;;;:::i;:::-;;:::i;:::-;;40950:602;;;;;;;;;;-1:-1:-1;40950:602:0;;;;;:::i;:::-;;:::i;43253:296::-;;;;;;;;;;-1:-1:-1;43253:296:0;;;;;:::i;:::-;;:::i;34780:51::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2605:32:1;;;2587:51;;2575:2;2560:18;34780:51:0;2414:230:1;10568:108:0;;;;;;;;;;-1:-1:-1;10656:12:0;;10568:108;;;2795:25:1;;;2783:2;2768:18;10568:108:0;2649:177:1;44033:178:0;;;;;;;;;;-1:-1:-1;44033:178:0;;;;;:::i;:::-;-1:-1:-1;;;;;44165:38:0;44136:4;44165:38;;;:29;:38;;;;;;;;;44033:178;12762:295;;;;;;;;;;-1:-1:-1;12762:295:0;;;;;:::i;:::-;;:::i;34986:53::-;;;;;;;;;;;;35032:6;34986:53;;42204:306;;;;;;;;;;-1:-1:-1;42204:306:0;;;;;:::i;:::-;;:::i;10410:93::-;;;;;;;;;;-1:-1:-1;10410:93:0;;10493:2;3894:36:1;;3882:2;3867:18;10410:93:0;3752:184:1;13466:270:0;;;;;;;;;;-1:-1:-1;13466:270:0;;;;;:::i;:::-;;:::i;38267:81::-;;;;;;;;;;-1:-1:-1;38267:81:0;;;;;:::i;:::-;;:::i;34838:28::-;;;;;;;;;;-1:-1:-1;34838:28:0;;;;-1:-1:-1;;;;;34838:28:0;;;44219:126;;;;;;;;;;-1:-1:-1;44219:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;44309:28:0;44285:4;44309:28;;;:19;:28;;;;;;;;;44219:126;41560:306;;;;;;;;;;-1:-1:-1;41560:306:0;;;;;:::i;:::-;;:::i;35405:28::-;;;;;;;;;;;;;;;;35080:23;;;;;;;;;;-1:-1:-1;35080:23:0;;;;-1:-1:-1;;;35080:23:0;;;;;;10739:177;;;;;;;;;;-1:-1:-1;10739:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;10890:18:0;10858:7;10890:18;;;;;;;;;;;;10739:177;2819:103;;;;;;;;;;;;;:::i;41874:322::-;;;;;;;;;;-1:-1:-1;41874:322:0;;;;;:::i;:::-;;:::i;42518:218::-;;;;;;;;;;-1:-1:-1;42518:218:0;;;;;:::i;:::-;;:::i;34873:30::-;;;;;;;;;;-1:-1:-1;34873:30:0;;;;-1:-1:-1;;;;;34873:30:0;;;2178:87;;;;;;;;;;-1:-1:-1;2251:6:0;;-1:-1:-1;;;;;2251:6:0;2178:87;;9658:104;;;;;;;;;;;;;:::i;39205:169::-;;;;;;;;;;;;;:::i;14239:505::-;;;;;;;;;;-1:-1:-1;14239:505:0;;;;;:::i;:::-;;:::i;11122:234::-;;;;;;;;;;-1:-1:-1;11122:234:0;;;;;:::i;:::-;;:::i;39481:425::-;;;;;;;;;;-1:-1:-1;39481:425:0;;;;;:::i;:::-;;:::i;35048:25::-;;;;;;;;;;-1:-1:-1;35048:25:0;;;;-1:-1:-1;;;35048:25:0;;;;;;43072:173;;;;;;;;;;-1:-1:-1;43072:173:0;;;;;:::i;:::-;;:::i;34910:32::-;;;;;;;;;;-1:-1:-1;34910:32:0;;;;-1:-1:-1;;;;;34910:32:0;;;39914:504;;;;;;;;;;-1:-1:-1;39914:504:0;;;;;:::i;:::-;;:::i;35141:29::-;;;;;;;;;;;;;;;;38356:841;;;;;;;;;;;;;:::i;43557:468::-;;;;;;;;;;-1:-1:-1;43557:468:0;;;;;:::i;:::-;;:::i;34949:30::-;;;;;;;;;;-1:-1:-1;34949:30:0;;;;-1:-1:-1;;;;;34949:30:0;;;42744:320;;;;;;;;;;-1:-1:-1;42744:320:0;;;;;:::i;:::-;;:::i;35250:27::-;;;;;;;;;;;;;;;;11419:201;;;;;;;;;;-1:-1:-1;11419:201:0;;;;;:::i;:::-;;:::i;39382:91::-;;;;;;;;;;-1:-1:-1;39382:91:0;;;;;:::i;:::-;;:::i;35208:33::-;;;;;;;;;;;;;;;;3077:238;;;;;;;;;;-1:-1:-1;3077:238:0;;;;;:::i;:::-;;:::i;35177:24::-;;;;;;;;;;;;;;;;9439:100;9493:13;9526:5;9519:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9439:100;:::o;11940:242::-;12059:4;803:10;12120:32;803:10;12136:7;12145:6;12120:8;:32::i;:::-;12170:4;12163:11;;;11940:242;;;;;:::o;40426:516::-;2064:13;:11;:13::i;:::-;40652:4:::1;40635:13:::0;40601:31:::1;40617:15:::0;40601:13;:31:::1;:::i;:::-;:47;;;;:::i;:::-;:55;;40579:140;;;;-1:-1:-1::0;;;40579:140:0::1;;;;;;;:::i;:::-;;;;;;;;;40730:16;:32:::0;;;40773:18:::1;:36:::0;;;40820:16:::1;:32:::0;;;40839:13;40878:37:::1;40794:15:::0;40749:13;40878:37:::1;:::i;:::-;:56;;;;:::i;:::-;40863:12;:71:::0;-1:-1:-1;;;40426:516:0:o;40950:602::-;2064:13;:11;:13::i;:::-;41177:4:::1;41160:13:::0;41126:31:::1;41142:15:::0;41126:13;:31:::1;:::i;:::-;:47;;;;:::i;:::-;:55;;41104:140;;;;-1:-1:-1::0;;;41104:140:0::1;;;;;;;:::i;:::-;41255:17;:33:::0;;;41299:19:::1;:37:::0;;;41347:17:::1;:33:::0;;;41367:13;41420:52:::1;41321:15:::0;41275:13;41420:52:::1;:::i;:::-;:85;;;;:::i;:::-;41391:13;:114:::0;;;41516:12:::1;:28:::0;-1:-1:-1;;;40950:602:0:o;43253:296::-;2064:13;:11;:13::i;:::-;43379:9:::1;43374:168;43394:19:::0;;::::1;43374:168;;;43470:5;43435:19;:32;43455:8;;43464:1;43455:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43435:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;43435:32:0;:40;;-1:-1:-1;;43435:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43511:8;;43520:1;43511:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43495:35:0::1;;43524:5;43495:35;;;;1188:14:1::0;1181:22;1163:41;;1151:2;1136:18;;1023:187;43495:35:0::1;;;;;;;;43415:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43374:168;;;;43253:296:::0;;;:::o;12762:295::-;12893:4;803:10;12951:38;12967:4;803:10;12982:6;12951:15;:38::i;:::-;13000:27;13010:4;13016:2;13020:6;13000:9;:27::i;:::-;-1:-1:-1;13045:4:0;;12762:295;-1:-1:-1;;;;12762:295:0:o;42204:306::-;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;42294:30:0;::::1;42286:59;;;;-1:-1:-1::0;;;42286:59:0::1;;;;;;;:::i;:::-;42376:15;::::0;;-1:-1:-1;;;;;42402:34:0;;::::1;-1:-1:-1::0;;;;;;42402:34:0;::::1;::::0;::::1;::::0;;;42452:50:::1;::::0;42376:15;::::1;::::0;;;42452:50:::1;::::0;42356:17:::1;::::0;42452:50:::1;42275:235;42204:306:::0;:::o;13466:270::-;13581:4;803:10;13642:64;803:10;13658:7;13695:10;13667:25;803:10;13658:7;13667:9;:25::i;:::-;:38;;;;:::i;:::-;13642:8;:64::i;38267:81::-;38315:25;38321:10;38333:6;38315:5;:25::i;:::-;38267:81;:::o;41560:306::-;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;41650:30:0;::::1;41642:59;;;;-1:-1:-1::0;;;41642:59:0::1;;;;;;;:::i;:::-;41732:15;::::0;;-1:-1:-1;;;;;41758:34:0;;::::1;-1:-1:-1::0;;;;;;41758:34:0;::::1;::::0;::::1;::::0;;;41808:50:::1;::::0;41732:15;::::1;::::0;;;41808:50:::1;::::0;41712:17:::1;::::0;41808:50:::1;41631:235;41560:306:::0;:::o;2819:103::-;2064:13;:11;:13::i;:::-;2884:30:::1;2911:1;2884:18;:30::i;:::-;2819:103::o:0;41874:322::-;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;41968:32:0;::::1;41960:61;;;;-1:-1:-1::0;;;41960:61:0::1;;;;;;;:::i;:::-;42052:17;::::0;;-1:-1:-1;;;;;42080:38:0;;::::1;-1:-1:-1::0;;;;;;42080:38:0;::::1;::::0;::::1;::::0;;;42134:54:::1;::::0;42052:17;::::1;::::0;;;42134:54:::1;::::0;42032:17:::1;::::0;42134:54:::1;41949:247;41874:322:::0;:::o;42518:218::-;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;42633:38:0;::::1;;::::0;;;:29:::1;:38;::::0;;;;;;;;:46;;-1:-1:-1;;42633:46:0::1;::::0;::::1;;::::0;;::::1;::::0;;;42695:33;;1163:41:1;;;42695:33:0::1;::::0;1136:18:1;42695:33:0::1;;;;;;;;42518:218:::0;;:::o;9658:104::-;9714:13;9747:7;9740:14;;;;;:::i;39205:169::-;2064:13;:11;:13::i;:::-;39265::::1;::::0;-1:-1:-1;;;39265:13:0;::::1;;;39264:14;39256:50;;;::::0;-1:-1:-1;;;39256:50:0;;7275:2:1;39256:50:0::1;::::0;::::1;7257:21:1::0;7314:2;7294:18;;;7287:30;-1:-1:-1;;;7333:18:1;;;7326:53;7396:18;;39256:50:0::1;7073:347:1::0;39256:50:0::1;39317:13;:20:::0;;-1:-1:-1;;;;39348:18:0;-1:-1:-1;;;39348:18:0;;;39205:169::o;14239:505::-;14359:4;803:10;14359:4;14447:25;803:10;14464:7;14447:9;:25::i;:::-;14420:52;;14525:15;14505:16;:35;;14483:122;;;;-1:-1:-1;;;14483:122:0;;7627:2:1;14483:122:0;;;7609:21:1;7666:2;7646:18;;;7639:30;7705:34;7685:18;;;7678:62;-1:-1:-1;;;7756:18:1;;;7749:35;7801:19;;14483:122:0;7425:401:1;14483:122:0;14641:60;14650:5;14657:7;14685:15;14666:16;:34;14641:8;:60::i;11122:234::-;11237:4;803:10;11298:28;803:10;11315:2;11319:6;11298:9;:28::i;39481:425::-;2064:13;:11;:13::i;:::-;39610:6:::1;39589:13;10656:12:::0;;;10568:108;39589:13:::1;:17;::::0;39605:1:::1;39589:17;:::i;:::-;39588:28;;;;:::i;:::-;39578:6;:38;;39556:148;;;::::0;-1:-1:-1;;;39556:148:0;;8428:2:1;39556:148:0::1;::::0;::::1;8410:21:1::0;8467:2;8447:18;;;8440:30;8506:34;8486:18;;;8479:62;8577:30;8557:18;;;8550:58;8625:19;;39556:148:0::1;8226:424:1::0;39556:148:0::1;39769:4;39748:13;10656:12:::0;;;10568:108;39748:13:::1;:17;::::0;39764:1:::1;39748:17;:::i;:::-;39747:26;;;;:::i;:::-;39737:6;:36;;39715:145;;;::::0;-1:-1:-1;;;39715:145:0;;8857:2:1;39715:145:0::1;::::0;::::1;8839:21:1::0;8896:2;8876:18;;;8869:30;8935:34;8915:18;;;8908:62;9006:29;8986:18;;;8979:57;9053:19;;39715:145:0::1;8655:423:1::0;39715:145:0::1;39871:18;:27:::0;39481:425::o;43072:173::-;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;43154:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:36;;-1:-1:-1;;43154:36:0::1;::::0;::::1;;::::0;;::::1;::::0;;;43206:31;;1163:41:1;;;43206:31:0::1;::::0;1136:18:1;43206:31:0::1;1023:187:1::0;39914:504:0;2064:13;:11;:13::i;:::-;40115:4:::1;40094:13;10656:12:::0;;;10568:108;40094:13:::1;:17;::::0;40110:1:::1;40094:17;:::i;:::-;40093:26;;;;:::i;:::-;40073:15;:47;;40051:137;;;::::0;-1:-1:-1;;;40051:137:0;;9285:2:1;40051:137:0::1;::::0;::::1;9267:21:1::0;9324:2;9304:18;;;9297:30;9363:34;9343:18;;;9336:62;-1:-1:-1;;;9414:18:1;;;9407:38;9462:19;;40051:137:0::1;9083:404:1::0;40051:137:0::1;40258:4;40237:13;10656:12:::0;;;10568:108;40237:13:::1;:17;::::0;40253:1:::1;40237:17;:::i;:::-;40236:26;;;;:::i;:::-;40221:10;:42;;40199:135;;;::::0;-1:-1:-1;;;40199:135:0;;9694:2:1;40199:135:0::1;::::0;::::1;9676:21:1::0;9733:2;9713:18;;;9706:30;9772:34;9752:18;;;9745:62;-1:-1:-1;;;9823:18:1;;;9816:41;9874:19;;40199:135:0::1;9492:407:1::0;40199:135:0::1;40345:14;:32:::0;;;;40388:9:::1;:22:::0;39914:504::o;38356:841::-;2064:13;:11;:13::i;:::-;38416::::1;::::0;-1:-1:-1;;;38416:13:0;::::1;;;38415:14;38407:50;;;::::0;-1:-1:-1;;;38407:50:0;;7275:2:1;38407:50:0::1;::::0;::::1;7257:21:1::0;7314:2;7294:18;;;7287:30;-1:-1:-1;;;7333:18:1;;;7326:53;7396:18;;38407:50:0::1;7073:347:1::0;38407:50:0::1;38504:15;-1:-1:-1::0;;;;;38504:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38486:55:0::1;;38564:4;38584:15;-1:-1:-1::0;;;;;38584:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38486:131;::::0;-1:-1:-1;;;;;;38486:131:0::1;::::0;;;;;;-1:-1:-1;;;;;10390:15:1;;;38486:131:0::1;::::0;::::1;10372:34:1::0;10442:15;;10422:18;;;10415:43;10307:18;;38486:131:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38470:13;:147:::0;;-1:-1:-1;;;;;;38470:147:0::1;-1:-1:-1::0;;;;;38470:147:0;;;::::1;::::0;;::::1;::::0;;38628:66:::1;::::0;38645:4:::1;::::0;-1:-1:-1;;38628:8:0::1;:66::i;:::-;38712:13;::::0;38705:111:::1;::::0;-1:-1:-1;;;38705:111:0;;-1:-1:-1;;;;;38757:15:0::1;10661:32:1::0;;38705:111:0::1;::::0;::::1;10643:51:1::0;-1:-1:-1;;10710:18:1;;;10703:34;38712:13:0;;::::1;::::0;38705:29:::1;::::0;10616:18:1;;38705:111:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;38866:13:0::1;::::0;38829:58:::1;::::0;-1:-1:-1;;;;;38866:13:0::1;::::0;38829:28:::1;:58::i;:::-;38932:13;::::0;38898:55:::1;::::0;-1:-1:-1;;;;;38932:13:0::1;::::0;38898:25:::1;:55::i;:::-;38966:15;-1:-1:-1::0;;;;;38966:31:0::1;;39005:21;39050:4;39070:24;39088:4;-1:-1:-1::0;;;;;10890:18:0;10858:7;10890:18;;;;;;;;;;;;10739:177;39070:24:::1;39109:1;39125::::0;39141:7:::1;2251:6:::0;;-1:-1:-1;;;;;2251:6:0;;2178:87;39141:7:::1;39163:15;38966:223;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;38356:841::o:0;43557:468::-;2064:13;:11;:13::i;:::-;43627:12:::1;-1:-1:-1::0;;;;;43654:17:0;::::1;43650:368;;43700:90;::::0;43708:10:::1;::::0;43750:21:::1;::::0;43700:90:::1;::::0;;;43750:21;43708:10;43700:90:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;43557:468:0:o;43650:368::-:1;43829:36;::::0;-1:-1:-1;;;43829:36:0;;43859:4:::1;43829:36;::::0;::::1;2587:51:1::0;43868:1:0::1;::::0;-1:-1:-1;;;;;43829:21:0;::::1;::::0;::::1;::::0;2560:18:1;;43829:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;43821:62;;;::::0;-1:-1:-1;;;43821:62:0;;12522:2:1;43821:62:0::1;::::0;::::1;12504:21:1::0;12561:1;12541:18;;;12534:29;-1:-1:-1;;;12579:18:1;;;12572:39;12628:18;;43821:62:0::1;12320:332:1::0;43821:62:0::1;43915:36;::::0;-1:-1:-1;;;43915:36:0;;43945:4:::1;43915:36;::::0;::::1;2587:51:1::0;43898:14:0::1;::::0;-1:-1:-1;;;;;43915:21:0;::::1;::::0;::::1;::::0;2560:18:1;;43915:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43966:40;::::0;-1:-1:-1;;;43966:40:0;;43987:10:::1;43966:40;::::0;::::1;10643:51:1::0;10710:18;;;10703:34;;;43898:53:0;;-1:-1:-1;;;;;;43966:20:0;::::1;::::0;::::1;::::0;10616:18:1;;43966:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;42744:320::-:0;2064:13;:11;:13::i;:::-;42882:9:::1;42877:180;42897:19:::0;;::::1;42877:180;;;42983:5;42938:29;:42;42968:8;;42977:1;42968:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42938:42:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42938:42:0;:50;;-1:-1:-1;;42938:50:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43026:8;;43035:1;43026:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43008:37:0::1;;43039:5;43008:37;;;;1188:14:1::0;1181:22;1163:41;;1151:2;1136:18;;1023:187;43008:37:0::1;;;;;;;;42918:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42877:180;;11419:201:::0;-1:-1:-1;;;;;11585:18:0;;;11553:7;11585:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11419:201::o;39382:91::-;2064:13;:11;:13::i;:::-;39446:11:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;39446:19:0::1;-1:-1:-1::0;;;;39446:19:0;;::::1;::::0;;;::::1;::::0;;39382:91::o;3077:238::-;2064:13;:11;:13::i;:::-;-1:-1:-1;;;;;3180:22:0;::::1;3158:110;;;::::0;-1:-1:-1;;;3158:110:0;;12859:2:1;3158:110:0::1;::::0;::::1;12841:21:1::0;12898:2;12878:18;;;12871:30;12937:34;12917:18;;;12910:62;-1:-1:-1;;;12988:18:1;;;12981:36;13034:19;;3158:110:0::1;12657:402:1::0;3158:110:0::1;3279:28;3298:8;3279:18;:28::i;18372:380::-:0;-1:-1:-1;;;;;18508:19:0;;18500:68;;;;-1:-1:-1;;;18500:68:0;;13266:2:1;18500:68:0;;;13248:21:1;13305:2;13285:18;;;13278:30;13344:34;13324:18;;;13317:62;-1:-1:-1;;;13395:18:1;;;13388:34;13439:19;;18500:68:0;13064:400:1;18500:68:0;-1:-1:-1;;;;;18587:21:0;;18579:68;;;;-1:-1:-1;;;18579:68:0;;13671:2:1;18579:68:0;;;13653:21:1;13710:2;13690:18;;;13683:30;13749:34;13729:18;;;13722:62;-1:-1:-1;;;13800:18:1;;;13793:32;13842:19;;18579:68:0;13469:398:1;18579:68:0;-1:-1:-1;;;;;18660:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18712:32;;2795:25:1;;;18712:32:0;;2768:18:1;18712:32:0;;;;;;;18372:380;;;:::o;2343:132::-;2251:6;;-1:-1:-1;;;;;2251:6:0;803:10;2407:23;2399:68;;;;-1:-1:-1;;;2399:68:0;;14074:2:1;2399:68:0;;;14056:21:1;;;14093:18;;;14086:30;14152:34;14132:18;;;14125:62;14204:18;;2399:68:0;13872:356:1;19043:502:0;19178:24;19205:25;19215:5;19222:7;19205:9;:25::i;:::-;19178:52;;-1:-1:-1;;19245:16:0;:37;19241:297;;19345:6;19325:16;:26;;19299:117;;;;-1:-1:-1;;;19299:117:0;;14435:2:1;19299:117:0;;;14417:21:1;14474:2;14454:18;;;14447:30;14513:31;14493:18;;;14486:59;14562:18;;19299:117:0;14233:353:1;19299:117:0;19460:51;19469:5;19476:7;19504:6;19485:16;:25;19460:8;:51::i;44551:3820::-;-1:-1:-1;;;;;44683:18:0;;44675:68;;;;-1:-1:-1;;;44675:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44762:16:0;;44754:64;;;;-1:-1:-1;;;44754:64:0;;;;;;;:::i;:::-;44835:6;44845:1;44835:11;44831:93;;44863:28;44879:4;44885:2;44889:1;44863:15;:28::i;44831:93::-;2251:6;;-1:-1:-1;;;;;44954:15:0;;;2251:6;;44954:15;;;;:45;;-1:-1:-1;2251:6:0;;-1:-1:-1;;;;;44986:13:0;;;2251:6;;44986:13;;44954:45;:78;;;;-1:-1:-1;;;;;;45016:16:0;;;;44954:78;:112;;;;-1:-1:-1;;;;;;45049:17:0;;35032:6;45049:17;;44954:112;:139;;;;-1:-1:-1;45084:9:0;;-1:-1:-1;;;45084:9:0;;;;45083:10;44954:139;44936:1484;;;45125:13;;-1:-1:-1;;;45125:13:0;;;;45120:210;;-1:-1:-1;;;;;45189:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;45218:23:0;;;;;;:19;:23;;;;;;;;45189:52;45159:155;;;;-1:-1:-1;;;45159:155:0;;15603:2:1;45159:155:0;;;15585:21:1;15642:2;15622:18;;;15615:30;15681:31;15661:18;;;15654:59;15730:18;;45159:155:0;15401:353:1;45159:155:0;-1:-1:-1;;;;;45392:32:0;;;;;;:26;:32;;;;;;;;:87;;;;-1:-1:-1;;;;;;45446:33:0;;;;;;:29;:33;;;;;;;;45445:34;45392:87;45370:1039;;;45554:14;;45544:6;:24;;45514:152;;;;-1:-1:-1;;;45514:152:0;;15961:2:1;45514:152:0;;;15943:21:1;16000:2;15980:18;;;15973:30;16039:34;16019:18;;;16012:62;-1:-1:-1;;;16090:18:1;;;16083:52;16152:19;;45514:152:0;15759:418:1;45514:152:0;45741:9;;-1:-1:-1;;;;;10890:18:0;;10858:7;10890:18;;;;;;;;;;;45715:22;;:6;:22;:::i;:::-;:35;;45685:135;;;;-1:-1:-1;;;45685:135:0;;16384:2:1;45685:135:0;;;16366:21:1;16423:2;16403:18;;;16396:30;16462:28;16442:18;;;16435:56;16508:18;;45685:135:0;16182:350:1;45685:135:0;45370:1039;;;-1:-1:-1;;;;;45902:30:0;;;;;;:26;:30;;;;;;;;:87;;;;-1:-1:-1;;;;;;45954:35:0;;;;;;:29;:35;;;;;;;;45953:36;45902:87;45880:529;;;46064:14;;46054:6;:24;;46024:153;;;;-1:-1:-1;;;46024:153:0;;16739:2:1;46024:153:0;;;16721:21:1;16778:2;16758:18;;;16751:30;16817:34;16797:18;;;16790:62;16888:25;16868:18;;;16861:53;16931:19;;46024:153:0;16537:419:1;45880:529:0;-1:-1:-1;;;;;46204:33:0;;;;;;:29;:33;;;;;;;;46199:210;;46314:9;;-1:-1:-1;;;;;10890:18:0;;10858:7;10890:18;;;;;;;;;;;46288:22;;:6;:22;:::i;:::-;:35;;46258:135;;;;-1:-1:-1;;;46258:135:0;;16384:2:1;46258:135:0;;;16366:21:1;16423:2;16403:18;;;16396:30;16462:28;16442:18;;;16435:56;16508:18;;46258:135:0;16182:350:1;46258:135:0;46481:4;46432:28;10890:18;;;;;;;;;;;46539;;46515:42;;;;;;;46588:35;;-1:-1:-1;46612:11:0;;-1:-1:-1;;;46612:11:0;;;;46588:35;:62;;;;-1:-1:-1;46641:9:0;;-1:-1:-1;;;46641:9:0;;;;46640:10;46588:62;:112;;;;-1:-1:-1;;;;;;46668:32:0;;;;;;:26;:32;;;;;;;;46667:33;46588:112;:155;;;;-1:-1:-1;;;;;;46718:25:0;;;;;;:19;:25;;;;;;;;46717:26;46588:155;:196;;;;-1:-1:-1;;;;;;46761:23:0;;;;;;:19;:23;;;;;;;;46760:24;46588:196;46570:331;;;46811:9;:16;;-1:-1:-1;;;;46811:16:0;-1:-1:-1;;;46811:16:0;;;46844:11;:9;:11::i;:::-;46872:9;:17;;-1:-1:-1;;;;46872:17:0;;;46570:331;46929:9;;-1:-1:-1;;;;;46955:25:0;;46913:12;46955:25;;;:19;:25;;;;;;46929:9;-1:-1:-1;;;46929:9:0;;;;;46928:10;;46955:25;;:52;;-1:-1:-1;;;;;;46984:23:0;;;;;;:19;:23;;;;;;;;46955:52;46951:100;;;-1:-1:-1;47034:5:0;46951:100;47063:12;47096:7;47092:1187;;;-1:-1:-1;;;;;47148:30:0;;;;;;:26;:30;;;;;;;;:51;;;;;47198:1;47182:13;;:17;47148:51;47144:986;;;47227:36;47257:5;47227:25;47238:13;;47227:6;:10;;:25;;;;:::i;:::-;:29;;:36::i;:::-;47220:43;;47376:13;;47334:17;;47327:4;:24;;;;:::i;:::-;47326:63;;;;:::i;:::-;47282:19;;:107;;;;;;;:::i;:::-;;;;-1:-1:-1;;47502:13:0;;47460:17;;47453:24;;:4;:24;:::i;:::-;47452:63;;;;:::i;:::-;47408:19;;:107;;;;;;;:::i;:::-;;;;-1:-1:-1;;47632:13:0;;47588:19;;47581:26;;:4;:26;:::i;:::-;47580:65;;;;:::i;:::-;47534:21;;:111;;;;;;;:::i;:::-;;;;-1:-1:-1;47144:986:0;;-1:-1:-1;47144:986:0;;-1:-1:-1;;;;;47707:32:0;;;;;;:26;:32;;;;;;;;:52;;;;;47758:1;47743:12;;:16;47707:52;47703:427;;;47787:35;47816:5;47787:24;47798:12;;47787:6;:10;;:24;;;;:::i;:35::-;47780:42;;47892:12;;47872:16;;47865:4;:23;;;;:::i;:::-;47864:40;;;;:::i;:::-;47841:19;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;47974:12:0;;47954:16;;47947:23;;:4;:23;:::i;:::-;47946:40;;;;:::i;:::-;47923:19;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;48102:12:0;;48059:18;;48052:25;;:4;:25;:::i;:::-;48051:63;;;;:::i;:::-;48005:21;;:109;;;;;;;:::i;:::-;;;;-1:-1:-1;;47703:427:0;48150:8;;48146:91;;48179:42;48195:4;48209;48216;48179:15;:42::i;:::-;48253:14;48263:4;48253:14;;:::i;:::-;;;47092:1187;48291:33;48307:4;48313:2;48317:6;48291:15;:33::i;:::-;-1:-1:-1;;48351:12:0;;48335:13;:28;-1:-1:-1;;;;;44551:3820:0:o;17259:675::-;-1:-1:-1;;;;;17343:21:0;;17335:67;;;;-1:-1:-1;;;17335:67:0;;17296:2:1;17335:67:0;;;17278:21:1;17335:2;17315:18;;;17308:30;17374:34;17354:18;;;17347:62;-1:-1:-1;;;17425:18:1;;;17418:31;17466:19;;17335:67:0;17094:397:1;17335:67:0;-1:-1:-1;;;;;17502:18:0;;17477:22;17502:18;;;;;;;;;;;17539:24;;;;17531:71;;;;-1:-1:-1;;;17531:71:0;;17698:2:1;17531:71:0;;;17680:21:1;17737:2;17717:18;;;17710:30;17776:34;17756:18;;;17749:62;-1:-1:-1;;;17827:18:1;;;17820:32;17869:19;;17531:71:0;17496:398:1;17531:71:0;-1:-1:-1;;;;;17638:18:0;;:9;:18;;;;;;;;;;;17659:23;;;17638:44;;17777:12;:22;;;;;;;17828:37;2795:25:1;;;17638:9:0;;:18;17828:37;;2768:18:1;17828:37:0;;;;;;;38966:223:::1;;;38356:841::o:0;3475:191::-;3568:6;;;-1:-1:-1;;;;;3585:17:0;;;-1:-1:-1;;;;;;3585:17:0;;;;;;;3618:40;;3568:6;;;3585:17;3568:6;;3618:40;;3549:16;;3618:40;3538:128;3475:191;:::o;44353:190::-;-1:-1:-1;;;;;44437:32:0;;;;;;:26;:32;;;;;;:40;;-1:-1:-1;;44437:40:0;;;;;;;;;;44495;;44437;;:32;44495:40;;;44353:190;;:::o;15214:877::-;-1:-1:-1;;;;;15345:18:0;;15337:68;;;;-1:-1:-1;;;15337:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15424:16:0;;15416:64;;;;-1:-1:-1;;;15416:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15566:15:0;;15544:19;15566:15;;;;;;;;;;;15614:21;;;;15592:109;;;;-1:-1:-1;;;15592:109:0;;18101:2:1;15592:109:0;;;18083:21:1;18140:2;18120:18;;;18113:30;18179:34;18159:18;;;18152:62;-1:-1:-1;;;18230:18:1;;;18223:36;18276:19;;15592:109:0;17899:402:1;15592:109:0;-1:-1:-1;;;;;15737:15:0;;;:9;:15;;;;;;;;;;;15755:20;;;15737:38;;15955:13;;;;;;;;;;:23;;;;;;16007:26;;2795:25:1;;;15955:13:0;;16007:26;;2768:18:1;16007:26:0;;;;;;;16046:37;38356:841;49270:1853;49355:4;49311:23;10890:18;;;;;;;;;;;49311:50;;49372:25;49470:21;;49435:19;;49400;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;49372:119;-1:-1:-1;49502:12:0;49531:20;;;:46;;-1:-1:-1;49555:22:0;;49531:46;49527:85;;;49594:7;;;49270:1853::o;49527:85::-;49646:18;;:23;;49667:2;49646:23;:::i;:::-;49628:15;:41;49624:115;;;49704:18;;:23;;49725:2;49704:23;:::i;:::-;49686:41;;49624:115;49751:23;49865:1;49832:17;49796:19;;49778:15;:37;;;;:::i;:::-;49777:72;;;;:::i;:::-;:89;;;;:::i;:::-;49751:115;-1:-1:-1;49877:26:0;49906:36;:15;49751:115;49906:19;:36::i;:::-;49877:65;-1:-1:-1;49983:21:0;50017:37;49877:65;50017:17;:37::i;:::-;50067:18;50088:44;:21;50114:17;50088:25;:44::i;:::-;50067:65;;50145:23;50171:82;50225:17;50171:35;50186:19;;50171:10;:14;;:35;;;;:::i;:82::-;50145:108;;50266:25;50294:84;50350:17;50294:37;50309:21;;50294:10;:14;;:37;;;;:::i;:84::-;50266:112;-1:-1:-1;50391:23:0;50266:112;50417:41;50443:15;50417:10;:41;:::i;:::-;:74;;;;:::i;:::-;50526:1;50504:19;:23;;;50538:19;:23;;;50572:21;:25;50391:100;-1:-1:-1;50614:19:0;;;;;:42;;;50655:1;50637:15;:19;50614:42;50610:280;;;50673:47;50687:15;50704;50673:13;:47::i;:::-;50844:19;;50740:138;;;18508:25:1;;;18564:2;18549:18;;18542:34;;;18592:18;;;18585:34;;;;50740:138:0;;;;;;18496:2:1;50740:138:0;;;50610:280;50924:17;;50916:85;;-1:-1:-1;;;;;50924:17:0;;;;50955;;50916:85;;;;50955:17;50924;50916:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51036:15:0;;51028:87;;50902:99;;-1:-1:-1;;;;;;51036:15:0;;51079:21;;51028:87;;;;51079:21;51036:15;51028:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;49270:1853:0:o;24720:98::-;24778:7;24805:5;24809:1;24805;:5;:::i;:::-;24798:12;24720:98;-1:-1:-1;;;24720:98:0:o;25119:::-;25177:7;25204:5;25208:1;25204;:5;:::i;24363:98::-;24421:7;24448:5;24452:1;24448;:5;:::i;48379:503::-;48471:16;;;48485:1;48471:16;;;;;;;;48447:21;;48471:16;;;;;;;;;;-1:-1:-1;48471:16:0;48447:40;;48516:4;48498;48503:1;48498:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;48498:23:0;;;-1:-1:-1;;;;;48498:23:0;;;;;48542:15;-1:-1:-1;;;;;48542:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48532:4;48537:1;48532:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;48532:32:0;;;-1:-1:-1;;;;;48532:32:0;;;;;48577:62;48594:4;48609:15;48627:11;48577:8;:62::i;:::-;48678:196;;-1:-1:-1;;;48678:196:0;;-1:-1:-1;;;;;48678:15:0;:66;;;;:196;;48759:11;;48785:1;;48801:4;;48828;;48848:15;;48678:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48436:446;48379:503;:::o;48890:372::-;48973:62;48990:4;49005:15;49023:11;48973:8;:62::i;:::-;49198:15;;49048:206;;-1:-1:-1;;;49048:206:0;;-1:-1:-1;;;;;49048:15:0;:31;;;;;49087:9;;49048:206;;49120:4;;49140:11;;49166:1;;;;49198:15;;;49228;;49048:206;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;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:316::-;1292:6;1300;1308;1361:2;1349:9;1340:7;1336:23;1332:32;1329:52;;;1377:1;1374;1367:12;1329:52;-1:-1:-1;;1400:23:1;;;1470:2;1455:18;;1442:32;;-1:-1:-1;1521:2:1;1506:18;;;1493:32;;1215:316;-1:-1:-1;1215:316:1:o;1536:118::-;1622:5;1615:13;1608:21;1601:5;1598:32;1588:60;;1644:1;1641;1634:12;1659:750;1751:6;1759;1767;1820:2;1808:9;1799:7;1795:23;1791:32;1788:52;;;1836:1;1833;1826:12;1788:52;1876:9;1863:23;1905:18;1946:2;1938:6;1935:14;1932:34;;;1962:1;1959;1952:12;1932:34;2000:6;1989:9;1985:22;1975:32;;2045:7;2038:4;2034:2;2030:13;2026:27;2016:55;;2067:1;2064;2057:12;2016:55;2107:2;2094:16;2133:2;2125:6;2122:14;2119:34;;;2149:1;2146;2139:12;2119:34;2204:7;2197:4;2187:6;2184:1;2180:14;2176:2;2172:23;2168:34;2165:47;2162:67;;;2225:1;2222;2215:12;2162:67;2256:4;2248:13;;;;-1:-1:-1;2280:6:1;-1:-1:-1;;2321:20:1;;2308:34;2351:28;2308:34;2351:28;:::i;:::-;2398:5;2388:15;;;1659:750;;;;;:::o;2831:247::-;2890:6;2943:2;2931:9;2922:7;2918:23;2914:32;2911:52;;;2959:1;2956;2949:12;2911:52;2998:9;2985:23;3017:31;3042:5;3017:31;:::i;3083:456::-;3160:6;3168;3176;3229:2;3217:9;3208:7;3204:23;3200:32;3197:52;;;3245:1;3242;3235:12;3197:52;3284:9;3271:23;3303:31;3328:5;3303:31;:::i;:::-;3353:5;-1:-1:-1;3410:2:1;3395:18;;3382:32;3423:33;3382:32;3423:33;:::i;:::-;3083:456;;3475:7;;-1:-1:-1;;;3529:2:1;3514:18;;;;3501:32;;3083:456::o;3941:180::-;4000:6;4053:2;4041:9;4032:7;4028:23;4024:32;4021:52;;;4069:1;4066;4059:12;4021:52;-1:-1:-1;4092:23:1;;3941:180;-1:-1:-1;3941:180:1:o;4126:382::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4307:9;4294:23;4326:31;4351:5;4326:31;:::i;:::-;4376:5;-1:-1:-1;4433:2:1;4418:18;;4405:32;4446:30;4405:32;4446:30;:::i;:::-;4495:7;4485:17;;;4126:382;;;;;:::o;4513:248::-;4581:6;4589;4642:2;4630:9;4621:7;4617:23;4613:32;4610:52;;;4658:1;4655;4648:12;4610:52;-1:-1:-1;;4681:23:1;;;4751:2;4736:18;;;4723:32;;-1:-1:-1;4513:248:1:o;4766:388::-;4834:6;4842;4895:2;4883:9;4874:7;4870:23;4866:32;4863:52;;;4911:1;4908;4901:12;4863:52;4950:9;4937:23;4969:31;4994:5;4969:31;:::i;:::-;5019:5;-1:-1:-1;5076:2:1;5061:18;;5048:32;5089:33;5048:32;5089:33;:::i;5159:241::-;5215:6;5268:2;5256:9;5247:7;5243:23;5239:32;5236:52;;;5284:1;5281;5274:12;5236:52;5323:9;5310:23;5342:28;5364:5;5342:28;:::i;5405:380::-;5484:1;5480:12;;;;5527;;;5548:61;;5602:4;5594:6;5590:17;5580:27;;5548:61;5655:2;5647:6;5644:14;5624:18;5621:38;5618:161;;5701:10;5696:3;5692:20;5689:1;5682:31;5736:4;5733:1;5726:15;5764:4;5761:1;5754:15;5618:161;;5405:380;;;:::o;5790:127::-;5851:10;5846:3;5842:20;5839:1;5832:31;5882:4;5879:1;5872:15;5906:4;5903:1;5896:15;5922:125;5987:9;;;6008:10;;;6005:36;;;6021:18;;:::i;6052:399::-;6254:2;6236:21;;;6293:2;6273:18;;;6266:30;6332:34;6327:2;6312:18;;6305:62;-1:-1:-1;;;6398:2:1;6383:18;;6376:33;6441:3;6426:19;;6052:399::o;6456:127::-;6517:10;6512:3;6508:20;6505:1;6498:31;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6588:135;6627:3;6648:17;;;6645:43;;6668:18;;:::i;:::-;-1:-1:-1;6715:1:1;6704:13;;6588:135::o;6728:340::-;6930:2;6912:21;;;6969:2;6949:18;;;6942:30;-1:-1:-1;;;7003:2:1;6988:18;;6981:46;7059:2;7044:18;;6728:340::o;7831:168::-;7904:9;;;7935;;7952:15;;;7946:22;;7932:37;7922:71;;7973:18;;:::i;8004:217::-;8044:1;8070;8060:132;;8114:10;8109:3;8105:20;8102:1;8095:31;8149:4;8146:1;8139:15;8177:4;8174:1;8167:15;8060:132;-1:-1:-1;8206:9:1;;8004:217::o;9904:251::-;9974:6;10027:2;10015:9;10006:7;10002:23;9998:32;9995:52;;;10043:1;10040;10033:12;9995:52;10075:9;10069:16;10094:31;10119:5;10094:31;:::i;10748:245::-;10815:6;10868:2;10856:9;10847:7;10843:23;10839:32;10836:52;;;10884:1;10881;10874:12;10836:52;10916:9;10910:16;10935:28;10957:5;10935:28;:::i;10998:607::-;-1:-1:-1;;;;;11357:15:1;;;11339:34;;11404:2;11389:18;;11382:34;;;;11447:2;11432:18;;11425:34;;;;11490:2;11475:18;;11468:34;;;;11539:15;;;11533:3;11518:19;;11511:44;11319:3;11571:19;;11564:35;;;;11288:3;11273:19;;10998:607::o;11610:306::-;11698:6;11706;11714;11767:2;11755:9;11746:7;11742:23;11738:32;11735:52;;;11783:1;11780;11773:12;11735:52;11812:9;11806:16;11796:26;;11862:2;11851:9;11847:18;11841:25;11831:35;;11906:2;11895:9;11891:18;11885:25;11875:35;;11610:306;;;;;:::o;12131:184::-;12201:6;12254:2;12242:9;12233:7;12229:23;12225:32;12222:52;;;12270:1;12267;12260:12;12222:52;-1:-1:-1;12293:16:1;;12131:184;-1:-1:-1;12131:184:1:o;14591:401::-;14793:2;14775:21;;;14832:2;14812:18;;;14805:30;14871:34;14866:2;14851:18;;14844:62;-1:-1:-1;;;14937:2:1;14922:18;;14915:35;14982:3;14967:19;;14591:401::o;14997:399::-;15199:2;15181:21;;;15238:2;15218:18;;;15211:30;15277:34;15272:2;15257:18;;15250:62;-1:-1:-1;;;15343:2:1;15328:18;;15321:33;15386:3;15371:19;;14997:399::o;16961:128::-;17028:9;;;17049:11;;;17046:37;;;17063:18;;:::i;18762:980::-;19024:4;19072:3;19061:9;19057:19;19103:6;19092:9;19085:25;19129:2;19167:6;19162:2;19151:9;19147:18;19140:34;19210:3;19205:2;19194:9;19190:18;19183:31;19234:6;19269;19263:13;19300:6;19292;19285:22;19338:3;19327:9;19323:19;19316:26;;19377:2;19369:6;19365:15;19351:29;;19398:1;19408:195;19422:6;19419:1;19416:13;19408:195;;;19487:13;;-1:-1:-1;;;;;19483:39:1;19471:52;;19578:15;;;;19543:12;;;;19519:1;19437:9;19408:195;;;-1:-1:-1;;;;;;;19659:32:1;;;;19654:2;19639:18;;19632:60;-1:-1:-1;;;19723:3:1;19708:19;19701:35;19620:3;18762:980;-1:-1:-1;;;18762:980:1:o

Swarm Source

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