ETH Price: $2,531.70 (-2.72%)

Token

A Buddhist Evolves (UNMEI)
 

Overview

Max Total Supply

123,456,789 UNMEI

Holders

70

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
81.91622981536082883 UNMEI

Value
$0.00
0x11191bcfe30c6aE7bBEF74c6De97c8D52FF957F9
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:
UNMEI

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-13
*/

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

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (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;
    }
}

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

interface GotchuVerification {
    function getValidation(
        address _approver,
        address _contract,
        bytes32 _code
    ) external returns (bool);
}

/* pragma solidity >=0.8.10; */

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

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

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

    // Powered by GOTCHU
    GotchuVerification public immutable gotchu;

    bool private swapping;

    address public devWallet;

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

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

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

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

	uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

    // Powered by GOTCHU
    mapping(address => bool) public addressValidated;
    bool public validationRequired = false;

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("A Buddhist Evolves", "UNMEI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        GotchuVerification _gotchu = GotchuVerification(0xB3DF03b5ED734F57E9F1cd307DA5773ba1544bF2);
        gotchu = _gotchu;

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

        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 3;

        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 30;

        uint256 totalSupply = 123456789 * 1e18;

        maxTransactionAmount = (totalSupply) / 200; // 0.5% from total supply maxTransactionAmountTxn
        maxWallet = (totalSupply) / 100; // 1% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyLiquidityFee + buyDevFee;

        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellLiquidityFee + sellDevFee;

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

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

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

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

    receive() external payable {}

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

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

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

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

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

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

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

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function approveForTrading(bytes32 code) public {
        require(
            tradingActive
        );
        if (gotchu.getValidation(_msgSender(), address(this),code)) {
            addressValidated[_msgSender()] = true;
        }
    }

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
	
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

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

        (success, ) = address(devWallet).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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressValidated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"code","type":"bytes32"}],"name":"approveForTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableValidation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gotchu","outputs":[{"internalType":"contract GotchuVerification","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"validationRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e0604052600a805462ffffff191660011790556016805460ff191690553480156200002a57600080fd5b5060405180604001604052806012815260200171412042756464686973742045766f6c76657360701b81525060405180604001604052806005815260200164554e4d454960d81b815250816003908162000085919062000709565b50600462000094828262000709565b505050620000b1620000ab620003ad60201b60201c565b620003b1565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d381600162000403565b6001600160a01b038116608081905273b3df03b5ed734f57e9f1cd307da5773ba1544bf260c08190526040805163c45a015560e01b8152905191929163c45a0155916004808201926020929091908290030181865afa1580156200013b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001619190620007d5565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d59190620007d5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000223573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002499190620007d5565b6001600160a01b031660a08190526200026490600162000403565b60a051620002749060016200047d565b6000600381601e6a661efdf12d1653cf3400006200029460c8826200081d565b600755620002a46064826200081d565b600955612710620002b782600a62000840565b620002c391906200081d565b600855600c859055600d849055620002dc848662000862565b600b55600f8390556010829055620002f5828462000862565b600e55600680546001600160a01b03191673346ec8579f5d40fea9f94125ee54ec8dbc9044571790556200033d620003356005546001600160a01b031690565b6001620004d1565b6200034a306001620004d1565b6200035961dead6001620004d1565b62000378620003706005546001600160a01b031690565b600162000403565b6200038530600162000403565b6200039461dead600162000403565b620003a033826200057b565b505050505050506200087e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004525760405162461bcd60e51b815260206004820181905260248201526000805160206200305b83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200051c5760405162461bcd60e51b815260206004820181905260248201526000805160206200305b833981519152604482015260640162000449565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005d35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000449565b8060026000828254620005e7919062000862565b90915550506001600160a01b038216600090815260208190526040812080548392906200061690849062000862565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200069057607f821691505b602082108103620006b157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200066057600081815260208120601f850160051c81016020861015620006e05750805b601f850160051c820191505b818110156200070157828155600101620006ec565b505050505050565b81516001600160401b0381111562000725576200072562000665565b6200073d816200073684546200067b565b84620006b7565b602080601f8311600181146200077557600084156200075c5750858301515b600019600386901b1c1916600185901b17855562000701565b600085815260208120601f198616915b82811015620007a65788860151825594840194600190910190840162000785565b5085821015620007c55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007e857600080fd5b81516001600160a01b03811681146200080057600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000826200083b57634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156200085d576200085d62000807565b500290565b8082018082111562000878576200087862000807565b92915050565b60805160a05160c05161277c620008df6000396000818161093901526113100152600081816104c60152610ebb0152600081816103b3015281816120da01528181612193015281816121cf0152818161224901526122b1015261277c6000f3fe6080604052600436106102e85760003560e01c8063924de9b711610190578063c18bc195116100dc578063e0b3327211610095578063f2fde38b1161006f578063f2fde38b14610907578063f373116614610927578063f63743421461095b578063f8b45b051461097157600080fd5b8063e0b33272146108bb578063e2f45605146108db578063f11a24d3146108f157600080fd5b8063c18bc195146107f4578063c8c8ebe414610814578063d257b34f1461082a578063d85ba0631461084a578063dc83d1a814610860578063dd62ed3e1461087557600080fd5b8063a457c2d711610149578063b62496f511610123578063b62496f51461076b578063bbc0c7421461079b578063bff09d69146107ba578063c0246668146107d457600080fd5b8063a457c2d7146106fb578063a9059cbb1461071b578063aedabd7e1461073b57600080fd5b8063924de9b71461066457806395d89b41146106845780639a7a23d6146106995780639c3b4fdc146106b95780639fccce32146106cf578063a0d82dc5146106e557600080fd5b806349bd5a5e1161024f57806370a08231116102085780637571336a116101e25780637571336a146105f15780638a8c523c146106115780638da5cb5b146106265780638ea5220f1461064457600080fd5b806370a0823114610591578063715018a6146105c7578063751039fc146105dc57600080fd5b806349bd5a5e146104b45780634a62bb65146104e85780634fbee1931461050257806366ca9b831461053b5780636a486a8e1461055b5780636ddd17131461057157600080fd5b80631a8145bb116102a15780631a8145bb1461040c578063203e727e1461042257806323b872dd1461044257806327c8f83514610462578063313ce56714610478578063395093511461049457600080fd5b806302dbd8f8146102f457806306fdde0314610316578063095ea7b31461034157806310d5de53146103715780631694505e146103a157806318160ddd146103ed57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061031461030f366004612329565b610987565b005b34801561032257600080fd5b5061032b610a27565b604051610338919061234b565b60405180910390f35b34801561034d57600080fd5b5061036161035c3660046123ae565b610ab9565b6040519015158152602001610338565b34801561037d57600080fd5b5061036161038c3660046123da565b60146020526000908152604090205460ff1681565b3480156103ad57600080fd5b506103d57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610338565b3480156103f957600080fd5b506002545b604051908152602001610338565b34801561041857600080fd5b506103fe60115481565b34801561042e57600080fd5b5061031461043d3660046123f7565b610ad0565b34801561044e57600080fd5b5061036161045d366004612410565b610bad565b34801561046e57600080fd5b506103d561dead81565b34801561048457600080fd5b5060405160128152602001610338565b3480156104a057600080fd5b506103616104af3660046123ae565b610c57565b3480156104c057600080fd5b506103d57f000000000000000000000000000000000000000000000000000000000000000081565b3480156104f457600080fd5b50600a546103619060ff1681565b34801561050e57600080fd5b5061036161051d3660046123da565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561054757600080fd5b50610314610556366004612329565b610c93565b34801561056757600080fd5b506103fe600e5481565b34801561057d57600080fd5b50600a546103619062010000900460ff1681565b34801561059d57600080fd5b506103fe6105ac3660046123da565b6001600160a01b031660009081526020819052604090205490565b3480156105d357600080fd5b50610314610d26565b3480156105e857600080fd5b50610361610d5c565b3480156105fd57600080fd5b5061031461060c36600461245f565b610d99565b34801561061d57600080fd5b50610314610dee565b34801561063257600080fd5b506005546001600160a01b03166103d5565b34801561065057600080fd5b506006546103d5906001600160a01b031681565b34801561067057600080fd5b5061031461067f366004612498565b610e3a565b34801561069057600080fd5b5061032b610e80565b3480156106a557600080fd5b506103146106b436600461245f565b610e8f565b3480156106c557600080fd5b506103fe600d5481565b3480156106db57600080fd5b506103fe60125481565b3480156106f157600080fd5b506103fe60105481565b34801561070757600080fd5b506103616107163660046123ae565b610f6a565b34801561072757600080fd5b506103616107363660046123ae565b611003565b34801561074757600080fd5b506103616107563660046123da565b60156020526000908152604090205460ff1681565b34801561077757600080fd5b506103616107863660046123da565b60176020526000908152604090205460ff1681565b3480156107a757600080fd5b50600a5461036190610100900460ff1681565b3480156107c657600080fd5b506016546103619060ff1681565b3480156107e057600080fd5b506103146107ef36600461245f565b611010565b34801561080057600080fd5b5061031461080f3660046123f7565b611099565b34801561082057600080fd5b506103fe60075481565b34801561083657600080fd5b506103616108453660046123f7565b61116a565b34801561085657600080fd5b506103fe600b5481565b34801561086c57600080fd5b506103146112bc565b34801561088157600080fd5b506103fe6108903660046124b5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108c757600080fd5b506103146108d63660046123f7565b6112f2565b3480156108e757600080fd5b506103fe60085481565b3480156108fd57600080fd5b506103fe600c5481565b34801561091357600080fd5b506103146109223660046123da565b6113d0565b34801561093357600080fd5b506103d57f000000000000000000000000000000000000000000000000000000000000000081565b34801561096757600080fd5b506103fe600f5481565b34801561097d57600080fd5b506103fe60095481565b6005546001600160a01b031633146109ba5760405162461bcd60e51b81526004016109b1906124e3565b60405180910390fd5b6010829055600f8190556109ce818361252e565b600e81905560031015610a235760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203325206f72206c6573730000000060448201526064016109b1565b5050565b606060038054610a3690612541565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290612541565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac6338484611468565b5060015b92915050565b6005546001600160a01b03163314610afa5760405162461bcd60e51b81526004016109b1906124e3565b670de0b6b3a76400006103e8610b0f60025490565b610b1a90600161257b565b610b24919061259a565b610b2e919061259a565b811015610b955760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016109b1565b610ba781670de0b6b3a764000061257b565b60075550565b6000610bba84848461158c565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c3f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109b1565b610c4c8533858403611468565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ac6918590610c8e90869061252e565b611468565b6005546001600160a01b03163314610cbd5760405162461bcd60e51b81526004016109b1906124e3565b600d829055600c819055610cd1818361252e565b600b81905560031015610a235760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203325206f72206c6573730000000060448201526064016109b1565b6005546001600160a01b03163314610d505760405162461bcd60e51b81526004016109b1906124e3565b610d5a6000611cb4565b565b6005546000906001600160a01b03163314610d895760405162461bcd60e51b81526004016109b1906124e3565b50600a805460ff19169055600190565b6005546001600160a01b03163314610dc35760405162461bcd60e51b81526004016109b1906124e3565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e185760405162461bcd60e51b81526004016109b1906124e3565b6016805460ff19166001179055600a80546201010062ffff0019909116179055565b6005546001600160a01b03163314610e645760405162461bcd60e51b81526004016109b1906124e3565b600a8054911515620100000262ff000019909216919091179055565b606060048054610a3690612541565b6005546001600160a01b03163314610eb95760405162461bcd60e51b81526004016109b1906124e3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610f605760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109b1565b610a238282611d06565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610fec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109b1565b610ff93385858403611468565b5060019392505050565b6000610ac633848461158c565b6005546001600160a01b0316331461103a5760405162461bcd60e51b81526004016109b1906124e3565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110c35760405162461bcd60e51b81526004016109b1906124e3565b670de0b6b3a76400006103e86110d860025490565b6110e390600561257b565b6110ed919061259a565b6110f7919061259a565b8110156111525760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016109b1565b61116481670de0b6b3a764000061257b565b60095550565b6005546000906001600160a01b031633146111975760405162461bcd60e51b81526004016109b1906124e3565b620186a06111a460025490565b6111af90600161257b565b6111b9919061259a565b8210156112265760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109b1565b6103e861123260025490565b61123d90600561257b565b611247919061259a565b8211156112b35760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109b1565b50600855600190565b6005546001600160a01b031633146112e65760405162461bcd60e51b81526004016109b1906124e3565b6016805460ff19169055565b600a54610100900460ff1661130657600080fd5b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016635b0ae30e336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018490526064016020604051808303816000875af1158015611389573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ad91906125bc565b156113cd57336000908152601560205260409020805460ff191660011790555b50565b6005546001600160a01b031633146113fa5760405162461bcd60e51b81526004016109b1906124e3565b6001600160a01b03811661145f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b1565b6113cd81611cb4565b6001600160a01b0383166114ca5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109b1565b6001600160a01b03821661152b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109b1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115b25760405162461bcd60e51b81526004016109b1906125d9565b6001600160a01b0382166115d85760405162461bcd60e51b81526004016109b19061261e565b806000036115f1576115ec83836000611d5a565b505050565b600a5460ff16156119df576005546001600160a01b0384811691161480159061162857506005546001600160a01b03838116911614155b801561163c57506001600160a01b03821615155b801561165357506001600160a01b03821661dead14155b80156116695750600554600160a01b900460ff16155b156119df57600a54610100900460ff16611701576001600160a01b03831660009081526013602052604090205460ff16806116bc57506001600160a01b03821660009081526013602052604090205460ff165b6117015760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109b1565b6001600160a01b03831660009081526017602052604090205460ff16801561174257506001600160a01b03821660009081526014602052604090205460ff16155b1561189e5760165460ff16156117bf576001600160a01b03821660009081526015602052604090205460ff1615156001146117bf5760405162461bcd60e51b815260206004820152601e60248201527f417070726f76616c20666f722054726164696e672072657175697265642e000060448201526064016109b1565b60075481111561182f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109b1565b6009546001600160a01b038316600090815260208190526040902054611855908361252e565b11156118995760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109b1565b6119df565b6001600160a01b03821660009081526017602052604090205460ff1680156118df57506001600160a01b03831660009081526014602052604090205460ff16155b15611955576007548111156118995760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109b1565b6001600160a01b03821660009081526014602052604090205460ff166119df576009546001600160a01b03831660009081526020819052604090205461199b908361252e565b11156119df5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109b1565b3060009081526020819052604090205460085481108015908190611a0b5750600a5462010000900460ff165b8015611a215750600554600160a01b900460ff16155b8015611a4657506001600160a01b03851660009081526017602052604090205460ff16155b8015611a6b57506001600160a01b03851660009081526013602052604090205460ff16155b8015611a9057506001600160a01b03841660009081526013602052604090205460ff16155b15611abe576005805460ff60a01b1916600160a01b179055611ab0611eaf565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526013602052604090205460ff600160a01b909204821615911680611b0c57506001600160a01b03851660009081526013602052604090205460ff165b15611b15575060005b60008115611ca0576001600160a01b03861660009081526017602052604090205460ff168015611b4757506000600e54115b15611bd557611b6c6064611b66600e548861205890919063ffffffff16565b9061206b565b9050600e54600f5482611b7f919061257b565b611b89919061259a565b60116000828254611b9a919061252e565b9091555050600e54601054611baf908361257b565b611bb9919061259a565b60126000828254611bca919061252e565b90915550611c829050565b6001600160a01b03871660009081526017602052604090205460ff168015611bff57506000600b54115b15611c8257611c1e6064611b66600b548861205890919063ffffffff16565b9050600b54600c5482611c31919061257b565b611c3b919061259a565b60116000828254611c4c919061252e565b9091555050600b54600d54611c61908361257b565b611c6b919061259a565b60126000828254611c7c919061252e565b90915550505b8015611c9357611c93873083611d5a565b611c9d8186612661565b94505b611cab878787611d5a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d805760405162461bcd60e51b81526004016109b1906125d9565b6001600160a01b038216611da65760405162461bcd60e51b81526004016109b19061261e565b6001600160a01b03831660009081526020819052604090205481811015611e1e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109b1565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611e5590849061252e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ea191815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601254601154611ed3919061252e565b90506000821580611ee2575081155b15611eec57505050565b600854611efa90601461257b565b831115611f1257600854611f0f90601461257b565b92505b600060028360115486611f25919061257b565b611f2f919061259a565b611f39919061259a565b90506000611f478583612077565b905047611f5382612083565b6000611f5f4783612077565b90506000611f7c87611b666012548561205890919063ffffffff16565b90506000611f8a8284612661565b6000601181905560125590508515801590611fa55750600081115b15611ff857611fb48682612243565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612045576040519150601f19603f3d011682016040523d82523d6000602084013e61204a565b606091505b505050505050505050505050565b6000612064828461257b565b9392505050565b6000612064828461259a565b60006120648284612661565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106120b8576120b8612674565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612136573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061215a919061268a565b8160018151811061216d5761216d612674565b60200260200101906001600160a01b031690816001600160a01b0316815250506121b8307f000000000000000000000000000000000000000000000000000000000000000084611468565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061220d9085906000908690309042906004016126a7565b600060405180830381600087803b15801561222757600080fd5b505af115801561223b573d6000803e3d6000fd5b505050505050565b61226e307f000000000000000000000000000000000000000000000000000000000000000084611468565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af11580156122fd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906123229190612718565b5050505050565b6000806040838503121561233c57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156123785785810183015185820160400152820161235c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113cd57600080fd5b600080604083850312156123c157600080fd5b82356123cc81612399565b946020939093013593505050565b6000602082840312156123ec57600080fd5b813561206481612399565b60006020828403121561240957600080fd5b5035919050565b60008060006060848603121561242557600080fd5b833561243081612399565b9250602084013561244081612399565b929592945050506040919091013590565b80151581146113cd57600080fd5b6000806040838503121561247257600080fd5b823561247d81612399565b9150602083013561248d81612451565b809150509250929050565b6000602082840312156124aa57600080fd5b813561206481612451565b600080604083850312156124c857600080fd5b82356124d381612399565b9150602083013561248d81612399565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610aca57610aca612518565b600181811c9082168061255557607f821691505b60208210810361257557634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561259557612595612518565b500290565b6000826125b757634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156125ce57600080fd5b815161206481612451565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610aca57610aca612518565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561269c57600080fd5b815161206481612399565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126f75784516001600160a01b0316835293830193918301916001016126d2565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561272d57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212201cf8c94fbb07032894eecccc502211ded7919f49becd77084c8d1f3a440463f764736f6c634300081000334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102e85760003560e01c8063924de9b711610190578063c18bc195116100dc578063e0b3327211610095578063f2fde38b1161006f578063f2fde38b14610907578063f373116614610927578063f63743421461095b578063f8b45b051461097157600080fd5b8063e0b33272146108bb578063e2f45605146108db578063f11a24d3146108f157600080fd5b8063c18bc195146107f4578063c8c8ebe414610814578063d257b34f1461082a578063d85ba0631461084a578063dc83d1a814610860578063dd62ed3e1461087557600080fd5b8063a457c2d711610149578063b62496f511610123578063b62496f51461076b578063bbc0c7421461079b578063bff09d69146107ba578063c0246668146107d457600080fd5b8063a457c2d7146106fb578063a9059cbb1461071b578063aedabd7e1461073b57600080fd5b8063924de9b71461066457806395d89b41146106845780639a7a23d6146106995780639c3b4fdc146106b95780639fccce32146106cf578063a0d82dc5146106e557600080fd5b806349bd5a5e1161024f57806370a08231116102085780637571336a116101e25780637571336a146105f15780638a8c523c146106115780638da5cb5b146106265780638ea5220f1461064457600080fd5b806370a0823114610591578063715018a6146105c7578063751039fc146105dc57600080fd5b806349bd5a5e146104b45780634a62bb65146104e85780634fbee1931461050257806366ca9b831461053b5780636a486a8e1461055b5780636ddd17131461057157600080fd5b80631a8145bb116102a15780631a8145bb1461040c578063203e727e1461042257806323b872dd1461044257806327c8f83514610462578063313ce56714610478578063395093511461049457600080fd5b806302dbd8f8146102f457806306fdde0314610316578063095ea7b31461034157806310d5de53146103715780631694505e146103a157806318160ddd146103ed57600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061031461030f366004612329565b610987565b005b34801561032257600080fd5b5061032b610a27565b604051610338919061234b565b60405180910390f35b34801561034d57600080fd5b5061036161035c3660046123ae565b610ab9565b6040519015158152602001610338565b34801561037d57600080fd5b5061036161038c3660046123da565b60146020526000908152604090205460ff1681565b3480156103ad57600080fd5b506103d57f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610338565b3480156103f957600080fd5b506002545b604051908152602001610338565b34801561041857600080fd5b506103fe60115481565b34801561042e57600080fd5b5061031461043d3660046123f7565b610ad0565b34801561044e57600080fd5b5061036161045d366004612410565b610bad565b34801561046e57600080fd5b506103d561dead81565b34801561048457600080fd5b5060405160128152602001610338565b3480156104a057600080fd5b506103616104af3660046123ae565b610c57565b3480156104c057600080fd5b506103d57f000000000000000000000000c7d9354ca99f62f48c9ed57e4fcc48020827bc1681565b3480156104f457600080fd5b50600a546103619060ff1681565b34801561050e57600080fd5b5061036161051d3660046123da565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561054757600080fd5b50610314610556366004612329565b610c93565b34801561056757600080fd5b506103fe600e5481565b34801561057d57600080fd5b50600a546103619062010000900460ff1681565b34801561059d57600080fd5b506103fe6105ac3660046123da565b6001600160a01b031660009081526020819052604090205490565b3480156105d357600080fd5b50610314610d26565b3480156105e857600080fd5b50610361610d5c565b3480156105fd57600080fd5b5061031461060c36600461245f565b610d99565b34801561061d57600080fd5b50610314610dee565b34801561063257600080fd5b506005546001600160a01b03166103d5565b34801561065057600080fd5b506006546103d5906001600160a01b031681565b34801561067057600080fd5b5061031461067f366004612498565b610e3a565b34801561069057600080fd5b5061032b610e80565b3480156106a557600080fd5b506103146106b436600461245f565b610e8f565b3480156106c557600080fd5b506103fe600d5481565b3480156106db57600080fd5b506103fe60125481565b3480156106f157600080fd5b506103fe60105481565b34801561070757600080fd5b506103616107163660046123ae565b610f6a565b34801561072757600080fd5b506103616107363660046123ae565b611003565b34801561074757600080fd5b506103616107563660046123da565b60156020526000908152604090205460ff1681565b34801561077757600080fd5b506103616107863660046123da565b60176020526000908152604090205460ff1681565b3480156107a757600080fd5b50600a5461036190610100900460ff1681565b3480156107c657600080fd5b506016546103619060ff1681565b3480156107e057600080fd5b506103146107ef36600461245f565b611010565b34801561080057600080fd5b5061031461080f3660046123f7565b611099565b34801561082057600080fd5b506103fe60075481565b34801561083657600080fd5b506103616108453660046123f7565b61116a565b34801561085657600080fd5b506103fe600b5481565b34801561086c57600080fd5b506103146112bc565b34801561088157600080fd5b506103fe6108903660046124b5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108c757600080fd5b506103146108d63660046123f7565b6112f2565b3480156108e757600080fd5b506103fe60085481565b3480156108fd57600080fd5b506103fe600c5481565b34801561091357600080fd5b506103146109223660046123da565b6113d0565b34801561093357600080fd5b506103d57f000000000000000000000000b3df03b5ed734f57e9f1cd307da5773ba1544bf281565b34801561096757600080fd5b506103fe600f5481565b34801561097d57600080fd5b506103fe60095481565b6005546001600160a01b031633146109ba5760405162461bcd60e51b81526004016109b1906124e3565b60405180910390fd5b6010829055600f8190556109ce818361252e565b600e81905560031015610a235760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203325206f72206c6573730000000060448201526064016109b1565b5050565b606060038054610a3690612541565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290612541565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac6338484611468565b5060015b92915050565b6005546001600160a01b03163314610afa5760405162461bcd60e51b81526004016109b1906124e3565b670de0b6b3a76400006103e8610b0f60025490565b610b1a90600161257b565b610b24919061259a565b610b2e919061259a565b811015610b955760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016109b1565b610ba781670de0b6b3a764000061257b565b60075550565b6000610bba84848461158c565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c3f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109b1565b610c4c8533858403611468565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ac6918590610c8e90869061252e565b611468565b6005546001600160a01b03163314610cbd5760405162461bcd60e51b81526004016109b1906124e3565b600d829055600c819055610cd1818361252e565b600b81905560031015610a235760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203325206f72206c6573730000000060448201526064016109b1565b6005546001600160a01b03163314610d505760405162461bcd60e51b81526004016109b1906124e3565b610d5a6000611cb4565b565b6005546000906001600160a01b03163314610d895760405162461bcd60e51b81526004016109b1906124e3565b50600a805460ff19169055600190565b6005546001600160a01b03163314610dc35760405162461bcd60e51b81526004016109b1906124e3565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e185760405162461bcd60e51b81526004016109b1906124e3565b6016805460ff19166001179055600a80546201010062ffff0019909116179055565b6005546001600160a01b03163314610e645760405162461bcd60e51b81526004016109b1906124e3565b600a8054911515620100000262ff000019909216919091179055565b606060048054610a3690612541565b6005546001600160a01b03163314610eb95760405162461bcd60e51b81526004016109b1906124e3565b7f000000000000000000000000c7d9354ca99f62f48c9ed57e4fcc48020827bc166001600160a01b0316826001600160a01b031603610f605760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109b1565b610a238282611d06565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610fec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109b1565b610ff93385858403611468565b5060019392505050565b6000610ac633848461158c565b6005546001600160a01b0316331461103a5760405162461bcd60e51b81526004016109b1906124e3565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110c35760405162461bcd60e51b81526004016109b1906124e3565b670de0b6b3a76400006103e86110d860025490565b6110e390600561257b565b6110ed919061259a565b6110f7919061259a565b8110156111525760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016109b1565b61116481670de0b6b3a764000061257b565b60095550565b6005546000906001600160a01b031633146111975760405162461bcd60e51b81526004016109b1906124e3565b620186a06111a460025490565b6111af90600161257b565b6111b9919061259a565b8210156112265760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109b1565b6103e861123260025490565b61123d90600561257b565b611247919061259a565b8211156112b35760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109b1565b50600855600190565b6005546001600160a01b031633146112e65760405162461bcd60e51b81526004016109b1906124e3565b6016805460ff19169055565b600a54610100900460ff1661130657600080fd5b6001600160a01b037f000000000000000000000000b3df03b5ed734f57e9f1cd307da5773ba1544bf216635b0ae30e336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018490526064016020604051808303816000875af1158015611389573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ad91906125bc565b156113cd57336000908152601560205260409020805460ff191660011790555b50565b6005546001600160a01b031633146113fa5760405162461bcd60e51b81526004016109b1906124e3565b6001600160a01b03811661145f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b1565b6113cd81611cb4565b6001600160a01b0383166114ca5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109b1565b6001600160a01b03821661152b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109b1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115b25760405162461bcd60e51b81526004016109b1906125d9565b6001600160a01b0382166115d85760405162461bcd60e51b81526004016109b19061261e565b806000036115f1576115ec83836000611d5a565b505050565b600a5460ff16156119df576005546001600160a01b0384811691161480159061162857506005546001600160a01b03838116911614155b801561163c57506001600160a01b03821615155b801561165357506001600160a01b03821661dead14155b80156116695750600554600160a01b900460ff16155b156119df57600a54610100900460ff16611701576001600160a01b03831660009081526013602052604090205460ff16806116bc57506001600160a01b03821660009081526013602052604090205460ff165b6117015760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109b1565b6001600160a01b03831660009081526017602052604090205460ff16801561174257506001600160a01b03821660009081526014602052604090205460ff16155b1561189e5760165460ff16156117bf576001600160a01b03821660009081526015602052604090205460ff1615156001146117bf5760405162461bcd60e51b815260206004820152601e60248201527f417070726f76616c20666f722054726164696e672072657175697265642e000060448201526064016109b1565b60075481111561182f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109b1565b6009546001600160a01b038316600090815260208190526040902054611855908361252e565b11156118995760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109b1565b6119df565b6001600160a01b03821660009081526017602052604090205460ff1680156118df57506001600160a01b03831660009081526014602052604090205460ff16155b15611955576007548111156118995760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109b1565b6001600160a01b03821660009081526014602052604090205460ff166119df576009546001600160a01b03831660009081526020819052604090205461199b908361252e565b11156119df5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109b1565b3060009081526020819052604090205460085481108015908190611a0b5750600a5462010000900460ff165b8015611a215750600554600160a01b900460ff16155b8015611a4657506001600160a01b03851660009081526017602052604090205460ff16155b8015611a6b57506001600160a01b03851660009081526013602052604090205460ff16155b8015611a9057506001600160a01b03841660009081526013602052604090205460ff16155b15611abe576005805460ff60a01b1916600160a01b179055611ab0611eaf565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526013602052604090205460ff600160a01b909204821615911680611b0c57506001600160a01b03851660009081526013602052604090205460ff165b15611b15575060005b60008115611ca0576001600160a01b03861660009081526017602052604090205460ff168015611b4757506000600e54115b15611bd557611b6c6064611b66600e548861205890919063ffffffff16565b9061206b565b9050600e54600f5482611b7f919061257b565b611b89919061259a565b60116000828254611b9a919061252e565b9091555050600e54601054611baf908361257b565b611bb9919061259a565b60126000828254611bca919061252e565b90915550611c829050565b6001600160a01b03871660009081526017602052604090205460ff168015611bff57506000600b54115b15611c8257611c1e6064611b66600b548861205890919063ffffffff16565b9050600b54600c5482611c31919061257b565b611c3b919061259a565b60116000828254611c4c919061252e565b9091555050600b54600d54611c61908361257b565b611c6b919061259a565b60126000828254611c7c919061252e565b90915550505b8015611c9357611c93873083611d5a565b611c9d8186612661565b94505b611cab878787611d5a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d805760405162461bcd60e51b81526004016109b1906125d9565b6001600160a01b038216611da65760405162461bcd60e51b81526004016109b19061261e565b6001600160a01b03831660009081526020819052604090205481811015611e1e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109b1565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611e5590849061252e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ea191815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601254601154611ed3919061252e565b90506000821580611ee2575081155b15611eec57505050565b600854611efa90601461257b565b831115611f1257600854611f0f90601461257b565b92505b600060028360115486611f25919061257b565b611f2f919061259a565b611f39919061259a565b90506000611f478583612077565b905047611f5382612083565b6000611f5f4783612077565b90506000611f7c87611b666012548561205890919063ffffffff16565b90506000611f8a8284612661565b6000601181905560125590508515801590611fa55750600081115b15611ff857611fb48682612243565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612045576040519150601f19603f3d011682016040523d82523d6000602084013e61204a565b606091505b505050505050505050505050565b6000612064828461257b565b9392505050565b6000612064828461259a565b60006120648284612661565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106120b8576120b8612674565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612136573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061215a919061268a565b8160018151811061216d5761216d612674565b60200260200101906001600160a01b031690816001600160a01b0316815250506121b8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611468565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061220d9085906000908690309042906004016126a7565b600060405180830381600087803b15801561222757600080fd5b505af115801561223b573d6000803e3d6000fd5b505050505050565b61226e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611468565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af11580156122fd573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906123229190612718565b5050505050565b6000806040838503121561233c57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156123785785810183015185820160400152820161235c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113cd57600080fd5b600080604083850312156123c157600080fd5b82356123cc81612399565b946020939093013593505050565b6000602082840312156123ec57600080fd5b813561206481612399565b60006020828403121561240957600080fd5b5035919050565b60008060006060848603121561242557600080fd5b833561243081612399565b9250602084013561244081612399565b929592945050506040919091013590565b80151581146113cd57600080fd5b6000806040838503121561247257600080fd5b823561247d81612399565b9150602083013561248d81612451565b809150509250929050565b6000602082840312156124aa57600080fd5b813561206481612451565b600080604083850312156124c857600080fd5b82356124d381612399565b9150602083013561248d81612399565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610aca57610aca612518565b600181811c9082168061255557607f821691505b60208210810361257557634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561259557612595612518565b500290565b6000826125b757634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156125ce57600080fd5b815161206481612451565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610aca57610aca612518565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561269c57600080fd5b815161206481612399565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126f75784516001600160a01b0316835293830193918301916001016126d2565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561272d57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212201cf8c94fbb07032894eecccc502211ded7919f49becd77084c8d1f3a440463f764736f6c63430008100033

Deployed Bytecode Sourcemap

32780:14294:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39174:316;;;;;;;;;;-1:-1:-1;39174:316:0;;;;;:::i;:::-;;:::i;:::-;;9531:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11698:169;;;;;;;;;;-1:-1:-1;11698:169:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;11698:169:0;1276:187:1;33819:63:0;;;;;;;;;;-1:-1:-1;33819:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32855:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1911:32:1;;;1893:51;;1881:2;1866:18;32855:51:0;1720:230:1;10651:108:0;;;;;;;;;;-1:-1:-1;10739:12:0;;10651:108;;;2101:25:1;;;2089:2;2074:18;10651:108:0;1955:177:1;33603:33:0;;;;;;;;;;;;;;;;37749:275;;;;;;;;;;-1:-1:-1;37749:275:0;;;;;:::i;:::-;;:::i;12349:492::-;;;;;;;;;;-1:-1:-1;12349:492:0;;;;;:::i;:::-;;:::i;32958:53::-;;;;;;;;;;;;33004:6;32958:53;;10493:93;;;;;;;;;;-1:-1:-1;10493:93:0;;10576:2;3133:36:1;;3121:2;3106:18;10493:93:0;2991:184:1;13250:215:0;;;;;;;;;;-1:-1:-1;13250:215:0;;;;;:::i;:::-;;:::i;32913:38::-;;;;;;;;;;;;;;;33275:33;;;;;;;;;;-1:-1:-1;33275:33:0;;;;;;;;40006:126;;;;;;;;;;-1:-1:-1;40006:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;40096:28:0;40072:4;40096:28;;;:19;:28;;;;;;;;;40006:126;38857:309;;;;;;;;;;-1:-1:-1;38857:309:0;;;;;:::i;:::-;;:::i;33499:28::-;;;;;;;;;;;;;;;;33355:31;;;;;;;;;;-1:-1:-1;33355:31:0;;;;;;;;;;;10822:127;;;;;;;;;;-1:-1:-1;10822:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10923:18:0;10896:7;10923:18;;;;;;;;;;;;10822:127;2766:103;;;;;;;;;;;;;:::i;37052:121::-;;;;;;;;;;;;;:::i;38296:167::-;;;;;;;;;;-1:-1:-1;38296:167:0;;;;;:::i;:::-;;:::i;36852:148::-;;;;;;;;;;;;;:::i;2115:87::-;;;;;;;;;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;2188:6:0;2115:87;;33127:24;;;;;;;;;;-1:-1:-1;33127:24:0;;;;-1:-1:-1;;;;;33127:24:0;;;38559:100;;;;;;;;;;-1:-1:-1;38559:100:0;;;;;:::i;:::-;;:::i;9750:104::-;;;;;;;;;;;;;:::i;39498:304::-;;;;;;;;;;-1:-1:-1;39498:304:0;;;;;:::i;:::-;;:::i;33466:24::-;;;;;;;;;;;;;;;;33643:27;;;;;;;;;;;;;;;;33572:25;;;;;;;;;;;;;;;;13968:413;;;;;;;;;;-1:-1:-1;13968:413:0;;;;;:::i;:::-;;:::i;11162:175::-;;;;;;;;;;-1:-1:-1;11162:175:0;;;;;:::i;:::-;;:::i;33917:48::-;;;;;;;;;;-1:-1:-1;33917:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34168:57;;;;;;;;;;-1:-1:-1;34168:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33315:33;;;;;;;;;;-1:-1:-1;33315:33:0;;;;;;;;;;;33972:38;;;;;;;;;;-1:-1:-1;33972:38:0;;;;;;;;38667:182;;;;;;;;;;-1:-1:-1;38667:182:0;;;;;:::i;:::-;;:::i;38032:256::-;;;;;;;;;;-1:-1:-1;38032:256:0;;;;;:::i;:::-;;:::i;33160:35::-;;;;;;;;;;;;;;;;37243:497;;;;;;;;;;-1:-1:-1;37243:497:0;;;;;:::i;:::-;;:::i;33395:27::-;;;;;;;;;;;;;;;;40395:91;;;;;;;;;;;;;:::i;11400:151::-;;;;;;;;;;-1:-1:-1;11400:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11516:18:0;;;11489:7;11516:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11400:151;40140:247;;;;;;;;;;-1:-1:-1;40140:247:0;;;;;:::i;:::-;;:::i;33202:33::-;;;;;;;;;;;;;;;;33429:30;;;;;;;;;;;;;;;;3024:201;;;;;;;;;;-1:-1:-1;3024:201:0;;;;;:::i;:::-;;:::i;33046:42::-;;;;;;;;;;;;;;;33534:31;;;;;;;;;;;;;;;;33242:24;;;;;;;;;;;;;;;;39174:316;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;;;;;;;;;39293:10:::1;:20:::0;;;39324:16:::1;:32:::0;;;39383:29:::1;39343:13:::0;39306:7;39383:29:::1;:::i;:::-;39367:13;:45:::0;;;39448:1:::1;-1:-1:-1::0;39431:18:0::1;39423:59;;;::::0;-1:-1:-1;;;39423:59:0;;5574:2:1;39423:59:0::1;::::0;::::1;5556:21:1::0;5613:2;5593:18;;;5586:30;5652;5632:18;;;5625:58;5700:18;;39423:59:0::1;5372:352:1::0;39423:59:0::1;39174:316:::0;;:::o;9531:100::-;9585:13;9618:5;9611:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9531:100;:::o;11698:169::-;11781:4;11798:39;868:10;11821:7;11830:6;11798:8;:39::i;:::-;-1:-1:-1;11855:4:0;11698:169;;;;;:::o;37749:275::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;37886:4:::1;37878;37857:13;10739:12:::0;;;10651:108;37857:13:::1;:17;::::0;37873:1:::1;37857:17;:::i;:::-;37856:26;;;;:::i;:::-;37855:35;;;;:::i;:::-;37845:6;:45;;37823:142;;;::::0;-1:-1:-1;;;37823:142:0;;6711:2:1;37823:142:0::1;::::0;::::1;6693:21:1::0;6750:2;6730:18;;;6723:30;6789:34;6769:18;;;6762:62;-1:-1:-1;;;6840:18:1;;;6833:45;6895:19;;37823:142:0::1;6509:411:1::0;37823:142:0::1;37999:17;:6:::0;38009::::1;37999:17;:::i;:::-;37976:20;:40:::0;-1:-1:-1;37749:275:0:o;12349:492::-;12489:4;12506:36;12516:6;12524:9;12535:6;12506:9;:36::i;:::-;-1:-1:-1;;;;;12582:19:0;;12555:24;12582:19;;;:11;:19;;;;;;;;868:10;12582:33;;;;;;;;12634:26;;;;12626:79;;;;-1:-1:-1;;;12626:79:0;;7127:2:1;12626:79:0;;;7109:21:1;7166:2;7146:18;;;7139:30;7205:34;7185:18;;;7178:62;-1:-1:-1;;;7256:18:1;;;7249:38;7304:19;;12626:79:0;6925:404:1;12626:79:0;12741:57;12750:6;868:10;12791:6;12772:16;:25;12741:8;:57::i;:::-;-1:-1:-1;12829:4:0;;12349:492;-1:-1:-1;;;;12349:492:0:o;13250:215::-;868:10;13338:4;13387:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13387:34:0;;;;;;;;;;13338:4;;13355:80;;13378:7;;13387:47;;13424:10;;13387:47;:::i;:::-;13355:8;:80::i;38857:309::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;38975:9:::1;:19:::0;;;39005:15:::1;:31:::0;;;39062:27:::1;39023:13:::0;38987:7;39062:27:::1;:::i;:::-;39047:12;:42:::0;;;39124:1:::1;-1:-1:-1::0;39108:17:0::1;39100:58;;;::::0;-1:-1:-1;;;39100:58:0;;5574:2:1;39100:58:0::1;::::0;::::1;5556:21:1::0;5613:2;5593:18;;;5586:30;5652;5632:18;;;5625:58;5700:18;;39100:58:0::1;5372:352:1::0;2766:103:0;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;2831:30:::1;2858:1;2831:18;:30::i;:::-;2766:103::o:0;37052:121::-;2188:6;;37104:4;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;37121:14:0::1;:22:::0;;-1:-1:-1;;37121:22:0::1;::::0;;;37052:121;:::o;38296:167::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38409:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;38409:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38296:167::o;36852:148::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;36907:18:::1;:25:::0;;-1:-1:-1;;36907:25:0::1;36928:4;36907:25;::::0;;36943:13:::1;:20:::0;;36974:18;-1:-1:-1;;36974:18:0;;;;;;36852:148::o;38559:100::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;38630:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;38630:21:0;;::::1;::::0;;;::::1;::::0;;38559:100::o;9750:104::-;9806:13;9839:7;9832:14;;;;;:::i;39498:304::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;39642:13:::1;-1:-1:-1::0;;;;;39634:21:0::1;:4;-1:-1:-1::0;;;;;39634:21:0::1;::::0;39612:128:::1;;;::::0;-1:-1:-1;;;39612:128:0;;7536:2:1;39612:128:0::1;::::0;::::1;7518:21:1::0;7575:2;7555:18;;;7548:30;7614:34;7594:18;;;7587:62;7685:27;7665:18;;;7658:55;7730:19;;39612:128:0::1;7334:421:1::0;39612:128:0::1;39753:41;39782:4;39788:5;39753:28;:41::i;13968:413::-:0;868:10;14061:4;14105:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14105:34:0;;;;;;;;;;14158:35;;;;14150:85;;;;-1:-1:-1;;;14150:85:0;;7962:2:1;14150:85:0;;;7944:21:1;8001:2;7981:18;;;7974:30;8040:34;8020:18;;;8013:62;-1:-1:-1;;;8091:18:1;;;8084:35;8136:19;;14150:85:0;7760:401:1;14150:85:0;14271:67;868:10;14294:7;14322:15;14303:16;:34;14271:8;:67::i;:::-;-1:-1:-1;14369:4:0;;13968:413;-1:-1:-1;;;13968:413:0:o;11162:175::-;11248:4;11265:42;868:10;11289:9;11300:6;11265:9;:42::i;38667:182::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38752:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38752:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38807:34;;1416:41:1;;;38807:34:0::1;::::0;1389:18:1;38807:34:0::1;;;;;;;38667:182:::0;;:::o;38032:256::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;38172:4:::1;38164;38143:13;10739:12:::0;;;10651:108;38143:13:::1;:17;::::0;38159:1:::1;38143:17;:::i;:::-;38142:26;;;;:::i;:::-;38141:35;;;;:::i;:::-;38131:6;:45;;38109:131;;;::::0;-1:-1:-1;;;38109:131:0;;8368:2:1;38109:131:0::1;::::0;::::1;8350:21:1::0;8407:2;8387:18;;;8380:30;8446:34;8426:18;;;8419:62;-1:-1:-1;;;8497:18:1;;;8490:34;8541:19;;38109:131:0::1;8166:400:1::0;38109:131:0::1;38263:17;:6:::0;38273::::1;38263:17;:::i;:::-;38251:9;:29:::0;-1:-1:-1;38032:256:0:o;37243:497::-;2188:6;;37351:4;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;37430:6:::1;37409:13;10739:12:::0;;;10651:108;37409:13:::1;:17;::::0;37425:1:::1;37409:17;:::i;:::-;37408:28;;;;:::i;:::-;37395:9;:41;;37373:144;;;::::0;-1:-1:-1;;;37373:144:0;;8773:2:1;37373:144:0::1;::::0;::::1;8755:21:1::0;8812:2;8792:18;;;8785:30;8851:34;8831:18;;;8824:62;-1:-1:-1;;;8902:18:1;;;8895:51;8963:19;;37373:144:0::1;8571:417:1::0;37373:144:0::1;37585:4;37564:13;10739:12:::0;;;10651:108;37564:13:::1;:17;::::0;37580:1:::1;37564:17;:::i;:::-;37563:26;;;;:::i;:::-;37550:9;:39;;37528:141;;;::::0;-1:-1:-1;;;37528:141:0;;9195:2:1;37528:141:0::1;::::0;::::1;9177:21:1::0;9234:2;9214:18;;;9207:30;9273:34;9253:18;;;9246:62;-1:-1:-1;;;9324:18:1;;;9317:50;9384:19;;37528:141:0::1;8993:416:1::0;37528:141:0::1;-1:-1:-1::0;37680:18:0::1;:30:::0;37728:4:::1;::::0;37243:497::o;40395:91::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;40452:18:::1;:26:::0;;-1:-1:-1;;40452:26:0::1;::::0;;40395:91::o;40140:247::-;40221:13;;;;;;;40199:46;;;;;;-1:-1:-1;;;;;40260:6:0;:20;;868:10;40260:54;;-1:-1:-1;;;;;;40260:54:0;;;;;;;-1:-1:-1;;;;;9672:15:1;;;40260:54:0;;;9654:34:1;40303:4:0;9704:18:1;;;9697:43;9756:18;;;9749:34;;;9589:18;;40260:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40256:124;;;868:10;40331:30;;;;:16;:30;;;;;:37;;-1:-1:-1;;40331:37:0;40364:4;40331:37;;;40256:124;40140:247;:::o;3024:201::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3113:22:0;::::1;3105:73;;;::::0;-1:-1:-1;;;3105:73:0;;10246:2:1;3105:73:0::1;::::0;::::1;10228:21:1::0;10285:2;10265:18;;;10258:30;10324:34;10304:18;;;10297:62;-1:-1:-1;;;10375:18:1;;;10368:36;10421:19;;3105:73:0::1;10044:402:1::0;3105:73:0::1;3189:28;3208:8;3189:18;:28::i;17652:380::-:0;-1:-1:-1;;;;;17788:19:0;;17780:68;;;;-1:-1:-1;;;17780:68:0;;10653:2:1;17780:68:0;;;10635:21:1;10692:2;10672:18;;;10665:30;10731:34;10711:18;;;10704:62;-1:-1:-1;;;10782:18:1;;;10775:34;10826:19;;17780:68:0;10451:400:1;17780:68:0;-1:-1:-1;;;;;17867:21:0;;17859:68;;;;-1:-1:-1;;;17859:68:0;;11058:2:1;17859:68:0;;;11040:21:1;11097:2;11077:18;;;11070:30;11136:34;11116:18;;;11109:62;-1:-1:-1;;;11187:18:1;;;11180:32;11229:19;;17859:68:0;10856:398:1;17859:68:0;-1:-1:-1;;;;;17940:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17992:32;;2101:25:1;;;17992:32:0;;2074:18:1;17992:32:0;;;;;;;17652:380;;;:::o;40498:4030::-;-1:-1:-1;;;;;40630:18:0;;40622:68;;;;-1:-1:-1;;;40622:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40709:16:0;;40701:64;;;;-1:-1:-1;;;40701:64:0;;;;;;;:::i;:::-;40782:6;40792:1;40782:11;40778:93;;40810:28;40826:4;40832:2;40836:1;40810:15;:28::i;:::-;40498:4030;;;:::o;40778:93::-;40887:14;;;;40883:1946;;;2188:6;;-1:-1:-1;;;;;40940:15:0;;;2188:6;;40940:15;;;;:49;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;40976:13:0;;;2188:6;;40976:13;;40940:49;:86;;;;-1:-1:-1;;;;;;41010:16:0;;;;40940:86;:128;;;;-1:-1:-1;;;;;;41047:21:0;;41061:6;41047:21;;40940:128;:158;;;;-1:-1:-1;41090:8:0;;-1:-1:-1;;;41090:8:0;;;;41089:9;40940:158;40918:1900;;;41138:13;;;;;;;41133:223;;-1:-1:-1;;;;;41210:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;41239:23:0;;;;;;:19;:23;;;;;;;;41210:52;41176:160;;;;-1:-1:-1;;;41176:160:0;;12271:2:1;41176:160:0;;;12253:21:1;12310:2;12290:18;;;12283:30;-1:-1:-1;;;12329:18:1;;;12322:52;12391:18;;41176:160:0;12069:346:1;41176:160:0;-1:-1:-1;;;;;41430:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;41487:35:0;;;;;;:31;:35;;;;;;;;41486:36;41430:92;41404:1399;;;41569:18;;;;41565:231;;;-1:-1:-1;;;;;41654:20:0;;;;;;:16;:20;;;;;;;;:28;;:20;:28;41616:156;;;;-1:-1:-1;;;41616:156:0;;12622:2:1;41616:156:0;;;12604:21:1;12661:2;12641:18;;;12634:30;12700:32;12680:18;;;12673:60;12750:18;;41616:156:0;12420:354:1;41616:156:0;41861:20;;41851:6;:30;;41817:169;;;;-1:-1:-1;;;41817:169:0;;12981:2:1;41817:169:0;;;12963:21:1;13020:2;13000:18;;;12993:30;13059:34;13039:18;;;13032:62;-1:-1:-1;;;13110:18:1;;;13103:51;13171:19;;41817:169:0;12779:417:1;41817:169:0;42069:9;;-1:-1:-1;;;;;10923:18:0;;10896:7;10923:18;;;;;;;;;;;42043:22;;:6;:22;:::i;:::-;:35;;42009:140;;;;-1:-1:-1;;;42009:140:0;;13403:2:1;42009:140:0;;;13385:21:1;13442:2;13422:18;;;13415:30;-1:-1:-1;;;13461:18:1;;;13454:49;13520:18;;42009:140:0;13201:343:1;42009:140:0;41404:1399;;;-1:-1:-1;;;;;42247:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;42302:37:0;;;;;;:31;:37;;;;;;;;42301:38;42247:92;42221:582;;;42426:20;;42416:6;:30;;42382:170;;;;-1:-1:-1;;;42382:170:0;;13751:2:1;42382:170:0;;;13733:21:1;13790:2;13770:18;;;13763:30;13829:34;13809:18;;;13802:62;-1:-1:-1;;;13880:18:1;;;13873:52;13942:19;;42382:170:0;13549:418:1;42221:582:0;-1:-1:-1;;;;;42583:35:0;;;;;;:31;:35;;;;;;;;42578:225;;42703:9;;-1:-1:-1;;;;;10923:18:0;;10896:7;10923:18;;;;;;;;;;;42677:22;;:6;:22;:::i;:::-;:35;;42643:140;;;;-1:-1:-1;;;42643:140:0;;13403:2:1;42643:140:0;;;13385:21:1;13442:2;13422:18;;;13415:30;-1:-1:-1;;;13461:18:1;;;13454:49;13520:18;;42643:140:0;13201:343:1;42643:140:0;42890:4;42841:28;10923:18;;;;;;;;;;;42948;;42924:42;;;;;;;42997:35;;-1:-1:-1;43021:11:0;;;;;;;42997:35;:61;;;;-1:-1:-1;43050:8:0;;-1:-1:-1;;;43050:8:0;;;;43049:9;42997:61;:110;;;;-1:-1:-1;;;;;;43076:31:0;;;;;;:25;:31;;;;;;;;43075:32;42997:110;:153;;;;-1:-1:-1;;;;;;43125:25:0;;;;;;:19;:25;;;;;;;;43124:26;42997:153;:194;;;;-1:-1:-1;;;;;;43168:23:0;;;;;;:19;:23;;;;;;;;43167:24;42997:194;42979:326;;;43218:8;:15;;-1:-1:-1;;;;43218:15:0;-1:-1:-1;;;43218:15:0;;;43250:10;:8;:10::i;:::-;43277:8;:16;;-1:-1:-1;;;;43277:16:0;;;42979:326;43333:8;;-1:-1:-1;;;;;43443:25:0;;43317:12;43443:25;;;:19;:25;;;;;;43333:8;-1:-1:-1;;;43333:8:0;;;;;43332:9;;43443:25;;:52;;-1:-1:-1;;;;;;43472:23:0;;;;;;:19;:23;;;;;;;;43443:52;43439:100;;;-1:-1:-1;43522:5:0;43439:100;43551:12;43656:7;43652:823;;;-1:-1:-1;;;;;43708:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;43757:1;43741:13;;:17;43708:50;43704:622;;;43786:34;43816:3;43786:25;43797:13;;43786:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;43779:41;;43889:13;;43869:16;;43862:4;:23;;;;:::i;:::-;43861:41;;;;:::i;:::-;43839:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;43959:13:0;;43945:10;;43938:17;;:4;:17;:::i;:::-;43937:35;;;;:::i;:::-;43921:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;43704:622:0;;-1:-1:-1;43704:622:0;;-1:-1:-1;;;;;44050:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;44100:1;44085:12;;:16;44050:51;44046:280;;;44129:33;44158:3;44129:24;44140:12;;44129:6;:10;;:24;;;;:::i;:33::-;44122:40;;44230:12;;44211:15;;44204:4;:22;;;;:::i;:::-;44203:39;;;;:::i;:::-;44181:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44298:12:0;;44285:9;;44278:16;;:4;:16;:::i;:::-;44277:33;;;;:::i;:::-;44261:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;44046:280:0;44346:8;;44342:91;;44375:42;44391:4;44405;44412;44375:15;:42::i;:::-;44449:14;44459:4;44449:14;;:::i;:::-;;;43652:823;44487:33;44503:4;44509:2;44513:6;44487:15;:33::i;:::-;40611:3917;;;;40498:4030;;;:::o;3385:191::-;3478:6;;;-1:-1:-1;;;;;3495:17:0;;;-1:-1:-1;;;;;;3495:17:0;;;;;;;3528:40;;3478:6;;;3495:17;3478:6;;3528:40;;3459:16;;3528:40;3448:128;3385:191;:::o;39810:188::-;-1:-1:-1;;;;;39893:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39893:39:0;;;;;;;;;;39950:40;;39893:39;;:31;39950:40;;;39810:188;;:::o;14871:733::-;-1:-1:-1;;;;;15011:20:0;;15003:70;;;;-1:-1:-1;;;15003:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15092:23:0;;15084:71;;;;-1:-1:-1;;;15084:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15252:17:0;;15228:21;15252:17;;;;;;;;;;;15288:23;;;;15280:74;;;;-1:-1:-1;;;15280:74:0;;14307:2:1;15280:74:0;;;14289:21:1;14346:2;14326:18;;;14319:30;14385:34;14365:18;;;14358:62;-1:-1:-1;;;14436:18:1;;;14429:36;14482:19;;15280:74:0;14105:402:1;15280:74:0;-1:-1:-1;;;;;15390:17:0;;;:9;:17;;;;;;;;;;;15410:22;;;15390:42;;15454:20;;;;;;;;:30;;15426:6;;15390:9;15454:30;;15426:6;;15454:30;:::i;:::-;;;;;;;;15519:9;-1:-1:-1;;;;;15502:35:0;15511:6;-1:-1:-1;;;;;15502:35:0;;15530:6;15502:35;;;;2101:25:1;;2089:2;2074:18;;1955:177;15502:35:0;;;;;;;;14992:612;14871:733;;;:::o;45656:1413::-;45739:4;45695:23;10923:18;;;;;;;;;;;45695:50;;45756:25;45805:12;;45784:18;;:33;;;;:::i;:::-;45756:61;-1:-1:-1;45828:12:0;45857:20;;;:46;;-1:-1:-1;45881:22:0;;45857:46;45853:85;;;45920:7;;;45656:1413::o;45853:85::-;45972:18;;:23;;45993:2;45972:23;:::i;:::-;45954:15;:41;45950:115;;;46030:18;;:23;;46051:2;46030:23;:::i;:::-;46012:41;;45950:115;46126:23;46213:1;46193:17;46171:18;;46153:15;:36;;;;:::i;:::-;46152:58;;;;:::i;:::-;:62;;;;:::i;:::-;46126:88;-1:-1:-1;46225:26:0;46254:36;:15;46126:88;46254:19;:36::i;:::-;46225:65;-1:-1:-1;46331:21:0;46365:36;46225:65;46365:16;:36::i;:::-;46414:18;46435:44;:21;46461:17;46435:25;:44::i;:::-;46414:65;;46493:17;46513:51;46546:17;46513:28;46528:12;;46513:10;:14;;:28;;;;:::i;:51::-;46493:71;-1:-1:-1;46577:23:0;46603:22;46493:71;46603:10;:22;:::i;:::-;46659:1;46638:18;:22;;;46671:12;:16;46577:48;-1:-1:-1;46704:19:0;;;;;:42;;;46745:1;46727:15;:19;46704:42;46700:278;;;46763:46;46776:15;46793;46763:12;:46::i;:::-;46933:18;;46829:137;;;14714:25:1;;;14770:2;14755:18;;14748:34;;;14798:18;;;14791:34;;;;46829:137:0;;;;;;14702:2:1;46829:137:0;;;46700:278;47012:9;;47004:57;;-1:-1:-1;;;;;47012:9:0;;;;47035:21;;47004:57;;;;47035:21;47012:9;47004:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;45656:1413:0:o;23105:98::-;23163:7;23190:5;23194:1;23190;:5;:::i;:::-;23183:12;23105:98;-1:-1:-1;;;23105:98:0:o;23504:::-;23562:7;23589:5;23593:1;23589;:5;:::i;22748:98::-;22806:7;22833:5;22837:1;22833;:5;:::i;44536:589::-;44686:16;;;44700:1;44686:16;;;;;;;;44662:21;;44686:16;;;;;;;;;;-1:-1:-1;44686:16:0;44662:40;;44731:4;44713;44718:1;44713:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44713:23:0;;;-1:-1:-1;;;;;44713:23:0;;;;;44757:15;-1:-1:-1;;;;;44757:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44747:4;44752:1;44747:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44747:32:0;;;-1:-1:-1;;;;;44747:32:0;;;;;44792:62;44809:4;44824:15;44842:11;44792:8;:62::i;:::-;44893:224;;-1:-1:-1;;;44893:224:0;;-1:-1:-1;;;;;44893:15:0;:66;;;;:224;;44974:11;;45000:1;;45044:4;;45071;;45091:15;;44893:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44591:534;44536:589;:::o;45133:515::-;45281:62;45298:4;45313:15;45331:11;45281:8;:62::i;:::-;45590:9;;45386:254;;-1:-1:-1;;;45386:254:0;;45458:4;45386:254;;;16892:34:1;16942:18;;;16935:34;;;45504:1:0;16985:18:1;;;16978:34;;;17028:18;;;17021:34;-1:-1:-1;;;;;45590:9:0;;;17071:19:1;;;17064:44;45614:15:0;17124:19:1;;;17117:35;45386:15:0;:31;;;;;;45425:9;;16826:19:1;;45386:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45133:515;;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:131::-;-1:-1:-1;;;;;895:31:1;;885:42;;875:70;;941:1;938;931:12;956:315;1024:6;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1140:9;1127:23;1159:31;1184:5;1159:31;:::i;:::-;1209:5;1261:2;1246:18;;;;1233:32;;-1:-1:-1;;;956:315:1:o;1468:247::-;1527:6;1580:2;1568:9;1559:7;1555:23;1551:32;1548:52;;;1596:1;1593;1586:12;1548:52;1635:9;1622:23;1654:31;1679:5;1654:31;:::i;2137:180::-;2196:6;2249:2;2237:9;2228:7;2224:23;2220:32;2217:52;;;2265:1;2262;2255:12;2217:52;-1:-1:-1;2288:23:1;;2137:180;-1:-1:-1;2137:180:1:o;2322:456::-;2399:6;2407;2415;2468:2;2456:9;2447:7;2443:23;2439:32;2436:52;;;2484:1;2481;2474:12;2436:52;2523:9;2510:23;2542:31;2567:5;2542:31;:::i;:::-;2592:5;-1:-1:-1;2649:2:1;2634:18;;2621:32;2662:33;2621:32;2662:33;:::i;:::-;2322:456;;2714:7;;-1:-1:-1;;;2768:2:1;2753:18;;;;2740:32;;2322:456::o;3180:118::-;3266:5;3259:13;3252:21;3245:5;3242:32;3232:60;;3288:1;3285;3278:12;3303:382;3368:6;3376;3429:2;3417:9;3408:7;3404:23;3400:32;3397:52;;;3445:1;3442;3435:12;3397:52;3484:9;3471:23;3503:31;3528:5;3503:31;:::i;:::-;3553:5;-1:-1:-1;3610:2:1;3595:18;;3582:32;3623:30;3582:32;3623:30;:::i;:::-;3672:7;3662:17;;;3303:382;;;;;:::o;3690:241::-;3746:6;3799:2;3787:9;3778:7;3774:23;3770:32;3767:52;;;3815:1;3812;3805:12;3767:52;3854:9;3841:23;3873:28;3895:5;3873:28;:::i;3936:388::-;4004:6;4012;4065:2;4053:9;4044:7;4040:23;4036:32;4033:52;;;4081:1;4078;4071:12;4033:52;4120:9;4107:23;4139:31;4164:5;4139:31;:::i;:::-;4189:5;-1:-1:-1;4246:2:1;4231:18;;4218:32;4259:33;4218:32;4259:33;:::i;4749:356::-;4951:2;4933:21;;;4970:18;;;4963:30;5029:34;5024:2;5009:18;;5002:62;5096:2;5081:18;;4749:356::o;5110:127::-;5171:10;5166:3;5162:20;5159:1;5152:31;5202:4;5199:1;5192:15;5226:4;5223:1;5216:15;5242:125;5307:9;;;5328:10;;;5325:36;;;5341:18;;:::i;5729:380::-;5808:1;5804:12;;;;5851;;;5872:61;;5926:4;5918:6;5914:17;5904:27;;5872:61;5979:2;5971:6;5968:14;5948:18;5945:38;5942:161;;6025:10;6020:3;6016:20;6013:1;6006:31;6060:4;6057:1;6050:15;6088:4;6085:1;6078:15;5942:161;;5729:380;;;:::o;6114:168::-;6154:7;6220:1;6216;6212:6;6208:14;6205:1;6202:21;6197:1;6190:9;6183:17;6179:45;6176:71;;;6227:18;;:::i;:::-;-1:-1:-1;6267:9:1;;6114:168::o;6287:217::-;6327:1;6353;6343:132;;6397:10;6392:3;6388:20;6385:1;6378:31;6432:4;6429:1;6422:15;6460:4;6457:1;6450:15;6343:132;-1:-1:-1;6489:9:1;;6287:217::o;9794:245::-;9861:6;9914:2;9902:9;9893:7;9889:23;9885:32;9882:52;;;9930:1;9927;9920:12;9882:52;9962:9;9956:16;9981:28;10003:5;9981:28;:::i;11259:401::-;11461:2;11443:21;;;11500:2;11480:18;;;11473:30;11539:34;11534:2;11519:18;;11512:62;-1:-1:-1;;;11605:2:1;11590:18;;11583:35;11650:3;11635:19;;11259:401::o;11665:399::-;11867:2;11849:21;;;11906:2;11886:18;;;11879:30;11945:34;11940:2;11925:18;;11918:62;-1:-1:-1;;;12011:2:1;11996:18;;11989:33;12054:3;12039:19;;11665:399::o;13972:128::-;14039:9;;;14060:11;;;14057:37;;;14074:18;;:::i;15178:127::-;15239:10;15234:3;15230:20;15227:1;15220:31;15270:4;15267:1;15260:15;15294:4;15291:1;15284:15;15310:251;15380:6;15433:2;15421:9;15412:7;15408:23;15404:32;15401:52;;;15449:1;15446;15439:12;15401:52;15481:9;15475:16;15500:31;15525:5;15500:31;:::i;15566:980::-;15828:4;15876:3;15865:9;15861:19;15907:6;15896:9;15889:25;15933:2;15971:6;15966:2;15955:9;15951:18;15944:34;16014:3;16009:2;15998:9;15994:18;15987:31;16038:6;16073;16067:13;16104:6;16096;16089:22;16142:3;16131:9;16127:19;16120:26;;16181:2;16173:6;16169:15;16155:29;;16202:1;16212:195;16226:6;16223:1;16220:13;16212:195;;;16291:13;;-1:-1:-1;;;;;16287:39:1;16275:52;;16382:15;;;;16347:12;;;;16323:1;16241:9;16212:195;;;-1:-1:-1;;;;;;;16463:32:1;;;;16458:2;16443:18;;16436:60;-1:-1:-1;;;16527:3:1;16512:19;16505:35;16424:3;15566:980;-1:-1:-1;;;15566:980:1:o;17163:306::-;17251:6;17259;17267;17320:2;17308:9;17299:7;17295:23;17291:32;17288:52;;;17336:1;17333;17326:12;17288:52;17365:9;17359:16;17349:26;;17415:2;17404:9;17400:18;17394:25;17384:35;;17459:2;17448:9;17444:18;17438:25;17428:35;;17163:306;;;;;:::o

Swarm Source

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