ETH Price: $2,985.41 (-4.69%)
Gas: 3 Gwei

Token

ProbablyObsessiveNarcissisticDementia2IQ (POND)
 

Overview

Max Total Supply

420,000,000,000 POND

Holders

340

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
15,628,343.784172092961341967 POND

Value
$0.00
0xbdd1b0f9f428d3ba52674e6f3b8d88c03bf6c267
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xb890D729...4c03efa2B
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ProbablyObsessiveNarcissisticDementia2IQ

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 2 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 11 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

File 4 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 11 : IUniswapV2Factory.sol
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;
}

File 8 of 11 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    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 (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 9 of 11 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

File 10 of 11 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 11 of 11 : ProbablyObsessiveNarcissisticDementia2IQ.sol
// SPDX-License-Identifier: MIT

/**
 * Web: https://pond.rehab
 * Telegram: t.me/pondcoin_erc
 * Twitter: @pondcoin_eth
 */

pragma solidity ^0.8.21;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";

contract ProbablyObsessiveNarcissisticDementia2IQ is
    ERC20,
    Ownable,
    ERC20Burnable
{
    address private constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;

    IUniswapV2Router02 public constant uniswapV2Router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public uniswapV2Pair;

    error NotAllowed();
    error InvalidConfig();
    error WithdrawalFailed();

    constructor(
        address presaleDistributorWallet_,
        address treasuryWallet_
    ) ERC20("ProbablyObsessiveNarcissisticDementia2IQ", "POND") {
        _mint(presaleDistributorWallet_, 195_510_000_000 * 10 ** decimals());
        _mint(treasuryWallet_, 28_980_000_000 * 10 ** decimals());
        _mint(address(this), 195_510_000_000 * 10 ** decimals());

        if (totalSupply() != 420_000_000_000 * 10 ** decimals()) {
            revert InvalidConfig();
        }
    }

    // AMM Utilities

    function createPair() public payable onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            WETH
        );

        // Approve
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        uniswapV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            msg.sender,
            block.timestamp + 60 * 10
        );
    }

    function emergencyWithdrawETH(address to_) external onlyOwner {
        if (to_ == address(0)) {
            revert NotAllowed();
        }

        (bool success, ) = to_.call{value: address(this).balance}("");
        if (!success) {
            revert WithdrawalFailed();
        }
    }

    function emergencyWithdrawERC20(
        address token_,
        address to_,
        uint256 amount_
    ) external onlyOwner {
        if (to_ == address(0)) {
            revert NotAllowed();
        }

        IERC20(token_).transfer(to_, amount_);
    }
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"presaleDistributorWallet_","type":"address"},{"internalType":"address","name":"treasuryWallet_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidConfig","type":"error"},{"inputs":[],"name":"NotAllowed","type":"error"},{"inputs":[],"name":"WithdrawalFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"payable","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":"token_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"emergencyWithdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"}],"name":"emergencyWithdrawETH","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162002e3e38038062002e3e8339818101604052810190620000379190620004d2565b60405180606001604052806028815260200162002e16602891396040518060400160405280600481526020017f504f4e4400000000000000000000000000000000000000000000000000000000815250816003908162000098919062000793565b508060049081620000aa919062000793565b505050620000cd620000c16200021060201b60201c565b6200021860201b60201c565b6200010e82620000e2620002de60201b60201c565b600a620000f0919062000a0a565b642d854dd98062000102919062000a5b565b620002e760201b60201c565b6200014f8162000123620002de60201b60201c565b600a62000131919062000a0a565b6406bf57b50062000143919062000a5b565b620002e760201b60201c565b620001903062000164620002de60201b60201c565b600a62000172919062000a0a565b642d854dd98062000184919062000a5b565b620002e760201b60201c565b620001a0620002de60201b60201c565b600a620001ae919062000a0a565b6461c9f36800620001c0919062000a5b565b620001d06200045460201b60201c565b1462000208576040517f35be3ac800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505062000b92565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003509062000b07565b60405180910390fd5b6200036d600083836200045e60201b60201c565b806002600082825462000381919062000b29565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000434919062000b75565b60405180910390a362000450600083836200046360201b60201c565b5050565b6000600254905090565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200049a826200046d565b9050919050565b620004ac816200048d565b8114620004b857600080fd5b50565b600081519050620004cc81620004a1565b92915050565b60008060408385031215620004ec57620004eb62000468565b5b6000620004fc85828601620004bb565b92505060206200050f85828601620004bb565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200059b57607f821691505b602082108103620005b157620005b062000553565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200061b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005dc565b620006278683620005dc565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006746200066e62000668846200063f565b62000649565b6200063f565b9050919050565b6000819050919050565b620006908362000653565b620006a86200069f826200067b565b848454620005e9565b825550505050565b600090565b620006bf620006b0565b620006cc81848462000685565b505050565b5b81811015620006f457620006e8600082620006b5565b600181019050620006d2565b5050565b601f82111562000743576200070d81620005b7565b6200071884620005cc565b8101602085101562000728578190505b620007406200073785620005cc565b830182620006d1565b50505b505050565b600082821c905092915050565b6000620007686000198460080262000748565b1980831691505092915050565b600062000783838362000755565b9150826002028217905092915050565b6200079e8262000519565b67ffffffffffffffff811115620007ba57620007b962000524565b5b620007c6825462000582565b620007d3828285620006f8565b600060209050601f8311600181146200080b5760008415620007f6578287015190505b62000802858262000775565b86555062000872565b601f1984166200081b86620005b7565b60005b8281101562000845578489015182556001820191506020850194506020810190506200081e565b8683101562000865578489015162000861601f89168262000755565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200090857808604811115620008e057620008df6200087a565b5b6001851615620008f05780820291505b80810290506200090085620008a9565b9450620008c0565b94509492505050565b600082620009235760019050620009f6565b81620009335760009050620009f6565b81600181146200094c576002811462000957576200098d565b6001915050620009f6565b60ff8411156200096c576200096b6200087a565b5b8360020a9150848211156200098657620009856200087a565b5b50620009f6565b5060208310610133831016604e8410600b8410161715620009c75782820a905083811115620009c157620009c06200087a565b5b620009f6565b620009d68484846001620008b6565b92509050818404811115620009f057620009ef6200087a565b5b81810290505b9392505050565b600060ff82169050919050565b600062000a17826200063f565b915062000a2483620009fd565b925062000a537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000911565b905092915050565b600062000a68826200063f565b915062000a75836200063f565b925082820262000a85816200063f565b9150828204841483151762000a9f5762000a9e6200087a565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000aef601f8362000aa6565b915062000afc8262000ab7565b602082019050919050565b6000602082019050818103600083015262000b228162000ae0565b9050919050565b600062000b36826200063f565b915062000b43836200063f565b925082820190508082111562000b5e5762000b5d6200087a565b5b92915050565b62000b6f816200063f565b82525050565b600060208201905062000b8c600083018462000b64565b92915050565b6122748062000ba26000396000f3fe60806040526004361061012a5760003560e01c806355b8fb81116100ab57806395d89b411161006f57806395d89b41146103e05780639e78fb4f1461040b578063a457c2d714610415578063a9059cbb14610452578063dd62ed3e1461048f578063f2fde38b146104cc5761012a565b806355b8fb811461030f57806370a0823114610338578063715018a61461037557806379cc67901461038c5780638da5cb5b146103b55761012a565b806323b872dd116100f257806323b872dd14610216578063313ce56714610253578063395093511461027e57806342966c68146102bb57806349bd5a5e146102e45761012a565b806306fdde031461012f578063095ea7b31461015a5780631694505e1461019757806318160ddd146101c2578063214ff459146101ed575b600080fd5b34801561013b57600080fd5b506101446104f5565b6040516101519190611627565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c91906116e2565b610587565b60405161018e919061173d565b60405180910390f35b3480156101a357600080fd5b506101ac6105aa565b6040516101b991906117b7565b60405180910390f35b3480156101ce57600080fd5b506101d76105c2565b6040516101e491906117e1565b60405180910390f35b3480156101f957600080fd5b50610214600480360381019061020f91906117fc565b6105cc565b005b34801561022257600080fd5b5061023d60048036038101906102389190611829565b6106e1565b60405161024a919061173d565b60405180910390f35b34801561025f57600080fd5b50610268610710565b6040516102759190611898565b60405180910390f35b34801561028a57600080fd5b506102a560048036038101906102a091906116e2565b610719565b6040516102b2919061173d565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd91906118b3565b610750565b005b3480156102f057600080fd5b506102f9610764565b60405161030691906118ef565b60405180910390f35b34801561031b57600080fd5b5061033660048036038101906103319190611829565b61078a565b005b34801561034457600080fd5b5061035f600480360381019061035a91906117fc565b61087c565b60405161036c91906117e1565b60405180910390f35b34801561038157600080fd5b5061038a6108c4565b005b34801561039857600080fd5b506103b360048036038101906103ae91906116e2565b6108d8565b005b3480156103c157600080fd5b506103ca6108f8565b6040516103d791906118ef565b60405180910390f35b3480156103ec57600080fd5b506103f5610922565b6040516104029190611627565b60405180910390f35b6104136109b4565b005b34801561042157600080fd5b5061043c600480360381019061043791906116e2565b610c05565b604051610449919061173d565b60405180910390f35b34801561045e57600080fd5b50610479600480360381019061047491906116e2565b610c7c565b604051610486919061173d565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b1919061190a565b610c9f565b6040516104c391906117e1565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee91906117fc565b610d26565b005b60606003805461050490611979565b80601f016020809104026020016040519081016040528092919081815260200182805461053090611979565b801561057d5780601f106105525761010080835404028352916020019161057d565b820191906000526020600020905b81548152906001019060200180831161056057829003601f168201915b5050505050905090565b600080610592610da9565b905061059f818585610db1565b600191505092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6105d4610f7a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361063a576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610660906119db565b60006040518083038185875af1925050503d806000811461069d576040519150601f19603f3d011682016040523d82523d6000602084013e6106a2565b606091505b50509050806106dd576040517f27fcd9d100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b6000806106ec610da9565b90506106f9858285610ff8565b610704858585611084565b60019150509392505050565b60006012905090565b600080610724610da9565b90506107458185856107368589610c9f565b6107409190611a1f565b610db1565b600191505092915050565b61076161075b610da9565b826112fa565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610792610f7a565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107f8576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610833929190611a53565b6020604051808303816000875af1158015610852573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108769190611aa8565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108cc610f7a565b6108d660006114c7565b565b6108ea826108e4610da9565b83610ff8565b6108f482826112fa565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461093190611979565b80601f016020809104026020016040519081016040528092919081815260200182805461095d90611979565b80156109aa5780601f1061097f576101008083540402835291602001916109aa565b820191906000526020600020905b81548152906001019060200180831161098d57829003601f168201915b5050505050905090565b6109bc610f7a565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3f9190611aea565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b8152600401610a8d929190611b17565b6020604051808303816000875af1158015610aac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad09190611aea565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610b4f30737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610db1565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7193430610b8a3061087c565b6000803361025842610b9c9190611a1f565b6040518863ffffffff1660e01b8152600401610bbd96959493929190611b7b565b60606040518083038185885af1158015610bdb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c009190611bf1565b505050565b600080610c10610da9565b90506000610c1e8286610c9f565b905083811015610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90611cb6565b60405180910390fd5b610c708286868403610db1565b60019250505092915050565b600080610c87610da9565b9050610c94818585611084565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d2e610f7a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9490611d48565b60405180910390fd5b610da6816114c7565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790611dda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690611e6c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f6d91906117e1565b60405180910390a3505050565b610f82610da9565b73ffffffffffffffffffffffffffffffffffffffff16610fa06108f8565b73ffffffffffffffffffffffffffffffffffffffff1614610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90611ed8565b60405180910390fd5b565b60006110048484610c9f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461107e5781811015611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106790611f44565b60405180910390fd5b61107d8484848403610db1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90611fd6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990612068565b60405180910390fd5b61116d83838361158d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea906120fa565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112e191906117e1565b60405180910390a36112f4848484611592565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611369576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113609061218c565b60405180910390fd5b6113758260008361158d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f29061221e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114ae91906117e1565b60405180910390a36114c283600084611592565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115d15780820151818401526020810190506115b6565b60008484015250505050565b6000601f19601f8301169050919050565b60006115f982611597565b61160381856115a2565b93506116138185602086016115b3565b61161c816115dd565b840191505092915050565b6000602082019050818103600083015261164181846115ee565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116798261164e565b9050919050565b6116898161166e565b811461169457600080fd5b50565b6000813590506116a681611680565b92915050565b6000819050919050565b6116bf816116ac565b81146116ca57600080fd5b50565b6000813590506116dc816116b6565b92915050565b600080604083850312156116f9576116f8611649565b5b600061170785828601611697565b9250506020611718858286016116cd565b9150509250929050565b60008115159050919050565b61173781611722565b82525050565b6000602082019050611752600083018461172e565b92915050565b6000819050919050565b600061177d6117786117738461164e565b611758565b61164e565b9050919050565b600061178f82611762565b9050919050565b60006117a182611784565b9050919050565b6117b181611796565b82525050565b60006020820190506117cc60008301846117a8565b92915050565b6117db816116ac565b82525050565b60006020820190506117f660008301846117d2565b92915050565b60006020828403121561181257611811611649565b5b600061182084828501611697565b91505092915050565b60008060006060848603121561184257611841611649565b5b600061185086828701611697565b935050602061186186828701611697565b9250506040611872868287016116cd565b9150509250925092565b600060ff82169050919050565b6118928161187c565b82525050565b60006020820190506118ad6000830184611889565b92915050565b6000602082840312156118c9576118c8611649565b5b60006118d7848285016116cd565b91505092915050565b6118e98161166e565b82525050565b600060208201905061190460008301846118e0565b92915050565b6000806040838503121561192157611920611649565b5b600061192f85828601611697565b925050602061194085828601611697565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061199157607f821691505b6020821081036119a4576119a361194a565b5b50919050565b600081905092915050565b50565b60006119c56000836119aa565b91506119d0826119b5565b600082019050919050565b60006119e6826119b8565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a2a826116ac565b9150611a35836116ac565b9250828201905080821115611a4d57611a4c6119f0565b5b92915050565b6000604082019050611a6860008301856118e0565b611a7560208301846117d2565b9392505050565b611a8581611722565b8114611a9057600080fd5b50565b600081519050611aa281611a7c565b92915050565b600060208284031215611abe57611abd611649565b5b6000611acc84828501611a93565b91505092915050565b600081519050611ae481611680565b92915050565b600060208284031215611b0057611aff611649565b5b6000611b0e84828501611ad5565b91505092915050565b6000604082019050611b2c60008301856118e0565b611b3960208301846118e0565b9392505050565b6000819050919050565b6000611b65611b60611b5b84611b40565b611758565b6116ac565b9050919050565b611b7581611b4a565b82525050565b600060c082019050611b9060008301896118e0565b611b9d60208301886117d2565b611baa6040830187611b6c565b611bb76060830186611b6c565b611bc460808301856118e0565b611bd160a08301846117d2565b979650505050505050565b600081519050611beb816116b6565b92915050565b600080600060608486031215611c0a57611c09611649565b5b6000611c1886828701611bdc565b9350506020611c2986828701611bdc565b9250506040611c3a86828701611bdc565b9150509250925092565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ca06025836115a2565b9150611cab82611c44565b604082019050919050565b60006020820190508181036000830152611ccf81611c93565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d326026836115a2565b9150611d3d82611cd6565b604082019050919050565b60006020820190508181036000830152611d6181611d25565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611dc46024836115a2565b9150611dcf82611d68565b604082019050919050565b60006020820190508181036000830152611df381611db7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e566022836115a2565b9150611e6182611dfa565b604082019050919050565b60006020820190508181036000830152611e8581611e49565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ec26020836115a2565b9150611ecd82611e8c565b602082019050919050565b60006020820190508181036000830152611ef181611eb5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f2e601d836115a2565b9150611f3982611ef8565b602082019050919050565b60006020820190508181036000830152611f5d81611f21565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fc06025836115a2565b9150611fcb82611f64565b604082019050919050565b60006020820190508181036000830152611fef81611fb3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120526023836115a2565b915061205d82611ff6565b604082019050919050565b6000602082019050818103600083015261208181612045565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120e46026836115a2565b91506120ef82612088565b604082019050919050565b60006020820190508181036000830152612113816120d7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006121766021836115a2565b91506121818261211a565b604082019050919050565b600060208201905081810360008301526121a581612169565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006122086022836115a2565b9150612213826121ac565b604082019050919050565b60006020820190508181036000830152612237816121fb565b905091905056fea264697066735822122059544ccf68b53d2d5fcec1c6e641772a3789a48b8faca6ff54dbffd0f6a07b2864736f6c6343000815003350726f6261626c794f62736573736976654e617263697373697374696344656d656e7469613249510000000000000000000000001f3ee069af22814cd25bd019b691f4d164d3c5aa0000000000000000000000001f3ee069af22814cd25bd019b691f4d164d3c5aa

Deployed Bytecode

0x60806040526004361061012a5760003560e01c806355b8fb81116100ab57806395d89b411161006f57806395d89b41146103e05780639e78fb4f1461040b578063a457c2d714610415578063a9059cbb14610452578063dd62ed3e1461048f578063f2fde38b146104cc5761012a565b806355b8fb811461030f57806370a0823114610338578063715018a61461037557806379cc67901461038c5780638da5cb5b146103b55761012a565b806323b872dd116100f257806323b872dd14610216578063313ce56714610253578063395093511461027e57806342966c68146102bb57806349bd5a5e146102e45761012a565b806306fdde031461012f578063095ea7b31461015a5780631694505e1461019757806318160ddd146101c2578063214ff459146101ed575b600080fd5b34801561013b57600080fd5b506101446104f5565b6040516101519190611627565b60405180910390f35b34801561016657600080fd5b50610181600480360381019061017c91906116e2565b610587565b60405161018e919061173d565b60405180910390f35b3480156101a357600080fd5b506101ac6105aa565b6040516101b991906117b7565b60405180910390f35b3480156101ce57600080fd5b506101d76105c2565b6040516101e491906117e1565b60405180910390f35b3480156101f957600080fd5b50610214600480360381019061020f91906117fc565b6105cc565b005b34801561022257600080fd5b5061023d60048036038101906102389190611829565b6106e1565b60405161024a919061173d565b60405180910390f35b34801561025f57600080fd5b50610268610710565b6040516102759190611898565b60405180910390f35b34801561028a57600080fd5b506102a560048036038101906102a091906116e2565b610719565b6040516102b2919061173d565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd91906118b3565b610750565b005b3480156102f057600080fd5b506102f9610764565b60405161030691906118ef565b60405180910390f35b34801561031b57600080fd5b5061033660048036038101906103319190611829565b61078a565b005b34801561034457600080fd5b5061035f600480360381019061035a91906117fc565b61087c565b60405161036c91906117e1565b60405180910390f35b34801561038157600080fd5b5061038a6108c4565b005b34801561039857600080fd5b506103b360048036038101906103ae91906116e2565b6108d8565b005b3480156103c157600080fd5b506103ca6108f8565b6040516103d791906118ef565b60405180910390f35b3480156103ec57600080fd5b506103f5610922565b6040516104029190611627565b60405180910390f35b6104136109b4565b005b34801561042157600080fd5b5061043c600480360381019061043791906116e2565b610c05565b604051610449919061173d565b60405180910390f35b34801561045e57600080fd5b50610479600480360381019061047491906116e2565b610c7c565b604051610486919061173d565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b1919061190a565b610c9f565b6040516104c391906117e1565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee91906117fc565b610d26565b005b60606003805461050490611979565b80601f016020809104026020016040519081016040528092919081815260200182805461053090611979565b801561057d5780601f106105525761010080835404028352916020019161057d565b820191906000526020600020905b81548152906001019060200180831161056057829003601f168201915b5050505050905090565b600080610592610da9565b905061059f818585610db1565b600191505092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6105d4610f7a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361063a576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff1647604051610660906119db565b60006040518083038185875af1925050503d806000811461069d576040519150601f19603f3d011682016040523d82523d6000602084013e6106a2565b606091505b50509050806106dd576040517f27fcd9d100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b6000806106ec610da9565b90506106f9858285610ff8565b610704858585611084565b60019150509392505050565b60006012905090565b600080610724610da9565b90506107458185856107368589610c9f565b6107409190611a1f565b610db1565b600191505092915050565b61076161075b610da9565b826112fa565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610792610f7a565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107f8576040517f3d693ada00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610833929190611a53565b6020604051808303816000875af1158015610852573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108769190611aa8565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108cc610f7a565b6108d660006114c7565b565b6108ea826108e4610da9565b83610ff8565b6108f482826112fa565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461093190611979565b80601f016020809104026020016040519081016040528092919081815260200182805461095d90611979565b80156109aa5780601f1061097f576101008083540402835291602001916109aa565b820191906000526020600020905b81548152906001019060200180831161098d57829003601f168201915b5050505050905090565b6109bc610f7a565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3f9190611aea565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b8152600401610a8d929190611b17565b6020604051808303816000875af1158015610aac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad09190611aea565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610b4f30737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610db1565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7193430610b8a3061087c565b6000803361025842610b9c9190611a1f565b6040518863ffffffff1660e01b8152600401610bbd96959493929190611b7b565b60606040518083038185885af1158015610bdb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610c009190611bf1565b505050565b600080610c10610da9565b90506000610c1e8286610c9f565b905083811015610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90611cb6565b60405180910390fd5b610c708286868403610db1565b60019250505092915050565b600080610c87610da9565b9050610c94818585611084565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d2e610f7a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9490611d48565b60405180910390fd5b610da6816114c7565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790611dda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690611e6c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f6d91906117e1565b60405180910390a3505050565b610f82610da9565b73ffffffffffffffffffffffffffffffffffffffff16610fa06108f8565b73ffffffffffffffffffffffffffffffffffffffff1614610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90611ed8565b60405180910390fd5b565b60006110048484610c9f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461107e5781811015611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106790611f44565b60405180910390fd5b61107d8484848403610db1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90611fd6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990612068565b60405180910390fd5b61116d83838361158d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea906120fa565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112e191906117e1565b60405180910390a36112f4848484611592565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611369576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113609061218c565b60405180910390fd5b6113758260008361158d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f29061221e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114ae91906117e1565b60405180910390a36114c283600084611592565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115d15780820151818401526020810190506115b6565b60008484015250505050565b6000601f19601f8301169050919050565b60006115f982611597565b61160381856115a2565b93506116138185602086016115b3565b61161c816115dd565b840191505092915050565b6000602082019050818103600083015261164181846115ee565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116798261164e565b9050919050565b6116898161166e565b811461169457600080fd5b50565b6000813590506116a681611680565b92915050565b6000819050919050565b6116bf816116ac565b81146116ca57600080fd5b50565b6000813590506116dc816116b6565b92915050565b600080604083850312156116f9576116f8611649565b5b600061170785828601611697565b9250506020611718858286016116cd565b9150509250929050565b60008115159050919050565b61173781611722565b82525050565b6000602082019050611752600083018461172e565b92915050565b6000819050919050565b600061177d6117786117738461164e565b611758565b61164e565b9050919050565b600061178f82611762565b9050919050565b60006117a182611784565b9050919050565b6117b181611796565b82525050565b60006020820190506117cc60008301846117a8565b92915050565b6117db816116ac565b82525050565b60006020820190506117f660008301846117d2565b92915050565b60006020828403121561181257611811611649565b5b600061182084828501611697565b91505092915050565b60008060006060848603121561184257611841611649565b5b600061185086828701611697565b935050602061186186828701611697565b9250506040611872868287016116cd565b9150509250925092565b600060ff82169050919050565b6118928161187c565b82525050565b60006020820190506118ad6000830184611889565b92915050565b6000602082840312156118c9576118c8611649565b5b60006118d7848285016116cd565b91505092915050565b6118e98161166e565b82525050565b600060208201905061190460008301846118e0565b92915050565b6000806040838503121561192157611920611649565b5b600061192f85828601611697565b925050602061194085828601611697565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061199157607f821691505b6020821081036119a4576119a361194a565b5b50919050565b600081905092915050565b50565b60006119c56000836119aa565b91506119d0826119b5565b600082019050919050565b60006119e6826119b8565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a2a826116ac565b9150611a35836116ac565b9250828201905080821115611a4d57611a4c6119f0565b5b92915050565b6000604082019050611a6860008301856118e0565b611a7560208301846117d2565b9392505050565b611a8581611722565b8114611a9057600080fd5b50565b600081519050611aa281611a7c565b92915050565b600060208284031215611abe57611abd611649565b5b6000611acc84828501611a93565b91505092915050565b600081519050611ae481611680565b92915050565b600060208284031215611b0057611aff611649565b5b6000611b0e84828501611ad5565b91505092915050565b6000604082019050611b2c60008301856118e0565b611b3960208301846118e0565b9392505050565b6000819050919050565b6000611b65611b60611b5b84611b40565b611758565b6116ac565b9050919050565b611b7581611b4a565b82525050565b600060c082019050611b9060008301896118e0565b611b9d60208301886117d2565b611baa6040830187611b6c565b611bb76060830186611b6c565b611bc460808301856118e0565b611bd160a08301846117d2565b979650505050505050565b600081519050611beb816116b6565b92915050565b600080600060608486031215611c0a57611c09611649565b5b6000611c1886828701611bdc565b9350506020611c2986828701611bdc565b9250506040611c3a86828701611bdc565b9150509250925092565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ca06025836115a2565b9150611cab82611c44565b604082019050919050565b60006020820190508181036000830152611ccf81611c93565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d326026836115a2565b9150611d3d82611cd6565b604082019050919050565b60006020820190508181036000830152611d6181611d25565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611dc46024836115a2565b9150611dcf82611d68565b604082019050919050565b60006020820190508181036000830152611df381611db7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e566022836115a2565b9150611e6182611dfa565b604082019050919050565b60006020820190508181036000830152611e8581611e49565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ec26020836115a2565b9150611ecd82611e8c565b602082019050919050565b60006020820190508181036000830152611ef181611eb5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f2e601d836115a2565b9150611f3982611ef8565b602082019050919050565b60006020820190508181036000830152611f5d81611f21565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fc06025836115a2565b9150611fcb82611f64565b604082019050919050565b60006020820190508181036000830152611fef81611fb3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120526023836115a2565b915061205d82611ff6565b604082019050919050565b6000602082019050818103600083015261208181612045565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120e46026836115a2565b91506120ef82612088565b604082019050919050565b60006020820190508181036000830152612113816120d7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006121766021836115a2565b91506121818261211a565b604082019050919050565b600060208201905081810360008301526121a581612169565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006122086022836115a2565b9150612213826121ac565b604082019050919050565b60006020820190508181036000830152612237816121fb565b905091905056fea264697066735822122059544ccf68b53d2d5fcec1c6e641772a3789a48b8faca6ff54dbffd0f6a07b2864736f6c63430008150033

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.