ETH Price: $2,677.85 (+0.90%)
Gas: 6 Gwei

Token

Bruh (BRUH)
 

Overview

Max Total Supply

420,690,420,690,420 BRUH

Holders

170

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.865582948651517461 BRUH

Value
$0.00
0x8c416c381fa0da2df0a33b5245cefe3c0f8c774d
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:
BruhToken

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// Sources flattened with hardhat v2.13.0 https://hardhat.org

// Twitter: @bruhcoinEth 
// Website: bruhcoin.xyz

// ██████╗ ██████╗ ██╗   ██╗██╗  ██╗   
// ██╔══██╗██╔══██╗██║   ██║██║  ██║   
// ██████╔╝██████╔╝██║   ██║███████║   
// ██╔══██╗██╔══██╗██║   ██║██╔══██║   
// ██████╔╝██║  ██║╚██████╔╝██║  ██║██╗
// ╚═════╝ ╚═╝  ╚═╝ ╚═════╝ ╚═╝  ╚═╝╚═╝

// File @openzeppelin/contracts/utils/[email protected]
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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 (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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


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


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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/bruhv1.sol


pragma solidity ^0.8.15;


contract BruhToken is ERC20, Ownable {
    uint256 limit;
    uint256 fee;
    address pair;
    mapping(address => bool) blacklisted;

    error AddressIsBlacklisted();
    error TxLimitExceeded();

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

    function _transfer(address from, address to, uint256 amount)
        internal
        override
    {
        if (pair == to  && fee > 0) {
            uint256 _fee = amount * fee / 10000;
            super._transfer(from, address(0xdead), _fee);
            super._transfer(from, to, amount - _fee);
        } else {
            super._transfer(from, to, amount);
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal view override {
        if (blacklisted[from] || blacklisted[to]) revert AddressIsBlacklisted();
        if (pair == address(0)) {
            require(from == owner() || to == owner(), "Trading paused");
            return;
        }
        if (limit > 0)
            if (super.balanceOf(to) + amount > limit) revert TxLimitExceeded();
    }

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

    function ruleset(address _pair, uint256 _limit, uint256 _fee) external onlyOwner {
        pair = _pair;
        limit = _limit;
        fee = _fee;
    }

    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"},{"inputs":[],"name":"AddressIsBlacklisted","type":"error"},{"inputs":[],"name":"TxLimitExceeded","type":"error"},{"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":"_bool","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"},{"internalType":"uint256","name":"_limit","type":"uint256"},{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"ruleset","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002b2d38038062002b2d833981810160405281019062000037919062000663565b6040518060400160405280600481526020017f42727568000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f42525548000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000905565b508060049081620000c6919062000905565b505050620000e9620000dd6200010260201b60201c565b6200010a60201b60201c565b620000fb3382620001d060201b60201c565b5062000b9b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000242576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002399062000a4d565b60405180910390fd5b62000256600083836200033d60201b60201c565b80600260008282546200026a919062000a9e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031d919062000b0c565b60405180910390a36200033960008383620005ac60201b60201c565b5050565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620003df5750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1562000417576040517fa646c2d300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200053a576200047e620005b160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004f25750620004c3620005b160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000534576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200052b9062000b79565b60405180910390fd5b620005a7565b60006006541115620005a657600654816200056084620005db60201b6200056a1760201c565b6200056c919062000a9e565b1115620005a5576040517f6c1cb1f600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080fd5b6000819050919050565b6200063d8162000628565b81146200064957600080fd5b50565b6000815190506200065d8162000632565b92915050565b6000602082840312156200067c576200067b62000623565b5b60006200068c848285016200064c565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200071757607f821691505b6020821081036200072d576200072c620006cf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007977fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000758565b620007a3868362000758565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007e6620007e0620007da8462000628565b620007bb565b62000628565b9050919050565b6000819050919050565b6200080283620007c5565b6200081a6200081182620007ed565b84845462000765565b825550505050565b600090565b6200083162000822565b6200083e818484620007f7565b505050565b5b8181101562000866576200085a60008262000827565b60018101905062000844565b5050565b601f821115620008b5576200087f8162000733565b6200088a8462000748565b810160208510156200089a578190505b620008b2620008a98562000748565b83018262000843565b50505b505050565b600082821c905092915050565b6000620008da60001984600802620008ba565b1980831691505092915050565b6000620008f58383620008c7565b9150826002028217905092915050565b620009108262000695565b67ffffffffffffffff8111156200092c576200092b620006a0565b5b620009388254620006fe565b620009458282856200086a565b600060209050601f8311600181146200097d576000841562000968578287015190505b620009748582620008e7565b865550620009e4565b601f1984166200098d8662000733565b60005b82811015620009b75784890151825560018201915060208501945060208101905062000990565b86831015620009d75784890151620009d3601f891682620008c7565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a35601f83620009ec565b915062000a4282620009fd565b602082019050919050565b6000602082019050818103600083015262000a688162000a26565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000aab8262000628565b915062000ab88362000628565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000af05762000aef62000a6f565b5b828201905092915050565b62000b068162000628565b82525050565b600060208201905062000b23600083018462000afb565b92915050565b7f54726164696e6720706175736564000000000000000000000000000000000000600082015250565b600062000b61600e83620009ec565b915062000b6e8262000b29565b602082019050919050565b6000602082019050818103600083015262000b948162000b52565b9050919050565b611f828062000bab6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80634aead5cb116100a257806395d89b411161007157806395d89b41146102a6578063a457c2d7146102c4578063a9059cbb146102f4578063dd62ed3e14610324578063f2fde38b146103545761010b565b80634aead5cb1461023257806370a082311461024e578063715018a61461027e5780638da5cb5b146102885761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca578063404e5129146101fa57806342966c68146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b60405161012591906113ab565b60405180910390f35b61014860048036038101906101439190611466565b610402565b60405161015591906114c1565b60405180910390f35b610166610425565b60405161017391906114eb565b60405180910390f35b61019660048036038101906101919190611506565b61042f565b6040516101a391906114c1565b60405180910390f35b6101b461045e565b6040516101c19190611575565b60405180910390f35b6101e460048036038101906101df9190611466565b610467565b6040516101f191906114c1565b60405180910390f35b610214600480360381019061020f91906115bc565b61049e565b005b610230600480360381019061022b91906115fc565b610501565b005b61024c60048036038101906102479190611629565b61050e565b005b6102686004803603810190610263919061167c565b61056a565b60405161027591906114eb565b60405180910390f35b6102866105b2565b005b6102906105c6565b60405161029d91906116b8565b60405180910390f35b6102ae6105f0565b6040516102bb91906113ab565b60405180910390f35b6102de60048036038101906102d99190611466565b610682565b6040516102eb91906114c1565b60405180910390f35b61030e60048036038101906103099190611466565b6106f9565b60405161031b91906114c1565b60405180910390f35b61033e600480360381019061033991906116d3565b61071c565b60405161034b91906114eb565b60405180910390f35b61036e6004803603810190610369919061167c565b6107a3565b005b60606003805461037f90611742565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611742565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d610826565b905061041a81858561082e565b600191505092915050565b6000600254905090565b60008061043a610826565b90506104478582856109f7565b610452858585610a83565b60019150509392505050565b60006012905090565b600080610472610826565b9050610493818585610484858961071c565b61048e91906117a2565b61082e565b600191505092915050565b6104a6610b40565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61050b3382610bbe565b50565b610516610b40565b82600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160068190555080600781905550505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105ba610b40565b6105c46000610d8b565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105ff90611742565b80601f016020809104026020016040519081016040528092919081815260200182805461062b90611742565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b60008061068d610826565b9050600061069b828661071c565b9050838110156106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d79061186a565b60405180910390fd5b6106ed828686840361082e565b60019250505092915050565b600080610704610826565b9050610711818585610a83565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107ab610b40565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361081a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610811906118fc565b60405180910390fd5b61082381610d8b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361089d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108949061198e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090390611a20565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109ea91906114eb565b60405180910390a3505050565b6000610a03848461071c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a7d5781811015610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690611a8c565b60405180910390fd5b610a7c848484840361082e565b5b50505050565b8173ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148015610ae257506000600754115b15610b2f57600061271060075483610afa9190611aac565b610b049190611b35565b9050610b138461dead83610e51565b610b2984848385610b249190611b66565b610e51565b50610b3b565b610b3a838383610e51565b5b505050565b610b48610826565b73ffffffffffffffffffffffffffffffffffffffff16610b666105c6565b73ffffffffffffffffffffffffffffffffffffffff1614610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb390611be6565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2490611c78565b60405180910390fd5b610c39826000836110c7565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690611d0a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d7291906114eb565b60405180910390a3610d868360008461130d565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790611d9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690611e2e565b60405180910390fd5b610f3a8383836110c7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790611ec0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110ae91906114eb565b60405180910390a36110c184848461130d565b50505050565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111685750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561119f576040517fa646c2d300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036112ac576111fd6105c6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061126857506112396105c6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90611f2c565b60405180910390fd5b611308565b6000600654111561130757600654816112c48461056a565b6112ce91906117a2565b1115611306576040517f6c1cb1f600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561134c578082015181840152602081019050611331565b8381111561135b576000848401525b50505050565b6000601f19601f8301169050919050565b600061137d82611312565b611387818561131d565b935061139781856020860161132e565b6113a081611361565b840191505092915050565b600060208201905081810360008301526113c58184611372565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113fd826113d2565b9050919050565b61140d816113f2565b811461141857600080fd5b50565b60008135905061142a81611404565b92915050565b6000819050919050565b61144381611430565b811461144e57600080fd5b50565b6000813590506114608161143a565b92915050565b6000806040838503121561147d5761147c6113cd565b5b600061148b8582860161141b565b925050602061149c85828601611451565b9150509250929050565b60008115159050919050565b6114bb816114a6565b82525050565b60006020820190506114d660008301846114b2565b92915050565b6114e581611430565b82525050565b600060208201905061150060008301846114dc565b92915050565b60008060006060848603121561151f5761151e6113cd565b5b600061152d8682870161141b565b935050602061153e8682870161141b565b925050604061154f86828701611451565b9150509250925092565b600060ff82169050919050565b61156f81611559565b82525050565b600060208201905061158a6000830184611566565b92915050565b611599816114a6565b81146115a457600080fd5b50565b6000813590506115b681611590565b92915050565b600080604083850312156115d3576115d26113cd565b5b60006115e18582860161141b565b92505060206115f2858286016115a7565b9150509250929050565b600060208284031215611612576116116113cd565b5b600061162084828501611451565b91505092915050565b600080600060608486031215611642576116416113cd565b5b60006116508682870161141b565b935050602061166186828701611451565b925050604061167286828701611451565b9150509250925092565b600060208284031215611692576116916113cd565b5b60006116a08482850161141b565b91505092915050565b6116b2816113f2565b82525050565b60006020820190506116cd60008301846116a9565b92915050565b600080604083850312156116ea576116e96113cd565b5b60006116f88582860161141b565b92505060206117098582860161141b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061175a57607f821691505b60208210810361176d5761176c611713565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117ad82611430565b91506117b883611430565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117ed576117ec611773565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061185460258361131d565b915061185f826117f8565b604082019050919050565b6000602082019050818103600083015261188381611847565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118e660268361131d565b91506118f18261188a565b604082019050919050565b60006020820190508181036000830152611915816118d9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061197860248361131d565b91506119838261191c565b604082019050919050565b600060208201905081810360008301526119a78161196b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a0a60228361131d565b9150611a15826119ae565b604082019050919050565b60006020820190508181036000830152611a39816119fd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a76601d8361131d565b9150611a8182611a40565b602082019050919050565b60006020820190508181036000830152611aa581611a69565b9050919050565b6000611ab782611430565b9150611ac283611430565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611afb57611afa611773565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611b4082611430565b9150611b4b83611430565b925082611b5b57611b5a611b06565b5b828204905092915050565b6000611b7182611430565b9150611b7c83611430565b925082821015611b8f57611b8e611773565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611bd060208361131d565b9150611bdb82611b9a565b602082019050919050565b60006020820190508181036000830152611bff81611bc3565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c6260218361131d565b9150611c6d82611c06565b604082019050919050565b60006020820190508181036000830152611c9181611c55565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cf460228361131d565b9150611cff82611c98565b604082019050919050565b60006020820190508181036000830152611d2381611ce7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d8660258361131d565b9150611d9182611d2a565b604082019050919050565b60006020820190508181036000830152611db581611d79565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e1860238361131d565b9150611e2382611dbc565b604082019050919050565b60006020820190508181036000830152611e4781611e0b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611eaa60268361131d565b9150611eb582611e4e565b604082019050919050565b60006020820190508181036000830152611ed981611e9d565b9050919050565b7f54726164696e6720706175736564000000000000000000000000000000000000600082015250565b6000611f16600e8361131d565b9150611f2182611ee0565b602082019050919050565b60006020820190508181036000830152611f4581611f09565b905091905056fea26469706673582212202fca40151797155310ebff070d43c5468a82bb069ba8a4beedbb1433892a018964736f6c634300080f003300000000000000000000000000000000000014bddc0fe1c3b55a4c671f500000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80634aead5cb116100a257806395d89b411161007157806395d89b41146102a6578063a457c2d7146102c4578063a9059cbb146102f4578063dd62ed3e14610324578063f2fde38b146103545761010b565b80634aead5cb1461023257806370a082311461024e578063715018a61461027e5780638da5cb5b146102885761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca578063404e5129146101fa57806342966c68146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b60405161012591906113ab565b60405180910390f35b61014860048036038101906101439190611466565b610402565b60405161015591906114c1565b60405180910390f35b610166610425565b60405161017391906114eb565b60405180910390f35b61019660048036038101906101919190611506565b61042f565b6040516101a391906114c1565b60405180910390f35b6101b461045e565b6040516101c19190611575565b60405180910390f35b6101e460048036038101906101df9190611466565b610467565b6040516101f191906114c1565b60405180910390f35b610214600480360381019061020f91906115bc565b61049e565b005b610230600480360381019061022b91906115fc565b610501565b005b61024c60048036038101906102479190611629565b61050e565b005b6102686004803603810190610263919061167c565b61056a565b60405161027591906114eb565b60405180910390f35b6102866105b2565b005b6102906105c6565b60405161029d91906116b8565b60405180910390f35b6102ae6105f0565b6040516102bb91906113ab565b60405180910390f35b6102de60048036038101906102d99190611466565b610682565b6040516102eb91906114c1565b60405180910390f35b61030e60048036038101906103099190611466565b6106f9565b60405161031b91906114c1565b60405180910390f35b61033e600480360381019061033991906116d3565b61071c565b60405161034b91906114eb565b60405180910390f35b61036e6004803603810190610369919061167c565b6107a3565b005b60606003805461037f90611742565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611742565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b60008061040d610826565b905061041a81858561082e565b600191505092915050565b6000600254905090565b60008061043a610826565b90506104478582856109f7565b610452858585610a83565b60019150509392505050565b60006012905090565b600080610472610826565b9050610493818585610484858961071c565b61048e91906117a2565b61082e565b600191505092915050565b6104a6610b40565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61050b3382610bbe565b50565b610516610b40565b82600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160068190555080600781905550505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105ba610b40565b6105c46000610d8b565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105ff90611742565b80601f016020809104026020016040519081016040528092919081815260200182805461062b90611742565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b60008061068d610826565b9050600061069b828661071c565b9050838110156106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d79061186a565b60405180910390fd5b6106ed828686840361082e565b60019250505092915050565b600080610704610826565b9050610711818585610a83565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107ab610b40565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361081a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610811906118fc565b60405180910390fd5b61082381610d8b565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361089d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108949061198e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090390611a20565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109ea91906114eb565b60405180910390a3505050565b6000610a03848461071c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a7d5781811015610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690611a8c565b60405180910390fd5b610a7c848484840361082e565b5b50505050565b8173ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148015610ae257506000600754115b15610b2f57600061271060075483610afa9190611aac565b610b049190611b35565b9050610b138461dead83610e51565b610b2984848385610b249190611b66565b610e51565b50610b3b565b610b3a838383610e51565b5b505050565b610b48610826565b73ffffffffffffffffffffffffffffffffffffffff16610b666105c6565b73ffffffffffffffffffffffffffffffffffffffff1614610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb390611be6565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2490611c78565b60405180910390fd5b610c39826000836110c7565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb690611d0a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d7291906114eb565b60405180910390a3610d868360008461130d565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790611d9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690611e2e565b60405180910390fd5b610f3a8383836110c7565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790611ec0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110ae91906114eb565b60405180910390a36110c184848461130d565b50505050565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111685750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561119f576040517fa646c2d300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036112ac576111fd6105c6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061126857506112396105c6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90611f2c565b60405180910390fd5b611308565b6000600654111561130757600654816112c48461056a565b6112ce91906117a2565b1115611306576040517f6c1cb1f600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561134c578082015181840152602081019050611331565b8381111561135b576000848401525b50505050565b6000601f19601f8301169050919050565b600061137d82611312565b611387818561131d565b935061139781856020860161132e565b6113a081611361565b840191505092915050565b600060208201905081810360008301526113c58184611372565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113fd826113d2565b9050919050565b61140d816113f2565b811461141857600080fd5b50565b60008135905061142a81611404565b92915050565b6000819050919050565b61144381611430565b811461144e57600080fd5b50565b6000813590506114608161143a565b92915050565b6000806040838503121561147d5761147c6113cd565b5b600061148b8582860161141b565b925050602061149c85828601611451565b9150509250929050565b60008115159050919050565b6114bb816114a6565b82525050565b60006020820190506114d660008301846114b2565b92915050565b6114e581611430565b82525050565b600060208201905061150060008301846114dc565b92915050565b60008060006060848603121561151f5761151e6113cd565b5b600061152d8682870161141b565b935050602061153e8682870161141b565b925050604061154f86828701611451565b9150509250925092565b600060ff82169050919050565b61156f81611559565b82525050565b600060208201905061158a6000830184611566565b92915050565b611599816114a6565b81146115a457600080fd5b50565b6000813590506115b681611590565b92915050565b600080604083850312156115d3576115d26113cd565b5b60006115e18582860161141b565b92505060206115f2858286016115a7565b9150509250929050565b600060208284031215611612576116116113cd565b5b600061162084828501611451565b91505092915050565b600080600060608486031215611642576116416113cd565b5b60006116508682870161141b565b935050602061166186828701611451565b925050604061167286828701611451565b9150509250925092565b600060208284031215611692576116916113cd565b5b60006116a08482850161141b565b91505092915050565b6116b2816113f2565b82525050565b60006020820190506116cd60008301846116a9565b92915050565b600080604083850312156116ea576116e96113cd565b5b60006116f88582860161141b565b92505060206117098582860161141b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061175a57607f821691505b60208210810361176d5761176c611713565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117ad82611430565b91506117b883611430565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117ed576117ec611773565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061185460258361131d565b915061185f826117f8565b604082019050919050565b6000602082019050818103600083015261188381611847565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118e660268361131d565b91506118f18261188a565b604082019050919050565b60006020820190508181036000830152611915816118d9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061197860248361131d565b91506119838261191c565b604082019050919050565b600060208201905081810360008301526119a78161196b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a0a60228361131d565b9150611a15826119ae565b604082019050919050565b60006020820190508181036000830152611a39816119fd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a76601d8361131d565b9150611a8182611a40565b602082019050919050565b60006020820190508181036000830152611aa581611a69565b9050919050565b6000611ab782611430565b9150611ac283611430565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611afb57611afa611773565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611b4082611430565b9150611b4b83611430565b925082611b5b57611b5a611b06565b5b828204905092915050565b6000611b7182611430565b9150611b7c83611430565b925082821015611b8f57611b8e611773565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611bd060208361131d565b9150611bdb82611b9a565b602082019050919050565b60006020820190508181036000830152611bff81611bc3565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c6260218361131d565b9150611c6d82611c06565b604082019050919050565b60006020820190508181036000830152611c9181611c55565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cf460228361131d565b9150611cff82611c98565b604082019050919050565b60006020820190508181036000830152611d2381611ce7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d8660258361131d565b9150611d9182611d2a565b604082019050919050565b60006020820190508181036000830152611db581611d79565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e1860238361131d565b9150611e2382611dbc565b604082019050919050565b60006020820190508181036000830152611e4781611e0b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611eaa60268361131d565b9150611eb582611e4e565b604082019050919050565b60006020820190508181036000830152611ed981611e9d565b9050919050565b7f54726164696e6720706175736564000000000000000000000000000000000000600082015250565b6000611f16600e8361131d565b9150611f2182611ee0565b602082019050919050565b60006020820190508181036000830152611f4581611f09565b905091905056fea26469706673582212202fca40151797155310ebff070d43c5468a82bb069ba8a4beedbb1433892a018964736f6c634300080f0033

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

00000000000000000000000000000000000014bddc0fe1c3b55a4c671f500000

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

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


Deployed Bytecode Sourcemap

21396:1572:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10142:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12493:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11262:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13274:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11104:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13978:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22594:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22884:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22718:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11433:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3547:103;;;:::i;:::-;;2899:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10361:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14719:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11766:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12022:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3805:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10142:100;10196:13;10229:5;10222:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10142:100;:::o;12493:201::-;12576:4;12593:13;12609:12;:10;:12::i;:::-;12593:28;;12632:32;12641:5;12648:7;12657:6;12632:8;:32::i;:::-;12682:4;12675:11;;;12493:201;;;;:::o;11262:108::-;11323:7;11350:12;;11343:19;;11262:108;:::o;13274:295::-;13405:4;13422:15;13440:12;:10;:12::i;:::-;13422:30;;13463:38;13479:4;13485:7;13494:6;13463:15;:38::i;:::-;13512:27;13522:4;13528:2;13532:6;13512:9;:27::i;:::-;13557:4;13550:11;;;13274:295;;;;;:::o;11104:93::-;11162:5;11187:2;11180:9;;11104:93;:::o;13978:238::-;14066:4;14083:13;14099:12;:10;:12::i;:::-;14083:28;;14122:64;14131:5;14138:7;14175:10;14147:25;14157:5;14164:7;14147:9;:25::i;:::-;:38;;;;:::i;:::-;14122:8;:64::i;:::-;14204:4;14197:11;;;13978:238;;;;:::o;22594:116::-;2785:13;:11;:13::i;:::-;22697:5:::1;22673:11;:21;22685:8;22673:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22594:116:::0;;:::o;22884:81::-;22933:24;22939:10;22951:5;22933;:24::i;:::-;22884:81;:::o;22718:158::-;2785:13;:11;:13::i;:::-;22817:5:::1;22810:4;;:12;;;;;;;;;;;;;;;;;;22841:6;22833:5;:14;;;;22864:4;22858:3;:10;;;;22718:158:::0;;;:::o;11433:127::-;11507:7;11534:9;:18;11544:7;11534:18;;;;;;;;;;;;;;;;11527:25;;11433:127;;;:::o;3547:103::-;2785:13;:11;:13::i;:::-;3612:30:::1;3639:1;3612:18;:30::i;:::-;3547:103::o:0;2899:87::-;2945:7;2972:6;;;;;;;;;;;2965:13;;2899:87;:::o;10361:104::-;10417:13;10450:7;10443:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10361:104;:::o;14719:436::-;14812:4;14829:13;14845:12;:10;:12::i;:::-;14829:28;;14868:24;14895:25;14905:5;14912:7;14895:9;:25::i;:::-;14868:52;;14959:15;14939:16;:35;;14931:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15052:60;15061:5;15068:7;15096:15;15077:16;:34;15052:8;:60::i;:::-;15143:4;15136:11;;;;14719:436;;;;:::o;11766:193::-;11845:4;11862:13;11878:12;:10;:12::i;:::-;11862:28;;11901;11911:5;11918:2;11922:6;11901:9;:28::i;:::-;11947:4;11940:11;;;11766:193;;;;:::o;12022:151::-;12111:7;12138:11;:18;12150:5;12138:18;;;;;;;;;;;;;;;:27;12157:7;12138:27;;;;;;;;;;;;;;;;12131:34;;12022:151;;;;:::o;3805:201::-;2785:13;:11;:13::i;:::-;3914:1:::1;3894:22;;:8;:22;;::::0;3886:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3970:28;3989:8;3970:18;:28::i;:::-;3805:201:::0;:::o;1444:98::-;1497:7;1524:10;1517:17;;1444:98;:::o;18746:380::-;18899:1;18882:19;;:5;:19;;;18874:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18980:1;18961:21;;:7;:21;;;18953:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19064:6;19034:11;:18;19046:5;19034:18;;;;;;;;;;;;;;;:27;19053:7;19034:27;;;;;;;;;;;;;;;:36;;;;19102:7;19086:32;;19095:5;19086:32;;;19111:6;19086:32;;;;;;:::i;:::-;;;;;;;;18746:380;;;:::o;19417:453::-;19552:24;19579:25;19589:5;19596:7;19579:9;:25::i;:::-;19552:52;;19639:17;19619:16;:37;19615:248;;19701:6;19681:16;:26;;19673:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19785:51;19794:5;19801:7;19829:6;19810:16;:25;19785:8;:51::i;:::-;19615:248;19541:329;19417:453;;;:::o;21723:390::-;21848:2;21840:10;;:4;;;;;;;;;;;:10;;;:22;;;;;21861:1;21855:3;;:7;21840:22;21836:270;;;21879:12;21909:5;21903:3;;21894:6;:12;;;;:::i;:::-;:20;;;;:::i;:::-;21879:35;;21929:44;21945:4;21959:6;21968:4;21929:15;:44::i;:::-;21988:40;22004:4;22010:2;22023:4;22014:6;:13;;;;:::i;:::-;21988:15;:40::i;:::-;21864:176;21836:270;;;22061:33;22077:4;22083:2;22087:6;22061:15;:33::i;:::-;21836:270;21723:390;;;:::o;3064:132::-;3139:12;:10;:12::i;:::-;3128:23;;:7;:5;:7::i;:::-;:23;;;3120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3064:132::o;17633:675::-;17736:1;17717:21;;:7;:21;;;17709:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17789:49;17810:7;17827:1;17831:6;17789:20;:49::i;:::-;17851:22;17876:9;:18;17886:7;17876:18;;;;;;;;;;;;;;;;17851:43;;17931:6;17913:14;:24;;17905:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18050:6;18033:14;:23;18012:9;:18;18022:7;18012:18;;;;;;;;;;;;;;;:44;;;;18167:6;18151:12;;:22;;;;;;;;;;;18228:1;18202:37;;18211:7;18202:37;;;18232:6;18202:37;;;;;;:::i;:::-;;;;;;;;18252:48;18272:7;18289:1;18293:6;18252:19;:48::i;:::-;17698:610;17633:675;;:::o;4166:191::-;4240:16;4259:6;;;;;;;;;;;4240:25;;4285:8;4276:6;;:17;;;;;;;;;;;;;;;;;;4340:8;4309:40;;4330:8;4309:40;;;;;;;;;;;;4229:128;4166:191;:::o;15625:840::-;15772:1;15756:18;;:4;:18;;;15748:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15849:1;15835:16;;:2;:16;;;15827:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15904:38;15925:4;15931:2;15935:6;15904:20;:38::i;:::-;15955:19;15977:9;:15;15987:4;15977:15;;;;;;;;;;;;;;;;15955:37;;16026:6;16011:11;:21;;16003:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;16143:6;16129:11;:20;16111:9;:15;16121:4;16111:15;;;;;;;;;;;;;;;:38;;;;16346:6;16329:9;:13;16339:2;16329:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16396:2;16381:26;;16390:4;16381:26;;;16400:6;16381:26;;;;;;:::i;:::-;;;;;;;;16420:37;16440:4;16446:2;16450:6;16420:19;:37::i;:::-;15737:728;15625:840;;;:::o;22121:465::-;22265:11;:17;22277:4;22265:17;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;22286:11;:15;22298:2;22286:15;;;;;;;;;;;;;;;;;;;;;;;;;22265:36;22261:71;;;22310:22;;;;;;;;;;;;;;22261:71;22363:1;22347:18;;:4;;;;;;;;;;;:18;;;22343:131;;22398:7;:5;:7::i;:::-;22390:15;;:4;:15;;;:32;;;;22415:7;:5;:7::i;:::-;22409:13;;:2;:13;;;22390:32;22382:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;22456:7;;22343:131;22496:1;22488:5;;:9;22484:94;;;22547:5;;22538:6;22516:19;22532:2;22516:15;:19::i;:::-;:28;;;;:::i;:::-;:36;22512:66;;;22561:17;;;;;;;;;;;;;;22512:66;22484:94;22121:465;;;;:::o;21199:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:116::-;4971:21;4986:5;4971:21;:::i;:::-;4964:5;4961:32;4951:60;;5007:1;5004;4997:12;4951:60;4901:116;:::o;5023:133::-;5066:5;5104:6;5091:20;5082:29;;5120:30;5144:5;5120:30;:::i;:::-;5023:133;;;;:::o;5162:468::-;5227:6;5235;5284:2;5272:9;5263:7;5259:23;5255:32;5252:119;;;5290:79;;:::i;:::-;5252:119;5410:1;5435:53;5480:7;5471:6;5460:9;5456:22;5435:53;:::i;:::-;5425:63;;5381:117;5537:2;5563:50;5605:7;5596:6;5585:9;5581:22;5563:50;:::i;:::-;5553:60;;5508:115;5162:468;;;;;:::o;5636:329::-;5695:6;5744:2;5732:9;5723:7;5719:23;5715:32;5712:119;;;5750:79;;:::i;:::-;5712:119;5870:1;5895:53;5940:7;5931:6;5920:9;5916:22;5895:53;:::i;:::-;5885:63;;5841:117;5636:329;;;;:::o;5971:619::-;6048:6;6056;6064;6113:2;6101:9;6092:7;6088:23;6084:32;6081:119;;;6119:79;;:::i;:::-;6081:119;6239:1;6264:53;6309:7;6300:6;6289:9;6285:22;6264:53;:::i;:::-;6254:63;;6210:117;6366:2;6392:53;6437:7;6428:6;6417:9;6413:22;6392:53;:::i;:::-;6382:63;;6337:118;6494:2;6520:53;6565:7;6556:6;6545:9;6541:22;6520:53;:::i;:::-;6510:63;;6465:118;5971:619;;;;;:::o;6596:329::-;6655:6;6704:2;6692:9;6683:7;6679:23;6675:32;6672:119;;;6710:79;;:::i;:::-;6672:119;6830:1;6855:53;6900:7;6891:6;6880:9;6876:22;6855:53;:::i;:::-;6845:63;;6801:117;6596:329;;;;:::o;6931:118::-;7018:24;7036:5;7018:24;:::i;:::-;7013:3;7006:37;6931:118;;:::o;7055:222::-;7148:4;7186:2;7175:9;7171:18;7163:26;;7199:71;7267:1;7256:9;7252:17;7243:6;7199:71;:::i;:::-;7055:222;;;;:::o;7283:474::-;7351:6;7359;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:53;7604:7;7595:6;7584:9;7580:22;7559:53;:::i;:::-;7549:63;;7505:117;7661:2;7687:53;7732:7;7723:6;7712:9;7708:22;7687:53;:::i;:::-;7677:63;;7632:118;7283:474;;;;;:::o;7763:180::-;7811:77;7808:1;7801:88;7908:4;7905:1;7898:15;7932:4;7929:1;7922:15;7949:320;7993:6;8030:1;8024:4;8020:12;8010:22;;8077:1;8071:4;8067:12;8098:18;8088:81;;8154:4;8146:6;8142:17;8132:27;;8088:81;8216:2;8208:6;8205:14;8185:18;8182:38;8179:84;;8235:18;;:::i;:::-;8179:84;8000:269;7949:320;;;:::o;8275:180::-;8323:77;8320:1;8313:88;8420:4;8417:1;8410:15;8444:4;8441:1;8434:15;8461:305;8501:3;8520:20;8538:1;8520:20;:::i;:::-;8515:25;;8554:20;8572:1;8554:20;:::i;:::-;8549:25;;8708:1;8640:66;8636:74;8633:1;8630:81;8627:107;;;8714:18;;:::i;:::-;8627:107;8758:1;8755;8751:9;8744:16;;8461:305;;;;:::o;8772:224::-;8912:34;8908:1;8900:6;8896:14;8889:58;8981:7;8976:2;8968:6;8964:15;8957:32;8772:224;:::o;9002:366::-;9144:3;9165:67;9229:2;9224:3;9165:67;:::i;:::-;9158:74;;9241:93;9330:3;9241:93;:::i;:::-;9359:2;9354:3;9350:12;9343:19;;9002:366;;;:::o;9374:419::-;9540:4;9578:2;9567:9;9563:18;9555:26;;9627:9;9621:4;9617:20;9613:1;9602:9;9598:17;9591:47;9655:131;9781:4;9655:131;:::i;:::-;9647:139;;9374:419;;;:::o;9799:225::-;9939:34;9935:1;9927:6;9923:14;9916:58;10008:8;10003:2;9995:6;9991:15;9984:33;9799:225;:::o;10030:366::-;10172:3;10193:67;10257:2;10252:3;10193:67;:::i;:::-;10186:74;;10269:93;10358:3;10269:93;:::i;:::-;10387:2;10382:3;10378:12;10371:19;;10030:366;;;:::o;10402:419::-;10568:4;10606:2;10595:9;10591:18;10583:26;;10655:9;10649:4;10645:20;10641:1;10630:9;10626:17;10619:47;10683:131;10809:4;10683:131;:::i;:::-;10675:139;;10402:419;;;:::o;10827:223::-;10967:34;10963:1;10955:6;10951:14;10944:58;11036:6;11031:2;11023:6;11019:15;11012:31;10827:223;:::o;11056:366::-;11198:3;11219:67;11283:2;11278:3;11219:67;:::i;:::-;11212:74;;11295:93;11384:3;11295:93;:::i;:::-;11413:2;11408:3;11404:12;11397:19;;11056:366;;;:::o;11428:419::-;11594:4;11632:2;11621:9;11617:18;11609:26;;11681:9;11675:4;11671:20;11667:1;11656:9;11652:17;11645:47;11709:131;11835:4;11709:131;:::i;:::-;11701:139;;11428:419;;;:::o;11853:221::-;11993:34;11989:1;11981:6;11977:14;11970:58;12062:4;12057:2;12049:6;12045:15;12038:29;11853:221;:::o;12080:366::-;12222:3;12243:67;12307:2;12302:3;12243:67;:::i;:::-;12236:74;;12319:93;12408:3;12319:93;:::i;:::-;12437:2;12432:3;12428:12;12421:19;;12080:366;;;:::o;12452:419::-;12618:4;12656:2;12645:9;12641:18;12633:26;;12705:9;12699:4;12695:20;12691:1;12680:9;12676:17;12669:47;12733:131;12859:4;12733:131;:::i;:::-;12725:139;;12452:419;;;:::o;12877:179::-;13017:31;13013:1;13005:6;13001:14;12994:55;12877:179;:::o;13062:366::-;13204:3;13225:67;13289:2;13284:3;13225:67;:::i;:::-;13218:74;;13301:93;13390:3;13301:93;:::i;:::-;13419:2;13414:3;13410:12;13403:19;;13062:366;;;:::o;13434:419::-;13600:4;13638:2;13627:9;13623:18;13615:26;;13687:9;13681:4;13677:20;13673:1;13662:9;13658:17;13651:47;13715:131;13841:4;13715:131;:::i;:::-;13707:139;;13434:419;;;:::o;13859:348::-;13899:7;13922:20;13940:1;13922:20;:::i;:::-;13917:25;;13956:20;13974:1;13956:20;:::i;:::-;13951:25;;14144:1;14076:66;14072:74;14069:1;14066:81;14061:1;14054:9;14047:17;14043:105;14040:131;;;14151:18;;:::i;:::-;14040:131;14199:1;14196;14192:9;14181:20;;13859:348;;;;:::o;14213:180::-;14261:77;14258:1;14251:88;14358:4;14355:1;14348:15;14382:4;14379:1;14372:15;14399:185;14439:1;14456:20;14474:1;14456:20;:::i;:::-;14451:25;;14490:20;14508:1;14490:20;:::i;:::-;14485:25;;14529:1;14519:35;;14534:18;;:::i;:::-;14519:35;14576:1;14573;14569:9;14564:14;;14399:185;;;;:::o;14590:191::-;14630:4;14650:20;14668:1;14650:20;:::i;:::-;14645:25;;14684:20;14702:1;14684:20;:::i;:::-;14679:25;;14723:1;14720;14717:8;14714:34;;;14728:18;;:::i;:::-;14714:34;14773:1;14770;14766:9;14758:17;;14590:191;;;;:::o;14787:182::-;14927:34;14923:1;14915:6;14911:14;14904:58;14787:182;:::o;14975:366::-;15117:3;15138:67;15202:2;15197:3;15138:67;:::i;:::-;15131:74;;15214:93;15303:3;15214:93;:::i;:::-;15332:2;15327:3;15323:12;15316:19;;14975:366;;;:::o;15347:419::-;15513:4;15551:2;15540:9;15536:18;15528:26;;15600:9;15594:4;15590:20;15586:1;15575:9;15571:17;15564:47;15628:131;15754:4;15628:131;:::i;:::-;15620:139;;15347:419;;;:::o;15772:220::-;15912:34;15908:1;15900:6;15896:14;15889:58;15981:3;15976:2;15968:6;15964:15;15957:28;15772:220;:::o;15998:366::-;16140:3;16161:67;16225:2;16220:3;16161:67;:::i;:::-;16154:74;;16237:93;16326:3;16237:93;:::i;:::-;16355:2;16350:3;16346:12;16339:19;;15998:366;;;:::o;16370:419::-;16536:4;16574:2;16563:9;16559:18;16551:26;;16623:9;16617:4;16613:20;16609:1;16598:9;16594:17;16587:47;16651:131;16777:4;16651:131;:::i;:::-;16643:139;;16370:419;;;:::o;16795:221::-;16935:34;16931:1;16923:6;16919:14;16912:58;17004:4;16999:2;16991:6;16987:15;16980:29;16795:221;:::o;17022:366::-;17164:3;17185:67;17249:2;17244:3;17185:67;:::i;:::-;17178:74;;17261:93;17350:3;17261:93;:::i;:::-;17379:2;17374:3;17370:12;17363:19;;17022:366;;;:::o;17394:419::-;17560:4;17598:2;17587:9;17583:18;17575:26;;17647:9;17641:4;17637:20;17633:1;17622:9;17618:17;17611:47;17675:131;17801:4;17675:131;:::i;:::-;17667:139;;17394:419;;;:::o;17819:224::-;17959:34;17955:1;17947:6;17943:14;17936:58;18028:7;18023:2;18015:6;18011:15;18004:32;17819:224;:::o;18049:366::-;18191:3;18212:67;18276:2;18271:3;18212:67;:::i;:::-;18205:74;;18288:93;18377:3;18288:93;:::i;:::-;18406:2;18401:3;18397:12;18390:19;;18049:366;;;:::o;18421:419::-;18587:4;18625:2;18614:9;18610:18;18602:26;;18674:9;18668:4;18664:20;18660:1;18649:9;18645:17;18638:47;18702:131;18828:4;18702:131;:::i;:::-;18694:139;;18421:419;;;:::o;18846:222::-;18986:34;18982:1;18974:6;18970:14;18963:58;19055:5;19050:2;19042:6;19038:15;19031:30;18846:222;:::o;19074:366::-;19216:3;19237:67;19301:2;19296:3;19237:67;:::i;:::-;19230:74;;19313:93;19402:3;19313:93;:::i;:::-;19431:2;19426:3;19422:12;19415:19;;19074:366;;;:::o;19446:419::-;19612:4;19650:2;19639:9;19635:18;19627:26;;19699:9;19693:4;19689:20;19685:1;19674:9;19670:17;19663:47;19727:131;19853:4;19727:131;:::i;:::-;19719:139;;19446:419;;;:::o;19871:225::-;20011:34;20007:1;19999:6;19995:14;19988:58;20080:8;20075:2;20067:6;20063:15;20056:33;19871:225;:::o;20102:366::-;20244:3;20265:67;20329:2;20324:3;20265:67;:::i;:::-;20258:74;;20341:93;20430:3;20341:93;:::i;:::-;20459:2;20454:3;20450:12;20443:19;;20102:366;;;:::o;20474:419::-;20640:4;20678:2;20667:9;20663:18;20655:26;;20727:9;20721:4;20717:20;20713:1;20702:9;20698:17;20691:47;20755:131;20881:4;20755:131;:::i;:::-;20747:139;;20474:419;;;:::o;20899:164::-;21039:16;21035:1;21027:6;21023:14;21016:40;20899:164;:::o;21069:366::-;21211:3;21232:67;21296:2;21291:3;21232:67;:::i;:::-;21225:74;;21308:93;21397:3;21308:93;:::i;:::-;21426:2;21421:3;21417:12;21410:19;;21069:366;;;:::o;21441:419::-;21607:4;21645:2;21634:9;21630:18;21622:26;;21694:9;21688:4;21684:20;21680:1;21669:9;21665:17;21658:47;21722:131;21848:4;21722:131;:::i;:::-;21714:139;;21441:419;;;:::o

Swarm Source

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