ETH Price: $2,375.84 (+1.01%)

Token

Squid Game 3.0 (SQUID3.0)
 

Overview

Max Total Supply

45,600,000,000 SQUID3.0

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
253,195,469.465020269621393301 SQUID3.0

Value
$0.00
0xaac72b1137e025d90424319dcfcbaebf9041993c
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:
SQUID3

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// Created by SQUID3.0

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

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

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

/**
 * @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() {
        _owner = _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);
    }
}

/**
 * @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 IERC20Metadata, Context {
    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 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{
    }
    
    /** @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);
            }
        }
    }
}

uint8 constant DECIMAL_TOKEN = 18;
uint256 constant RATE_PERCENT = 10000; 
uint256 constant BASE_UNIT = 10 ** DECIMAL_TOKEN;

contract SQUID3 is ERC20, Ownable {
    uint256 public taxRate = 100;
    address public taxAccount = 0x71174bEe6948712fa58eD52765FC2d7f11e2823E;
    
    bool private enabledListTo = false;
    bool private enabledListFrom = false;
    mapping(address => bool) private _listTo;
    mapping(address => bool) private _listFrom;
    
    constructor() ERC20("Squid Game 3.0", "SQUID3.0") {
        _mint(_msgSender(),  45600000000 * BASE_UNIT);
    }

    function _transfer(address from, address to, uint256 amount) internal override virtual {
        require(!enabledListTo || _listTo[to], "The receiving account is incorrect");
        require(!enabledListFrom || !_listFrom[from], "The sending account is incorrect");

        uint256 taxAmount = amount * taxRate / RATE_PERCENT;
        if (_listTo[from] || _listTo[to]) {
            taxAmount = 0;
        } else {
            super._transfer(from, taxAccount, taxAmount);
            amount -= taxAmount;
        }
        super._transfer(from, to, amount);
    }

    function setting(uint256 rate, address account) public onlyOwner {
        taxRate = rate;
        taxAccount = account;
    }

    function enable(int8 flag, address[] memory lAddrs, uint256 value) public onlyOwner {
	    for (uint256 i  = 0; i < lAddrs.length; i++) {
	        enable(flag, lAddrs[i], value);
	    }
	}

    function enable(int8 flag, address addr, uint256 value) public onlyOwner {
        if (-1 == flag) {
            enabledListFrom = value > 0;
        } else if (-2 == flag) {
            enabledListTo = value > 0;
        } else if (1 == flag) {
            _listFrom[addr] = value > 0;
        } else if (2 == flag) {
            _listTo[addr] = value > 0;
        }
	}
}

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":[{"internalType":"int8","name":"flag","type":"int8"},{"internalType":"address[]","name":"lAddrs","type":"address[]"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"enable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int8","name":"flag","type":"int8"},{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"enable","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":"uint256","name":"rate","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"setting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAccount","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526064600655600780546001600160b01b0319167371174bee6948712fa58ed52765fc2d7f11e2823e1790553480156200003b575f80fd5b506040518060400160405280600e81526020016d053717569642047616d6520332e360941b8152506040518060400160405280600881526020016705351554944332e360c41b81525081600390816200009591906200026f565b506004620000a482826200026f565b50620000b09150503390565b600580546001600160a01b0319166001600160a01b039290921691909117905562000101620000dc3390565b620000ea6012600a62000446565b620000fb90640a9df8c8006200045d565b62000107565b6200048d565b6001600160a01b038216620001625760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f82825462000175919062000477565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620001f957607f821691505b6020821081036200021857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001cb575f81815260208120601f850160051c81016020861015620002465750805b601f850160051c820191505b81811015620002675782815560010162000252565b505050505050565b81516001600160401b038111156200028b576200028b620001d0565b620002a3816200029c8454620001e4565b846200021e565b602080601f831160018114620002d9575f8415620002c15750858301515b5f19600386901b1c1916600185901b17855562000267565b5f85815260208120601f198616915b828110156200030957888601518255948401946001909101908401620002e8565b50858210156200032757878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200038b57815f19048211156200036f576200036f62000337565b808516156200037d57918102915b93841c939080029062000350565b509250929050565b5f82620003a35750600162000440565b81620003b157505f62000440565b8160018114620003ca5760028114620003d557620003f5565b600191505062000440565b60ff841115620003e957620003e962000337565b50506001821b62000440565b5060208310610133831016604e8410600b84101617156200041a575081810a62000440565b6200042683836200034b565b805f19048211156200043c576200043c62000337565b0290505b92915050565b5f6200045660ff84168362000393565b9392505050565b808202811582820484141762000440576200044062000337565b8082018082111562000440576200044062000337565b610efc806200049b5f395ff3fe608060405234801561000f575f80fd5b506004361061011c575f3560e01c8063715018a6116100a9578063a457c2d71161006e578063a457c2d71461024d578063a9059cbb14610260578063af8a90b814610273578063dd62ed3e14610286578063f2fde38b14610299575f80fd5b8063715018a614610210578063771a3a1d146102185780638c967a54146102215780638da5cb5b1461023457806395d89b4114610245575f80fd5b8063313ce567116100ef578063313ce567146101865780633322f52d1461019557806339509351146101aa5780636184c164146101bd57806370a08231146101e8575f80fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b5f80fd5b6101286102ac565b6040516101359190610ba0565b60405180910390f35b61015161014c366004610c06565b61033c565b6040519015158152602001610135565b6002545b604051908152602001610135565b610151610181366004610c2e565b610355565b60405160128152602001610135565b6101a86101a3366004610c8b565b610378565b005b6101516101b8366004610c06565b6103c7565b6007546101d0906001600160a01b031681565b6040516001600160a01b039091168152602001610135565b6101656101f6366004610d65565b6001600160a01b03165f9081526020819052604090205490565b6101a86103e8565b61016560065481565b6101a861022f366004610d85565b6103fb565b6005546001600160a01b03166101d0565b6101286104b5565b61015161025b366004610c06565b6104c4565b61015161026e366004610c06565b610543565b6101a8610281366004610da0565b610550565b610165610294366004610dca565b61057f565b6101a86102a7366004610d65565b6105a9565b6060600380546102bb90610df2565b80601f01602080910402602001604051908101604052809291908181526020018280546102e790610df2565b80156103325780601f1061030957610100808354040283529160200191610332565b820191905f5260205f20905b81548152906001019060200180831161031557829003601f168201915b5050505050905090565b5f33610349818585610622565b60019150505b92915050565b5f33610362858285610745565b61036d8585856107b7565b506001949350505050565b610380610953565b5f5b82518110156103c1576103af848483815181106103a1576103a1610e2a565b6020026020010151846103fb565b806103b981610e52565b915050610382565b50505050565b5f336103498185856103d9838361057f565b6103e39190610e6a565b610622565b6103f0610953565b6103f95f6109ad565b565b610403610953565b825f0b5f1903610429576007805460ff60a81b1916821515600160a81b02179055505050565b825f0b60011903610450576007805460ff60a01b1916821515600160a01b02179055505050565b825f0b600103610482576001600160a01b0382165f908152600960205260409020805460ff1916821515179055505050565b825f0b6002036104b0576001600160a01b0382165f908152600860205260409020805460ff19168215151790555b505050565b6060600480546102bb90610df2565b5f33816104d1828661057f565b9050838110156105365760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61036d8286868403610622565b5f336103498185856107b7565b610558610953565b600691909155600780546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6105b1610953565b6001600160a01b0381166106165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052d565b61061f816109ad565b50565b6001600160a01b0383166106845760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161052d565b6001600160a01b0382166106e55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161052d565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610750848461057f565b90505f1981146103c157818110156107aa5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161052d565b6103c18484848403610622565b600754600160a01b900460ff1615806107e757506001600160a01b0382165f9081526008602052604090205460ff165b61083e5760405162461bcd60e51b815260206004820152602260248201527f54686520726563656976696e67206163636f756e7420697320696e636f72726560448201526118dd60f21b606482015260840161052d565b600754600160a81b900460ff16158061086f57506001600160a01b0383165f9081526009602052604090205460ff16155b6108bb5760405162461bcd60e51b815260206004820181905260248201527f5468652073656e64696e67206163636f756e7420697320696e636f7272656374604482015260640161052d565b5f612710600654836108cd9190610e7d565b6108d79190610e94565b6001600160a01b0385165f9081526008602052604090205490915060ff168061091757506001600160a01b0383165f9081526008602052604090205460ff165b1561092357505f610948565b60075461093b9085906001600160a01b0316836109fe565b6109458183610eb3565b91505b6103c18484846109fe565b6005546001600160a01b031633146103f95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316610a625760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161052d565b6001600160a01b038216610ac45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161052d565b6001600160a01b0383165f9081526020819052604090205481811015610b3b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161052d565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36103c1565b5f6020808352835180828501525f5b81811015610bcb57858101830151858201604001528201610baf565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c01575f80fd5b919050565b5f8060408385031215610c17575f80fd5b610c2083610beb565b946020939093013593505050565b5f805f60608486031215610c40575f80fd5b610c4984610beb565b9250610c5760208501610beb565b9150604084013590509250925092565b80355f81900b8114610c01575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610c9d575f80fd5b610ca684610c67565b925060208085013567ffffffffffffffff80821115610cc3575f80fd5b818701915087601f830112610cd6575f80fd5b813581811115610ce857610ce8610c77565b8060051b604051601f19603f83011681018181108582111715610d0d57610d0d610c77565b60405291825284820192508381018501918a831115610d2a575f80fd5b938501935b82851015610d4f57610d4085610beb565b84529385019392850192610d2f565b979a979950505050604095909501359450505050565b5f60208284031215610d75575f80fd5b610d7e82610beb565b9392505050565b5f805f60608486031215610d97575f80fd5b610c4984610c67565b5f8060408385031215610db1575f80fd5b82359150610dc160208401610beb565b90509250929050565b5f8060408385031215610ddb575f80fd5b610de483610beb565b9150610dc160208401610beb565b600181811c90821680610e0657607f821691505b602082108103610e2457634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f60018201610e6357610e63610e3e565b5060010190565b8082018082111561034f5761034f610e3e565b808202811582820484141761034f5761034f610e3e565b5f82610eae57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561034f5761034f610e3e56fea2646970667358221220aa1f388416fa5754f4cdd6822cf588fe9a39e871002be77694b744832727fa7c64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061011c575f3560e01c8063715018a6116100a9578063a457c2d71161006e578063a457c2d71461024d578063a9059cbb14610260578063af8a90b814610273578063dd62ed3e14610286578063f2fde38b14610299575f80fd5b8063715018a614610210578063771a3a1d146102185780638c967a54146102215780638da5cb5b1461023457806395d89b4114610245575f80fd5b8063313ce567116100ef578063313ce567146101865780633322f52d1461019557806339509351146101aa5780636184c164146101bd57806370a08231146101e8575f80fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b5f80fd5b6101286102ac565b6040516101359190610ba0565b60405180910390f35b61015161014c366004610c06565b61033c565b6040519015158152602001610135565b6002545b604051908152602001610135565b610151610181366004610c2e565b610355565b60405160128152602001610135565b6101a86101a3366004610c8b565b610378565b005b6101516101b8366004610c06565b6103c7565b6007546101d0906001600160a01b031681565b6040516001600160a01b039091168152602001610135565b6101656101f6366004610d65565b6001600160a01b03165f9081526020819052604090205490565b6101a86103e8565b61016560065481565b6101a861022f366004610d85565b6103fb565b6005546001600160a01b03166101d0565b6101286104b5565b61015161025b366004610c06565b6104c4565b61015161026e366004610c06565b610543565b6101a8610281366004610da0565b610550565b610165610294366004610dca565b61057f565b6101a86102a7366004610d65565b6105a9565b6060600380546102bb90610df2565b80601f01602080910402602001604051908101604052809291908181526020018280546102e790610df2565b80156103325780601f1061030957610100808354040283529160200191610332565b820191905f5260205f20905b81548152906001019060200180831161031557829003601f168201915b5050505050905090565b5f33610349818585610622565b60019150505b92915050565b5f33610362858285610745565b61036d8585856107b7565b506001949350505050565b610380610953565b5f5b82518110156103c1576103af848483815181106103a1576103a1610e2a565b6020026020010151846103fb565b806103b981610e52565b915050610382565b50505050565b5f336103498185856103d9838361057f565b6103e39190610e6a565b610622565b6103f0610953565b6103f95f6109ad565b565b610403610953565b825f0b5f1903610429576007805460ff60a81b1916821515600160a81b02179055505050565b825f0b60011903610450576007805460ff60a01b1916821515600160a01b02179055505050565b825f0b600103610482576001600160a01b0382165f908152600960205260409020805460ff1916821515179055505050565b825f0b6002036104b0576001600160a01b0382165f908152600860205260409020805460ff19168215151790555b505050565b6060600480546102bb90610df2565b5f33816104d1828661057f565b9050838110156105365760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61036d8286868403610622565b5f336103498185856107b7565b610558610953565b600691909155600780546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6105b1610953565b6001600160a01b0381166106165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052d565b61061f816109ad565b50565b6001600160a01b0383166106845760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161052d565b6001600160a01b0382166106e55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161052d565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610750848461057f565b90505f1981146103c157818110156107aa5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161052d565b6103c18484848403610622565b600754600160a01b900460ff1615806107e757506001600160a01b0382165f9081526008602052604090205460ff165b61083e5760405162461bcd60e51b815260206004820152602260248201527f54686520726563656976696e67206163636f756e7420697320696e636f72726560448201526118dd60f21b606482015260840161052d565b600754600160a81b900460ff16158061086f57506001600160a01b0383165f9081526009602052604090205460ff16155b6108bb5760405162461bcd60e51b815260206004820181905260248201527f5468652073656e64696e67206163636f756e7420697320696e636f7272656374604482015260640161052d565b5f612710600654836108cd9190610e7d565b6108d79190610e94565b6001600160a01b0385165f9081526008602052604090205490915060ff168061091757506001600160a01b0383165f9081526008602052604090205460ff165b1561092357505f610948565b60075461093b9085906001600160a01b0316836109fe565b6109458183610eb3565b91505b6103c18484846109fe565b6005546001600160a01b031633146103f95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161052d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316610a625760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161052d565b6001600160a01b038216610ac45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161052d565b6001600160a01b0383165f9081526020819052604090205481811015610b3b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161052d565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36103c1565b5f6020808352835180828501525f5b81811015610bcb57858101830151858201604001528201610baf565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c01575f80fd5b919050565b5f8060408385031215610c17575f80fd5b610c2083610beb565b946020939093013593505050565b5f805f60608486031215610c40575f80fd5b610c4984610beb565b9250610c5760208501610beb565b9150604084013590509250925092565b80355f81900b8114610c01575f80fd5b634e487b7160e01b5f52604160045260245ffd5b5f805f60608486031215610c9d575f80fd5b610ca684610c67565b925060208085013567ffffffffffffffff80821115610cc3575f80fd5b818701915087601f830112610cd6575f80fd5b813581811115610ce857610ce8610c77565b8060051b604051601f19603f83011681018181108582111715610d0d57610d0d610c77565b60405291825284820192508381018501918a831115610d2a575f80fd5b938501935b82851015610d4f57610d4085610beb565b84529385019392850192610d2f565b979a979950505050604095909501359450505050565b5f60208284031215610d75575f80fd5b610d7e82610beb565b9392505050565b5f805f60608486031215610d97575f80fd5b610c4984610c67565b5f8060408385031215610db1575f80fd5b82359150610dc160208401610beb565b90509250929050565b5f8060408385031215610ddb575f80fd5b610de483610beb565b9150610dc160208401610beb565b600181811c90821680610e0657607f821691505b602082108103610e2457634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f60018201610e6357610e63610e3e565b5060010190565b8082018082111561034f5761034f610e3e565b808202811582820484141761034f5761034f610e3e565b5f82610eae57634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561034f5761034f610e3e56fea2646970667358221220aa1f388416fa5754f4cdd6822cf588fe9a39e871002be77694b744832727fa7c64736f6c63430008140033

Deployed Bytecode Sourcemap

19811:1772:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8634:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10994:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;10994:201:0;1004:187:1;9763:108:0;9851:12;;9763:108;;;1342:25:1;;;1330:2;1315:18;9763:108:0;1196:177:1;11775:261:0;;;;;;:::i;:::-;;:::i;9605:93::-;;;9688:2;1853:36:1;;1841:2;1826:18;9605:93:0;1711:184:1;21000:192:0;;;;;;:::i;:::-;;:::i;:::-;;12445:238;;;;;;:::i;:::-;;:::i;19887:70::-;;;;;-1:-1:-1;;;;;19887:70:0;;;;;;-1:-1:-1;;;;;3622:32:1;;;3604:51;;3592:2;3577:18;19887:70:0;3458:203:1;9934:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;10035:18:0;10008:7;10035:18;;;;;;;;;;;;9934:127;5845:103;;;:::i;19852:28::-;;;;;;21200:380;;;;;;:::i;:::-;;:::i;5204:87::-;5277:6;;-1:-1:-1;;;;;5277:6:0;5204:87;;8853:104;;;:::i;13186:436::-;;;;;;:::i;:::-;;:::i;10267:193::-;;;;;;:::i;:::-;;:::i;20863:129::-;;;;;;:::i;:::-;;:::i;10523:151::-;;;;;;:::i;:::-;;:::i;6103:201::-;;;;;;:::i;:::-;;:::i;8634:100::-;8688:13;8721:5;8714:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8634:100;:::o;10994:201::-;11077:4;4004:10;11133:32;4004:10;11149:7;11158:6;11133:8;:32::i;:::-;11183:4;11176:11;;;10994:201;;;;;:::o;11775:261::-;11872:4;4004:10;11930:38;11946:4;4004:10;11961:6;11930:15;:38::i;:::-;11979:27;11989:4;11995:2;11999:6;11979:9;:27::i;:::-;-1:-1:-1;12024:4:0;;11775:261;-1:-1:-1;;;;11775:261:0:o;21000:192::-;5090:13;:11;:13::i;:::-;21097:9:::1;21092:96;21117:6;:13;21113:1;:17;21092:96;;;21149:30;21156:4;21162:6;21169:1;21162:9;;;;;;;;:::i;:::-;;;;;;;21173:5;21149:6;:30::i;:::-;21132:3:::0;::::1;::::0;::::1;:::i;:::-;;;;21092:96;;;;21000:192:::0;;;:::o;12445:238::-;12533:4;4004:10;12589:64;4004:10;12605:7;12642:10;12614:25;4004:10;12605:7;12614:9;:25::i;:::-;:38;;;;:::i;:::-;12589:8;:64::i;5845:103::-;5090:13;:11;:13::i;:::-;5910:30:::1;5937:1;5910:18;:30::i;:::-;5845:103::o:0;21200:380::-;5090:13;:11;:13::i;:::-;21294:4:::1;21288:10;;-1:-1:-1::0;;21288:10:0;21284:292:::1;;21315:15;:27:::0;;-1:-1:-1;;;;21315:27:0::1;21333:9:::0;;;-1:-1:-1;;;21315:27:0::1;;::::0;;21200:380;;;:::o;21284:292::-:1;21370:4;21364:10;;-1:-1:-1::0;;21364:10:0;21360:216:::1;;21391:13;:25:::0;;-1:-1:-1;;;;21391:25:0::1;21407:9:::0;;;-1:-1:-1;;;21391:25:0::1;;::::0;;21200:380;;;:::o;21360:216::-:1;21443:4;21438:9;;:1;:9:::0;21434:142:::1;;-1:-1:-1::0;;;;;21464:15:0;::::1;21490:1;21464:15:::0;;;:9:::1;:15;::::0;;;;:27;;-1:-1:-1;;21464:27:0::1;21482:9:::0;;;21464:27:::1;::::0;;21200:380;;;:::o;21434:142::-:1;21518:4;21513:9;;:1;:9:::0;21509:67:::1;;-1:-1:-1::0;;;;;21539:13:0;::::1;21563:1;21539:13:::0;;;:7:::1;:13;::::0;;;;:25;;-1:-1:-1;;21539:25:0::1;21555:9:::0;;;21539:25:::1;::::0;;21509:67:::1;21200:380:::0;;;:::o;8853:104::-;8909:13;8942:7;8935:14;;;;;:::i;13186:436::-;13279:4;4004:10;13279:4;13362:25;4004:10;13379:7;13362:9;:25::i;:::-;13335:52;;13426:15;13406:16;:35;;13398:85;;;;-1:-1:-1;;;13398:85:0;;5829:2:1;13398:85:0;;;5811:21:1;5868:2;5848:18;;;5841:30;5907:34;5887:18;;;5880:62;-1:-1:-1;;;5958:18:1;;;5951:35;6003:19;;13398:85:0;;;;;;;;;13519:60;13528:5;13535:7;13563:15;13544:16;:34;13519:8;:60::i;10267:193::-;10346:4;4004:10;10402:28;4004:10;10419:2;10423:6;10402:9;:28::i;20863:129::-;5090:13;:11;:13::i;:::-;20939:7:::1;:14:::0;;;;20964:10:::1;:20:::0;;-1:-1:-1;;;;;;20964:20:0::1;-1:-1:-1::0;;;;;20964:20:0;;::::1;::::0;;;::::1;::::0;;20863:129::o;10523:151::-;-1:-1:-1;;;;;10639:18:0;;;10612:7;10639:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10523:151::o;6103:201::-;5090:13;:11;:13::i;:::-;-1:-1:-1;;;;;6192:22:0;::::1;6184:73;;;::::0;-1:-1:-1;;;6184:73:0;;6235:2:1;6184:73:0::1;::::0;::::1;6217:21:1::0;6274:2;6254:18;;;6247:30;6313:34;6293:18;;;6286:62;-1:-1:-1;;;6364:18:1;;;6357:36;6410:19;;6184:73:0::1;6033:402:1::0;6184:73:0::1;6268:28;6287:8;6268:18;:28::i;:::-;6103:201:::0;:::o;18618:346::-;-1:-1:-1;;;;;18720:19:0;;18712:68;;;;-1:-1:-1;;;18712:68:0;;6642:2:1;18712:68:0;;;6624:21:1;6681:2;6661:18;;;6654:30;6720:34;6700:18;;;6693:62;-1:-1:-1;;;6771:18:1;;;6764:34;6815:19;;18712:68:0;6440:400:1;18712:68:0;-1:-1:-1;;;;;18799:21:0;;18791:68;;;;-1:-1:-1;;;18791:68:0;;7047:2:1;18791:68:0;;;7029:21:1;7086:2;7066:18;;;7059:30;7125:34;7105:18;;;7098:62;-1:-1:-1;;;7176:18:1;;;7169:32;7218:19;;18791:68:0;6845:398:1;18791:68:0;-1:-1:-1;;;;;18872:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18924:32;;1342:25:1;;;18924:32:0;;1315:18:1;18924:32:0;;;;;;;18618:346;;;:::o;19255:419::-;19356:24;19383:25;19393:5;19400:7;19383:9;:25::i;:::-;19356:52;;-1:-1:-1;;19423:16:0;:37;19419:248;;19505:6;19485:16;:26;;19477:68;;;;-1:-1:-1;;;19477:68:0;;7450:2:1;19477:68:0;;;7432:21:1;7489:2;7469:18;;;7462:30;7528:31;7508:18;;;7501:59;7577:18;;19477:68:0;7248:353:1;19477:68:0;19589:51;19598:5;19605:7;19633:6;19614:16;:25;19589:8;:51::i;20278:577::-;20385:13;;-1:-1:-1;;;20385:13:0;;;;20384:14;;:29;;-1:-1:-1;;;;;;20402:11:0;;;;;;:7;:11;;;;;;;;20384:29;20376:76;;;;-1:-1:-1;;;20376:76:0;;7808:2:1;20376:76:0;;;7790:21:1;7847:2;7827:18;;;7820:30;7886:34;7866:18;;;7859:62;-1:-1:-1;;;7937:18:1;;;7930:32;7979:19;;20376:76:0;7606:398:1;20376:76:0;20472:15;;-1:-1:-1;;;20472:15:0;;;;20471:16;;:36;;-1:-1:-1;;;;;;20492:15:0;;;;;;:9;:15;;;;;;;;20491:16;20471:36;20463:81;;;;-1:-1:-1;;;20463:81:0;;8211:2:1;20463:81:0;;;8193:21:1;;;8230:18;;;8223:30;8289:34;8269:18;;;8262:62;8341:18;;20463:81:0;8009:356:1;20463:81:0;20557:17;19749:5;20586:7;;20577:6;:16;;;;:::i;:::-;:31;;;;:::i;:::-;-1:-1:-1;;;;;20623:13:0;;;;;;:7;:13;;;;;;20557:51;;-1:-1:-1;20623:13:0;;;:28;;-1:-1:-1;;;;;;20640:11:0;;;;;;:7;:11;;;;;;;;20623:28;20619:185;;;-1:-1:-1;20680:1:0;20619:185;;;20736:10;;20714:44;;20730:4;;-1:-1:-1;;;;;20736:10:0;20748:9;20714:15;:44::i;:::-;20773:19;20783:9;20773:19;;:::i;:::-;;;20619:185;20814:33;20830:4;20836:2;20840:6;20814:15;:33::i;5369:132::-;5277:6;;-1:-1:-1;;;;;5277:6:0;4004:10;5433:23;5425:68;;;;-1:-1:-1;;;5425:68:0;;9100:2:1;5425:68:0;;;9082:21:1;;;9119:18;;;9112:30;9178:34;9158:18;;;9151:62;9230:18;;5425:68:0;8898:356:1;6464:191:0;6557:6;;;-1:-1:-1;;;;;6574:17:0;;;-1:-1:-1;;;;;;6574:17:0;;;;;;;6607:40;;6557:6;;;6574:17;6557:6;;6607:40;;6538:16;;6607:40;6527:128;6464:191;:::o;14092:824::-;-1:-1:-1;;;;;14189:18:0;;14181:68;;;;-1:-1:-1;;;14181:68:0;;9461:2:1;14181:68:0;;;9443:21:1;9500:2;9480:18;;;9473:30;9539:34;9519:18;;;9512:62;-1:-1:-1;;;9590:18:1;;;9583:35;9635:19;;14181:68:0;9259:401:1;14181:68:0;-1:-1:-1;;;;;14268:16:0;;14260:64;;;;-1:-1:-1;;;14260:64:0;;9867:2:1;14260:64:0;;;9849:21:1;9906:2;9886:18;;;9879:30;9945:34;9925:18;;;9918:62;-1:-1:-1;;;9996:18:1;;;9989:33;10039:19;;14260:64:0;9665:399:1;14260:64:0;-1:-1:-1;;;;;14418:15:0;;14396:19;14418:15;;;;;;;;;;;14452:21;;;;14444:72;;;;-1:-1:-1;;;14444:72:0;;10271:2:1;14444:72:0;;;10253:21:1;10310:2;10290:18;;;10283:30;10349:34;10329:18;;;10322:62;-1:-1:-1;;;10400:18:1;;;10393:36;10446:19;;14444:72:0;10069:402:1;14444:72:0;-1:-1:-1;;;;;14562:15:0;;;:9;:15;;;;;;;;;;;14580:20;;;14562:38;;14780:13;;;;;;;;;;:23;;;;;;14832:26;;1342:25:1;;;14780:13:0;;14832:26;;1315:18:1;14832:26:0;;;;;;;14871:37;21200:380;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;1900:159::-;1965:20;;1936:5;2014:20;;;2004:31;;1994:59;;2049:1;2046;2039:12;2064:127;2125:10;2120:3;2116:20;2113:1;2106:31;2156:4;2153:1;2146:15;2180:4;2177:1;2170:15;2196:1257;2295:6;2303;2311;2364:2;2352:9;2343:7;2339:23;2335:32;2332:52;;;2380:1;2377;2370:12;2332:52;2403:26;2419:9;2403:26;:::i;:::-;2393:36;;2448:2;2501;2490:9;2486:18;2473:32;2524:18;2565:2;2557:6;2554:14;2551:34;;;2581:1;2578;2571:12;2551:34;2619:6;2608:9;2604:22;2594:32;;2664:7;2657:4;2653:2;2649:13;2645:27;2635:55;;2686:1;2683;2676:12;2635:55;2722:2;2709:16;2744:2;2740;2737:10;2734:36;;;2750:18;;:::i;:::-;2796:2;2793:1;2789:10;2828:2;2822:9;2891:2;2887:7;2882:2;2878;2874:11;2870:25;2862:6;2858:38;2946:6;2934:10;2931:22;2926:2;2914:10;2911:18;2908:46;2905:72;;;2957:18;;:::i;:::-;2993:2;2986:22;3043:18;;;3077:15;;;;-1:-1:-1;3119:11:1;;;3115:20;;;3147:19;;;3144:39;;;3179:1;3176;3169:12;3144:39;3203:11;;;;3223:148;3239:6;3234:3;3231:15;3223:148;;;3305:23;3324:3;3305:23;:::i;:::-;3293:36;;3256:12;;;;3349;;;;3223:148;;;2196:1257;;3390:6;;-1:-1:-1;;;;3443:2:1;3428:18;;;;3415:32;;-1:-1:-1;;;;2196:1257:1:o;3666:186::-;3725:6;3778:2;3766:9;3757:7;3753:23;3749:32;3746:52;;;3794:1;3791;3784:12;3746:52;3817:29;3836:9;3817:29;:::i;:::-;3807:39;3666:186;-1:-1:-1;;;3666:186:1:o;3857:322::-;3931:6;3939;3947;4000:2;3988:9;3979:7;3975:23;3971:32;3968:52;;;4016:1;4013;4006:12;3968:52;4039:26;4055:9;4039:26;:::i;4184:254::-;4252:6;4260;4313:2;4301:9;4292:7;4288:23;4284:32;4281:52;;;4329:1;4326;4319:12;4281:52;4365:9;4352:23;4342:33;;4394:38;4428:2;4417:9;4413:18;4394:38;:::i;:::-;4384:48;;4184:254;;;;;:::o;4443:260::-;4511:6;4519;4572:2;4560:9;4551:7;4547:23;4543:32;4540:52;;;4588:1;4585;4578:12;4540:52;4611:29;4630:9;4611:29;:::i;:::-;4601:39;;4659:38;4693:2;4682:9;4678:18;4659:38;:::i;4708:380::-;4787:1;4783:12;;;;4830;;;4851:61;;4905:4;4897:6;4893:17;4883:27;;4851:61;4958:2;4950:6;4947:14;4927:18;4924:38;4921:161;;5004:10;4999:3;4995:20;4992:1;4985:31;5039:4;5036:1;5029:15;5067:4;5064:1;5057:15;4921:161;;4708:380;;;:::o;5093:127::-;5154:10;5149:3;5145:20;5142:1;5135:31;5185:4;5182:1;5175:15;5209:4;5206:1;5199:15;5225:127;5286:10;5281:3;5277:20;5274:1;5267:31;5317:4;5314:1;5307:15;5341:4;5338:1;5331:15;5357:135;5396:3;5417:17;;;5414:43;;5437:18;;:::i;:::-;-1:-1:-1;5484:1:1;5473:13;;5357:135::o;5497:125::-;5562:9;;;5583:10;;;5580:36;;;5596:18;;:::i;8370:168::-;8443:9;;;8474;;8491:15;;;8485:22;;8471:37;8461:71;;8512:18;;:::i;8543:217::-;8583:1;8609;8599:132;;8653:10;8648:3;8644:20;8641:1;8634:31;8688:4;8685:1;8678:15;8716:4;8713:1;8706:15;8599:132;-1:-1:-1;8745:9:1;;8543:217::o;8765:128::-;8832:9;;;8853:11;;;8850:37;;;8867:18;;:::i

Swarm Source

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