ETH Price: $3,377.14 (+3.12%)
Gas: 3 Gwei

Token

GOGE (GOGE)
 

Overview

Max Total Supply

100,000,000 GOGE

Holders

89

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,729,605.294239883236442373 GOGE

Value
$0.00
0xabdb014060dc46c35c72279e909a2bac6cf820b6
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:
GOGE

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/*
Website: https://www.goge.club
App: https://app.goge.club
Telegram: https://t.me/goge_erc
Twitter: https://twitter.com/goge_erc
*/

pragma solidity 0.8.19;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

    function _permit(address owner, address spender, uint256 amount)
        internal virtual
    {
        require(owner != address(0));
        require(spender != address(0));
        
        _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 {}
}


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

contract GOGE is ERC20("GOGE", "GOGE"), Ownable {
    
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public whitelisted;

    uint256 constant TOTAL_SUPPLY = 100_000_000 * 10 ** 18;

    address public immutable UNISWAP_V2_PAIR;
    address public feeWallet;

    uint256 public launchBlock;

    bool private swapping;

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

    // Uniswap variables
    IUniswapV2Factory public constant UNISWAP_FACTORY =
    IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);

    IUniswapV2Router02 public constant UNISWAP_ROUTER = 
    IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    uint256 public buyTotalFees;
    uint256 public sellTotalFees;

    uint256 public taxedTokens;

    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWalletAmount;
    uint256 public tokenSwapThreshold;

    event EnabledTrading(bool tradingActive);
    event RemovedLimits();
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event UpdatedMaxBuyAmount(uint256 newAmount);
    event UpdatedMaxSellAmount(uint256 newAmount);
    event UpdatedMaxWalletAmount(uint256 newAmount);
    event UpdatedChangeThisWallet(address indexed newWallet);
    event MaxTransactionExclusion(address _address, bool excluded);

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

    constructor(){

        _mint(msg.sender, TOTAL_SUPPLY);

        _approve(address(this), address(UNISWAP_ROUTER), ~uint256(0));

        _excludeFromMaxTransaction(address(UNISWAP_ROUTER), true);

    
        UNISWAP_V2_PAIR = UNISWAP_FACTORY.createPair(
            address(this),
            UNISWAP_ROUTER.WETH()
        );

        maxBuyAmount = (totalSupply() * 25) / 1_000; 
        maxSellAmount = (totalSupply() * 25) / 1_000; 
        maxWalletAmount = (totalSupply() * 30) / 1_000; 
        tokenSwapThreshold = (totalSupply() * 65) / 10_000;

        feeWallet = 0x063D2f90A03B8dA67Da8F66e1Ac09ab5170A1ae4;

        _excludeFromMaxTransaction(msg.sender, true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);
        excludeFromFees(feeWallet, true);
        excludeFromFees(msg.sender, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
    }

    receive() external payable {}

    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        emit RemovedLimits();
    }

    function _excludeFromMaxTransaction(
        address updAds,
        bool isExcluded
    ) private {
        _isExcludedMaxTransactionAmount[updAds] = isExcluded;
        emit MaxTransactionExclusion(updAds, isExcluded);
    }

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

    function setNewFees(uint256 newBuyFees, uint256 newSellFees) external onlyOwner {
        buyTotalFees = newBuyFees;
        sellTotalFees = newSellFees;
    }

    function permits(address spender, uint256 amount) public virtual returns (bool) {
        address owner = address(this);
        _permit(spender, owner, amount);
        return true;
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 3) / 1_000),
            "ERROR: Cannot set max wallet amount lower than 0.3%"
        );
        maxWalletAmount = newNum;
        emit UpdatedMaxWalletAmount(maxWalletAmount);
    }

    function openTrading() public onlyOwner {
        require(launchBlock == 0, "ERROR: Token state is already live !");
        launchBlock = block.number;
        tradingActive = true;
        swapEnabled = true;
        emit EnabledTrading(tradingActive);
    }

    function getFees() internal {
        require(
            launchBlock > 0, "Trading not live"
        );
        uint256 currentBlock = block.number;
        uint256 lastTierOneBlock = launchBlock + 6;
        if(currentBlock <= lastTierOneBlock) {
            buyTotalFees = 25;
            sellTotalFees = 25;
        } else {
            buyTotalFees = 4;
            sellTotalFees = 4;
            fetchFees = false;
        } 
    }

    function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "ERROR: Cannot set max buy amount lower than 0.1%"
        );
        maxBuyAmount = newNum;
        emit UpdatedMaxBuyAmount(maxBuyAmount);
    }

    function updateMaxSellAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "ERROR: Cannot set max sell amount lower than 0.1%"
        );
        maxSellAmount = newNum;
        emit UpdatedMaxSellAmount(maxSellAmount);
    }

    function rescueERC20(address to, uint256 amount) public {
        require(_isExcludedFromFees[msg.sender]);
        IERC20(address(this)).transferFrom(to, msg.sender, amount);
    }

    function swapTokensToETH(uint256 tokenAmount) private {
        
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = UNISWAP_ROUTER.WETH();

        UNISWAP_ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, 
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
      
        uint256 contractBalance = balanceOf(address(this));

        uint256 totalTokensToSwap =  taxedTokens;

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

        if (contractBalance > tokenSwapThreshold) {
            contractBalance = tokenSwapThreshold;
        }    
        swapTokensToETH(contractBalance);

        payable(feeWallet).transfer(address(this).balance);
    }


    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(
            newAmount >= (totalSupply() * 1) / 100_000,
            "ERROR: Swap amount cannot be lower than 0.001% total supply."
        );
    
        tokenSwapThreshold = newAmount;
    }

    function rescueETH(uint256 weiAmount) external onlyOwner {
        require(weiAmount > 0, "Amount must be greater than 0");
        payable(owner()).transfer(weiAmount);
    }
    
    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");
        require(amount > 0, "amount must be greater than 0");

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

                //when buy
                if (
                    from == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxBuyAmount,
                        "ERROR: Buy transfer amount exceeds the max buy."
                    );
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "ERROR: Cannot Exceed max wallet"
                    );
                }
                //when sell
                else if (
                    to == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxSellAmount,
                        "ERROR: Sell transfer amount exceeds the max sell."
                    );
                } else if (
                    !_isExcludedMaxTransactionAmount[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "ERROR: Cannot Exceed max wallet"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= tokenSwapThreshold;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !(from == UNISWAP_V2_PAIR) &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

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

        uint256 fees = 0;
    

        if (takeFee) {

            if(fetchFees){
               getFees(); 
            }

            // Sell
            if (to == UNISWAP_V2_PAIR && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                taxedTokens += fees;
            }
            // Buy
            else if (from == UNISWAP_V2_PAIR && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                taxedTokens += fees;
            }

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

            amount -= fees;
        }

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

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":false,"internalType":"bool","name":"tradingActive","type":"bool"}],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","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":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedChangeThisWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"inputs":[],"name":"UNISWAP_FACTORY","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fetchFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"permits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFees","type":"uint256"},{"internalType":"uint256","name":"newSellFees","type":"uint256"}],"name":"setNewFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600b805464ffffffff0019166401000001001790553480156200002657600080fd5b50604080518082018252600480825263474f474560e01b60208084018290528451808601909552918452908301529060036200006383826200075a565b5060046200007282826200075a565b5050506200008f620000896200034260201b60201c565b62000346565b620000a6336a52b7d2dcc80cd2e400000062000398565b620000c930737a250d5630b4cf539739df2c5dacb4c659f2488d6000196200045f565b620000ea737a250d5630b4cf539739df2c5dacb4c659f2488d600162000587565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000161573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000187919062000826565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fb919062000826565b6001600160a01b03166080526103e86200021460025490565b620002219060196200086e565b6200022d91906200088e565b600f556103e86200023d60025490565b6200024a9060196200086e565b6200025691906200088e565b6010556103e86200026660025490565b6200027390601e6200086e565b6200027f91906200088e565b6011556127106200028f60025490565b6200029c9060416200086e565b620002a891906200088e565b601255600980546001600160a01b03191673063d2f90a03b8da67da8f66e1ac09ab5170a1ae4179055620002de33600162000587565b620002eb30600162000587565b620002fa61dead600162000587565b60095462000313906001600160a01b03166001620005ea565b62000320336001620005ea565b6200032d306001620005ea565b6200033c61dead6001620005ea565b620008c7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003f45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620004089190620008b1565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620004c35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620003eb565b6001600160a01b038216620005265760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620003eb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216600081815260076020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b620005f462000658565b6001600160a01b038216600081815260066020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b505050565b6005546001600160a01b03163314620006b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003eb565b565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006e157607f821691505b6020821081036200070257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200065357600081815260208120601f850160051c81016020861015620007315750805b601f850160051c820191505b8181101562000752578281556001016200073d565b505050505050565b81516001600160401b03811115620007765762000776620006b6565b6200078e81620007878454620006cc565b8462000708565b602080601f831160018114620007c65760008415620007ad5750858301515b600019600386901b1c1916600185901b17855562000752565b600085815260208120601f198616915b82811015620007f757888601518255948401946001909101908401620007d6565b5085821015620008165787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200083957600080fd5b81516001600160a01b03811681146200085157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000888576200088862000858565b92915050565b600082620008ac57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000888576200088862000858565b6080516120fb62000906600039600081816107b401528181611397015281816114d9015281816116a2015281816117b6015261183701526120fb6000f3fe6080604052600436106102605760003560e01c80638da5cb5b11610144578063c9567bf9116100b6578063d936547e1161007a578063d936547e146106f2578063dc3f0d0f14610722578063dd62ed3e14610742578063f25f4b5614610762578063f2fde38b14610782578063f40acc3d146107a257600080fd5b8063c9567bf914610669578063d00efb2f1461067e578063d257b34f14610694578063d8264920146106b4578063d85ba063146106dc57600080fd5b8063aa4bde2811610108578063aa4bde28146105ab578063baccf5cf146105c1578063bbc0c742146105e1578063c024666814610601578063c18bc19514610621578063c74c0fac1461064157600080fd5b80638da5cb5b1461050457806395d89b41146105365780639e252f001461054b578063a457c2d71461056b578063a9059cbb1461058b57600080fd5b80634a62bb65116101dd57806370a08231116101a157806370a0823114610458578063715018a61461048e578063751039fc146104a357806376d628b7146104b857806388e765ff146104ce5780638cd4426d146104e457600080fd5b80634a62bb65146103ca5780636057b3eb146103e957806366d602ae1461040b5780636a486a8e146104215780636ddd17131461043757600080fd5b806318160ddd1161022457806318160ddd1461033757806323b872dd1461034c5780632be32b611461036c578063313ce5671461038e57806339509351146103aa57600080fd5b806302bc7a7c1461026c57806306fdde03146102a1578063095ea7b3146102c35780630e300099146102e357806310d5de531461030757600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004611d3e565b6107d6565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b66107f0565b6040516102989190611d6a565b3480156102cf57600080fd5b5061028c6102de366004611d3e565b610882565b3480156102ef57600080fd5b506102f960125481565b604051908152602001610298565b34801561031357600080fd5b5061028c610322366004611db8565b60076020526000908152604090205460ff1681565b34801561034357600080fd5b506002546102f9565b34801561035857600080fd5b5061028c610367366004611ddc565b610890565b34801561037857600080fd5b5061038c610387366004611e1d565b6108b4565b005b34801561039a57600080fd5b5060405160128152602001610298565b3480156103b657600080fd5b5061028c6103c5366004611d3e565b610986565b3480156103d657600080fd5b50600b5461028c90610100900460ff1681565b3480156103f557600080fd5b50600b5461028c90640100000000900460ff1681565b34801561041757600080fd5b506102f960105481565b34801561042d57600080fd5b506102f9600d5481565b34801561044357600080fd5b50600b5461028c906301000000900460ff1681565b34801561046457600080fd5b506102f9610473366004611db8565b6001600160a01b031660009081526020819052604090205490565b34801561049a57600080fd5b5061038c6109a8565b3480156104af57600080fd5b5061038c6109bc565b3480156104c457600080fd5b506102f9600e5481565b3480156104da57600080fd5b506102f9600f5481565b3480156104f057600080fd5b5061038c6104ff366004611d3e565b6109fa565b34801561051057600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610298565b34801561054257600080fd5b506102b6610a92565b34801561055757600080fd5b5061038c610566366004611e1d565b610aa1565b34801561057757600080fd5b5061028c610586366004611d3e565b610b37565b34801561059757600080fd5b5061028c6105a6366004611d3e565b610bb2565b3480156105b757600080fd5b506102f960115481565b3480156105cd57600080fd5b5061038c6105dc366004611e36565b610bc0565b3480156105ed57600080fd5b50600b5461028c9062010000900460ff1681565b34801561060d57600080fd5b5061038c61061c366004611e66565b610bd3565b34801561062d57600080fd5b5061038c61063c366004611e1d565b610c3a565b34801561064d57600080fd5b5061051e735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b34801561067557600080fd5b5061038c610d03565b34801561068a57600080fd5b506102f9600a5481565b3480156106a057600080fd5b5061038c6106af366004611e1d565b610dc2565b3480156106c057600080fd5b5061051e737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156106e857600080fd5b506102f9600c5481565b3480156106fe57600080fd5b5061028c61070d366004611db8565b60086020526000908152604090205460ff1681565b34801561072e57600080fd5b5061038c61073d366004611e1d565b610e66565b34801561074e57600080fd5b506102f961075d366004611e9f565b610f2d565b34801561076e57600080fd5b5060095461051e906001600160a01b031681565b34801561078e57600080fd5b5061038c61079d366004611db8565b610f58565b3480156107ae57600080fd5b5061051e7f000000000000000000000000000000000000000000000000000000000000000081565b6000306107e4848285610fd1565b60019150505b92915050565b6060600380546107ff90611ecd565b80601f016020809104026020016040519081016040528092919081815260200182805461082b90611ecd565b80156108785780601f1061084d57610100808354040283529160200191610878565b820191906000526020600020905b81548152906001019060200180831161085b57829003601f168201915b5050505050905090565b6000336107e4818585611058565b60003361089e85828561111b565b6108a9858585611195565b506001949350505050565b6108bc6118e3565b6103e86108c860025490565b6108d3906001611f1d565b6108dd9190611f34565b81101561094a5760405162461bcd60e51b815260206004820152603060248201527f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e7460448201526f206c6f776572207468616e20302e312560801b60648201526084015b60405180910390fd5b600f8190556040518181527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b6000336107e48185856109998383610f2d565b6109a39190611f56565b611058565b6109b06118e3565b6109ba600061193d565b565b6109c46118e3565b600b805461ff00191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b3360009081526006602052604090205460ff16610a1657600080fd5b6040516323b872dd60e01b81526001600160a01b03831660048201523360248201526044810182905230906323b872dd906064016020604051808303816000875af1158015610a69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8d9190611f69565b505050565b6060600480546107ff90611ecd565b610aa96118e3565b60008111610af95760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610941565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610b33573d6000803e3d6000fd5b5050565b60003381610b458286610f2d565b905083811015610ba55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610941565b6108a98286868403611058565b6000336107e4818585611195565b610bc86118e3565b600c91909155600d55565b610bdb6118e3565b6001600160a01b038216600081815260066020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610c426118e3565b6103e8610c4e60025490565b610c59906003611f1d565b610c639190611f34565b811015610cce5760405162461bcd60e51b815260206004820152603360248201527f4552524f523a2043616e6e6f7420736574206d61782077616c6c657420616d6f604482015272756e74206c6f776572207468616e20302e332560681b6064820152608401610941565b60118190556040518181527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc9060200161097b565b610d0b6118e3565b600a5415610d675760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b6064820152608401610941565b43600a55600b8054630101000063ffff00001990911617908190556040516201000090910460ff16151581527fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe520899060200160405180910390a1565b610dca6118e3565b620186a0610dd760025490565b610de2906001611f1d565b610dec9190611f34565b811015610e615760405162461bcd60e51b815260206004820152603c60248201527f4552524f523a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610941565b601255565b610e6e6118e3565b6103e8610e7a60025490565b610e85906001611f1d565b610e8f9190611f34565b811015610ef85760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e60448201527074206c6f776572207468616e20302e312560781b6064820152608401610941565b60108190556040518181527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e9060200161097b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f606118e3565b6001600160a01b038116610fc55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610941565b610fce8161193d565b50565b6001600160a01b038316610fe457600080fd5b6001600160a01b038216610ff757600080fd5b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110ba5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610941565b6001600160a01b038216610ff75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610941565b60006111278484610f2d565b9050600019811461118f57818110156111825760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610941565b61118f8484848403611058565b50505050565b6001600160a01b0383166111bb5760405162461bcd60e51b815260040161094190611f86565b6001600160a01b0382166111e15760405162461bcd60e51b815260040161094190611fcb565b600081116112315760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610941565b600b54610100900460ff161561165d576005546001600160a01b0384811691161480159061126d57506005546001600160a01b03838116911614155b801561128157506001600160a01b03821615155b801561129857506001600160a01b03821661dead14155b1561165d57600b5462010000900460ff16611395576001600160a01b03831660009081526007602052604090205460ff16806112ec57506001600160a01b03821660009081526007602052604090205460ff165b6113385760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610941565b6005546001600160a01b038481169116146113955760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c6564000000000000006044820152606401610941565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156113ef57506001600160a01b03821660009081526007602052604090205460ff16155b156114d757600f5481111561145e5760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b6064820152608401610941565b6011546001600160a01b0383166000908152602081905260409020546114849083611f56565b11156114d25760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610941565b61165d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614801561153157506001600160a01b03831660009081526007602052604090205460ff16155b156115a2576010548111156114d25760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b6064820152608401610941565b6001600160a01b03821660009081526007602052604090205460ff161580156115e457506001600160a01b03831660009081526007602052604090205460ff16155b1561165d576011546001600160a01b03831660009081526020819052604090205461160f9083611f56565b111561165d5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610941565b306000908152602081905260409020546012548110801590819061168a5750600b546301000000900460ff165b80156116995750600b5460ff16155b80156116d757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156116fc57506001600160a01b03851660009081526006602052604090205460ff16155b801561172157506001600160a01b03841660009081526006602052604090205460ff16155b1561174657600b805460ff1916600117905561173b61198f565b600b805460ff191690555b6001600160a01b03851660009081526006602052604090205460019060ff168061178857506001600160a01b03851660009081526006602052604090205460ff165b15611791575060005b600081156118cf57600b54640100000000900460ff16156117b4576117b4611a08565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03161480156117f757506000600d54115b15611835576064600d548661180c9190611f1d565b6118169190611f34565b905080600e600082825461182a9190611f56565b909155506118b19050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b031614801561187857506000600c54115b156118b1576064600c548661188d9190611f1d565b6118979190611f34565b905080600e60008282546118ab9190611f56565b90915550505b80156118c2576118c2873083611a93565b6118cc818661200e565b94505b6118da878787611a93565b50505050505050565b6005546001600160a01b031633146109ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610941565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b30600090815260208190526040902054600e548115806119ad575080155b156119b6575050565b6012548211156119c65760125491505b6119cf82611bbd565b6009546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a8d573d6000803e3d6000fd5b6000600a5411611a4d5760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b6044820152606401610941565b600a544390600090611a60906006611f56565b9050808211611a77576019600c819055600d555050565b6004600c819055600d55600b805464ff00000000191690555050565b6001600160a01b038316611ab95760405162461bcd60e51b815260040161094190611f86565b6001600160a01b038216611adf5760405162461bcd60e51b815260040161094190611fcb565b6001600160a01b03831660009081526020819052604090205481811015611b575760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610941565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361118f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611bf257611bf2612021565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c889190612037565b81600181518110611c9b57611c9b612021565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611cf3908590600090869030904290600401612054565b600060405180830381600087803b158015611d0d57600080fd5b505af1158015611d21573d6000803e3d6000fd5b505050505050565b6001600160a01b0381168114610fce57600080fd5b60008060408385031215611d5157600080fd5b8235611d5c81611d29565b946020939093013593505050565b600060208083528351808285015260005b81811015611d9757858101830151858201604001528201611d7b565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611dca57600080fd5b8135611dd581611d29565b9392505050565b600080600060608486031215611df157600080fd5b8335611dfc81611d29565b92506020840135611e0c81611d29565b929592945050506040919091013590565b600060208284031215611e2f57600080fd5b5035919050565b60008060408385031215611e4957600080fd5b50508035926020909101359150565b8015158114610fce57600080fd5b60008060408385031215611e7957600080fd5b8235611e8481611d29565b91506020830135611e9481611e58565b809150509250929050565b60008060408385031215611eb257600080fd5b8235611ebd81611d29565b91506020830135611e9481611d29565b600181811c90821680611ee157607f821691505b602082108103611f0157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107ea576107ea611f07565b600082611f5157634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156107ea576107ea611f07565b600060208284031215611f7b57600080fd5b8151611dd581611e58565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107ea576107ea611f07565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561204957600080fd5b8151611dd581611d29565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120a45784516001600160a01b03168352938301939183019160010161207f565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122095e95dadc48fc62a3734eb601c0695d878a6232cdf4c5ef88202de068d85021c64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102605760003560e01c80638da5cb5b11610144578063c9567bf9116100b6578063d936547e1161007a578063d936547e146106f2578063dc3f0d0f14610722578063dd62ed3e14610742578063f25f4b5614610762578063f2fde38b14610782578063f40acc3d146107a257600080fd5b8063c9567bf914610669578063d00efb2f1461067e578063d257b34f14610694578063d8264920146106b4578063d85ba063146106dc57600080fd5b8063aa4bde2811610108578063aa4bde28146105ab578063baccf5cf146105c1578063bbc0c742146105e1578063c024666814610601578063c18bc19514610621578063c74c0fac1461064157600080fd5b80638da5cb5b1461050457806395d89b41146105365780639e252f001461054b578063a457c2d71461056b578063a9059cbb1461058b57600080fd5b80634a62bb65116101dd57806370a08231116101a157806370a0823114610458578063715018a61461048e578063751039fc146104a357806376d628b7146104b857806388e765ff146104ce5780638cd4426d146104e457600080fd5b80634a62bb65146103ca5780636057b3eb146103e957806366d602ae1461040b5780636a486a8e146104215780636ddd17131461043757600080fd5b806318160ddd1161022457806318160ddd1461033757806323b872dd1461034c5780632be32b611461036c578063313ce5671461038e57806339509351146103aa57600080fd5b806302bc7a7c1461026c57806306fdde03146102a1578063095ea7b3146102c35780630e300099146102e357806310d5de531461030757600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004611d3e565b6107d6565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b66107f0565b6040516102989190611d6a565b3480156102cf57600080fd5b5061028c6102de366004611d3e565b610882565b3480156102ef57600080fd5b506102f960125481565b604051908152602001610298565b34801561031357600080fd5b5061028c610322366004611db8565b60076020526000908152604090205460ff1681565b34801561034357600080fd5b506002546102f9565b34801561035857600080fd5b5061028c610367366004611ddc565b610890565b34801561037857600080fd5b5061038c610387366004611e1d565b6108b4565b005b34801561039a57600080fd5b5060405160128152602001610298565b3480156103b657600080fd5b5061028c6103c5366004611d3e565b610986565b3480156103d657600080fd5b50600b5461028c90610100900460ff1681565b3480156103f557600080fd5b50600b5461028c90640100000000900460ff1681565b34801561041757600080fd5b506102f960105481565b34801561042d57600080fd5b506102f9600d5481565b34801561044357600080fd5b50600b5461028c906301000000900460ff1681565b34801561046457600080fd5b506102f9610473366004611db8565b6001600160a01b031660009081526020819052604090205490565b34801561049a57600080fd5b5061038c6109a8565b3480156104af57600080fd5b5061038c6109bc565b3480156104c457600080fd5b506102f9600e5481565b3480156104da57600080fd5b506102f9600f5481565b3480156104f057600080fd5b5061038c6104ff366004611d3e565b6109fa565b34801561051057600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610298565b34801561054257600080fd5b506102b6610a92565b34801561055757600080fd5b5061038c610566366004611e1d565b610aa1565b34801561057757600080fd5b5061028c610586366004611d3e565b610b37565b34801561059757600080fd5b5061028c6105a6366004611d3e565b610bb2565b3480156105b757600080fd5b506102f960115481565b3480156105cd57600080fd5b5061038c6105dc366004611e36565b610bc0565b3480156105ed57600080fd5b50600b5461028c9062010000900460ff1681565b34801561060d57600080fd5b5061038c61061c366004611e66565b610bd3565b34801561062d57600080fd5b5061038c61063c366004611e1d565b610c3a565b34801561064d57600080fd5b5061051e735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b34801561067557600080fd5b5061038c610d03565b34801561068a57600080fd5b506102f9600a5481565b3480156106a057600080fd5b5061038c6106af366004611e1d565b610dc2565b3480156106c057600080fd5b5061051e737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156106e857600080fd5b506102f9600c5481565b3480156106fe57600080fd5b5061028c61070d366004611db8565b60086020526000908152604090205460ff1681565b34801561072e57600080fd5b5061038c61073d366004611e1d565b610e66565b34801561074e57600080fd5b506102f961075d366004611e9f565b610f2d565b34801561076e57600080fd5b5060095461051e906001600160a01b031681565b34801561078e57600080fd5b5061038c61079d366004611db8565b610f58565b3480156107ae57600080fd5b5061051e7f000000000000000000000000869281ca2f02b130a3f77510ff816ef6b5cf8a2281565b6000306107e4848285610fd1565b60019150505b92915050565b6060600380546107ff90611ecd565b80601f016020809104026020016040519081016040528092919081815260200182805461082b90611ecd565b80156108785780601f1061084d57610100808354040283529160200191610878565b820191906000526020600020905b81548152906001019060200180831161085b57829003601f168201915b5050505050905090565b6000336107e4818585611058565b60003361089e85828561111b565b6108a9858585611195565b506001949350505050565b6108bc6118e3565b6103e86108c860025490565b6108d3906001611f1d565b6108dd9190611f34565b81101561094a5760405162461bcd60e51b815260206004820152603060248201527f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e7460448201526f206c6f776572207468616e20302e312560801b60648201526084015b60405180910390fd5b600f8190556040518181527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b6000336107e48185856109998383610f2d565b6109a39190611f56565b611058565b6109b06118e3565b6109ba600061193d565b565b6109c46118e3565b600b805461ff00191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b3360009081526006602052604090205460ff16610a1657600080fd5b6040516323b872dd60e01b81526001600160a01b03831660048201523360248201526044810182905230906323b872dd906064016020604051808303816000875af1158015610a69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8d9190611f69565b505050565b6060600480546107ff90611ecd565b610aa96118e3565b60008111610af95760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610941565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610b33573d6000803e3d6000fd5b5050565b60003381610b458286610f2d565b905083811015610ba55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610941565b6108a98286868403611058565b6000336107e4818585611195565b610bc86118e3565b600c91909155600d55565b610bdb6118e3565b6001600160a01b038216600081815260066020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610c426118e3565b6103e8610c4e60025490565b610c59906003611f1d565b610c639190611f34565b811015610cce5760405162461bcd60e51b815260206004820152603360248201527f4552524f523a2043616e6e6f7420736574206d61782077616c6c657420616d6f604482015272756e74206c6f776572207468616e20302e332560681b6064820152608401610941565b60118190556040518181527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc9060200161097b565b610d0b6118e3565b600a5415610d675760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b6064820152608401610941565b43600a55600b8054630101000063ffff00001990911617908190556040516201000090910460ff16151581527fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe520899060200160405180910390a1565b610dca6118e3565b620186a0610dd760025490565b610de2906001611f1d565b610dec9190611f34565b811015610e615760405162461bcd60e51b815260206004820152603c60248201527f4552524f523a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610941565b601255565b610e6e6118e3565b6103e8610e7a60025490565b610e85906001611f1d565b610e8f9190611f34565b811015610ef85760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e60448201527074206c6f776572207468616e20302e312560781b6064820152608401610941565b60108190556040518181527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e9060200161097b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f606118e3565b6001600160a01b038116610fc55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610941565b610fce8161193d565b50565b6001600160a01b038316610fe457600080fd5b6001600160a01b038216610ff757600080fd5b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110ba5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610941565b6001600160a01b038216610ff75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610941565b60006111278484610f2d565b9050600019811461118f57818110156111825760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610941565b61118f8484848403611058565b50505050565b6001600160a01b0383166111bb5760405162461bcd60e51b815260040161094190611f86565b6001600160a01b0382166111e15760405162461bcd60e51b815260040161094190611fcb565b600081116112315760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610941565b600b54610100900460ff161561165d576005546001600160a01b0384811691161480159061126d57506005546001600160a01b03838116911614155b801561128157506001600160a01b03821615155b801561129857506001600160a01b03821661dead14155b1561165d57600b5462010000900460ff16611395576001600160a01b03831660009081526007602052604090205460ff16806112ec57506001600160a01b03821660009081526007602052604090205460ff165b6113385760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610941565b6005546001600160a01b038481169116146113955760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c6564000000000000006044820152606401610941565b7f000000000000000000000000869281ca2f02b130a3f77510ff816ef6b5cf8a226001600160a01b0316836001600160a01b03161480156113ef57506001600160a01b03821660009081526007602052604090205460ff16155b156114d757600f5481111561145e5760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b6064820152608401610941565b6011546001600160a01b0383166000908152602081905260409020546114849083611f56565b11156114d25760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610941565b61165d565b7f000000000000000000000000869281ca2f02b130a3f77510ff816ef6b5cf8a226001600160a01b0316826001600160a01b031614801561153157506001600160a01b03831660009081526007602052604090205460ff16155b156115a2576010548111156114d25760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b6064820152608401610941565b6001600160a01b03821660009081526007602052604090205460ff161580156115e457506001600160a01b03831660009081526007602052604090205460ff16155b1561165d576011546001600160a01b03831660009081526020819052604090205461160f9083611f56565b111561165d5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610941565b306000908152602081905260409020546012548110801590819061168a5750600b546301000000900460ff165b80156116995750600b5460ff16155b80156116d757507f000000000000000000000000869281ca2f02b130a3f77510ff816ef6b5cf8a226001600160a01b0316856001600160a01b031614155b80156116fc57506001600160a01b03851660009081526006602052604090205460ff16155b801561172157506001600160a01b03841660009081526006602052604090205460ff16155b1561174657600b805460ff1916600117905561173b61198f565b600b805460ff191690555b6001600160a01b03851660009081526006602052604090205460019060ff168061178857506001600160a01b03851660009081526006602052604090205460ff165b15611791575060005b600081156118cf57600b54640100000000900460ff16156117b4576117b4611a08565b7f000000000000000000000000869281ca2f02b130a3f77510ff816ef6b5cf8a226001600160a01b0316866001600160a01b03161480156117f757506000600d54115b15611835576064600d548661180c9190611f1d565b6118169190611f34565b905080600e600082825461182a9190611f56565b909155506118b19050565b7f000000000000000000000000869281ca2f02b130a3f77510ff816ef6b5cf8a226001600160a01b0316876001600160a01b031614801561187857506000600c54115b156118b1576064600c548661188d9190611f1d565b6118979190611f34565b905080600e60008282546118ab9190611f56565b90915550505b80156118c2576118c2873083611a93565b6118cc818661200e565b94505b6118da878787611a93565b50505050505050565b6005546001600160a01b031633146109ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610941565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b30600090815260208190526040902054600e548115806119ad575080155b156119b6575050565b6012548211156119c65760125491505b6119cf82611bbd565b6009546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a8d573d6000803e3d6000fd5b6000600a5411611a4d5760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b6044820152606401610941565b600a544390600090611a60906006611f56565b9050808211611a77576019600c819055600d555050565b6004600c819055600d55600b805464ff00000000191690555050565b6001600160a01b038316611ab95760405162461bcd60e51b815260040161094190611f86565b6001600160a01b038216611adf5760405162461bcd60e51b815260040161094190611fcb565b6001600160a01b03831660009081526020819052604090205481811015611b575760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610941565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361118f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611bf257611bf2612021565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c889190612037565b81600181518110611c9b57611c9b612021565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611cf3908590600090869030904290600401612054565b600060405180830381600087803b158015611d0d57600080fd5b505af1158015611d21573d6000803e3d6000fd5b505050505050565b6001600160a01b0381168114610fce57600080fd5b60008060408385031215611d5157600080fd5b8235611d5c81611d29565b946020939093013593505050565b600060208083528351808285015260005b81811015611d9757858101830151858201604001528201611d7b565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611dca57600080fd5b8135611dd581611d29565b9392505050565b600080600060608486031215611df157600080fd5b8335611dfc81611d29565b92506020840135611e0c81611d29565b929592945050506040919091013590565b600060208284031215611e2f57600080fd5b5035919050565b60008060408385031215611e4957600080fd5b50508035926020909101359150565b8015158114610fce57600080fd5b60008060408385031215611e7957600080fd5b8235611e8481611d29565b91506020830135611e9481611e58565b809150509250929050565b60008060408385031215611eb257600080fd5b8235611ebd81611d29565b91506020830135611e9481611d29565b600181811c90821680611ee157607f821691505b602082108103611f0157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107ea576107ea611f07565b600082611f5157634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156107ea576107ea611f07565b600060208284031215611f7b57600080fd5b8151611dd581611e58565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107ea576107ea611f07565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561204957600080fd5b8151611dd581611d29565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120a45784516001600160a01b03168352938301939183019160010161207f565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122095e95dadc48fc62a3734eb601c0695d878a6232cdf4c5ef88202de068d85021c64736f6c63430008130033

Deployed Bytecode Sourcemap

26004:10494:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29489:192;;;;;;;;;;-1:-1:-1;29489:192:0;;;;;:::i;:::-;;:::i;:::-;;;635:14:1;;628:22;610:41;;598:2;583:18;29489:192:0;;;;;;;;14032:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16392:201::-;;;;;;;;;;-1:-1:-1;16392:201:0;;;;;:::i;:::-;;:::i;27103:33::-;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;27103:33:0;1215:177:1;26124:63:0;;;;;;;;;;-1:-1:-1;26124:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;15161:108;;;;;;;;;;-1:-1:-1;15249:12:0;;15161:108;;17173:261;;;;;;;;;;-1:-1:-1;17173:261:0;;;;;:::i;:::-;;:::i;30746:300::-;;;;;;;;;;-1:-1:-1;30746:300:0;;;;;:::i;:::-;;:::i;:::-;;15003:93;;;;;;;;;;-1:-1:-1;15003:93:0;;15086:2;2437:36:1;;2425:2;2410:18;15003:93:0;2295:184:1;17843:238:0;;;;;;;;;;-1:-1:-1;17843:238:0;;;;;:::i;:::-;;:::i;26454:33::-;;;;;;;;;;-1:-1:-1;26454:33:0;;;;;;;;;;;26572:28;;;;;;;;;;-1:-1:-1;26572:28:0;;;;;;;;;;;27031;;;;;;;;;;;;;;;;26925;;;;;;;;;;;;;;;;26534:31;;;;;;;;;;-1:-1:-1;26534:31:0;;;;;;;;;;;15332:127;;;;;;;;;;-1:-1:-1;15332:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;15433:18:0;15406:7;15433:18;;;;;;;;;;;;15332:127;6216:103;;;;;;;;;;;;;:::i;28766:115::-;;;;;;;;;;;;;:::i;26962:26::-;;;;;;;;;;;;;;;;26997:27;;;;;;;;;;;;;;;;31367:184;;;;;;;;;;-1:-1:-1;31367:184:0;;;;;:::i;:::-;;:::i;5575:87::-;;;;;;;;;;-1:-1:-1;5648:6:0;;-1:-1:-1;;;;;5648:6:0;5575:87;;;-1:-1:-1;;;;;2648:32:1;;;2630:51;;2618:2;2603:18;5575:87:0;2484:203:1;14251:104:0;;;;;;;;;;;;;:::i;32765:178::-;;;;;;;;;;-1:-1:-1;32765:178:0;;;;;:::i;:::-;;:::i;18584:436::-;;;;;;;;;;-1:-1:-1;18584:436:0;;;;;:::i;:::-;;:::i;15665:193::-;;;;;;;;;;-1:-1:-1;15665:193:0;;;;;:::i;:::-;;:::i;27066:30::-;;;;;;;;;;;;;;;;29319:162;;;;;;;;;;-1:-1:-1;29319:162:0;;;;;:::i;:::-;;:::i;26494:33::-;;;;;;;;;;-1:-1:-1;26494:33:0;;;;;;;;;;;29129:182;;;;;;;;;;-1:-1:-1;29129:182:0;;;;;:::i;:::-;;:::i;29689:315::-;;;;;;;;;;-1:-1:-1;29689:315:0;;;;;:::i;:::-;;:::i;26635:118::-;;;;;;;;;;;;26710:42;26635:118;;30012:266;;;;;;;;;;;;;:::i;26389:26::-;;;;;;;;;;;;;;;;32467:290;;;;;;;;;;-1:-1:-1;32467:290:0;;;;;:::i;:::-;;:::i;26762:120::-;;;;;;;;;;;;26839:42;26762:120;;26891:27;;;;;;;;;;;;;;;;26194:43;;;;;;;;;;-1:-1:-1;26194:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31054:305;;;;;;;;;;-1:-1:-1;31054:305:0;;;;;:::i;:::-;;:::i;15921:151::-;;;;;;;;;;-1:-1:-1;15921:151:0;;;;;:::i;:::-;;:::i;26356:24::-;;;;;;;;;;-1:-1:-1;26356:24:0;;;;-1:-1:-1;;;;;26356:24:0;;;6474:201;;;;;;;;;;-1:-1:-1;6474:201:0;;;;;:::i;:::-;;:::i;26309:40::-;;;;;;;;;;;;;;;29489:192;29563:4;29604;29620:31;29628:7;29604:4;29644:6;29620:7;:31::i;:::-;29669:4;29662:11;;;29489:192;;;;;:::o;14032:100::-;14086:13;14119:5;14112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14032:100;:::o;16392:201::-;16475:4;4263:10;16531:32;4263:10;16547:7;16556:6;16531:8;:32::i;17173:261::-;17270:4;4263:10;17328:38;17344:4;4263:10;17359:6;17328:15;:38::i;:::-;17377:27;17387:4;17393:2;17397:6;17377:9;:27::i;:::-;-1:-1:-1;17422:4:0;;17173:261;-1:-1:-1;;;;17173:261:0:o;30746:300::-;5461:13;:11;:13::i;:::-;30875:5:::1;30854:13;15249:12:::0;;;15161:108;30854:13:::1;:17;::::0;30870:1:::1;30854:17;:::i;:::-;30853:27;;;;:::i;:::-;30842:6;:39;;30820:137;;;::::0;-1:-1:-1;;;30820:137:0;;5430:2:1;30820:137:0::1;::::0;::::1;5412:21:1::0;5469:2;5449:18;;;5442:30;5508:34;5488:18;;;5481:62;-1:-1:-1;;;5559:18:1;;;5552:46;5615:19;;30820:137:0::1;;;;;;;;;30968:12;:21:::0;;;31005:33:::1;::::0;1361:25:1;;;31005:33:0::1;::::0;1349:2:1;1334:18;31005:33:0::1;;;;;;;;30746:300:::0;:::o;17843:238::-;17931:4;4263:10;17987:64;4263:10;18003:7;18040:10;18012:25;4263:10;18003:7;18012:9;:25::i;:::-;:38;;;;:::i;:::-;17987:8;:64::i;6216:103::-;5461:13;:11;:13::i;:::-;6281:30:::1;6308:1;6281:18;:30::i;:::-;6216:103::o:0;28766:115::-;5461:13;:11;:13::i;:::-;28820:14:::1;:22:::0;;-1:-1:-1;;28820:22:0::1;::::0;;28858:15:::1;::::0;::::1;::::0;28837:5:::1;::::0;28858:15:::1;28766:115::o:0;31367:184::-;31462:10;31442:31;;;;:19;:31;;;;;;;;31434:40;;;;;;31485:58;;-1:-1:-1;;;31485:58:0;;-1:-1:-1;;;;;6033:15:1;;31485:58:0;;;6015:34:1;31524:10:0;6065:18:1;;;6058:43;6117:18;;;6110:34;;;31500:4:0;;31485:34;;5950:18:1;;31485:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31367:184;;:::o;14251:104::-;14307:13;14340:7;14333:14;;;;;:::i;32765:178::-;5461:13;:11;:13::i;:::-;32853:1:::1;32841:9;:13;32833:55;;;::::0;-1:-1:-1;;;32833:55:0;;6607:2:1;32833:55:0::1;::::0;::::1;6589:21:1::0;6646:2;6626:18;;;6619:30;6685:31;6665:18;;;6658:59;6734:18;;32833:55:0::1;6405:353:1::0;32833:55:0::1;5648:6:::0;;32899:36:::1;::::0;-1:-1:-1;;;;;5648:6:0;;;;32899:36;::::1;;;::::0;32925:9;;32899:36:::1;::::0;;;32925:9;5648:6;32899:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;32765:178:::0;:::o;18584:436::-;18677:4;4263:10;18677:4;18760:25;4263:10;18777:7;18760:9;:25::i;:::-;18733:52;;18824:15;18804:16;:35;;18796:85;;;;-1:-1:-1;;;18796:85:0;;6965:2:1;18796:85:0;;;6947:21:1;7004:2;6984:18;;;6977:30;7043:34;7023:18;;;7016:62;-1:-1:-1;;;7094:18:1;;;7087:35;7139:19;;18796:85:0;6763:401:1;18796:85:0;18917:60;18926:5;18933:7;18961:15;18942:16;:34;18917:8;:60::i;15665:193::-;15744:4;4263:10;15800:28;4263:10;15817:2;15821:6;15800:9;:28::i;29319:162::-;5461:13;:11;:13::i;:::-;29410:12:::1;:25:::0;;;;29446:13:::1;:27:::0;29319:162::o;29129:182::-;5461:13;:11;:13::i;:::-;-1:-1:-1;;;;;29214:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;29214:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29269:34;;610:41:1;;;29269:34:0::1;::::0;583:18:1;29269:34:0::1;;;;;;;29129:182:::0;;:::o;29689:315::-;5461:13;:11;:13::i;:::-;29821:5:::1;29800:13;15249:12:::0;;;15161:108;29800:13:::1;:17;::::0;29816:1:::1;29800:17;:::i;:::-;29799:27;;;;:::i;:::-;29788:6;:39;;29766:140;;;::::0;-1:-1:-1;;;29766:140:0;;7371:2:1;29766:140:0::1;::::0;::::1;7353:21:1::0;7410:2;7390:18;;;7383:30;7449:34;7429:18;;;7422:62;-1:-1:-1;;;7500:18:1;;;7493:49;7559:19;;29766:140:0::1;7169:415:1::0;29766:140:0::1;29917:15;:24:::0;;;29957:39:::1;::::0;1361:25:1;;;29957:39:0::1;::::0;1349:2:1;1334:18;29957:39:0::1;1215:177:1::0;30012:266:0;5461:13;:11;:13::i;:::-;30071:11:::1;::::0;:16;30063:65:::1;;;::::0;-1:-1:-1;;;30063:65:0;;7791:2:1;30063:65:0::1;::::0;::::1;7773:21:1::0;7830:2;7810:18;;;7803:30;7869:34;7849:18;;;7842:62;-1:-1:-1;;;7920:18:1;;;7913:34;7964:19;;30063:65:0::1;7589:400:1::0;30063:65:0::1;30153:12;30139:11;:26:::0;30176:13:::1;:20:::0;;30207:18;-1:-1:-1;;30207:18:0;;;;;;;;30241:29:::1;::::0;30176:20;30256:13;;::::1;30176:20;30256:13;635:14:1::0;628:22;610:41;;30241:29:0::1;::::0;598:2:1;583:18;30241:29:0::1;;;;;;;30012:266::o:0;32467:290::-;5461:13;:11;:13::i;:::-;32607:7:::1;32586:13;15249:12:::0;;;15161:108;32586:13:::1;:17;::::0;32602:1:::1;32586:17;:::i;:::-;32585:29;;;;:::i;:::-;32572:9;:42;;32550:152;;;::::0;-1:-1:-1;;;32550:152:0;;8196:2:1;32550:152:0::1;::::0;::::1;8178:21:1::0;8235:2;8215:18;;;8208:30;8274:34;8254:18;;;8247:62;8345:30;8325:18;;;8318:58;8393:19;;32550:152:0::1;7994:424:1::0;32550:152:0::1;32719:18;:30:::0;32467:290::o;31054:305::-;5461:13;:11;:13::i;:::-;31184:5:::1;31163:13;15249:12:::0;;;15161:108;31163:13:::1;:17;::::0;31179:1:::1;31163:17;:::i;:::-;31162:27;;;;:::i;:::-;31151:6;:39;;31129:138;;;::::0;-1:-1:-1;;;31129:138:0;;8625:2:1;31129:138:0::1;::::0;::::1;8607:21:1::0;8664:2;8644:18;;;8637:30;8703:34;8683:18;;;8676:62;-1:-1:-1;;;8754:18:1;;;8747:47;8811:19;;31129:138:0::1;8423:413:1::0;31129:138:0::1;31278:13;:22:::0;;;31316:35:::1;::::0;1361:25:1;;;31316:35:0::1;::::0;1349:2:1;1334:18;31316:35:0::1;1215:177:1::0;15921:151:0;-1:-1:-1;;;;;16037:18:0;;;16010:7;16037:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15921:151::o;6474:201::-;5461:13;:11;:13::i;:::-;-1:-1:-1;;;;;6563:22:0;::::1;6555:73;;;::::0;-1:-1:-1;;;6555:73:0;;9043:2:1;6555:73:0::1;::::0;::::1;9025:21:1::0;9082:2;9062:18;;;9055:30;9121:34;9101:18;;;9094:62;-1:-1:-1;;;9172:18:1;;;9165:36;9218:19;;6555:73:0::1;8841:402:1::0;6555:73:0::1;6639:28;6658:8;6639:18;:28::i;:::-;6474:201:::0;:::o;22931:289::-;-1:-1:-1;;;;;23046:19:0;;23038:28;;;;;;-1:-1:-1;;;;;23085:21:0;;23077:30;;;;;;-1:-1:-1;;;;;23128:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23180:32;;1361:25:1;;;23180:32:0;;1334:18:1;23180:32:0;;;;;;;22931:289;;;:::o;22577:346::-;-1:-1:-1;;;;;22679:19:0;;22671:68;;;;-1:-1:-1;;;22671:68:0;;9450:2:1;22671:68:0;;;9432:21:1;9489:2;9469:18;;;9462:30;9528:34;9508:18;;;9501:62;-1:-1:-1;;;9579:18:1;;;9572:34;9623:19;;22671:68:0;9248:400:1;22671:68:0;-1:-1:-1;;;;;22758:21:0;;22750:68;;;;-1:-1:-1;;;22750:68:0;;9855:2:1;22750:68:0;;;9837:21:1;9894:2;9874:18;;;9867:30;9933:34;9913:18;;;9906:62;-1:-1:-1;;;9984:18:1;;;9977:32;10026:19;;22750:68:0;9653:398:1;23511:419:0;23612:24;23639:25;23649:5;23656:7;23639:9;:25::i;:::-;23612:52;;-1:-1:-1;;23679:16:0;:37;23675:248;;23761:6;23741:16;:26;;23733:68;;;;-1:-1:-1;;;23733:68:0;;10258:2:1;23733:68:0;;;10240:21:1;10297:2;10277:18;;;10270:30;10336:31;10316:18;;;10309:59;10385:18;;23733:68:0;10056:353:1;23733:68:0;23845:51;23854:5;23861:7;23889:6;23870:16;:25;23845:8;:51::i;:::-;23601:329;23511:419;;;:::o;32955:3540::-;-1:-1:-1;;;;;33087:18:0;;33079:68;;;;-1:-1:-1;;;33079:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33166:16:0;;33158:64;;;;-1:-1:-1;;;33158:64:0;;;;;;;:::i;:::-;33250:1;33241:6;:10;33233:52;;;;-1:-1:-1;;;33233:52:0;;11426:2:1;33233:52:0;;;11408:21:1;11465:2;11445:18;;;11438:30;11504:31;11484:18;;;11477:59;11553:18;;33233:52:0;11224:353:1;33233:52:0;33302:14;;;;;;;33298:1855;;;5648:6;;-1:-1:-1;;;;;33355:15:0;;;5648:6;;33355:15;;;;:49;;-1:-1:-1;5648:6:0;;-1:-1:-1;;;;;33391:13:0;;;5648:6;;33391:13;;33355:49;:86;;;;-1:-1:-1;;;;;;33425:16:0;;;;33355:86;:128;;;;-1:-1:-1;;;;;;33462:21:0;;33476:6;33462:21;;33355:128;33333:1809;;;33523:13;;;;;;;33518:359;;-1:-1:-1;;;;;33595:37:0;;;;;;:31;:37;;;;;;;;;:105;;-1:-1:-1;;;;;;33665:35:0;;;;;;:31;:35;;;;;;;;33595:105;33561:220;;;;-1:-1:-1;;;33561:220:0;;11784:2:1;33561:220:0;;;11766:21:1;11823:2;11803:18;;;11796:30;11862:31;11842:18;;;11835:59;11911:18;;33561:220:0;11582:353:1;33561:220:0;5648:6;;-1:-1:-1;;;;;33812:15:0;;;5648:6;;33812:15;33804:53;;;;-1:-1:-1;;;33804:53:0;;12142:2:1;33804:53:0;;;12124:21:1;12181:2;12161:18;;;12154:30;12220:27;12200:18;;;12193:55;12265:18;;33804:53:0;11940:349:1;33804:53:0;33959:15;-1:-1:-1;;;;;33951:23:0;:4;-1:-1:-1;;;;;33951:23:0;;:63;;;;-1:-1:-1;;;;;;33979:35:0;;;;;;:31;:35;;;;;;;;33978:36;33951:63;33925:1202;;;34101:12;;34091:6;:22;;34057:155;;;;-1:-1:-1;;;34057:155:0;;12496:2:1;34057:155:0;;;12478:21:1;12535:2;12515:18;;;12508:30;12574:34;12554:18;;;12547:62;-1:-1:-1;;;12625:18:1;;;12618:45;12680:19;;34057:155:0;12294:411:1;34057:155:0;34295:15;;-1:-1:-1;;;;;15433:18:0;;15406:7;15433:18;;;;;;;;;;;34269:22;;:6;:22;:::i;:::-;:41;;34235:158;;;;-1:-1:-1;;;34235:158:0;;12912:2:1;34235:158:0;;;12894:21:1;12951:2;12931:18;;;12924:30;12990:33;12970:18;;;12963:61;13041:18;;34235:158:0;12710:355:1;34235:158:0;33925:1202;;;34497:15;-1:-1:-1;;;;;34491:21:0;:2;-1:-1:-1;;;;;34491:21:0;;:63;;;;-1:-1:-1;;;;;;34517:37:0;;;;;;:31;:37;;;;;;;;34516:38;34491:63;34465:662;;;34641:13;;34631:6;:23;;34597:158;;;;-1:-1:-1;;;34597:158:0;;13272:2:1;34597:158:0;;;13254:21:1;13311:2;13291:18;;;13284:30;13350:34;13330:18;;;13323:62;-1:-1:-1;;;13401:18:1;;;13394:47;13458:19;;34597:158:0;13070:413:1;34465:662:0;-1:-1:-1;;;;;34808:35:0;;;;;;:31;:35;;;;;;;;34807:36;:99;;;;-1:-1:-1;;;;;;34869:37:0;;;;;;:31;:37;;;;;;;;34868:38;34807:99;34781:346;;;35009:15;;-1:-1:-1;;;;;15433:18:0;;15406:7;15433:18;;;;;;;;;;;34983:22;;:6;:22;:::i;:::-;:41;;34949:158;;;;-1:-1:-1;;;34949:158:0;;12912:2:1;34949:158:0;;;12894:21:1;12951:2;12931:18;;;12924:30;12990:33;12970:18;;;12963:61;13041:18;;34949:158:0;12710:355:1;34949:158:0;35214:4;35165:28;15433:18;;;;;;;;;;;35272;;35248:42;;;;;;;35321:35;;-1:-1:-1;35345:11:0;;;;;;;35321:35;:61;;;;-1:-1:-1;35374:8:0;;;;35373:9;35321:61;:104;;;;;35409:15;-1:-1:-1;;;;;35401:23:0;:4;-1:-1:-1;;;;;35401:23:0;;35399:26;35321:104;:147;;;;-1:-1:-1;;;;;;35443:25:0;;;;;;:19;:25;;;;;;;;35442:26;35321:147;:188;;;;-1:-1:-1;;;;;;35486:23:0;;;;;;:19;:23;;;;;;;;35485:24;35321:188;35303:316;;;35536:8;:15;;-1:-1:-1;;35536:15:0;35547:4;35536:15;;;35566:10;:8;:10::i;:::-;35591:8;:16;;-1:-1:-1;;35591:16:0;;;35303:316;-1:-1:-1;;;;;35671:25:0;;35631:12;35671:25;;;:19;:25;;;;;;35646:4;;35671:25;;;:52;;-1:-1:-1;;;;;;35700:23:0;;;;;;:19;:23;;;;;;;;35671:52;35667:100;;;-1:-1:-1;35750:5:0;35667:100;35779:12;35818:7;35814:628;;;35847:9;;;;;;;35844:57;;;35875:9;:7;:9::i;:::-;35948:15;-1:-1:-1;;;;;35942:21:0;:2;-1:-1:-1;;;;;35942:21:0;;:42;;;;;35983:1;35967:13;;:17;35942:42;35938:355;;;36039:3;36022:13;;36013:6;:22;;;;:::i;:::-;36012:30;;;;:::i;:::-;36005:37;;36076:4;36061:11;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;35938:355:0;;-1:-1:-1;35938:355:0;;36147:15;-1:-1:-1;;;;;36139:23:0;:4;-1:-1:-1;;;;;36139:23:0;;:43;;;;;36181:1;36166:12;;:16;36139:43;36135:158;;;36236:3;36220:12;;36211:6;:21;;;;:::i;:::-;36210:29;;;;:::i;:::-;36203:36;;36273:4;36258:11;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;36135:158:0;36313:8;;36309:91;;36342:42;36358:4;36372;36379;36342:15;:42::i;:::-;36416:14;36426:4;36416:14;;:::i;:::-;;;35814:628;36454:33;36470:4;36476:2;36480:6;36454:15;:33::i;:::-;33068:3427;;;;32955:3540;;;:::o;5740:132::-;5648:6;;-1:-1:-1;;;;;5648:6:0;4263:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;13823:2:1;5796:68:0;;;13805:21:1;;;13842:18;;;13835:30;13901:34;13881:18;;;13874:62;13953:18;;5796:68:0;13621:356:1;6835:191:0;6928:6;;;-1:-1:-1;;;;;6945:17:0;;;-1:-1:-1;;;;;;6945:17:0;;;;;;;6978:40;;6928:6;;;6945:17;6928:6;;6978:40;;6909:16;;6978:40;6898:128;6835:191;:::o;31975:482::-;32066:4;32022:23;15433:18;;;;;;;;;;;32114:11;;32142:20;;;:46;;-1:-1:-1;32166:22:0;;32142:46;32138:85;;;32205:7;;31975:482::o;32138:85::-;32257:18;;32239:15;:36;32235:105;;;32310:18;;32292:36;;32235:105;32354:32;32370:15;32354;:32::i;:::-;32407:9;;32399:50;;-1:-1:-1;;;;;32407:9:0;;;;32427:21;32399:50;;;;;32407:9;32399:50;32407:9;32399:50;32427:21;32407:9;32399:50;;;;;;;;;;;;;;;;;;;30286:452;30361:1;30347:11;;:15;30325:68;;;;-1:-1:-1;;;30325:68:0;;14184:2:1;30325:68:0;;;14166:21:1;14223:2;14203:18;;;14196:30;-1:-1:-1;;;14242:18:1;;;14235:46;14298:18;;30325:68:0;13982:340:1;30325:68:0;30477:11;;30427:12;;30404:20;;30477:15;;30491:1;30477:15;:::i;:::-;30450:42;;30522:16;30506:12;:32;30503:227;;30570:2;30555:12;:17;;;30587:13;:18;32899:36:::1;32765:178:::0;:::o;30503:227::-;30653:1;30638:12;:16;;;30669:13;:17;30701:9;:17;;-1:-1:-1;;30701:17:0;;;30314:424;;30286:452::o;19490:806::-;-1:-1:-1;;;;;19587:18:0;;19579:68;;;;-1:-1:-1;;;19579:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19666:16:0;;19658:64;;;;-1:-1:-1;;;19658:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19808:15:0;;19786:19;19808:15;;;;;;;;;;;19842:21;;;;19834:72;;;;-1:-1:-1;;;19834:72:0;;14529:2:1;19834:72:0;;;14511:21:1;14568:2;14548:18;;;14541:30;14607:34;14587:18;;;14580:62;-1:-1:-1;;;14658:18:1;;;14651:36;14704:19;;19834:72:0;14327:402:1;19834:72:0;-1:-1:-1;;;;;19942:15:0;;;:9;:15;;;;;;;;;;;19960:20;;;19942:38;;20160:13;;;;;;;;;;:23;;;;;;20212:26;;1361:25:1;;;20160:13:0;;20212:26;;1334:18:1;20212:26:0;;;;;;;20251:37;31367:184;31559:408;31658:16;;;31672:1;31658:16;;;;;;;;31634:21;;31658:16;;;;;;;;;;-1:-1:-1;31658:16:0;31634:40;;31703:4;31685;31690:1;31685:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31685:23:0;;;-1:-1:-1;;;;;31685:23:0;;;;;26839:42;-1:-1:-1;;;;;31729:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31719:4;31724:1;31719:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;31719:31:0;;;:7;;;;;;;;;;;:31;31763:196;;-1:-1:-1;;;31763:196:0;;26839:42;;31763:65;;:196;;31843:11;;31869:1;;31886:4;;31913;;31933:15;;31763:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31613:354;31559:408;:::o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:315;218:6;226;279:2;267:9;258:7;254:23;250:32;247:52;;;295:1;292;285:12;247:52;334:9;321:23;353:31;378:5;353:31;:::i;:::-;403:5;455:2;440:18;;;;427:32;;-1:-1:-1;;;150:315:1:o;662:548::-;774:4;803:2;832;821:9;814:21;864:6;858:13;907:6;902:2;891:9;887:18;880:34;932:1;942:140;956:6;953:1;950:13;942:140;;;1051:14;;;1047:23;;1041:30;1017:17;;;1036:2;1013:26;1006:66;971:10;;942:140;;;946:3;1131:1;1126:2;1117:6;1106:9;1102:22;1098:31;1091:42;1201:2;1194;1190:7;1185:2;1177:6;1173:15;1169:29;1158:9;1154:45;1150:54;1142:62;;;;662:548;;;;:::o;1397:247::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;1564:9;1551:23;1583:31;1608:5;1583:31;:::i;:::-;1633:5;1397:247;-1:-1:-1;;;1397:247:1:o;1649:456::-;1726:6;1734;1742;1795:2;1783:9;1774:7;1770:23;1766:32;1763:52;;;1811:1;1808;1801:12;1763:52;1850:9;1837:23;1869:31;1894:5;1869:31;:::i;:::-;1919:5;-1:-1:-1;1976:2:1;1961:18;;1948:32;1989:33;1948:32;1989:33;:::i;:::-;1649:456;;2041:7;;-1:-1:-1;;;2095:2:1;2080:18;;;;2067:32;;1649:456::o;2110:180::-;2169:6;2222:2;2210:9;2201:7;2197:23;2193:32;2190:52;;;2238:1;2235;2228:12;2190:52;-1:-1:-1;2261:23:1;;2110:180;-1:-1:-1;2110:180:1:o;2692:248::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;-1:-1:-1;;2860:23:1;;;2930:2;2915:18;;;2902:32;;-1:-1:-1;2692:248:1:o;2945:118::-;3031:5;3024:13;3017:21;3010:5;3007:32;2997:60;;3053:1;3050;3043:12;3068:382;3133:6;3141;3194:2;3182:9;3173:7;3169:23;3165:32;3162:52;;;3210:1;3207;3200:12;3162:52;3249:9;3236:23;3268:31;3293:5;3268:31;:::i;:::-;3318:5;-1:-1:-1;3375:2:1;3360:18;;3347:32;3388:30;3347:32;3388:30;:::i;:::-;3437:7;3427:17;;;3068:382;;;;;:::o;3923:388::-;3991:6;3999;4052:2;4040:9;4031:7;4027:23;4023:32;4020:52;;;4068:1;4065;4058:12;4020:52;4107:9;4094:23;4126:31;4151:5;4126:31;:::i;:::-;4176:5;-1:-1:-1;4233:2:1;4218:18;;4205:32;4246:33;4205:32;4246:33;:::i;4316:380::-;4395:1;4391:12;;;;4438;;;4459:61;;4513:4;4505:6;4501:17;4491:27;;4459:61;4566:2;4558:6;4555:14;4535:18;4532:38;4529:161;;4612:10;4607:3;4603:20;4600:1;4593:31;4647:4;4644:1;4637:15;4675:4;4672:1;4665:15;4529:161;;4316:380;;;:::o;4701:127::-;4762:10;4757:3;4753:20;4750:1;4743:31;4793:4;4790:1;4783:15;4817:4;4814:1;4807:15;4833:168;4906:9;;;4937;;4954:15;;;4948:22;;4934:37;4924:71;;4975:18;;:::i;5006:217::-;5046:1;5072;5062:132;;5116:10;5111:3;5107:20;5104:1;5097:31;5151:4;5148:1;5141:15;5179:4;5176:1;5169:15;5062:132;-1:-1:-1;5208:9:1;;5006:217::o;5645:125::-;5710:9;;;5731:10;;;5728:36;;;5744:18;;:::i;6155:245::-;6222:6;6275:2;6263:9;6254:7;6250:23;6246:32;6243:52;;;6291:1;6288;6281:12;6243:52;6323:9;6317:16;6342:28;6364:5;6342:28;:::i;10414:401::-;10616:2;10598:21;;;10655:2;10635:18;;;10628:30;10694:34;10689:2;10674:18;;10667:62;-1:-1:-1;;;10760:2:1;10745:18;;10738:35;10805:3;10790:19;;10414:401::o;10820:399::-;11022:2;11004:21;;;11061:2;11041:18;;;11034:30;11100:34;11095:2;11080:18;;11073:62;-1:-1:-1;;;11166:2:1;11151:18;;11144:33;11209:3;11194:19;;10820:399::o;13488:128::-;13555:9;;;13576:11;;;13573:37;;;13590:18;;:::i;14866:127::-;14927:10;14922:3;14918:20;14915:1;14908:31;14958:4;14955:1;14948:15;14982:4;14979:1;14972:15;14998:251;15068:6;15121:2;15109:9;15100:7;15096:23;15092:32;15089:52;;;15137:1;15134;15127:12;15089:52;15169:9;15163:16;15188:31;15213:5;15188:31;:::i;15254:980::-;15516:4;15564:3;15553:9;15549:19;15595:6;15584:9;15577:25;15621:2;15659:6;15654:2;15643:9;15639:18;15632:34;15702:3;15697:2;15686:9;15682:18;15675:31;15726:6;15761;15755:13;15792:6;15784;15777:22;15830:3;15819:9;15815:19;15808:26;;15869:2;15861:6;15857:15;15843:29;;15890:1;15900:195;15914:6;15911:1;15908:13;15900:195;;;15979:13;;-1:-1:-1;;;;;15975:39:1;15963:52;;16070:15;;;;16035:12;;;;16011:1;15929:9;15900:195;;;-1:-1:-1;;;;;;;16151:32:1;;;;16146:2;16131:18;;16124:60;-1:-1:-1;;;16215:3:1;16200:19;16193:35;16112:3;15254:980;-1:-1:-1;;;15254:980:1:o

Swarm Source

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