ETH Price: $3,333.59 (-1.49%)
Gas: 12 Gwei

Token

OrdinalDAO (oDAO)
 

Overview

Max Total Supply

100,000,000 oDAO

Holders

31

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
69,661.110398614 oDAO

Value
$0.00
0xd6d58ddfe8f52b89ff480a6b4057b859fce74b47
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:
oDAO

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-22
*/

/*

Ordinals are the new thing taking Bitcoin by storm. Ordinal DAO aims to support, purchase, archive, collect, and potentially tokenize important pieces of Ordinal Inscription.

Website: http://OrdinalDAO.biz
Documents: https://docs.ordinaldao.biz

Announcements: https://t.me/OrdinalDAO_ANN
Telegram: https://t.me/Ordinal_DAO
Twitter: https://twitter.com/Ordinal_DAO
Discord: https://discord.gg/nyT5SfQ9kK

*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.16;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

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

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

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

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

/**
 * @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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

/**
 * @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].
 *
 * 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

    /**
     * @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)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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)
        external
        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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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)
        external
        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 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)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

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

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

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

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

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

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

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

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

/**
 * @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].
 *
 * 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 oDAO is ERC20, Ownable {
    string private _name = "OrdinalDAO";
    string private _symbol = "oDAO";
    uint8 private _decimals = 9;
    uint256 private _supply = 100000000;
    uint256 public taxForLiquidity = 1;
    uint256 public taxForMarketing = 2;

    address public marketingWallet = 0x72A62A33d8BD51158e6C81b0Bd43535C5E3DBC4f;
    address public DEAD = 0x000000000000000000000000000000000000dEaD;
    uint256 public _marketingReserves = 0;
    mapping(address => bool) public _isExcludedFromFee;
    uint256 public numTokensSellToAddToLiquidity = 30000 * 10**_decimals;
    uint256 public numTokensSellToAddToETH = 20000 * 10**_decimals;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    
    bool inSwapAndLiquify;

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

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

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

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= numTokensSellToAddToETH) {
                    _swapTokensForETH(numTokensSellToAddToETH);
                    _marketingReserves -= numTokensSellToAddToETH;
                    bool sent = payable(marketingWallet).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                uint256 marketingShare = ((amount * taxForMarketing) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 100);
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), (marketingShare + liquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function excludeFromFee(address _address, bool _status) external onlyOwner {
        _isExcludedFromFee[_address] = _status;
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForETH(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

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

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

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

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","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"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e0604052600a60a0908152694f7264696e616c44414f60b01b60c0526006906200002b908262000626565b506040805180820190915260048152636f44414f60e01b602082015260079062000056908262000626565b506008805460ff191660099081179091556305f5e10081556001600a9081556002600b55600c80546001600160a01b03199081167372a62a33d8bd51158e6c81b0bd43535c5e3dbc4f17909155600d805490911661dead1790556000600e55620000c1919062000807565b620000cf906175306200081f565b601055600854620000e59060ff16600a62000807565b620000f390614e206200081f565b6011553480156200010357600080fd5b5060068054620001139062000597565b80601f0160208091040260200160405190810160405280929190818152602001828054620001419062000597565b8015620001925780601f10620001665761010080835404028352916020019162000192565b820191906000526020600020905b8154815290600101906020018083116200017457829003601f168201915b505050505060078054620001a69062000597565b80601f0160208091040260200160405190810160405280929190818152602001828054620001d49062000597565b8015620002255780601f10620001f95761010080835404028352916020019162000225565b820191906000526020600020905b8154815290600101906020018083116200020757829003601f168201915b505050505081600390816200023b919062000626565b5060046200024a828262000626565b50505062000267620002616200046560201b60201c565b62000469565b60085462000296903390620002819060ff16600a62000807565b6009546200029091906200081f565b620004bb565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000314919062000841565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000362573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000388919062000841565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620003d6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003fc919062000841565b601280546001600160a01b0319166001600160a01b0392831617905590811660808190526000908152600f6020526040808220805460ff1990811660019081179092553384528284208054821683179055600c5490941683529120805490921617905562000882565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005165760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200052a91906200086c565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005ac57607f821691505b602082108103620005cd57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200062157600081815260208120601f850160051c81016020861015620005fc5750805b601f850160051c820191505b818110156200061d5782815560010162000608565b5050505b505050565b81516001600160401b0381111562000642576200064262000581565b6200065a8162000653845462000597565b84620005d3565b602080601f831160018114620006925760008415620006795750858301515b600019600386901b1c1916600185901b1785556200061d565b600085815260208120601f198616915b82811015620006c357888601518255948401946001909101908401620006a2565b5085821015620006e25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007495781600019048211156200072d576200072d620006f2565b808516156200073b57918102915b93841c93908002906200070d565b509250929050565b600082620007625750600162000801565b81620007715750600062000801565b81600181146200078a57600281146200079557620007b5565b600191505062000801565b60ff841115620007a957620007a9620006f2565b50506001821b62000801565b5060208310610133831016604e8410600b8410161715620007da575081810a62000801565b620007e6838362000708565b8060001904821115620007fd57620007fd620006f2565b0290505b92915050565b60006200081860ff84168362000751565b9392505050565b60008160001904831182151516156200083c576200083c620006f2565b500290565b6000602082840312156200085457600080fd5b81516001600160a01b03811681146200081857600080fd5b80820180821115620008015762000801620006f2565b608051611479620008c16000396000818161021701528181610d2401528181610ddd01528181610e1901528181610f9f015261100701526114796000f3fe60806040526004361061016a5760003560e01c806375f0a874116100d1578063ad16a0cf1161008a578063dd62ed3e11610064578063dd62ed3e1461043c578063df8408fe1461045c578063f2fde38b1461047c578063f345bd851461049c57600080fd5b8063ad16a0cf146103fa578063c0fdea5714610410578063d12a76881461042657600080fd5b806375f0a87414610337578063768dc710146103575780638da5cb5b1461038757806395d89b41146103a5578063a457c2d7146103ba578063a9059cbb146103da57600080fd5b8063313ce56711610123578063313ce56714610278578063395093511461029457806349bd5a5e146102b4578063527ffabd146102d457806370a08231146102ea578063715018a61461032057600080fd5b806303fd2a451461017657806306fdde03146101b3578063095ea7b3146101d55780631694505e1461020557806318160ddd1461023957806323b872dd1461025857600080fd5b3661017157005b600080fd5b34801561018257600080fd5b50600d54610196906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156101bf57600080fd5b506101c86104b2565b6040516101aa919061108c565b3480156101e157600080fd5b506101f56101f03660046110ef565b610544565b60405190151581526020016101aa565b34801561021157600080fd5b506101967f000000000000000000000000000000000000000000000000000000000000000081565b34801561024557600080fd5b506002545b6040519081526020016101aa565b34801561026457600080fd5b506101f561027336600461111b565b61055e565b34801561028457600080fd5b50604051600981526020016101aa565b3480156102a057600080fd5b506101f56102af3660046110ef565b610582565b3480156102c057600080fd5b50601254610196906001600160a01b031681565b3480156102e057600080fd5b5061024a600b5481565b3480156102f657600080fd5b5061024a61030536600461115c565b6001600160a01b031660009081526020819052604090205490565b34801561032c57600080fd5b506103356105a4565b005b34801561034357600080fd5b50600c54610196906001600160a01b031681565b34801561036357600080fd5b506101f561037236600461115c565b600f6020526000908152604090205460ff1681565b34801561039357600080fd5b506005546001600160a01b0316610196565b3480156103b157600080fd5b506101c86105b8565b3480156103c657600080fd5b506101f56103d53660046110ef565b6105c7565b3480156103e657600080fd5b506101f56103f53660046110ef565b610647565b34801561040657600080fd5b5061024a60115481565b34801561041c57600080fd5b5061024a600e5481565b34801561043257600080fd5b5061024a60105481565b34801561044857600080fd5b5061024a610457366004611180565b610655565b34801561046857600080fd5b506103356104773660046111b9565b610680565b34801561048857600080fd5b5061033561049736600461115c565b6106b3565b3480156104a857600080fd5b5061024a600a5481565b6060600380546104c1906111ec565b80601f01602080910402602001604051908101604052809291908181526020018280546104ed906111ec565b801561053a5780601f1061050f5761010080835404028352916020019161053a565b820191906000526020600020905b81548152906001019060200180831161051d57829003601f168201915b5050505050905090565b60003361055281858561072c565b60019150505b92915050565b60003361056c858285610850565b6105778585856108ca565b506001949350505050565b6000336105528185856105958383610655565b61059f919061123c565b61072c565b6105ac610b67565b6105b66000610bc1565b565b6060600480546104c1906111ec565b600033816105d58286610655565b90508381101561063a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610577828686840361072c565b6000336105528185856108ca565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610688610b67565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6106bb610b67565b6001600160a01b0381166107205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610631565b61072981610bc1565b50565b6001600160a01b03831661078e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610631565b6001600160a01b0382166107ef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610631565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061085c8484610655565b905060001981146108c457818110156108b75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610631565b6108c4848484840361072c565b50505050565b6001600160a01b0383166108f05760405162461bcd60e51b81526004016106319061124f565b6001600160a01b0382166109165760405162461bcd60e51b815260040161063190611294565b80610936846001600160a01b031660009081526020819052604090205490565b10156109545760405162461bcd60e51b8152600401610631906112d7565b6012546001600160a01b038481169116148061097d57506012546001600160a01b038381169116145b80156109935750601254600160a01b900460ff16155b15610b57576012546001600160a01b03848116911614610a8057600e543060009081526020819052604081205490916109cb9161131d565b905060105481106109e1576109e1601054610c13565b601154600e5410610a7e576109f7601154610cba565b601154600e6000828254610a0b919061131d565b9091555050600c546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610a7c5760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610631565b505b505b6001600160a01b0383166000908152600f602052604081205460ff1680610abf57506001600160a01b0383166000908152600f602052604090205460ff165b15610acb575080610b4c565b60006064600b5484610add9190611330565b610ae7919061134f565b905060006064600a5485610afb9190611330565b610b05919061134f565b9050610b11818361123c565b610b1b908561131d565b925081600e6000828254610b2f919061123c565b90915550610b4990508630610b44848661123c565b610e9a565b50505b6108c4848483610e9a565b610b62838383610e9a565b505050565b6005546001600160a01b031633146105b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610631565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6012805460ff60a01b1916600160a01b1790556000610c3360028361134f565b90506000610c41828461131d565b905047610c4d83610cba565b6000610c59824761131d565b9050610c658382610f86565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506012805460ff60a01b19169055505050565b6012805460ff60a01b1916600160a01b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610d0257610d02611371565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da49190611387565b81600181518110610db757610db7611371565b60200260200101906001600160a01b031690816001600160a01b031681525050610e02307f00000000000000000000000000000000000000000000000000000000000000008461072c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790610e579085906000908690309042906004016113a4565b600060405180830381600087803b158015610e7157600080fd5b505af1158015610e85573d6000803e3d6000fd5b50506012805460ff60a01b1916905550505050565b6001600160a01b038316610ec05760405162461bcd60e51b81526004016106319061124f565b6001600160a01b038216610ee65760405162461bcd60e51b815260040161063190611294565b6001600160a01b03831660009081526020819052604090205481811015610f1f5760405162461bcd60e51b8152600401610631906112d7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6012805460ff60a01b1916600160a01b179055610fc4307f00000000000000000000000000000000000000000000000000000000000000008461072c565b600c5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015611053573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110789190611415565b50506012805460ff60a01b19169055505050565b600060208083528351808285015260005b818110156110b95785810183015185820160400152820161109d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461072957600080fd5b6000806040838503121561110257600080fd5b823561110d816110da565b946020939093013593505050565b60008060006060848603121561113057600080fd5b833561113b816110da565b9250602084013561114b816110da565b929592945050506040919091013590565b60006020828403121561116e57600080fd5b8135611179816110da565b9392505050565b6000806040838503121561119357600080fd5b823561119e816110da565b915060208301356111ae816110da565b809150509250929050565b600080604083850312156111cc57600080fd5b82356111d7816110da565b9150602083013580151581146111ae57600080fd5b600181811c9082168061120057607f821691505b60208210810361122057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561055857610558611226565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561055857610558611226565b600081600019048311821515161561134a5761134a611226565b500290565b60008261136c57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561139957600080fd5b8151611179816110da565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156113f45784516001600160a01b0316835293830193918301916001016113cf565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561142a57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d5309d45eab71d2df3fd592170ff0750179c7dfd4f3b026ce5fef77a882ec96064736f6c63430008100033

Deployed Bytecode

0x60806040526004361061016a5760003560e01c806375f0a874116100d1578063ad16a0cf1161008a578063dd62ed3e11610064578063dd62ed3e1461043c578063df8408fe1461045c578063f2fde38b1461047c578063f345bd851461049c57600080fd5b8063ad16a0cf146103fa578063c0fdea5714610410578063d12a76881461042657600080fd5b806375f0a87414610337578063768dc710146103575780638da5cb5b1461038757806395d89b41146103a5578063a457c2d7146103ba578063a9059cbb146103da57600080fd5b8063313ce56711610123578063313ce56714610278578063395093511461029457806349bd5a5e146102b4578063527ffabd146102d457806370a08231146102ea578063715018a61461032057600080fd5b806303fd2a451461017657806306fdde03146101b3578063095ea7b3146101d55780631694505e1461020557806318160ddd1461023957806323b872dd1461025857600080fd5b3661017157005b600080fd5b34801561018257600080fd5b50600d54610196906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156101bf57600080fd5b506101c86104b2565b6040516101aa919061108c565b3480156101e157600080fd5b506101f56101f03660046110ef565b610544565b60405190151581526020016101aa565b34801561021157600080fd5b506101967f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561024557600080fd5b506002545b6040519081526020016101aa565b34801561026457600080fd5b506101f561027336600461111b565b61055e565b34801561028457600080fd5b50604051600981526020016101aa565b3480156102a057600080fd5b506101f56102af3660046110ef565b610582565b3480156102c057600080fd5b50601254610196906001600160a01b031681565b3480156102e057600080fd5b5061024a600b5481565b3480156102f657600080fd5b5061024a61030536600461115c565b6001600160a01b031660009081526020819052604090205490565b34801561032c57600080fd5b506103356105a4565b005b34801561034357600080fd5b50600c54610196906001600160a01b031681565b34801561036357600080fd5b506101f561037236600461115c565b600f6020526000908152604090205460ff1681565b34801561039357600080fd5b506005546001600160a01b0316610196565b3480156103b157600080fd5b506101c86105b8565b3480156103c657600080fd5b506101f56103d53660046110ef565b6105c7565b3480156103e657600080fd5b506101f56103f53660046110ef565b610647565b34801561040657600080fd5b5061024a60115481565b34801561041c57600080fd5b5061024a600e5481565b34801561043257600080fd5b5061024a60105481565b34801561044857600080fd5b5061024a610457366004611180565b610655565b34801561046857600080fd5b506103356104773660046111b9565b610680565b34801561048857600080fd5b5061033561049736600461115c565b6106b3565b3480156104a857600080fd5b5061024a600a5481565b6060600380546104c1906111ec565b80601f01602080910402602001604051908101604052809291908181526020018280546104ed906111ec565b801561053a5780601f1061050f5761010080835404028352916020019161053a565b820191906000526020600020905b81548152906001019060200180831161051d57829003601f168201915b5050505050905090565b60003361055281858561072c565b60019150505b92915050565b60003361056c858285610850565b6105778585856108ca565b506001949350505050565b6000336105528185856105958383610655565b61059f919061123c565b61072c565b6105ac610b67565b6105b66000610bc1565b565b6060600480546104c1906111ec565b600033816105d58286610655565b90508381101561063a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610577828686840361072c565b6000336105528185856108ca565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610688610b67565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6106bb610b67565b6001600160a01b0381166107205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610631565b61072981610bc1565b50565b6001600160a01b03831661078e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610631565b6001600160a01b0382166107ef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610631565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061085c8484610655565b905060001981146108c457818110156108b75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610631565b6108c4848484840361072c565b50505050565b6001600160a01b0383166108f05760405162461bcd60e51b81526004016106319061124f565b6001600160a01b0382166109165760405162461bcd60e51b815260040161063190611294565b80610936846001600160a01b031660009081526020819052604090205490565b10156109545760405162461bcd60e51b8152600401610631906112d7565b6012546001600160a01b038481169116148061097d57506012546001600160a01b038381169116145b80156109935750601254600160a01b900460ff16155b15610b57576012546001600160a01b03848116911614610a8057600e543060009081526020819052604081205490916109cb9161131d565b905060105481106109e1576109e1601054610c13565b601154600e5410610a7e576109f7601154610cba565b601154600e6000828254610a0b919061131d565b9091555050600c546040516000916001600160a01b0316904780156108fc029184818181858888f19350505050905080610a7c5760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408aa8960731b6044820152606401610631565b505b505b6001600160a01b0383166000908152600f602052604081205460ff1680610abf57506001600160a01b0383166000908152600f602052604090205460ff165b15610acb575080610b4c565b60006064600b5484610add9190611330565b610ae7919061134f565b905060006064600a5485610afb9190611330565b610b05919061134f565b9050610b11818361123c565b610b1b908561131d565b925081600e6000828254610b2f919061123c565b90915550610b4990508630610b44848661123c565b610e9a565b50505b6108c4848483610e9a565b610b62838383610e9a565b505050565b6005546001600160a01b031633146105b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610631565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6012805460ff60a01b1916600160a01b1790556000610c3360028361134f565b90506000610c41828461131d565b905047610c4d83610cba565b6000610c59824761131d565b9050610c658382610f86565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506012805460ff60a01b19169055505050565b6012805460ff60a01b1916600160a01b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610d0257610d02611371565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da49190611387565b81600181518110610db757610db7611371565b60200260200101906001600160a01b031690816001600160a01b031681525050610e02307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461072c565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790610e579085906000908690309042906004016113a4565b600060405180830381600087803b158015610e7157600080fd5b505af1158015610e85573d6000803e3d6000fd5b50506012805460ff60a01b1916905550505050565b6001600160a01b038316610ec05760405162461bcd60e51b81526004016106319061124f565b6001600160a01b038216610ee65760405162461bcd60e51b815260040161063190611294565b6001600160a01b03831660009081526020819052604090205481811015610f1f5760405162461bcd60e51b8152600401610631906112d7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6012805460ff60a01b1916600160a01b179055610fc4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461072c565b600c5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015611053573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110789190611415565b50506012805460ff60a01b19169055505050565b600060208083528351808285015260005b818110156110b95785810183015185820160400152820161109d565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461072957600080fd5b6000806040838503121561110257600080fd5b823561110d816110da565b946020939093013593505050565b60008060006060848603121561113057600080fd5b833561113b816110da565b9250602084013561114b816110da565b929592945050506040919091013590565b60006020828403121561116e57600080fd5b8135611179816110da565b9392505050565b6000806040838503121561119357600080fd5b823561119e816110da565b915060208301356111ae816110da565b809150509250929050565b600080604083850312156111cc57600080fd5b82356111d7816110da565b9150602083013580151581146111ae57600080fd5b600181811c9082168061120057607f821691505b60208210810361122057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561055857610558611226565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b8181038181111561055857610558611226565b600081600019048311821515161561134a5761134a611226565b500290565b60008261136c57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561139957600080fd5b8151611179816110da565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156113f45784516001600160a01b0316835293830193918301916001016113cf565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561142a57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d5309d45eab71d2df3fd592170ff0750179c7dfd4f3b026ce5fef77a882ec96064736f6c63430008100033

Deployed Bytecode Sourcemap

28573:5810:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28934:64;;;;;;;;;;-1:-1:-1;28934:64:0;;;;-1:-1:-1;;;;;28934:64:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;28934:64:0;;;;;;;;18291:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20565:244::-;;;;;;;;;;-1:-1:-1;20565:244:0;;;;;:::i;:::-;;:::i;:::-;;;1396:14:1;;1389:22;1371:41;;1359:2;1344:18;20565:244:0;1231:187:1;29252:51:0;;;;;;;;;;;;;;;19429:110;;;;;;;;;;-1:-1:-1;19519:12:0;;19429:110;;;1803:25:1;;;1791:2;1776:18;19429:110:0;1657:177:1;21389:297:0;;;;;;;;;;-1:-1:-1;21389:297:0;;;;;:::i;:::-;;:::i;19272:92::-;;;;;;;;;;-1:-1:-1;19272:92:0;;19355:1;2442:36:1;;2430:2;2415:18;19272:92:0;2300:184:1;23105:272:0;;;;;;;;;;-1:-1:-1;23105:272:0;;;;;:::i;:::-;;:::i;29310:28::-;;;;;;;;;;-1:-1:-1;29310:28:0;;;;-1:-1:-1;;;;;29310:28:0;;;28809:34;;;;;;;;;;;;;;;;18456:177;;;;;;;;;;-1:-1:-1;18456:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;18607:18:0;18575:7;18607:18;;;;;;;;;;;;18456:177;15550:103;;;;;;;;;;;;;:::i;:::-;;28852:75;;;;;;;;;;-1:-1:-1;28852:75:0;;;;-1:-1:-1;;;;;28852:75:0;;;29049:50;;;;;;;;;;-1:-1:-1;29049:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;14902:87;;;;;;;;;;-1:-1:-1;14975:6:0;;-1:-1:-1;;;;;14975:6:0;14902:87;;18115:106;;;;;;;;;;;;;:::i;22189:507::-;;;;;;;;;;-1:-1:-1;22189:507:0;;;;;:::i;:::-;;:::i;20009:236::-;;;;;;;;;;-1:-1:-1;20009:236:0;;;;;:::i;:::-;;:::i;29181:62::-;;;;;;;;;;;;;;;;29005:37;;;;;;;;;;;;;;;;29106:68;;;;;;;;;;;;;;;;19602:201;;;;;;;;;;-1:-1:-1;19602:201:0;;;;;:::i;:::-;;:::i;32819:132::-;;;;;;;;;;-1:-1:-1;32819:132:0;;;;;:::i;:::-;;:::i;15808:238::-;;;;;;;;;;-1:-1:-1;15808:238:0;;;;;:::i;:::-;;:::i;28768:34::-;;;;;;;;;;;;;;;;18291:102;18347:13;18380:5;18373:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18291:102;:::o;20565:244::-;20686:4;13775:10;20747:32;13775:10;20763:7;20772:6;20747:8;:32::i;:::-;20797:4;20790:11;;;20565:244;;;;;:::o;21389:297::-;21522:4;13775:10;21580:38;21596:4;13775:10;21611:6;21580:15;:38::i;:::-;21629:27;21639:4;21645:2;21649:6;21629:9;:27::i;:::-;-1:-1:-1;21674:4:0;;21389:297;-1:-1:-1;;;;21389:297:0:o;23105:272::-;23222:4;13775:10;23283:64;13775:10;23299:7;23336:10;23308:25;13775:10;23299:7;23308:9;:25::i;:::-;:38;;;;:::i;:::-;23283:8;:64::i;15550:103::-;14788:13;:11;:13::i;:::-;15615:30:::1;15642:1;15615:18;:30::i;:::-;15550:103::o:0;18115:106::-;18173:13;18206:7;18199:14;;;;;:::i;22189:507::-;22311:4;13775:10;22311:4;22399:25;13775:10;22416:7;22399:9;:25::i;:::-;22372:52;;22477:15;22457:16;:35;;22435:122;;;;-1:-1:-1;;;22435:122:0;;4404:2:1;22435:122:0;;;4386:21:1;4443:2;4423:18;;;4416:30;4482:34;4462:18;;;4455:62;-1:-1:-1;;;4533:18:1;;;4526:35;4578:19;;22435:122:0;;;;;;;;;22593:60;22602:5;22609:7;22637:15;22618:16;:34;22593:8;:60::i;20009:236::-;20126:4;13775:10;20187:28;13775:10;20204:2;20208:6;20187:9;:28::i;19602:201::-;-1:-1:-1;;;;;19768:18:0;;;19736:7;19768:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19602:201::o;32819:132::-;14788:13;:11;:13::i;:::-;-1:-1:-1;;;;;32905:28:0;;;::::1;;::::0;;;:18:::1;:28;::::0;;;;:38;;-1:-1:-1;;32905:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32819:132::o;15808:238::-;14788:13;:11;:13::i;:::-;-1:-1:-1;;;;;15911:22:0;::::1;15889:110;;;::::0;-1:-1:-1;;;15889:110:0;;4810:2:1;15889:110:0::1;::::0;::::1;4792:21:1::0;4849:2;4829:18;;;4822:30;4888:34;4868:18;;;4861:62;-1:-1:-1;;;4939:18:1;;;4932:36;4985:19;;15889:110:0::1;4608:402:1::0;15889:110:0::1;16010:28;16029:8;16010:18;:28::i;:::-;15808:238:::0;:::o;25412:380::-;-1:-1:-1;;;;;25548:19:0;;25540:68;;;;-1:-1:-1;;;25540:68:0;;5217:2:1;25540:68:0;;;5199:21:1;5256:2;5236:18;;;5229:30;5295:34;5275:18;;;5268:62;-1:-1:-1;;;5346:18:1;;;5339:34;5390:19;;25540:68:0;5015:400:1;25540:68:0;-1:-1:-1;;;;;25627:21:0;;25619:68;;;;-1:-1:-1;;;25619:68:0;;5622:2:1;25619:68:0;;;5604:21:1;5661:2;5641:18;;;5634:30;5700:34;5680:18;;;5673:62;-1:-1:-1;;;5751:18:1;;;5744:32;5793:19;;25619:68:0;5420:398:1;25619:68:0;-1:-1:-1;;;;;25700:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25752:32;;1803:25:1;;;25752:32:0;;1776:18:1;25752:32:0;;;;;;;25412:380;;;:::o;26083:502::-;26218:24;26245:25;26255:5;26262:7;26245:9;:25::i;:::-;26218:52;;-1:-1:-1;;26285:16:0;:37;26281:297;;26385:6;26365:16;:26;;26339:117;;;;-1:-1:-1;;;26339:117:0;;6025:2:1;26339:117:0;;;6007:21:1;6064:2;6044:18;;;6037:30;6103:31;6083:18;;;6076:59;6152:18;;26339:117:0;5823:353:1;26339:117:0;26500:51;26509:5;26516:7;26544:6;26525:16;:25;26500:8;:51::i;:::-;26207:378;26083:502;;;:::o;30975:1836::-;-1:-1:-1;;;;;31073:18:0;;31065:68;;;;-1:-1:-1;;;31065:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31152:16:0;;31144:64;;;;-1:-1:-1;;;31144:64:0;;;;;;;:::i;:::-;31246:6;31227:15;31237:4;-1:-1:-1;;;;;18607:18:0;18575:7;18607:18;;;;;;;;;;;;18456:177;31227:15;:25;;31219:76;;;;-1:-1:-1;;;31219:76:0;;;;;;;:::i;:::-;31321:13;;-1:-1:-1;;;;;31313:21:0;;;31321:13;;31313:21;;:44;;-1:-1:-1;31344:13:0;;-1:-1:-1;;;;;31338:19:0;;;31344:13;;31338:19;31313:44;31312:67;;;;-1:-1:-1;31363:16:0;;-1:-1:-1;;;31363:16:0;;;;31362:17;31312:67;31308:1496;;;31408:13;;-1:-1:-1;;;;;31400:21:0;;;31408:13;;31400:21;31396:681;;31504:18;;31495:4;31442:32;18607:18;;;;;;;;;;;31442:32;;31477:45;;;:::i;:::-;31442:80;;31573:29;;31545:24;:57;31541:152;;31627:46;31643:29;;31627:15;:46::i;:::-;31739:23;;31716:18;;31715:47;31711:351;;31787:42;31805:23;;31787:17;:42::i;:::-;31874:23;;31852:18;;:45;;;;;;;:::i;:::-;;;;-1:-1:-1;;31940:15:0;;31932:52;;31920:9;;-1:-1:-1;;;;;31940:15:0;;31962:21;31932:52;;;;;31920:9;31932:52;31920:9;31932:52;31962:21;31940:15;31932:52;;;;;;;31920:64;;32015:4;32007:35;;;;-1:-1:-1;;;32007:35:0;;7733:2:1;32007:35:0;;;7715:21:1;7772:2;7752:18;;;7745:30;-1:-1:-1;;;7791:18:1;;;7784:48;7849:18;;32007:35:0;7531:342:1;32007:35:0;31764:298;31711:351;31423:654;31396:681;-1:-1:-1;;;;;32134:24:0;;32093:22;32134:24;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;32162:22:0;;;;;;:18;:22;;;;;;;;32134:50;32130:531;;;-1:-1:-1;32222:6:0;32130:531;;;32283:22;32338:3;32319:15;;32310:6;:24;;;;:::i;:::-;32309:32;;;;:::i;:::-;32283:59;;32361:22;32416:3;32397:15;;32388:6;:24;;;;:::i;:::-;32387:32;;;;:::i;:::-;32361:59;-1:-1:-1;32466:31:0;32361:59;32466:14;:31;:::i;:::-;32456:42;;:6;:42;:::i;:::-;32439:59;;32539:14;32517:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;32574:71:0;;-1:-1:-1;32590:4:0;32604;32612:31;32629:14;32612;:31;:::i;:::-;32574:15;:71::i;:::-;32264:397;;32130:531;32675:41;32691:4;32697:2;32701:14;32675:15;:41::i;31308:1496::-;32759:33;32775:4;32781:2;32785:6;32759:15;:33::i;:::-;30975:1836;;;:::o;15067:132::-;14975:6;;-1:-1:-1;;;;;14975:6:0;13775:10;15131:23;15123:68;;;;-1:-1:-1;;;15123:68:0;;8475:2:1;15123:68:0;;;8457:21:1;;;8494:18;;;8487:30;8553:34;8533:18;;;8526:62;8605:18;;15123:68:0;8273:356:1;16206:191:0;16299:6;;;-1:-1:-1;;;;;16316:17:0;;;-1:-1:-1;;;;;;16316:17:0;;;;;;;16349:40;;16299:6;;;16316:17;16299:6;;16349:40;;16280:16;;16349:40;16269:128;16206:191;:::o;32959:474::-;29550:16;:23;;-1:-1:-1;;;;29550:23:0;-1:-1:-1;;;29550:23:0;;;;33061:24:::1;33084:1;33061:20:::0;:24:::1;:::i;:::-;33045:41:::0;-1:-1:-1;33097:17:0::1;33118:27;33045:41:::0;33118:20;:27:::1;:::i;:::-;33097:49:::0;-1:-1:-1;33184:21:0::1;33218:23;33236:4:::0;33218:17:::1;:23::i;:::-;33254:18;33276:38;33300:14:::0;33276:21:::1;:38;:::i;:::-;33254:61;;33328:36;33342:9;33353:10;33328:13;:36::i;:::-;33382:43;::::0;;8836:25:1;;;8892:2;8877:18;;8870:34;;;8920:18;;;8913:34;;;33382:43:0::1;::::0;8824:2:1;8809:18;33382:43:0::1;;;;;;;-1:-1:-1::0;;29596:16:0;:24;;-1:-1:-1;;;;29596:24:0;;;-1:-1:-1;;;32959:474:0:o;33441:488::-;29550:16;:23;;-1:-1:-1;;;;29550:23:0;-1:-1:-1;;;29550:23:0;;;33544:16:::1;::::0;;33558:1:::1;33544:16:::0;;;;;::::1;::::0;;-1:-1:-1;;33544:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;33544:16:0::1;33520:40;;33589:4;33571;33576:1;33571:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;33571:23:0::1;;;-1:-1:-1::0;;;;;33571:23:0::1;;;::::0;::::1;33615:15;-1:-1:-1::0;;;;;33615:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33605:4;33610:1;33605:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;33605:32:0::1;;;-1:-1:-1::0;;;;;33605:32:0::1;;;::::0;::::1;33650:62;33667:4;33682:15;33700:11;33650:8;:62::i;:::-;33725:196;::::0;-1:-1:-1;;;33725:196:0;;-1:-1:-1;;;;;33725:15:0::1;:66;::::0;::::1;::::0;:196:::1;::::0;33806:11;;33832:1:::1;::::0;33848:4;;33875::::1;::::0;33895:15:::1;::::0;33725:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29596:16:0;:24;;-1:-1:-1;;;;29596:24:0;;;-1:-1:-1;;;;33441:488:0:o;26593:776::-;-1:-1:-1;;;;;26724:18:0;;26716:68;;;;-1:-1:-1;;;26716:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26803:16:0;;26795:64;;;;-1:-1:-1;;;26795:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26894:15:0;;26872:19;26894:15;;;;;;;;;;;26942:21;;;;26920:109;;;;-1:-1:-1;;;26920:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27065:15:0;;;:9;:15;;;;;;;;;;;27083:20;;;27065:38;;27283:13;;;;;;;;;;:23;;;;;;27335:26;;1803:25:1;;;27283:13:0;;27335:26;;1776:18:1;27335:26:0;;;;;;;26705:664;26593:776;;;:::o;33937:406::-;29550:16;:23;;-1:-1:-1;;;;29550:23:0;-1:-1:-1;;;29550:23:0;;;34054:62:::1;34071:4;34086:15;34104:11:::0;34054:8:::1;:62::i;:::-;34279:15;::::0;34129:206:::1;::::0;-1:-1:-1;;;34129:206:0;;34201:4:::1;34129:206;::::0;::::1;10804:34:1::0;10854:18;;;10847:34;;;34247:1:0::1;10897:18:1::0;;;10890:34;;;10940:18;;;10933:34;-1:-1:-1;;;;;34279:15:0;;::::1;10983:19:1::0;;;10976:44;34309:15:0::1;11036:19:1::0;;;11029:35;34129:15:0::1;:31:::0;;::::1;::::0;::::1;::::0;34168:9;;10738:19:1;;34129:206:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;29596:16:0;:24;;-1:-1:-1;;;;29596:24:0;;;-1:-1:-1;;;33937:406:0:o;222:548:1:-;334:4;363:2;392;381:9;374:21;424:6;418:13;467:6;462:2;451:9;447:18;440:34;492:1;502:140;516:6;513:1;510:13;502:140;;;611:14;;;607:23;;601:30;577:17;;;596:2;573:26;566:66;531:10;;502:140;;;506:3;691:1;686:2;677:6;666:9;662:22;658:31;651:42;761:2;754;750:7;745:2;737:6;733:15;729:29;718:9;714:45;710:54;702:62;;;;222:548;;;;:::o;775:131::-;-1:-1:-1;;;;;850:31:1;;840:42;;830:70;;896:1;893;886:12;911:315;979:6;987;1040:2;1028:9;1019:7;1015:23;1011:32;1008:52;;;1056:1;1053;1046:12;1008:52;1095:9;1082:23;1114:31;1139:5;1114:31;:::i;:::-;1164:5;1216:2;1201:18;;;;1188:32;;-1:-1:-1;;;911:315:1:o;1839:456::-;1916:6;1924;1932;1985:2;1973:9;1964:7;1960:23;1956:32;1953:52;;;2001:1;1998;1991:12;1953:52;2040:9;2027:23;2059:31;2084:5;2059:31;:::i;:::-;2109:5;-1:-1:-1;2166:2:1;2151:18;;2138:32;2179:33;2138:32;2179:33;:::i;:::-;1839:456;;2231:7;;-1:-1:-1;;;2285:2:1;2270:18;;;;2257:32;;1839:456::o;2489:247::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2656:9;2643:23;2675:31;2700:5;2675:31;:::i;:::-;2725:5;2489:247;-1:-1:-1;;;2489:247:1:o;2741:388::-;2809:6;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2925:9;2912:23;2944:31;2969:5;2944:31;:::i;:::-;2994:5;-1:-1:-1;3051:2:1;3036:18;;3023:32;3064:33;3023:32;3064:33;:::i;:::-;3116:7;3106:17;;;2741:388;;;;;:::o;3134:416::-;3199:6;3207;3260:2;3248:9;3239:7;3235:23;3231:32;3228:52;;;3276:1;3273;3266:12;3228:52;3315:9;3302:23;3334:31;3359:5;3334:31;:::i;:::-;3384:5;-1:-1:-1;3441:2:1;3426:18;;3413:32;3483:15;;3476:23;3464:36;;3454:64;;3514:1;3511;3504:12;3555:380;3634:1;3630:12;;;;3677;;;3698:61;;3752:4;3744:6;3740:17;3730:27;;3698:61;3805:2;3797:6;3794:14;3774:18;3771:38;3768:161;;3851:10;3846:3;3842:20;3839:1;3832:31;3886:4;3883:1;3876:15;3914:4;3911:1;3904:15;3768:161;;3555:380;;;:::o;3940:127::-;4001:10;3996:3;3992:20;3989:1;3982:31;4032:4;4029:1;4022:15;4056:4;4053:1;4046:15;4072:125;4137:9;;;4158:10;;;4155:36;;;4171:18;;:::i;6181:401::-;6383:2;6365:21;;;6422:2;6402:18;;;6395:30;6461:34;6456:2;6441:18;;6434:62;-1:-1:-1;;;6527:2:1;6512:18;;6505:35;6572:3;6557:19;;6181:401::o;6587:399::-;6789:2;6771:21;;;6828:2;6808:18;;;6801:30;6867:34;6862:2;6847:18;;6840:62;-1:-1:-1;;;6933:2:1;6918:18;;6911:33;6976:3;6961:19;;6587:399::o;6991:402::-;7193:2;7175:21;;;7232:2;7212:18;;;7205:30;7271:34;7266:2;7251:18;;7244:62;-1:-1:-1;;;7337:2:1;7322:18;;7315:36;7383:3;7368:19;;6991:402::o;7398:128::-;7465:9;;;7486:11;;;7483:37;;;7500:18;;:::i;7878:168::-;7918:7;7984:1;7980;7976:6;7972:14;7969:1;7966:21;7961:1;7954:9;7947:17;7943:45;7940:71;;;7991:18;;:::i;:::-;-1:-1:-1;8031:9:1;;7878:168::o;8051:217::-;8091:1;8117;8107:132;;8161:10;8156:3;8152:20;8149:1;8142:31;8196:4;8193:1;8186:15;8224:4;8221:1;8214:15;8107:132;-1:-1:-1;8253:9:1;;8051:217::o;9090:127::-;9151:10;9146:3;9142:20;9139:1;9132:31;9182:4;9179:1;9172:15;9206:4;9203:1;9196:15;9222:251;9292:6;9345:2;9333:9;9324:7;9320:23;9316:32;9313:52;;;9361:1;9358;9351:12;9313:52;9393:9;9387:16;9412:31;9437:5;9412:31;:::i;9478:980::-;9740:4;9788:3;9777:9;9773:19;9819:6;9808:9;9801:25;9845:2;9883:6;9878:2;9867:9;9863:18;9856:34;9926:3;9921:2;9910:9;9906:18;9899:31;9950:6;9985;9979:13;10016:6;10008;10001:22;10054:3;10043:9;10039:19;10032:26;;10093:2;10085:6;10081:15;10067:29;;10114:1;10124:195;10138:6;10135:1;10132:13;10124:195;;;10203:13;;-1:-1:-1;;;;;10199:39:1;10187:52;;10294:15;;;;10259:12;;;;10235:1;10153:9;10124:195;;;-1:-1:-1;;;;;;;10375:32:1;;;;10370:2;10355:18;;10348:60;-1:-1:-1;;;10439:3:1;10424:19;10417:35;10336:3;9478:980;-1:-1:-1;;;9478:980:1:o;11075:306::-;11163:6;11171;11179;11232:2;11220:9;11211:7;11207:23;11203:32;11200:52;;;11248:1;11245;11238:12;11200:52;11277:9;11271:16;11261:26;;11327:2;11316:9;11312:18;11306:25;11296:35;;11371:2;11360:9;11356:18;11350:25;11340:35;;11075:306;;;;;:::o

Swarm Source

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