ETH Price: $3,421.50 (-2.25%)
Gas: 8 Gwei

Token

Based (BASED)
 

Overview

Max Total Supply

100,000,000 BASED

Holders

236

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.64561835815454345 BASED

Value
$0.00
0x5efaa5fc046a1815c96e8ea9932ee2ea5bb1ee1b
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:
Based

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Twitter: https://twitter.com/based_erc20
// Telegram: https://t.me/BASEDTokenERC

// 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 {}
}

pragma solidity ^0.8.0;


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

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

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

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

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

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

60806040523480156200001157600080fd5b50604051620015b2380380620015b28339810160408190526200003491620003cd565b6040518060400160405280600581526020016410985cd95960da1b81525060405180604001604052806005815260200164109054d15160da1b8152506200008a62000084620000d160201b60201c565b620000d5565b81516200009f90600490602085019062000327565b508051620000b590600590602084019062000327565b505050620000ca33826200012560201b60201c565b50620004cd565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001575760405162461bcd60e51b81526004016200014e9062000406565b60405180910390fd5b620001656000838362000207565b80600360008282546200017991906200046b565b90915550506001600160a01b03821660009081526001602052604081208054839290620001a89084906200046b565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001ed90859062000462565b60405180910390a3620002036000838362000307565b5050565b6001600160a01b0382166000908152600a602052604090205460ff161580156200024a57506001600160a01b0383166000908152600a602052604090205460ff16155b620002695760405162461bcd60e51b81526004016200014e906200043d565b60065460ff1680156200028957506009546001600160a01b038481169116145b15620003075760075481620002a9846200030c60201b6200050f1760201c565b620002b591906200046b565b11158015620002e8575060085481620002d9846200030c60201b6200050f1760201c565b620002e591906200046b565b10155b620003075760405162461bcd60e51b81526004016200014e90620003e6565b505050565b6001600160a01b031660009081526001602052604090205490565b828054620003359062000490565b90600052602060002090601f016020900481019282620003595760008555620003a4565b82601f106200037457805160ff1916838001178555620003a4565b82800160010185558215620003a4579182015b82811115620003a457825182559160200191906001019062000387565b50620003b2929150620003b6565b5090565b5b80821115620003b25760008155600101620003b7565b600060208284031215620003df578081fd5b5051919050565b602080825260069082015265119bdc989a5960d21b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b600082198211156200048b57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620004a557607f821691505b60208210811415620004c757634e487b7160e01b600052602260045260246000fd5b50919050565b6110d580620004dd6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610260578063a457c2d714610268578063a9059cbb1461027b578063d07ea4e21461028e578063dd62ed3e146102a1578063f2fde38b146102b457610142565b806370a082311461022d578063715018a614610240578063860a32ec1461024857806389f9a1d3146102505780638da5cb5b1461025857610142565b806323b872dd1161010a57806323b872dd146101b5578063313ce567146101c857806339509351146101dd578063404e5129146101f057806342966c681461020557806349bd5a5e1461021857610142565b806306fdde0314610147578063095ea7b31461016557806316c021291461018557806318160ddd146101985780631ab99e12146101ad575b600080fd5b61014f6102c7565b60405161015c9190610c91565b60405180910390f35b610178610173366004610bff565b610359565b60405161015c9190610c86565b610178610193366004610b48565b610376565b6101a061038b565b60405161015c9190611008565b6101a0610391565b6101786101c3366004610b9b565b610397565b6101d0610430565b60405161015c9190611011565b6101786101eb366004610bff565b610435565b6102036101fe366004610bd6565b610489565b005b610203610213366004610c5a565b6104f3565b610220610500565b60405161015c9190610c72565b6101a061023b366004610b48565b61050f565b61020361052e565b610178610579565b6101a0610582565b610220610588565b61014f610597565b610178610276366004610bff565b6105a6565b610178610289366004610bff565b61061f565b61020361029c366004610c28565b610633565b6101a06102af366004610b69565b61068c565b6102036102c2366004610b48565b6106b7565b6060600480546102d69061104e565b80601f01602080910402602001604051908101604052809291908181526020018280546103029061104e565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b600061036d610366610725565b8484610729565b50600192915050565b600a6020526000908152604090205460ff1681565b60035490565b60085481565b60006103a48484846107dd565b6001600160a01b0384166000908152600260205260408120816103c5610725565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104115760405162461bcd60e51b815260040161040890610e57565b60405180910390fd5b6104258561041d610725565b858403610729565b506001949350505050565b601290565b600061036d610442610725565b848460026000610450610725565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054610484919061101f565b610729565b610491610725565b6001600160a01b03166104a2610588565b6001600160a01b0316146104c85760405162461bcd60e51b815260040161040890610e9f565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6104fd3382610907565b50565b6009546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b610536610725565b6001600160a01b0316610547610588565b6001600160a01b03161461056d5760405162461bcd60e51b815260040161040890610e9f565b61057760006109f9565b565b60065460ff1681565b60075481565b6000546001600160a01b031690565b6060600580546102d69061104e565b600080600260006105b5610725565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106015760405162461bcd60e51b815260040161040890610f9e565b61061561060c610725565b85858403610729565b5060019392505050565b600061036d61062c610725565b84846107dd565b61063b610725565b6001600160a01b031661064c610588565b6001600160a01b0316146106725760405162461bcd60e51b815260040161040890610e9f565b6006805460ff191693151593909317909255600755600855565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106bf610725565b6001600160a01b03166106d0610588565b6001600160a01b0316146106f65760405162461bcd60e51b815260040161040890610e9f565b6001600160a01b03811661071c5760405162461bcd60e51b815260040161040890610d69565b6104fd816109f9565b3390565b6001600160a01b03831661074f5760405162461bcd60e51b815260040161040890610f5a565b6001600160a01b0382166107755760405162461bcd60e51b815260040161040890610daf565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107d0908590611008565b60405180910390a3505050565b6001600160a01b0383166108035760405162461bcd60e51b815260040161040890610f15565b6001600160a01b0382166108295760405162461bcd60e51b815260040161040890610ce4565b610834838383610a49565b6001600160a01b0383166000908152600160205260409020548181101561086d5760405162461bcd60e51b815260040161040890610df1565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906108a490849061101f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108ee9190611008565b60405180910390a36109018484846109f4565b50505050565b6001600160a01b03821661092d5760405162461bcd60e51b815260040161040890610ed4565b61093982600083610a49565b6001600160a01b038216600090815260016020526040902054818110156109725760405162461bcd60e51b815260040161040890610d27565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109a1908490611037565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109e4908690611008565b60405180910390a36109f4836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610a8b57506001600160a01b0383166000908152600a602052604090205460ff16155b610aa75760405162461bcd60e51b815260040161040890610fe3565b60065460ff168015610ac657506009546001600160a01b038481169116145b156109f45760075481610ad88461050f565b610ae2919061101f565b11158015610b05575060085481610af88461050f565b610b02919061101f565b10155b6109f45760405162461bcd60e51b815260040161040890610e37565b80356001600160a01b038116811461052957600080fd5b8035801515811461052957600080fd5b600060208284031215610b59578081fd5b610b6282610b21565b9392505050565b60008060408385031215610b7b578081fd5b610b8483610b21565b9150610b9260208401610b21565b90509250929050565b600080600060608486031215610baf578081fd5b610bb884610b21565b9250610bc660208501610b21565b9150604084013590509250925092565b60008060408385031215610be8578182fd5b610bf183610b21565b9150610b9260208401610b38565b60008060408385031215610c11578182fd5b610c1a83610b21565b946020939093013593505050565b600080600060608486031215610c3c578283fd5b610c4584610b38565b95602085013595506040909401359392505050565b600060208284031215610c6b578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610cbd57858101830151858201604001528201610ca1565b81811115610cce5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b6000821982111561103257611032611089565b500190565b60008282101561104957611049611089565b500390565b60028104600182168061106257607f821691505b6020821081141561108357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220678b392280cb23d80ed09bae76f49f2420eb97a3989628bbe89bb04dfb94f5e164736f6c6343000800003300000000000000000000000000000000000000000052b7d2dcc80cd2e4000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610260578063a457c2d714610268578063a9059cbb1461027b578063d07ea4e21461028e578063dd62ed3e146102a1578063f2fde38b146102b457610142565b806370a082311461022d578063715018a614610240578063860a32ec1461024857806389f9a1d3146102505780638da5cb5b1461025857610142565b806323b872dd1161010a57806323b872dd146101b5578063313ce567146101c857806339509351146101dd578063404e5129146101f057806342966c681461020557806349bd5a5e1461021857610142565b806306fdde0314610147578063095ea7b31461016557806316c021291461018557806318160ddd146101985780631ab99e12146101ad575b600080fd5b61014f6102c7565b60405161015c9190610c91565b60405180910390f35b610178610173366004610bff565b610359565b60405161015c9190610c86565b610178610193366004610b48565b610376565b6101a061038b565b60405161015c9190611008565b6101a0610391565b6101786101c3366004610b9b565b610397565b6101d0610430565b60405161015c9190611011565b6101786101eb366004610bff565b610435565b6102036101fe366004610bd6565b610489565b005b610203610213366004610c5a565b6104f3565b610220610500565b60405161015c9190610c72565b6101a061023b366004610b48565b61050f565b61020361052e565b610178610579565b6101a0610582565b610220610588565b61014f610597565b610178610276366004610bff565b6105a6565b610178610289366004610bff565b61061f565b61020361029c366004610c28565b610633565b6101a06102af366004610b69565b61068c565b6102036102c2366004610b48565b6106b7565b6060600480546102d69061104e565b80601f01602080910402602001604051908101604052809291908181526020018280546103029061104e565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b600061036d610366610725565b8484610729565b50600192915050565b600a6020526000908152604090205460ff1681565b60035490565b60085481565b60006103a48484846107dd565b6001600160a01b0384166000908152600260205260408120816103c5610725565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104115760405162461bcd60e51b815260040161040890610e57565b60405180910390fd5b6104258561041d610725565b858403610729565b506001949350505050565b601290565b600061036d610442610725565b848460026000610450610725565b6001600160a01b03908116825260208083019390935260409182016000908120918b1681529252902054610484919061101f565b610729565b610491610725565b6001600160a01b03166104a2610588565b6001600160a01b0316146104c85760405162461bcd60e51b815260040161040890610e9f565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6104fd3382610907565b50565b6009546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b610536610725565b6001600160a01b0316610547610588565b6001600160a01b03161461056d5760405162461bcd60e51b815260040161040890610e9f565b61057760006109f9565b565b60065460ff1681565b60075481565b6000546001600160a01b031690565b6060600580546102d69061104e565b600080600260006105b5610725565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156106015760405162461bcd60e51b815260040161040890610f9e565b61061561060c610725565b85858403610729565b5060019392505050565b600061036d61062c610725565b84846107dd565b61063b610725565b6001600160a01b031661064c610588565b6001600160a01b0316146106725760405162461bcd60e51b815260040161040890610e9f565b6006805460ff191693151593909317909255600755600855565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106bf610725565b6001600160a01b03166106d0610588565b6001600160a01b0316146106f65760405162461bcd60e51b815260040161040890610e9f565b6001600160a01b03811661071c5760405162461bcd60e51b815260040161040890610d69565b6104fd816109f9565b3390565b6001600160a01b03831661074f5760405162461bcd60e51b815260040161040890610f5a565b6001600160a01b0382166107755760405162461bcd60e51b815260040161040890610daf565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107d0908590611008565b60405180910390a3505050565b6001600160a01b0383166108035760405162461bcd60e51b815260040161040890610f15565b6001600160a01b0382166108295760405162461bcd60e51b815260040161040890610ce4565b610834838383610a49565b6001600160a01b0383166000908152600160205260409020548181101561086d5760405162461bcd60e51b815260040161040890610df1565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906108a490849061101f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108ee9190611008565b60405180910390a36109018484846109f4565b50505050565b6001600160a01b03821661092d5760405162461bcd60e51b815260040161040890610ed4565b61093982600083610a49565b6001600160a01b038216600090815260016020526040902054818110156109725760405162461bcd60e51b815260040161040890610d27565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109a1908490611037565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109e4908690611008565b60405180910390a36109f4836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610a8b57506001600160a01b0383166000908152600a602052604090205460ff16155b610aa75760405162461bcd60e51b815260040161040890610fe3565b60065460ff168015610ac657506009546001600160a01b038481169116145b156109f45760075481610ad88461050f565b610ae2919061101f565b11158015610b05575060085481610af88461050f565b610b02919061101f565b10155b6109f45760405162461bcd60e51b815260040161040890610e37565b80356001600160a01b038116811461052957600080fd5b8035801515811461052957600080fd5b600060208284031215610b59578081fd5b610b6282610b21565b9392505050565b60008060408385031215610b7b578081fd5b610b8483610b21565b9150610b9260208401610b21565b90509250929050565b600080600060608486031215610baf578081fd5b610bb884610b21565b9250610bc660208501610b21565b9150604084013590509250925092565b60008060408385031215610be8578182fd5b610bf183610b21565b9150610b9260208401610b38565b60008060408385031215610c11578182fd5b610c1a83610b21565b946020939093013593505050565b600080600060608486031215610c3c578283fd5b610c4584610b38565b95602085013595506040909401359392505050565b600060208284031215610c6b578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610cbd57858101830151858201604001528201610ca1565b81811115610cce5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b6000821982111561103257611032611089565b500190565b60008282101561104957611049611089565b500390565b60028104600182168061106257607f821691505b6020821081141561108357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220678b392280cb23d80ed09bae76f49f2420eb97a3989628bbe89bb04dfb94f5e164736f6c63430008000033

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

00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000


Deployed Bytecode Sourcemap

19266:1230:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9276:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11443:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;19443:42::-;;;;;;:::i;:::-;;:::i;10396:108::-;;;:::i;:::-;;;;;;;:::i;19370:31::-;;;:::i;12094:492::-;;;;;;:::i;:::-;;:::i;10238:93::-;;;:::i;:::-;;;;;;;:::i;12995:215::-;;;;;;:::i;:::-;;:::i;19610:135::-;;;;;;:::i;:::-;;:::i;:::-;;20412:81;;;;;;:::i;:::-;;:::i;19408:28::-;;;:::i;:::-;;;;;;;:::i;10567:127::-;;;;;;:::i;:::-;;:::i;2677:103::-;;;:::i;19306:19::-;;;:::i;19332:31::-;;;:::i;2026:87::-;;;:::i;9495:104::-;;;:::i;13713:413::-;;;;;;:::i;:::-;;:::i;10907:175::-;;;;;;:::i;:::-;;:::i;19753:236::-;;;;;;:::i;:::-;;:::i;11145:151::-;;;;;;:::i;:::-;;:::i;2935:201::-;;;;;;:::i;:::-;;:::i;9276:100::-;9330:13;9363:5;9356:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9276:100;:::o;11443:169::-;11526:4;11543:39;11552:12;:10;:12::i;:::-;11566:7;11575:6;11543:8;:39::i;:::-;-1:-1:-1;11600:4:0;11443:169;;;;:::o;19443:42::-;;;;;;;;;;;;;;;:::o;10396:108::-;10484:12;;10396:108;:::o;19370:31::-;;;;:::o;12094:492::-;12234:4;12251:36;12261:6;12269:9;12280:6;12251:9;:36::i;:::-;-1:-1:-1;;;;;12327:19:0;;12300:24;12327:19;;;:11;:19;;;;;12300:24;12347:12;:10;:12::i;:::-;-1:-1:-1;;;;;12327:33:0;-1:-1:-1;;;;;12327:33:0;;;;;;;;;;;;;12300:60;;12399:6;12379:16;:26;;12371:79;;;;-1:-1:-1;;;12371:79:0;;;;;;;:::i;:::-;;;;;;;;;12486:57;12495:6;12503:12;:10;:12::i;:::-;12536:6;12517:16;:25;12486:8;:57::i;:::-;-1:-1:-1;12574:4:0;;12094:492;-1:-1:-1;;;;12094:492:0:o;10238:93::-;10321:2;10238:93;:::o;12995:215::-;13083:4;13100:80;13109:12;:10;:12::i;:::-;13123:7;13169:10;13132:11;:25;13144:12;:10;:12::i;:::-;-1:-1:-1;;;;;13132:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13132:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;13100:8;:80::i;19610:135::-;2257:12;:10;:12::i;:::-;-1:-1:-1;;;;;2246:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2246:23:0;;2238:68;;;;-1:-1:-1;;;2238:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19699:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;19699:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19610:135::o;20412:81::-;20461:24;20467:10;20479:5;20461;:24::i;:::-;20412:81;:::o;19408:28::-;;;-1:-1:-1;;;;;19408:28:0;;:::o;10567:127::-;-1:-1:-1;;;;;10668:18:0;;10641:7;10668:18;;;:9;:18;;;;;;10567:127;;;;:::o;2677:103::-;2257:12;:10;:12::i;:::-;-1:-1:-1;;;;;2246:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2246:23:0;;2238:68;;;;-1:-1:-1;;;2238:68:0;;;;;;;:::i;:::-;2742:30:::1;2769:1;2742:18;:30::i;:::-;2677:103::o:0;19306:19::-;;;;;;:::o;19332:31::-;;;;:::o;2026:87::-;2072:7;2099:6;-1:-1:-1;;;;;2099:6:0;2026:87;:::o;9495:104::-;9551:13;9584:7;9577:14;;;;;:::i;13713:413::-;13806:4;13823:24;13850:11;:25;13862:12;:10;:12::i;:::-;-1:-1:-1;;;;;13850:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13850:25:0;;;:34;;;;;;;;;;;-1:-1:-1;13903:35:0;;;;13895:85;;;;-1:-1:-1;;;13895:85:0;;;;;;;:::i;:::-;14016:67;14025:12;:10;:12::i;:::-;14039:7;14067:15;14048:16;:34;14016:8;:67::i;:::-;-1:-1:-1;14114:4:0;;13713:413;-1:-1:-1;;;13713:413:0:o;10907:175::-;10993:4;11010:42;11020:12;:10;:12::i;:::-;11034:9;11045:6;11010:9;:42::i;19753:236::-;2257:12;:10;:12::i;:::-;-1:-1:-1;;;;;2246:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2246:23:0;;2238:68;;;;-1:-1:-1;;;2238:68:0;;;;;;;:::i;:::-;19869:7:::1;:18:::0;;-1:-1:-1;;19869:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;19898:16:::1;:36:::0;19945:16:::1;:36:::0;19753:236::o;11145:151::-;-1:-1:-1;;;;;11261:18:0;;;11234:7;11261:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11145:151::o;2935:201::-;2257:12;:10;:12::i;:::-;-1:-1:-1;;;;;2246:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2246:23:0;;2238:68;;;;-1:-1:-1;;;2238:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3024:22:0;::::1;3016:73;;;;-1:-1:-1::0;;;3016:73:0::1;;;;;;;:::i;:::-;3100:28;3119:8;3100:18;:28::i;744:98::-:0;824:10;744:98;:::o;17397:380::-;-1:-1:-1;;;;;17533:19:0;;17525:68;;;;-1:-1:-1;;;17525:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17612:21:0;;17604:68;;;;-1:-1:-1;;;17604:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17685:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;17737:32;;;;;17715:6;;17737:32;:::i;:::-;;;;;;;;17397:380;;;:::o;14616:733::-;-1:-1:-1;;;;;14756:20:0;;14748:70;;;;-1:-1:-1;;;14748:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14837:23:0;;14829:71;;;;-1:-1:-1;;;14829:71:0;;;;;;;:::i;:::-;14913:47;14934:6;14942:9;14953:6;14913:20;:47::i;:::-;-1:-1:-1;;;;;14997:17:0;;14973:21;14997:17;;;:9;:17;;;;;;15033:23;;;;15025:74;;;;-1:-1:-1;;;15025:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15135:17:0;;;;;;;:9;:17;;;;;;15155:22;;;15135:42;;15199:20;;;;;;;;:30;;15171:6;;15135:17;15199:30;;15171:6;;15199:30;:::i;:::-;;;;;;;;15264:9;-1:-1:-1;;;;;15247:35:0;15256:6;-1:-1:-1;;;;;15247:35:0;;15275:6;15247:35;;;;;;:::i;:::-;;;;;;;;15295:46;15315:6;15323:9;15334:6;15295:19;:46::i;:::-;14616:733;;;;:::o;16368:591::-;-1:-1:-1;;;;;16452:21:0;;16444:67;;;;-1:-1:-1;;;16444:67:0;;;;;;;:::i;:::-;16524:49;16545:7;16562:1;16566:6;16524:20;:49::i;:::-;-1:-1:-1;;;;;16611:18:0;;16586:22;16611:18;;;:9;:18;;;;;;16648:24;;;;16640:71;;;;-1:-1:-1;;;16640:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16747:18:0;;;;;;:9;:18;;;;;16768:23;;;16747:44;;16813:12;:22;;16785:6;;16747:18;16813:22;;16785:6;;16813:22;:::i;:::-;;;;-1:-1:-1;;16853:37:0;;16879:1;;-1:-1:-1;;;;;16853:37:0;;;;;;;16883:6;;16853:37;:::i;:::-;;;;;;;;16903:48;16923:7;16940:1;16944:6;16903:48;16368:591;;;:::o;3296:191::-;3370:16;3389:6;;-1:-1:-1;;;;;3406:17:0;;;-1:-1:-1;;;;;;3406:17:0;;;;;;3439:40;;3389:6;;;;;;;3439:40;;3370:16;3439:40;3296:191;;:::o;19997:407::-;-1:-1:-1;;;;;20149:14:0;;;;;;:10;:14;;;;;;;;20148:15;:36;;;;-1:-1:-1;;;;;;20168:16:0;;;;;;:10;:16;;;;;;;;20167:17;20148:36;20140:60;;;;-1:-1:-1;;;20140:60:0;;;;;;;:::i;:::-;20217:7;;;;:32;;;;-1:-1:-1;20236:13:0;;-1:-1:-1;;;;;20228:21:0;;;20236:13;;20228:21;20217:32;20213:184;;;20306:16;;20296:6;20274:19;20290:2;20274:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20358:16;;20348:6;20326:19;20342:2;20326:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20274:100;20266:119;;;;-1:-1:-1;;;20266:119:0;;;;;;;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:162;261:20;;317:13;;310:21;300:32;;290:2;;346:1;343;336:12;361:198;;473:2;461:9;452:7;448:23;444:32;441:2;;;494:6;486;479:22;441:2;522:31;543:9;522:31;:::i;:::-;512:41;431:128;-1:-1:-1;;;431:128:1:o;564:274::-;;;693:2;681:9;672:7;668:23;664:32;661:2;;;714:6;706;699:22;661:2;742:31;763:9;742:31;:::i;:::-;732:41;;792:40;828:2;817:9;813:18;792:40;:::i;:::-;782:50;;651:187;;;;;:::o;843:342::-;;;;989:2;977:9;968:7;964:23;960:32;957:2;;;1010:6;1002;995:22;957:2;1038:31;1059:9;1038:31;:::i;:::-;1028:41;;1088:40;1124:2;1113:9;1109:18;1088:40;:::i;:::-;1078:50;;1175:2;1164:9;1160:18;1147:32;1137:42;;947:238;;;;;:::o;1190:268::-;;;1316:2;1304:9;1295:7;1291:23;1287:32;1284:2;;;1337:6;1329;1322:22;1284:2;1365:31;1386:9;1365:31;:::i;:::-;1355:41;;1415:37;1448:2;1437:9;1433:18;1415:37;:::i;1463:266::-;;;1592:2;1580:9;1571:7;1567:23;1563:32;1560:2;;;1613:6;1605;1598:22;1560:2;1641:31;1662:9;1641:31;:::i;:::-;1631:41;1719:2;1704:18;;;;1691:32;;-1:-1:-1;;;1550:179:1:o;1734:328::-;;;;1877:2;1865:9;1856:7;1852:23;1848:32;1845:2;;;1898:6;1890;1883:22;1845:2;1926:28;1944:9;1926:28;:::i;:::-;1916:38;2001:2;1986:18;;1973:32;;-1:-1:-1;2052:2:1;2037:18;;;2024:32;;1835:227;-1:-1:-1;;;1835:227:1:o;2067:190::-;;2179:2;2167:9;2158:7;2154:23;2150:32;2147:2;;;2200:6;2192;2185:22;2147:2;-1:-1:-1;2228:23:1;;2137:120;-1:-1:-1;2137:120:1:o;2262:203::-;-1:-1:-1;;;;;2426:32:1;;;;2408:51;;2396:2;2381:18;;2363:102::o;2470:187::-;2635:14;;2628:22;2610:41;;2598:2;2583:18;;2565:92::o;2662:603::-;;2803:2;2832;2821:9;2814:21;2864:6;2858:13;2907:6;2902:2;2891:9;2887:18;2880:34;2932:4;2945:140;2959:6;2956:1;2953:13;2945:140;;;3054:14;;;3050:23;;3044:30;3020:17;;;3039:2;3016:26;3009:66;2974:10;;2945:140;;;3103:6;3100:1;3097:13;3094:2;;;3173:4;3168:2;3159:6;3148:9;3144:22;3140:31;3133:45;3094:2;-1:-1:-1;3249:2:1;3228:15;-1:-1:-1;;3224:29:1;3209:45;;;;3256:2;3205:54;;2783:482;-1:-1:-1;;;2783:482:1:o;3270:399::-;3472:2;3454:21;;;3511:2;3491:18;;;3484:30;3550:34;3545:2;3530:18;;3523:62;-1:-1:-1;;;3616:2:1;3601:18;;3594:33;3659:3;3644:19;;3444:225::o;3674:398::-;3876:2;3858:21;;;3915:2;3895:18;;;3888:30;3954:34;3949:2;3934:18;;3927:62;-1:-1:-1;;;4020:2:1;4005:18;;3998:32;4062:3;4047:19;;3848:224::o;4077:402::-;4279:2;4261:21;;;4318:2;4298:18;;;4291:30;4357:34;4352:2;4337:18;;4330:62;-1:-1:-1;;;4423:2:1;4408:18;;4401:36;4469:3;4454:19;;4251:228::o;4484:398::-;4686:2;4668:21;;;4725:2;4705:18;;;4698:30;4764:34;4759:2;4744:18;;4737:62;-1:-1:-1;;;4830:2:1;4815:18;;4808:32;4872:3;4857:19;;4658:224::o;4887:402::-;5089:2;5071:21;;;5128:2;5108:18;;;5101:30;5167:34;5162:2;5147:18;;5140:62;-1:-1:-1;;;5233:2:1;5218:18;;5211:36;5279:3;5264:19;;5061:228::o;5294:329::-;5496:2;5478:21;;;5535:1;5515:18;;;5508:29;-1:-1:-1;;;5568:2:1;5553:18;;5546:36;5614:2;5599:18;;5468:155::o;5628:404::-;5830:2;5812:21;;;5869:2;5849:18;;;5842:30;5908:34;5903:2;5888:18;;5881:62;-1:-1:-1;;;5974:2:1;5959:18;;5952:38;6022:3;6007:19;;5802:230::o;6037:356::-;6239:2;6221:21;;;6258:18;;;6251:30;6317:34;6312:2;6297:18;;6290:62;6384:2;6369:18;;6211:182::o;6398:397::-;6600:2;6582:21;;;6639:2;6619:18;;;6612:30;6678:34;6673:2;6658:18;;6651:62;-1:-1:-1;;;6744:2:1;6729:18;;6722:31;6785:3;6770:19;;6572:223::o;6800:401::-;7002:2;6984:21;;;7041:2;7021:18;;;7014:30;7080:34;7075:2;7060:18;;7053:62;-1:-1:-1;;;7146:2:1;7131:18;;7124:35;7191:3;7176:19;;6974:227::o;7206:400::-;7408:2;7390:21;;;7447:2;7427:18;;;7420:30;7486:34;7481:2;7466:18;;7459:62;-1:-1:-1;;;7552:2:1;7537:18;;7530:34;7596:3;7581:19;;7380:226::o;7611:401::-;7813:2;7795:21;;;7852:2;7832:18;;;7825:30;7891:34;7886:2;7871:18;;7864:62;-1:-1:-1;;;7957:2:1;7942:18;;7935:35;8002:3;7987:19;;7785:227::o;8017:335::-;8219:2;8201:21;;;8258:2;8238:18;;;8231:30;-1:-1:-1;;;8292:2:1;8277:18;;8270:41;8343:2;8328:18;;8191:161::o;8357:177::-;8503:25;;;8491:2;8476:18;;8458:76::o;8539:184::-;8711:4;8699:17;;;;8681:36;;8669:2;8654:18;;8636:87::o;8728:128::-;;8799:1;8795:6;8792:1;8789:13;8786:2;;;8805:18;;:::i;:::-;-1:-1:-1;8841:9:1;;8776:80::o;8861:125::-;;8929:1;8926;8923:8;8920:2;;;8934:18;;:::i;:::-;-1:-1:-1;8971:9:1;;8910:76::o;8991:380::-;9076:1;9066:12;;9123:1;9113:12;;;9134:2;;9188:4;9180:6;9176:17;9166:27;;9134:2;9241;9233:6;9230:14;9210:18;9207:38;9204:2;;;9287:10;9282:3;9278:20;9275:1;9268:31;9322:4;9319:1;9312:15;9350:4;9347:1;9340:15;9204:2;;9046:325;;;:::o;9376:127::-;9437:10;9432:3;9428:20;9425:1;9418:31;9468:4;9465:1;9458:15;9492:4;9489:1;9482:15

Swarm Source

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