ETH Price: $2,521.38 (+2.74%)

Token

BOB (BOB)
 

Overview

Max Total Supply

420,690,000,000,000 BOB

Holders

102

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 BOB

Value
$0.00
0xaabea6705eea315f788aac9df05ba46ca9a9071c
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:
BobToken

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 69420 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 
BOB (BOB)

TG: https://t.me/BobCoinEth
Twitter: https://twitter.com/bobcoineth

*/

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// 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/BobToken.sol



pragma solidity ^0.8.0;


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

    constructor(uint256 _totalSupply) ERC20("BOB", "BOB") {
        _mint(msg.sender, _totalSupply);
    }

    // Blacklists are bananas
    // function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
    //     blacklists[_address] = _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 {

        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":"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"}]

60806040523480156200001157600080fd5b506040516200196e3803806200196e833981016040819052620000349162000362565b604051806040016040528060038152602001622127a160e91b815250604051806040016040528060038152602001622127a160e91b8152506200008662000080620000bf60201b60201c565b620000c3565b600462000094838262000420565b506005620000a3828262000420565b505050620000b833826200011360201b60201c565b5062000514565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200016f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200017d600083836200020a565b8060036000828254620001919190620004ec565b90915550506001600160a01b03821660009081526001602052604081208054839290620001c0908490620004ec565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6009546001600160a01b031662000298576000546001600160a01b03848116911614806200024557506000546001600160a01b038381169116145b620002935760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f74207374617274656400000000000000000000604482015260640162000166565b505050565b60065460ff168015620002b857506009546001600160a01b038481169116145b15620002935760075481620002e2846001600160a01b031660009081526001602052604090205490565b620002ee9190620004ec565b111580156200032b5750600854816200031c846001600160a01b031660009081526001602052604090205490565b620003289190620004ec565b10155b620002935760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640162000166565b6000602082840312156200037557600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003a757607f821691505b602082108103620003c857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200029357600081815260208120601f850160051c81016020861015620003f75750805b601f850160051c820191505b81811015620004185782815560010162000403565b505050505050565b81516001600160401b038111156200043c576200043c6200037c565b62000454816200044d845462000392565b84620003ce565b602080601f8311600181146200048c5760008415620004735750858301515b600019600386901b1c1916600185901b17855562000418565b600085815260208120601f198616915b82811015620004bd578886015182559484019460019091019084016200049c565b5085821015620004dc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200050e57634e487b7160e01b600052601160045260246000fd5b92915050565b61144a80620005246000396000f3fe608060405234801561001057600080fd5b506004361061016c5760003560e01c806370a08231116100cd57806395d89b4111610081578063a9059cbb11610066578063a9059cbb146102fc578063dd62ed3e1461030f578063f2fde38b1461035557600080fd5b806395d89b41146102e1578063a457c2d7146102e957600080fd5b8063860a32ec116100b2578063860a32ec146102ad57806389f9a1d3146102ba5780638da5cb5b146102c357600080fd5b806370a082311461026f578063715018a6146102a557600080fd5b8063313ce567116101245780633aa633aa116101095780633aa633aa1461020257806342966c681461021757806349bd5a5e1461022a57600080fd5b8063313ce567146101e057806339509351146101ef57600080fd5b806318160ddd1161015557806318160ddd146101b25780631ab99e12146101c457806323b872dd146101cd57600080fd5b806306fdde0314610171578063095ea7b31461018f575b600080fd5b610179610368565b60405161018691906111ba565b60405180910390f35b6101a261019d36600461124f565b6103fa565b6040519015158152602001610186565b6003545b604051908152602001610186565b6101b660085481565b6101a26101db366004611279565b610411565b60405160128152602001610186565b6101a26101fd36600461124f565b6104fc565b6102156102103660046112b5565b610545565b005b6102156102253660046112fe565b610644565b60095461024a9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610186565b6101b661027d366004611317565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b610215610651565b6006546101a29060ff1681565b6101b660075481565b60005473ffffffffffffffffffffffffffffffffffffffff1661024a565b6101796106de565b6101a26102f736600461124f565b6106ed565b6101a261030a36600461124f565b6107c5565b6101b661031d366004611339565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b610215610363366004611317565b6107d2565b6060600480546103779061136c565b80601f01602080910402602001604051908101604052809291908181526020018280546103a39061136c565b80156103f05780601f106103c5576101008083540402835291602001916103f0565b820191906000526020600020905b8154815290600101906020018083116103d357829003601f168201915b5050505050905090565b60006104073384846108ff565b5060015b92915050565b600061041e848484610ab3565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600260209081526040808320338452909152902054828110156104e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6104f185338584036108ff565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916104079185906105409086906113ee565b6108ff565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104db565b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001694151594909417909355600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9390931692909217909155600755600855565b61064e3382610d72565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146106d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104db565b6106dc6000610f68565b565b6060600580546103779061136c565b33600090815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156107ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104db565b6107bb33858584036108ff565b5060019392505050565b6000610407338484610ab3565b60005473ffffffffffffffffffffffffffffffffffffffff163314610853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104db565b73ffffffffffffffffffffffffffffffffffffffff81166108f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104db565b61064e81610f68565b73ffffffffffffffffffffffffffffffffffffffff83166109a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104db565b73ffffffffffffffffffffffffffffffffffffffff8216610a44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104db565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104db565b73ffffffffffffffffffffffffffffffffffffffff8216610bf9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104db565b610c04838383610fdd565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610cba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104db565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260016020526040808220858503905591851681529081208054849290610cfe9084906113ee565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6491815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610e15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104db565b610e2182600083610fdd565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604090205481811015610ed7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016104db565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600160205260408120838303905560038054849290610f13908490611401565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610aa6565b505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60095473ffffffffffffffffffffffffffffffffffffffff166110a35760005473ffffffffffffffffffffffffffffffffffffffff8481169116148061103d575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b610f63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f74726164696e67206973206e6f7420737461727465640000000000000000000060448201526064016104db565b60065460ff1680156110cf575060095473ffffffffffffffffffffffffffffffffffffffff8481169116145b15610f6357600754816111048473ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b61110e91906113ee565b111580156111545750600854816111478473ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b61115191906113ee565b10155b610f63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f466f72626964000000000000000000000000000000000000000000000000000060448201526064016104db565b600060208083528351808285015260005b818110156111e7578581018301518582016040015282016111cb565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461124a57600080fd5b919050565b6000806040838503121561126257600080fd5b61126b83611226565b946020939093013593505050565b60008060006060848603121561128e57600080fd5b61129784611226565b92506112a560208501611226565b9150604084013590509250925092565b600080600080608085870312156112cb57600080fd5b843580151581146112db57600080fd5b93506112e960208601611226565b93969395505050506040820135916060013590565b60006020828403121561131057600080fd5b5035919050565b60006020828403121561132957600080fd5b61133282611226565b9392505050565b6000806040838503121561134c57600080fd5b61135583611226565b915061136360208401611226565b90509250929050565b600181811c9082168061138057607f821691505b6020821081036113b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561040b5761040b6113bf565b8181038181111561040b5761040b6113bf56fea2646970667358221220f82847dd4dafad919fa645eb348bf0a4653066cdc8370eaa64288bf13c64279364736f6c6343000813003300000000000000000000000000000000000014bddab3e51a57cff87a50000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061016c5760003560e01c806370a08231116100cd57806395d89b4111610081578063a9059cbb11610066578063a9059cbb146102fc578063dd62ed3e1461030f578063f2fde38b1461035557600080fd5b806395d89b41146102e1578063a457c2d7146102e957600080fd5b8063860a32ec116100b2578063860a32ec146102ad57806389f9a1d3146102ba5780638da5cb5b146102c357600080fd5b806370a082311461026f578063715018a6146102a557600080fd5b8063313ce567116101245780633aa633aa116101095780633aa633aa1461020257806342966c681461021757806349bd5a5e1461022a57600080fd5b8063313ce567146101e057806339509351146101ef57600080fd5b806318160ddd1161015557806318160ddd146101b25780631ab99e12146101c457806323b872dd146101cd57600080fd5b806306fdde0314610171578063095ea7b31461018f575b600080fd5b610179610368565b60405161018691906111ba565b60405180910390f35b6101a261019d36600461124f565b6103fa565b6040519015158152602001610186565b6003545b604051908152602001610186565b6101b660085481565b6101a26101db366004611279565b610411565b60405160128152602001610186565b6101a26101fd36600461124f565b6104fc565b6102156102103660046112b5565b610545565b005b6102156102253660046112fe565b610644565b60095461024a9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610186565b6101b661027d366004611317565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b610215610651565b6006546101a29060ff1681565b6101b660075481565b60005473ffffffffffffffffffffffffffffffffffffffff1661024a565b6101796106de565b6101a26102f736600461124f565b6106ed565b6101a261030a36600461124f565b6107c5565b6101b661031d366004611339565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b610215610363366004611317565b6107d2565b6060600480546103779061136c565b80601f01602080910402602001604051908101604052809291908181526020018280546103a39061136c565b80156103f05780601f106103c5576101008083540402835291602001916103f0565b820191906000526020600020905b8154815290600101906020018083116103d357829003601f168201915b5050505050905090565b60006104073384846108ff565b5060015b92915050565b600061041e848484610ab3565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600260209081526040808320338452909152902054828110156104e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6104f185338584036108ff565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916104079185906105409086906113ee565b6108ff565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104db565b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001694151594909417909355600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9390931692909217909155600755600855565b61064e3382610d72565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146106d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104db565b6106dc6000610f68565b565b6060600580546103779061136c565b33600090815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156107ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104db565b6107bb33858584036108ff565b5060019392505050565b6000610407338484610ab3565b60005473ffffffffffffffffffffffffffffffffffffffff163314610853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104db565b73ffffffffffffffffffffffffffffffffffffffff81166108f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104db565b61064e81610f68565b73ffffffffffffffffffffffffffffffffffffffff83166109a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104db565b73ffffffffffffffffffffffffffffffffffffffff8216610a44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104db565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104db565b73ffffffffffffffffffffffffffffffffffffffff8216610bf9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104db565b610c04838383610fdd565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610cba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104db565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260016020526040808220858503905591851681529081208054849290610cfe9084906113ee565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6491815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610e15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104db565b610e2182600083610fdd565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604090205481811015610ed7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016104db565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600160205260408120838303905560038054849290610f13908490611401565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610aa6565b505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60095473ffffffffffffffffffffffffffffffffffffffff166110a35760005473ffffffffffffffffffffffffffffffffffffffff8481169116148061103d575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b610f63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f74726164696e67206973206e6f7420737461727465640000000000000000000060448201526064016104db565b60065460ff1680156110cf575060095473ffffffffffffffffffffffffffffffffffffffff8481169116145b15610f6357600754816111048473ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b61110e91906113ee565b111580156111545750600854816111478473ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b61115191906113ee565b10155b610f63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f466f72626964000000000000000000000000000000000000000000000000000060448201526064016104db565b600060208083528351808285015260005b818110156111e7578581018301518582016040015282016111cb565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461124a57600080fd5b919050565b6000806040838503121561126257600080fd5b61126b83611226565b946020939093013593505050565b60008060006060848603121561128e57600080fd5b61129784611226565b92506112a560208501611226565b9150604084013590509250925092565b600080600080608085870312156112cb57600080fd5b843580151581146112db57600080fd5b93506112e960208601611226565b93969395505050506040820135916060013590565b60006020828403121561131057600080fd5b5035919050565b60006020828403121561132957600080fd5b61133282611226565b9392505050565b6000806040838503121561134c57600080fd5b61135583611226565b915061136360208401611226565b90509250929050565b600181811c9082168061138057607f821691505b6020821081036113b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561040b5761040b6113bf565b8181038181111561040b5761040b6113bf56fea2646970667358221220f82847dd4dafad919fa645eb348bf0a4653066cdc8370eaa64288bf13c64279364736f6c63430008130033

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

00000000000000000000000000000000000014bddab3e51a57cff87a50000000

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000014bddab3e51a57cff87a50000000


Deployed Bytecode Sourcemap

19441:1426:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9411:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11578:169;;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;11578:169:0;1086:187:1;10531:108:0;10619:12;;10531:108;;;1424:25:1;;;1412:2;1397:18;10531:108:0;1278:177:1;19548:31:0;;;;;;12229:492;;;;;;:::i;:::-;;:::i;10373:93::-;;;10456:2;1935:36:1;;1923:2;1908:18;10373:93:0;1793:184:1;13130:215:0;;;;;;:::i;:::-;;:::i;19970:301::-;;;;;;:::i;:::-;;:::i;:::-;;20783:81;;;;;;:::i;:::-;;:::i;19586:28::-;;;;;;;;;;;;2832:42:1;2820:55;;;2802:74;;2790:2;2775:18;19586:28:0;2656:226:1;10702:127:0;;;;;;:::i;:::-;10803:18;;10776:7;10803:18;;;:9;:18;;;;;;;10702:127;2812:103;;;:::i;19484:19::-;;;;;;;;;19510:31;;;;;;2161:87;2207:7;2234:6;;;2161:87;;9630:104;;;:::i;13848:413::-;;;;;;:::i;:::-;;:::i;11042:175::-;;;;;;:::i;:::-;;:::i;11280:151::-;;;;;;:::i;:::-;11396:18;;;;11369:7;11396:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11280:151;3070:201;;;;;;:::i;:::-;;:::i;9411:100::-;9465:13;9498:5;9491:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9411:100;:::o;11578:169::-;11661:4;11678:39;959:10;11701:7;11710:6;11678:8;:39::i;:::-;-1:-1:-1;11735:4:0;11578:169;;;;;:::o;12229:492::-;12369:4;12386:36;12396:6;12404:9;12415:6;12386:9;:36::i;:::-;12462:19;;;12435:24;12462:19;;;:11;:19;;;;;;;;959:10;12462:33;;;;;;;;12514:26;;;;12506:79;;;;;;;3987:2:1;12506:79:0;;;3969:21:1;4026:2;4006:18;;;3999:30;4065:34;4045:18;;;4038:62;4136:10;4116:18;;;4109:38;4164:19;;12506:79:0;;;;;;;;;12621:57;12630:6;959:10;12671:6;12652:16;:25;12621:8;:57::i;:::-;-1:-1:-1;12709:4:0;;12229:492;-1:-1:-1;;;;12229:492:0:o;13130:215::-;959:10;13218:4;13267:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;13218:4;;13235:80;;13258:7;;13267:47;;13304:10;;13267:47;:::i;:::-;13235:8;:80::i;19970:301::-;2207:7;2234:6;2381:23;2234:6;959:10;2381:23;2373:68;;;;;;;4715:2:1;2373:68:0;;;4697:21:1;;;4734:18;;;4727:30;4793:34;4773:18;;;4766:62;4845:18;;2373:68:0;4513:356:1;2373:68:0;20110:7:::1;:18:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;;20139:13:::1;:30:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;;20180:16:::1;:36:::0;20227:16:::1;:36:::0;19970:301::o;20783:81::-;20832:24;20838:10;20850:5;20832;:24::i;:::-;20783:81;:::o;2812:103::-;2207:7;2234:6;2381:23;2234:6;959:10;2381:23;2373:68;;;;;;;4715:2:1;2373:68:0;;;4697:21:1;;;4734:18;;;4727:30;4793:34;4773:18;;;4766:62;4845:18;;2373:68:0;4513:356:1;2373:68:0;2877:30:::1;2904:1;2877:18;:30::i;:::-;2812:103::o:0;9630:104::-;9686:13;9719:7;9712:14;;;;;:::i;13848:413::-;959:10;13941:4;13985:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;14038:35;;;;14030:85;;;;;;;5076:2:1;14030:85:0;;;5058:21:1;5115:2;5095:18;;;5088:30;5154:34;5134:18;;;5127:62;5225:7;5205:18;;;5198:35;5250:19;;14030:85:0;4874:401:1;14030:85:0;14151:67;959:10;14174:7;14202:15;14183:16;:34;14151:8;:67::i;:::-;-1:-1:-1;14249:4:0;;13848:413;-1:-1:-1;;;13848:413:0:o;11042:175::-;11128:4;11145:42;959:10;11169:9;11180:6;11145:9;:42::i;3070:201::-;2207:7;2234:6;2381:23;2234:6;959:10;2381:23;2373:68;;;;;;;4715:2:1;2373:68:0;;;4697:21:1;;;4734:18;;;4727:30;4793:34;4773:18;;;4766:62;4845:18;;2373:68:0;4513:356:1;2373:68:0;3159:22:::1;::::0;::::1;3151:73;;;::::0;::::1;::::0;;5482:2:1;3151:73:0::1;::::0;::::1;5464:21:1::0;5521:2;5501:18;;;5494:30;5560:34;5540:18;;;5533:62;5631:8;5611:18;;;5604:36;5657:19;;3151:73:0::1;5280:402:1::0;3151:73:0::1;3235:28;3254:8;3235:18;:28::i;17532:380::-:0;17668:19;;;17660:68;;;;;;;5889:2:1;17660:68:0;;;5871:21:1;5928:2;5908:18;;;5901:30;5967:34;5947:18;;;5940:62;6038:6;6018:18;;;6011:34;6062:19;;17660:68:0;5687:400:1;17660:68:0;17747:21;;;17739:68;;;;;;;6294:2:1;17739:68:0;;;6276:21:1;6333:2;6313:18;;;6306:30;6372:34;6352:18;;;6345:62;6443:4;6423:18;;;6416:32;6465:19;;17739:68:0;6092:398:1;17739:68:0;17820:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17872:32;;1424:25:1;;;17872:32:0;;1397:18:1;17872:32:0;;;;;;;;17532:380;;;:::o;14751:733::-;14891:20;;;14883:70;;;;;;;6697:2:1;14883:70:0;;;6679:21:1;6736:2;6716:18;;;6709:30;6775:34;6755:18;;;6748:62;6846:7;6826:18;;;6819:35;6871:19;;14883:70:0;6495:401:1;14883:70:0;14972:23;;;14964:71;;;;;;;7103:2:1;14964:71:0;;;7085:21:1;7142:2;7122:18;;;7115:30;7181:34;7161:18;;;7154:62;7252:5;7232:18;;;7225:33;7275:19;;14964:71:0;6901:399:1;14964:71:0;15048:47;15069:6;15077:9;15088:6;15048:20;:47::i;:::-;15132:17;;;15108:21;15132:17;;;:9;:17;;;;;;15168:23;;;;15160:74;;;;;;;7507:2:1;15160:74:0;;;7489:21:1;7546:2;7526:18;;;7519:30;7585:34;7565:18;;;7558:62;7656:8;7636:18;;;7629:36;7682:19;;15160:74:0;7305:402:1;15160:74:0;15270:17;;;;;;;;:9;:17;;;;;;15290:22;;;15270:42;;15334:20;;;;;;;;:30;;15306:6;;15270:17;15334:30;;15306:6;;15334:30;:::i;:::-;;;;;;;;15399:9;15382:35;;15391:6;15382:35;;;15410:6;15382:35;;;;1424:25:1;;1412:2;1397:18;;1278:177;15382:35:0;;;;;;;;14872:612;14751:733;;;:::o;16503:591::-;16587:21;;;16579:67;;;;;;;7914:2:1;16579:67:0;;;7896:21:1;7953:2;7933:18;;;7926:30;7992:34;7972:18;;;7965:62;8063:3;8043:18;;;8036:31;8084:19;;16579:67:0;7712:397:1;16579:67:0;16659:49;16680:7;16697:1;16701:6;16659:20;:49::i;:::-;16746:18;;;16721:22;16746:18;;;:9;:18;;;;;;16783:24;;;;16775:71;;;;;;;8316:2:1;16775:71:0;;;8298:21:1;8355:2;8335:18;;;8328:30;8394:34;8374:18;;;8367:62;8465:4;8445:18;;;8438:32;8487:19;;16775:71:0;8114:398:1;16775:71:0;16882:18;;;;;;;:9;:18;;;;;16903:23;;;16882:44;;16948:12;:22;;16920:6;;16882:18;16948:22;;16920:6;;16948:22;:::i;:::-;;;;-1:-1:-1;;16988:37:0;;1424:25:1;;;17014:1:0;;16988:37;;;;;;1412:2:1;1397:18;16988:37:0;1278:177:1;17038:48:0;16568:526;16503:591;;:::o;3431:191::-;3505:16;3524:6;;;3541:17;;;;;;;;;;3574:40;;3524:6;;;;;;;3574:40;;3505:16;3574:40;3494:128;3431:191;:::o;20279:496::-;20428:13;;:27;:13;20424:148;;2207:7;2234:6;;20480:15;;;2234:6;;20480:15;;:32;;-1:-1:-1;2207:7:0;2234:6;;20499:13;;;2234:6;;20499:13;20480:32;20472:67;;;;;;;8852:2:1;20472:67:0;;;8834:21:1;8891:2;8871:18;;;8864:30;8930:24;8910:18;;;8903:52;8972:18;;20472:67:0;8650:346:1;20424:148:0;20588:7;;;;:32;;;;-1:-1:-1;20607:13:0;;;20599:21;;;20607:13;;20599:21;20588:32;20584:184;;;20677:16;;20667:6;20645:19;20661:2;10803:18;;10776:7;10803:18;;;:9;:18;;;;;;;10702:127;20645:19;:28;;;;:::i;:::-;:48;;:100;;;;;20729:16;;20719:6;20697:19;20713:2;10803:18;;10776:7;10803:18;;;:9;:18;;;;;;;10702:127;20697:19;:28;;;;:::i;:::-;:48;;20645:100;20637:119;;;;;;;9203:2:1;20637:119:0;;;9185:21:1;9242:1;9222:18;;;9215:29;9280:8;9260:18;;;9253:36;9306:18;;20637:119:0;9001:329:1;14:607;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;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:254::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:1:o;1460:328::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1645:29;1664:9;1645:29;:::i;:::-;1635:39;;1693:38;1727:2;1716:9;1712:18;1693:38;:::i;:::-;1683:48;;1778:2;1767:9;1763:18;1750:32;1740:42;;1460:328;;;;;:::o;1982:484::-;2065:6;2073;2081;2089;2142:3;2130:9;2121:7;2117:23;2113:33;2110:53;;;2159:1;2156;2149:12;2110:53;2198:9;2185:23;2251:5;2244:13;2237:21;2230:5;2227:32;2217:60;;2273:1;2270;2263:12;2217:60;2296:5;-1:-1:-1;2320:38:1;2354:2;2339:18;;2320:38;:::i;:::-;1982:484;;2310:48;;-1:-1:-1;;;;2405:2:1;2390:18;;2377:32;;2456:2;2441:18;2428:32;;1982:484::o;2471:180::-;2530:6;2583:2;2571:9;2562:7;2558:23;2554:32;2551:52;;;2599:1;2596;2589:12;2551:52;-1:-1:-1;2622:23:1;;2471:180;-1:-1:-1;2471:180:1:o;2887:186::-;2946:6;2999:2;2987:9;2978:7;2974:23;2970:32;2967:52;;;3015:1;3012;3005:12;2967:52;3038:29;3057:9;3038:29;:::i;:::-;3028:39;2887:186;-1:-1:-1;;;2887:186:1:o;3078:260::-;3146:6;3154;3207:2;3195:9;3186:7;3182:23;3178:32;3175:52;;;3223:1;3220;3213:12;3175:52;3246:29;3265:9;3246:29;:::i;:::-;3236:39;;3294:38;3328:2;3317:9;3313:18;3294:38;:::i;:::-;3284:48;;3078:260;;;;;:::o;3343:437::-;3422:1;3418:12;;;;3465;;;3486:61;;3540:4;3532:6;3528:17;3518:27;;3486:61;3593:2;3585:6;3582:14;3562:18;3559:38;3556:218;;3630:77;3627:1;3620:88;3731:4;3728:1;3721:15;3759:4;3756:1;3749:15;3556:218;;3343:437;;;:::o;4194:184::-;4246:77;4243:1;4236:88;4343:4;4340:1;4333:15;4367:4;4364:1;4357:15;4383:125;4448:9;;;4469:10;;;4466:36;;;4482:18;;:::i;8517:128::-;8584:9;;;8605:11;;;8602:37;;;8619:18;;:::i

Swarm Source

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