ETH Price: $3,426.83 (-0.80%)
Gas: 11 Gwei

Token

Sun Tzu (TZU)
 

Overview

Max Total Supply

544,496,000,000,000 TZU

Holders

342

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
135,117,149,508.888497312249037431 TZU

Value
$0.00
0x826d78e95a62d680cf739f99d8016ca82a9e0c91
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:
SunTzu

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-06-06
*/

// DO NOT BUY UNTIL RELEASE IN PUBLIC TG
// TG: https://t.me/SunTzu_ERC
//
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(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 value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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/Testkitten.sol



pragma solidity ^0.8.0;


contract SunTzu is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor(uint256 _totalSupply) ERC20("Sun Tzu", "TZU") {
        _mint(msg.sender, _totalSupply);
    }

    function blacklist(address[] memory _addresses, bool _isBlacklisting) external onlyOwner {
        for (uint i; i < _addresses.length; i++) {
            blacklists[_addresses[i]] = _isBlacklisting;
        }
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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":[{"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"}]

608060405234801562000010575f80fd5b5060405162001683380380620016838339810160408190526200003391620003d9565b6040518060400160405280600781526020016653756e20547a7560c81b81525060405180604001604052806003815260200162545a5560e81b8152506200008962000083620000c260201b60201c565b620000c6565b600462000097838262000490565b506005620000a6828262000490565b505050620000bb33826200011560201b60201c565b506200057e565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001715760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200017e5f838362000208565b8060035f82825462000191919062000558565b90915550506001600160a01b0382165f9081526001602052604081208054839290620001bf90849062000558565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382165f908152600a602052604090205460ff161580156200024957506001600160a01b0383165f908152600a602052604090205460ff16155b620002855760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640162000168565b6009546001600160a01b031662000311575f546001600160a01b0384811691161480620002be57505f546001600160a01b038381169116145b6200030c5760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f74207374617274656400000000000000000000604482015260640162000168565b505050565b60065460ff1680156200033157506009546001600160a01b038481169116145b156200030c57600754816200035a846001600160a01b03165f9081526001602052604090205490565b62000366919062000558565b11158015620003a257506008548162000393846001600160a01b03165f9081526001602052604090205490565b6200039f919062000558565b10155b6200030c5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640162000168565b5f60208284031215620003ea575f80fd5b5051919050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200041a57607f821691505b6020821081036200043957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200030c575f81815260208120601f850160051c81016020861015620004675750805b601f850160051c820191505b81811015620004885782815560010162000473565b505050505050565b81516001600160401b03811115620004ac57620004ac620003f1565b620004c481620004bd845462000405565b846200043f565b602080601f831160018114620004fa575f8415620004e25750858301515b5f19600386901b1c1916600185901b17855562000488565b5f85815260208120601f198616915b828110156200052a5788860151825594840194600190910190840162000509565b50858210156200054857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200057857634e487b7160e01b5f52601160045260245ffd5b92915050565b6110f7806200058c5f395ff3fe608060405234801561000f575f80fd5b506004361061013d575f3560e01c806370a08231116100b457806395d89b411161007957806395d89b411461029d578063a457c2d7146102a5578063a9059cbb146102b8578063c997eb8d146102cb578063dd62ed3e146102de578063f2fde38b14610316575f80fd5b806370a0823114610247578063715018a61461026f578063860a32ec1461027757806389f9a1d3146102845780638da5cb5b1461028d575f80fd5b806323b872dd1161010557806323b872dd146101bf578063313ce567146101d257806339509351146101e15780633aa633aa146101f457806342966c681461020957806349bd5a5e1461021c575f80fd5b806306fdde0314610141578063095ea7b31461015f57806316c021291461018257806318160ddd146101a45780631ab99e12146101b6575b5f80fd5b610149610329565b6040516101569190610d8b565b60405180910390f35b61017261016d366004610df1565b6103b9565b6040519015158152602001610156565b610172610190366004610e19565b600a6020525f908152604090205460ff1681565b6003545b604051908152602001610156565b6101a860085481565b6101726101cd366004610e39565b6103cf565b60405160128152602001610156565b6101726101ef366004610df1565b61047c565b610207610202366004610e81565b6104b7565b005b610207610217366004610ec0565b61051b565b60095461022f906001600160a01b031681565b6040516001600160a01b039091168152602001610156565b6101a8610255366004610e19565b6001600160a01b03165f9081526001602052604090205490565b610207610528565b6006546101729060ff1681565b6101a860075481565b5f546001600160a01b031661022f565b61014961055c565b6101726102b3366004610df1565b61056b565b6101726102c6366004610df1565b610603565b6102076102d9366004610eeb565b61060f565b6101a86102ec366004610fbd565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b610207610324366004610e19565b6106a1565b60606004805461033890610fee565b80601f016020809104026020016040519081016040528092919081815260200182805461036490610fee565b80156103af5780601f10610386576101008083540402835291602001916103af565b820191905f5260205f20905b81548152906001019060200180831161039257829003601f168201915b5050505050905090565b5f6103c5338484610738565b5060015b92915050565b5f6103db84848461085b565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156104645760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104718533858403610738565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916103c59185906104b290869061103a565b610738565b5f546001600160a01b031633146104e05760405162461bcd60e51b815260040161045b9061104d565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6105253382610a33565b50565b5f546001600160a01b031633146105515760405162461bcd60e51b815260040161045b9061104d565b61055a5f610b89565b565b60606005805461033890610fee565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156105ec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161045b565b6105f93385858403610738565b5060019392505050565b5f6103c533848461085b565b5f546001600160a01b031633146106385760405162461bcd60e51b815260040161045b9061104d565b5f5b825181101561069c5781600a5f85848151811061065957610659611082565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790558061069481611096565b91505061063a565b505050565b5f546001600160a01b031633146106ca5760405162461bcd60e51b815260040161045b9061104d565b6001600160a01b03811661072f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045b565b61052581610b89565b6001600160a01b03831661079a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161045b565b6001600160a01b0382166107fb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161045b565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108bf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161045b565b6001600160a01b0382166109215760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161045b565b61092c838383610bd8565b6001600160a01b0383165f90815260016020526040902054818110156109a35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161045b565b6001600160a01b038085165f908152600160205260408082208585039055918516815290812080548492906109d990849061103a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a2591815260200190565b60405180910390a350505050565b6001600160a01b038216610a935760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161045b565b610a9e825f83610bd8565b6001600160a01b0382165f9081526001602052604090205481811015610b115760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161045b565b6001600160a01b0383165f908152600160205260408120838303905560038054849290610b3f9084906110ae565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382165f908152600a602052604090205460ff16158015610c1857506001600160a01b0383165f908152600a602052604090205460ff16155b610c525760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640161045b565b6009546001600160a01b0316610cce575f546001600160a01b0384811691161480610c8957505f546001600160a01b038381169116145b61069c5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604482015260640161045b565b60065460ff168015610ced57506009546001600160a01b038481169116145b1561069c5760075481610d14846001600160a01b03165f9081526001602052604090205490565b610d1e919061103a565b11158015610d56575060085481610d49846001600160a01b03165f9081526001602052604090205490565b610d53919061103a565b10155b61069c5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640161045b565b5f6020808352835180828501525f5b81811015610db657858101830151858201604001528201610d9a565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610dec575f80fd5b919050565b5f8060408385031215610e02575f80fd5b610e0b83610dd6565b946020939093013593505050565b5f60208284031215610e29575f80fd5b610e3282610dd6565b9392505050565b5f805f60608486031215610e4b575f80fd5b610e5484610dd6565b9250610e6260208501610dd6565b9150604084013590509250925092565b80358015158114610dec575f80fd5b5f805f8060808587031215610e94575f80fd5b610e9d85610e72565b9350610eab60208601610dd6565b93969395505050506040820135916060013590565b5f60208284031215610ed0575f80fd5b5035919050565b634e487b7160e01b5f52604160045260245ffd5b5f8060408385031215610efc575f80fd5b823567ffffffffffffffff80821115610f13575f80fd5b818501915085601f830112610f26575f80fd5b8135602082821115610f3a57610f3a610ed7565b8160051b604051601f19603f83011681018181108682111715610f5f57610f5f610ed7565b604052928352818301935084810182019289841115610f7c575f80fd5b948201945b83861015610fa157610f9286610dd6565b85529482019493820193610f81565b9650610fb09050878201610e72565b9450505050509250929050565b5f8060408385031215610fce575f80fd5b610fd783610dd6565b9150610fe560208401610dd6565b90509250929050565b600181811c9082168061100257607f821691505b60208210810361102057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156103c9576103c9611026565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f600182016110a7576110a7611026565b5060010190565b818103818111156103c9576103c961102656fea2646970667358221220d16f9a015a9ec6c83d1765fbbe9d02cbe9bfdbbe80cc3dcbdd058c92b70af64764736f6c634300081400330000000000000000000000000000000000001ad88176d00b5c7207c980000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061013d575f3560e01c806370a08231116100b457806395d89b411161007957806395d89b411461029d578063a457c2d7146102a5578063a9059cbb146102b8578063c997eb8d146102cb578063dd62ed3e146102de578063f2fde38b14610316575f80fd5b806370a0823114610247578063715018a61461026f578063860a32ec1461027757806389f9a1d3146102845780638da5cb5b1461028d575f80fd5b806323b872dd1161010557806323b872dd146101bf578063313ce567146101d257806339509351146101e15780633aa633aa146101f457806342966c681461020957806349bd5a5e1461021c575f80fd5b806306fdde0314610141578063095ea7b31461015f57806316c021291461018257806318160ddd146101a45780631ab99e12146101b6575b5f80fd5b610149610329565b6040516101569190610d8b565b60405180910390f35b61017261016d366004610df1565b6103b9565b6040519015158152602001610156565b610172610190366004610e19565b600a6020525f908152604090205460ff1681565b6003545b604051908152602001610156565b6101a860085481565b6101726101cd366004610e39565b6103cf565b60405160128152602001610156565b6101726101ef366004610df1565b61047c565b610207610202366004610e81565b6104b7565b005b610207610217366004610ec0565b61051b565b60095461022f906001600160a01b031681565b6040516001600160a01b039091168152602001610156565b6101a8610255366004610e19565b6001600160a01b03165f9081526001602052604090205490565b610207610528565b6006546101729060ff1681565b6101a860075481565b5f546001600160a01b031661022f565b61014961055c565b6101726102b3366004610df1565b61056b565b6101726102c6366004610df1565b610603565b6102076102d9366004610eeb565b61060f565b6101a86102ec366004610fbd565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b610207610324366004610e19565b6106a1565b60606004805461033890610fee565b80601f016020809104026020016040519081016040528092919081815260200182805461036490610fee565b80156103af5780601f10610386576101008083540402835291602001916103af565b820191905f5260205f20905b81548152906001019060200180831161039257829003601f168201915b5050505050905090565b5f6103c5338484610738565b5060015b92915050565b5f6103db84848461085b565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156104645760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104718533858403610738565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916103c59185906104b290869061103a565b610738565b5f546001600160a01b031633146104e05760405162461bcd60e51b815260040161045b9061104d565b6006805460ff191694151594909417909355600980546001600160a01b0319166001600160a01b039390931692909217909155600755600855565b6105253382610a33565b50565b5f546001600160a01b031633146105515760405162461bcd60e51b815260040161045b9061104d565b61055a5f610b89565b565b60606005805461033890610fee565b335f9081526002602090815260408083206001600160a01b0386168452909152812054828110156105ec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161045b565b6105f93385858403610738565b5060019392505050565b5f6103c533848461085b565b5f546001600160a01b031633146106385760405162461bcd60e51b815260040161045b9061104d565b5f5b825181101561069c5781600a5f85848151811061065957610659611082565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790558061069481611096565b91505061063a565b505050565b5f546001600160a01b031633146106ca5760405162461bcd60e51b815260040161045b9061104d565b6001600160a01b03811661072f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045b565b61052581610b89565b6001600160a01b03831661079a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161045b565b6001600160a01b0382166107fb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161045b565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108bf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161045b565b6001600160a01b0382166109215760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161045b565b61092c838383610bd8565b6001600160a01b0383165f90815260016020526040902054818110156109a35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161045b565b6001600160a01b038085165f908152600160205260408082208585039055918516815290812080548492906109d990849061103a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a2591815260200190565b60405180910390a350505050565b6001600160a01b038216610a935760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161045b565b610a9e825f83610bd8565b6001600160a01b0382165f9081526001602052604090205481811015610b115760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161045b565b6001600160a01b0383165f908152600160205260408120838303905560038054849290610b3f9084906110ae565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382165f908152600a602052604090205460ff16158015610c1857506001600160a01b0383165f908152600a602052604090205460ff16155b610c525760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640161045b565b6009546001600160a01b0316610cce575f546001600160a01b0384811691161480610c8957505f546001600160a01b038381169116145b61069c5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604482015260640161045b565b60065460ff168015610ced57506009546001600160a01b038481169116145b1561069c5760075481610d14846001600160a01b03165f9081526001602052604090205490565b610d1e919061103a565b11158015610d56575060085481610d49846001600160a01b03165f9081526001602052604090205490565b610d53919061103a565b10155b61069c5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640161045b565b5f6020808352835180828501525f5b81811015610db657858101830151858201604001528201610d9a565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610dec575f80fd5b919050565b5f8060408385031215610e02575f80fd5b610e0b83610dd6565b946020939093013593505050565b5f60208284031215610e29575f80fd5b610e3282610dd6565b9392505050565b5f805f60608486031215610e4b575f80fd5b610e5484610dd6565b9250610e6260208501610dd6565b9150604084013590509250925092565b80358015158114610dec575f80fd5b5f805f8060808587031215610e94575f80fd5b610e9d85610e72565b9350610eab60208601610dd6565b93969395505050506040820135916060013590565b5f60208284031215610ed0575f80fd5b5035919050565b634e487b7160e01b5f52604160045260245ffd5b5f8060408385031215610efc575f80fd5b823567ffffffffffffffff80821115610f13575f80fd5b818501915085601f830112610f26575f80fd5b8135602082821115610f3a57610f3a610ed7565b8160051b604051601f19603f83011681018181108682111715610f5f57610f5f610ed7565b604052928352818301935084810182019289841115610f7c575f80fd5b948201945b83861015610fa157610f9286610dd6565b85529482019493820193610f81565b9650610fb09050878201610e72565b9450505050509250929050565b5f8060408385031215610fce575f80fd5b610fd783610dd6565b9150610fe560208401610dd6565b90509250929050565b600181811c9082168061100257607f821691505b60208210810361102057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156103c9576103c9611026565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b5f600182016110a7576110a7611026565b5060010190565b818103818111156103c9576103c961102656fea2646970667358221220d16f9a015a9ec6c83d1765fbbe9d02cbe9bfdbbe80cc3dcbdd058c92b70af64764736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000001ad88176d00b5c7207c980000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 544496000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000001ad88176d00b5c7207c980000000


Deployed Bytecode Sourcemap

19294:1539:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9262:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11429:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11429:169:0;1004:187:1;19472:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10382:108;10470:12;;10382:108;;;1533:25:1;;;1521:2;1506:18;10382:108:0;1387:177:1;19399:31:0;;;;;;12080:492;;;;;;:::i;:::-;;:::i;10224:93::-;;;10307:2;2044:36:1;;2032:2;2017:18;10224:93:0;1902:184:1;12981:215:0;;;;;;:::i;:::-;;:::i;19865:301::-;;;;;;:::i;:::-;;:::i;:::-;;20749:81;;;;;;:::i;:::-;;:::i;19437:28::-;;;;;-1:-1:-1;;;;;19437:28:0;;;;;;-1:-1:-1;;;;;3001:32:1;;;2983:51;;2971:2;2956:18;19437:28:0;2837:203:1;10553:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;10654:18:0;10627:7;10654:18;;;:9;:18;;;;;;;10553:127;2663:103;;;:::i;19335:19::-;;;;;;;;;19361:31;;;;;;2012:87;2058:7;2085:6;-1:-1:-1;;;;;2085:6:0;2012:87;;9481:104;;;:::i;13699:413::-;;;;;;:::i;:::-;;:::i;10893:175::-;;;;;;:::i;:::-;;:::i;19639:218::-;;;;;;:::i;:::-;;:::i;11131:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11247:18:0;;;11220:7;11247:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11131:151;2921:201;;;;;;:::i;:::-;;:::i;9262:100::-;9316:13;9349:5;9342:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9262:100;:::o;11429:169::-;11512:4;11529:39;810:10;11552:7;11561:6;11529:8;:39::i;:::-;-1:-1:-1;11586:4:0;11429:169;;;;;:::o;12080:492::-;12220:4;12237:36;12247:6;12255:9;12266:6;12237:9;:36::i;:::-;-1:-1:-1;;;;;12313:19:0;;12286:24;12313:19;;;:11;:19;;;;;;;;810:10;12313:33;;;;;;;;12365:26;;;;12357:79;;;;-1:-1:-1;;;12357:79:0;;5225:2:1;12357:79:0;;;5207:21:1;5264:2;5244:18;;;5237:30;5303:34;5283:18;;;5276:62;-1:-1:-1;;;5354:18:1;;;5347:38;5402:19;;12357:79:0;;;;;;;;;12472:57;12481:6;810:10;12522:6;12503:16;:25;12472:8;:57::i;:::-;-1:-1:-1;12560:4:0;;12080:492;-1:-1:-1;;;;12080:492:0:o;12981:215::-;810:10;13069:4;13118:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13118:34:0;;;;;;;;;;13069:4;;13086:80;;13109:7;;13118:47;;13155:10;;13118:47;:::i;:::-;13086:8;:80::i;19865:301::-;2058:7;2085:6;-1:-1:-1;;;;;2085:6:0;810:10;2232:23;2224:68;;;;-1:-1:-1;;;2224:68:0;;;;;;;:::i;:::-;20005:7:::1;:18:::0;;-1:-1:-1;;20005:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;20034:13:::1;:30:::0;;-1:-1:-1;;;;;;20034:30:0::1;-1:-1:-1::0;;;;;20034:30:0;;;::::1;::::0;;;::::1;::::0;;;20075:16:::1;:36:::0;20122:16:::1;:36:::0;19865:301::o;20749:81::-;20798:24;20804:10;20816:5;20798;:24::i;:::-;20749:81;:::o;2663:103::-;2058:7;2085:6;-1:-1:-1;;;;;2085:6:0;810:10;2232:23;2224:68;;;;-1:-1:-1;;;2224:68:0;;;;;;;:::i;:::-;2728:30:::1;2755:1;2728:18;:30::i;:::-;2663:103::o:0;9481:104::-;9537:13;9570:7;9563:14;;;;;:::i;13699:413::-;810:10;13792:4;13836:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13836:34:0;;;;;;;;;;13889:35;;;;13881:85;;;;-1:-1:-1;;;13881:85:0;;6257:2:1;13881:85:0;;;6239:21:1;6296:2;6276:18;;;6269:30;6335:34;6315:18;;;6308:62;-1:-1:-1;;;6386:18:1;;;6379:35;6431:19;;13881:85:0;6055:401:1;13881:85:0;14002:67;810:10;14025:7;14053:15;14034:16;:34;14002:8;:67::i;:::-;-1:-1:-1;14100:4:0;;13699:413;-1:-1:-1;;;13699:413:0:o;10893:175::-;10979:4;10996:42;810:10;11020:9;11031:6;10996:9;:42::i;19639:218::-;2058:7;2085:6;-1:-1:-1;;;;;2085:6:0;810:10;2232:23;2224:68;;;;-1:-1:-1;;;2224:68:0;;;;;;;:::i;:::-;19744:6:::1;19739:111;19756:10;:17;19752:1;:21;19739:111;;;19823:15;19795:10;:25;19806:10;19817:1;19806:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;19795:25:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;19795:25:0;:43;;-1:-1:-1;;19795:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19775:3;::::1;::::0;::::1;:::i;:::-;;;;19739:111;;;;19639:218:::0;;:::o;2921:201::-;2058:7;2085:6;-1:-1:-1;;;;;2085:6:0;810:10;2232:23;2224:68;;;;-1:-1:-1;;;2224:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3010:22:0;::::1;3002:73;;;::::0;-1:-1:-1;;;3002:73:0;;6935:2:1;3002:73:0::1;::::0;::::1;6917:21:1::0;6974:2;6954:18;;;6947:30;7013:34;6993:18;;;6986:62;-1:-1:-1;;;7064:18:1;;;7057:36;7110:19;;3002:73:0::1;6733:402:1::0;3002:73:0::1;3086:28;3105:8;3086:18;:28::i;17383:380::-:0;-1:-1:-1;;;;;17519:19:0;;17511:68;;;;-1:-1:-1;;;17511:68:0;;7342:2:1;17511:68:0;;;7324:21:1;7381:2;7361:18;;;7354:30;7420:34;7400:18;;;7393:62;-1:-1:-1;;;7471:18:1;;;7464:34;7515:19;;17511:68:0;7140:400:1;17511:68:0;-1:-1:-1;;;;;17598:21:0;;17590:68;;;;-1:-1:-1;;;17590:68:0;;7747:2:1;17590:68:0;;;7729:21:1;7786:2;7766:18;;;7759:30;7825:34;7805:18;;;7798:62;-1:-1:-1;;;7876:18:1;;;7869:32;7918:19;;17590:68:0;7545:398:1;17590:68:0;-1:-1:-1;;;;;17671:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17723:32;;1533:25:1;;;17723:32:0;;1506:18:1;17723:32:0;;;;;;;17383:380;;;:::o;14602:733::-;-1:-1:-1;;;;;14742:20:0;;14734:70;;;;-1:-1:-1;;;14734:70:0;;8150:2:1;14734:70:0;;;8132:21:1;8189:2;8169:18;;;8162:30;8228:34;8208:18;;;8201:62;-1:-1:-1;;;8279:18:1;;;8272:35;8324:19;;14734:70:0;7948:401:1;14734:70:0;-1:-1:-1;;;;;14823:23:0;;14815:71;;;;-1:-1:-1;;;14815:71:0;;8556:2:1;14815:71:0;;;8538:21:1;8595:2;8575:18;;;8568:30;8634:34;8614:18;;;8607:62;-1:-1:-1;;;8685:18:1;;;8678:33;8728:19;;14815:71:0;8354:399:1;14815:71:0;14899:47;14920:6;14928:9;14939:6;14899:20;:47::i;:::-;-1:-1:-1;;;;;14983:17:0;;14959:21;14983:17;;;:9;:17;;;;;;15019:23;;;;15011:74;;;;-1:-1:-1;;;15011:74:0;;8960:2:1;15011:74:0;;;8942:21:1;8999:2;8979:18;;;8972:30;9038:34;9018:18;;;9011:62;-1:-1:-1;;;9089:18:1;;;9082:36;9135:19;;15011:74:0;8758:402:1;15011:74:0;-1:-1:-1;;;;;15121:17:0;;;;;;;:9;:17;;;;;;15141:22;;;15121:42;;15185:20;;;;;;;;:30;;15157:6;;15121:17;15185:30;;15157:6;;15185:30;:::i;:::-;;;;;;;;15250:9;-1:-1:-1;;;;;15233:35:0;15242:6;-1:-1:-1;;;;;15233:35:0;;15261:6;15233:35;;;;1533:25:1;;1521:2;1506:18;;1387:177;15233:35:0;;;;;;;;14723:612;14602:733;;;:::o;16354:591::-;-1:-1:-1;;;;;16438:21:0;;16430:67;;;;-1:-1:-1;;;16430:67:0;;9367:2:1;16430:67:0;;;9349:21:1;9406:2;9386:18;;;9379:30;9445:34;9425:18;;;9418:62;-1:-1:-1;;;9496:18:1;;;9489:31;9537:19;;16430:67:0;9165:397:1;16430:67:0;16510:49;16531:7;16548:1;16552:6;16510:20;:49::i;:::-;-1:-1:-1;;;;;16597:18:0;;16572:22;16597:18;;;:9;:18;;;;;;16634:24;;;;16626:71;;;;-1:-1:-1;;;16626:71:0;;9769:2:1;16626:71:0;;;9751:21:1;9808:2;9788:18;;;9781:30;9847:34;9827:18;;;9820:62;-1:-1:-1;;;9898:18:1;;;9891:32;9940:19;;16626:71:0;9567:398:1;16626:71:0;-1:-1:-1;;;;;16733:18:0;;;;;;:9;:18;;;;;16754:23;;;16733:44;;16799:12;:22;;16771:6;;16733:18;16799:22;;16771:6;;16799:22;:::i;:::-;;;;-1:-1:-1;;16839:37:0;;1533:25:1;;;16865:1:0;;-1:-1:-1;;;;;16839:37:0;;;;;1521:2:1;1506:18;16839:37:0;;;;;;;19739:111:::1;19639:218:::0;;:::o;3282:191::-;3356:16;3375:6;;-1:-1:-1;;;;;3392:17:0;;;-1:-1:-1;;;;;;3392:17:0;;;;;;3425:40;;3375:6;;;;;;;3425:40;;3356:16;3425:40;3345:128;3282:191;:::o;20174:567::-;-1:-1:-1;;;;;20326:14:0;;;;;;:10;:14;;;;;;;;20325:15;:36;;;;-1:-1:-1;;;;;;20345:16:0;;;;;;:10;:16;;;;;;;;20344:17;20325:36;20317:60;;;;-1:-1:-1;;;20317:60:0;;10305:2:1;20317:60:0;;;10287:21:1;10344:2;10324:18;;;10317:30;-1:-1:-1;;;10363:18:1;;;10356:41;10414:18;;20317:60:0;10103:335:1;20317:60:0;20394:13;;-1:-1:-1;;;;;20394:13:0;20390:148;;2058:7;2085:6;-1:-1:-1;;;;;20446:15:0;;;2085:6;;20446:15;;:32;;-1:-1:-1;2058:7:0;2085:6;-1:-1:-1;;;;;20465:13:0;;;2085:6;;20465:13;20446:32;20438:67;;;;-1:-1:-1;;;20438:67:0;;10645:2:1;20438:67:0;;;10627:21:1;10684:2;10664:18;;;10657:30;-1:-1:-1;;;10703:18:1;;;10696:52;10765:18;;20438:67:0;10443:346:1;20390:148:0;20554:7;;;;:32;;;;-1:-1:-1;20573:13:0;;-1:-1:-1;;;;;20565:21:0;;;20573:13;;20565:21;20554:32;20550:184;;;20643:16;;20633:6;20611:19;20627:2;-1:-1:-1;;;;;10654:18:0;10627:7;10654:18;;;:9;:18;;;;;;;10553:127;20611:19;:28;;;;:::i;:::-;:48;;:100;;;;;20695:16;;20685:6;20663:19;20679:2;-1:-1:-1;;;;;10654:18:0;10627:7;10654:18;;;:9;:18;;;;;;;10553:127;20663:19;:28;;;;:::i;:::-;:48;;20611:100;20603:119;;;;-1:-1:-1;;;20603:119:0;;10996:2:1;20603:119:0;;;10978:21:1;11035:1;11015:18;;;11008:29;-1:-1:-1;;;11053:18:1;;;11046:36;11099:18;;20603:119:0;10794:329:1;14:548;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;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:1:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2091:160::-;2156:20;;2212:13;;2205:21;2195:32;;2185:60;;2241:1;2238;2231:12;2256:391;2339:6;2347;2355;2363;2416:3;2404:9;2395:7;2391:23;2387:33;2384:53;;;2433:1;2430;2423:12;2384:53;2456:26;2472:9;2456:26;:::i;:::-;2446:36;;2501:38;2535:2;2524:9;2520:18;2501:38;:::i;:::-;2256:391;;2491:48;;-1:-1:-1;;;;2586:2:1;2571:18;;2558:32;;2637:2;2622:18;2609:32;;2256:391::o;2652:180::-;2711:6;2764:2;2752:9;2743:7;2739:23;2735:32;2732:52;;;2780:1;2777;2770:12;2732:52;-1:-1:-1;2803:23:1;;2652:180;-1:-1:-1;2652:180:1:o;3045:127::-;3106:10;3101:3;3097:20;3094:1;3087:31;3137:4;3134:1;3127:15;3161:4;3158:1;3151:15;3177:1191;3267:6;3275;3328:2;3316:9;3307:7;3303:23;3299:32;3296:52;;;3344:1;3341;3334:12;3296:52;3384:9;3371:23;3413:18;3454:2;3446:6;3443:14;3440:34;;;3470:1;3467;3460:12;3440:34;3508:6;3497:9;3493:22;3483:32;;3553:7;3546:4;3542:2;3538:13;3534:27;3524:55;;3575:1;3572;3565:12;3524:55;3611:2;3598:16;3633:4;3656:2;3652;3649:10;3646:36;;;3662:18;;:::i;:::-;3708:2;3705:1;3701:10;3740:2;3734:9;3803:2;3799:7;3794:2;3790;3786:11;3782:25;3774:6;3770:38;3858:6;3846:10;3843:22;3838:2;3826:10;3823:18;3820:46;3817:72;;;3869:18;;:::i;:::-;3905:2;3898:22;3955:18;;;3989:15;;;;-1:-1:-1;4031:11:1;;;4027:20;;;4059:19;;;4056:39;;;4091:1;4088;4081:12;4056:39;4115:11;;;;4135:148;4151:6;4146:3;4143:15;4135:148;;;4217:23;4236:3;4217:23;:::i;:::-;4205:36;;4168:12;;;;4261;;;;4135:148;;;4302:6;-1:-1:-1;4327:35:1;;-1:-1:-1;4343:18:1;;;4327:35;:::i;:::-;4317:45;;;;;;3177:1191;;;;;:::o;4373:260::-;4441:6;4449;4502:2;4490:9;4481:7;4477:23;4473:32;4470:52;;;4518:1;4515;4508:12;4470:52;4541:29;4560:9;4541:29;:::i;:::-;4531:39;;4589:38;4623:2;4612:9;4608:18;4589:38;:::i;:::-;4579:48;;4373:260;;;;;:::o;4638:380::-;4717:1;4713:12;;;;4760;;;4781:61;;4835:4;4827:6;4823:17;4813:27;;4781:61;4888:2;4880:6;4877:14;4857:18;4854:38;4851:161;;4934:10;4929:3;4925:20;4922:1;4915:31;4969:4;4966:1;4959:15;4997:4;4994:1;4987:15;4851:161;;4638:380;;;:::o;5432:127::-;5493:10;5488:3;5484:20;5481:1;5474:31;5524:4;5521:1;5514:15;5548:4;5545:1;5538:15;5564:125;5629:9;;;5650:10;;;5647:36;;;5663:18;;:::i;5694:356::-;5896:2;5878:21;;;5915:18;;;5908:30;5974:34;5969:2;5954:18;;5947:62;6041:2;6026:18;;5694:356::o;6461:127::-;6522:10;6517:3;6513:20;6510:1;6503:31;6553:4;6550:1;6543:15;6577:4;6574:1;6567:15;6593:135;6632:3;6653:17;;;6650:43;;6673:18;;:::i;:::-;-1:-1:-1;6720:1:1;6709:13;;6593:135::o;9970:128::-;10037:9;;;10058:11;;;10055:37;;;10072:18;;:::i

Swarm Source

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