ETH Price: $3,367.84 (-1.12%)

Token

Dollart (DART)
 

Overview

Max Total Supply

39,346,408,075,296,537,575,424,000,000,000 DART

Holders

9

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
493,319.846894957993597068 DART

Value
$0.00
0xA6a50698d3408f2e6AFc64DE79eeFb214b0967a1
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:
Dollart

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : contract-ba542583f1.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";
import "@openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/[email protected]/access/Ownable.sol";
import "@openzeppelin/[email protected]/token/ERC20/extensions/ERC20FlashMint.sol";

/// @custom:security-contact [email protected]
contract Dollart is ERC20, ERC20Burnable, Ownable, ERC20FlashMint {
    constructor() ERC20("Dollart", "DART") {
        _mint(msg.sender, 1000000000000000000000000000 * 18 ** decimals());
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }
}

File 2 of 10 : ERC20FlashMint.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/extensions/ERC20FlashMint.sol)

pragma solidity ^0.8.0;

import "../../../interfaces/IERC3156FlashBorrower.sol";
import "../../../interfaces/IERC3156FlashLender.sol";
import "../ERC20.sol";

/**
 * @dev Implementation of the ERC3156 Flash loans extension, as defined in
 * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
 *
 * Adds the {flashLoan} method, which provides flash loan support at the token
 * level. By default there is no fee, but this can be changed by overriding {flashFee}.
 *
 * _Available since v4.1._
 */
abstract contract ERC20FlashMint is ERC20, IERC3156FlashLender {
    bytes32 private constant _RETURN_VALUE = keccak256("ERC3156FlashBorrower.onFlashLoan");

    /**
     * @dev Returns the maximum amount of tokens available for loan.
     * @param token The address of the token that is requested.
     * @return The amount of token that can be loaned.
     */
    function maxFlashLoan(address token) public view virtual override returns (uint256) {
        return token == address(this) ? type(uint256).max - ERC20.totalSupply() : 0;
    }

    /**
     * @dev Returns the fee applied when doing flash loans. This function calls
     * the {_flashFee} function which returns the fee applied when doing flash
     * loans.
     * @param token The token to be flash loaned.
     * @param amount The amount of tokens to be loaned.
     * @return The fees applied to the corresponding flash loan.
     */
    function flashFee(address token, uint256 amount) public view virtual override returns (uint256) {
        require(token == address(this), "ERC20FlashMint: wrong token");
        return _flashFee(token, amount);
    }

    /**
     * @dev Returns the fee applied when doing flash loans. By default this
     * implementation has 0 fees. This function can be overloaded to make
     * the flash loan mechanism deflationary.
     * @param token The token to be flash loaned.
     * @param amount The amount of tokens to be loaned.
     * @return The fees applied to the corresponding flash loan.
     */
    function _flashFee(address token, uint256 amount) internal view virtual returns (uint256) {
        // silence warning about unused variable without the addition of bytecode.
        token;
        amount;
        return 0;
    }

    /**
     * @dev Returns the receiver address of the flash fee. By default this
     * implementation returns the address(0) which means the fee amount will be burnt.
     * This function can be overloaded to change the fee receiver.
     * @return The address for which the flash fee will be sent to.
     */
    function _flashFeeReceiver() internal view virtual returns (address) {
        return address(0);
    }

    /**
     * @dev Performs a flash loan. New tokens are minted and sent to the
     * `receiver`, who is required to implement the {IERC3156FlashBorrower}
     * interface. By the end of the flash loan, the receiver is expected to own
     * amount + fee tokens and have them approved back to the token contract itself so
     * they can be burned.
     * @param receiver The receiver of the flash loan. Should implement the
     * {IERC3156FlashBorrower-onFlashLoan} interface.
     * @param token The token to be flash loaned. Only `address(this)` is
     * supported.
     * @param amount The amount of tokens to be loaned.
     * @param data An arbitrary datafield that is passed to the receiver.
     * @return `true` if the flash loan was successful.
     */
    // This function can reenter, but it doesn't pose a risk because it always preserves the property that the amount
    // minted at the beginning is always recovered and burned at the end, or else the entire function will revert.
    // slither-disable-next-line reentrancy-no-eth
    function flashLoan(
        IERC3156FlashBorrower receiver,
        address token,
        uint256 amount,
        bytes calldata data
    ) public virtual override returns (bool) {
        require(amount <= maxFlashLoan(token), "ERC20FlashMint: amount exceeds maxFlashLoan");
        uint256 fee = flashFee(token, amount);
        _mint(address(receiver), amount);
        require(
            receiver.onFlashLoan(msg.sender, token, amount, fee, data) == _RETURN_VALUE,
            "ERC20FlashMint: invalid return value"
        );
        address flashFeeReceiver = _flashFeeReceiver();
        _spendAllowance(address(receiver), address(this), amount + fee);
        if (fee == 0 || flashFeeReceiver == address(0)) {
            _burn(address(receiver), amount + fee);
        } else {
            _burn(address(receiver), amount);
            _transfer(address(receiver), flashFeeReceiver, fee);
        }
        return true;
    }
}

File 3 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 4 of 10 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

File 5 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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].
 *
 * 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 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}.
     *
     * 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 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 _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 6 of 10 : IERC3156FlashLender.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC3156FlashLender.sol)

pragma solidity ^0.8.0;

import "./IERC3156FlashBorrower.sol";

/**
 * @dev Interface of the ERC3156 FlashLender, as defined in
 * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
 *
 * _Available since v4.1._
 */
interface IERC3156FlashLender {
    /**
     * @dev The amount of currency available to be lended.
     * @param token The loan currency.
     * @return The amount of `token` that can be borrowed.
     */
    function maxFlashLoan(address token) external view returns (uint256);

    /**
     * @dev The fee to be charged for a given loan.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @return The amount of `token` to be charged for the loan, on top of the returned principal.
     */
    function flashFee(address token, uint256 amount) external view returns (uint256);

    /**
     * @dev Initiate a flash loan.
     * @param receiver The receiver of the tokens in the loan, and the receiver of the callback.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @param data Arbitrary data structure, intended to contain user-defined parameters.
     */
    function flashLoan(
        IERC3156FlashBorrower receiver,
        address token,
        uint256 amount,
        bytes calldata data
    ) external returns (bool);
}

File 7 of 10 : IERC3156FlashBorrower.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC3156FlashBorrower.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC3156 FlashBorrower, as defined in
 * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
 *
 * _Available since v4.1._
 */
interface IERC3156FlashBorrower {
    /**
     * @dev Receive a flash loan.
     * @param initiator The initiator of the loan.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @param fee The additional amount of tokens to repay.
     * @param data Arbitrary data structure, intended to contain user-defined parameters.
     * @return The keccak256 hash of "ERC3156FlashBorrower.onFlashLoan"
     */
    function onFlashLoan(
        address initiator,
        address token,
        uint256 amount,
        uint256 fee,
        bytes calldata data
    ) external returns (bytes32);
}

File 8 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// 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 9 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 10 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"flashFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC3156FlashBorrower","name":"receiver","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flashLoan","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":[{"internalType":"address","name":"token","type":"address"}],"name":"maxFlashLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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"}]

608060405234801562000010575f80fd5b506040518060400160405280600781526020017f446f6c6c617274000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f444152540000000000000000000000000000000000000000000000000000000081525081600390816200008e9190620005b6565b508060049081620000a09190620005b6565b505050620000c3620000b76200011160201b60201c565b6200011860201b60201c565b6200010b33620000d8620001db60201b60201c565b6012620000e6919062000823565b6b033b2e3c9fd0803ce8000000620000ff919062000873565b620001e360201b60201c565b620009a1565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000254576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024b906200091b565b60405180910390fd5b620002675f83836200034860201b60201c565b8060025f8282546200027a91906200093b565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000329919062000986565b60405180910390a3620003445f83836200034d60201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620003ce57607f821691505b602082108103620003e457620003e362000389565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200040b565b6200045486836200040b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200049e6200049862000492846200046c565b62000475565b6200046c565b9050919050565b5f819050919050565b620004b9836200047e565b620004d1620004c882620004a5565b84845462000417565b825550505050565b5f90565b620004e7620004d9565b620004f4818484620004ae565b505050565b5b818110156200051b576200050f5f82620004dd565b600181019050620004fa565b5050565b601f8211156200056a576200053481620003ea565b6200053f84620003fc565b810160208510156200054f578190505b620005676200055e85620003fc565b830182620004f9565b50505b505050565b5f82821c905092915050565b5f6200058c5f19846008026200056f565b1980831691505092915050565b5f620005a683836200057b565b9150826002028217905092915050565b620005c18262000352565b67ffffffffffffffff811115620005dd57620005dc6200035c565b5b620005e98254620003b6565b620005f68282856200051f565b5f60209050601f8311600181146200062c575f841562000617578287015190505b62000623858262000599565b86555062000692565b601f1984166200063c86620003ea565b5f5b8281101562000665578489015182556001820191506020850194506020810190506200063e565b8683101562000685578489015162000681601f8916826200057b565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200072457808604811115620006fc57620006fb6200069a565b5b60018516156200070c5780820291505b80810290506200071c85620006c7565b9450620006dc565b94509492505050565b5f826200073e576001905062000810565b816200074d575f905062000810565b81600181146200076657600281146200077157620007a7565b600191505062000810565b60ff8411156200078657620007856200069a565b5b8360020a915084821115620007a0576200079f6200069a565b5b5062000810565b5060208310610133831016604e8410600b8410161715620007e15782820a905083811115620007db57620007da6200069a565b5b62000810565b620007f08484846001620006d3565b925090508184048111156200080a57620008096200069a565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6200082f826200046c565b91506200083c8362000817565b92506200086b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200072d565b905092915050565b5f6200087f826200046c565b91506200088c836200046c565b92508282026200089c816200046c565b91508282048414831517620008b657620008b56200069a565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000903601f83620008bd565b91506200091082620008cd565b602082019050919050565b5f6020820190508181035f8301526200093481620008f5565b9050919050565b5f62000947826200046c565b915062000954836200046c565b92508282019050808211156200096f576200096e6200069a565b5b92915050565b62000980816200046c565b82525050565b5f6020820190506200099b5f83018462000975565b92915050565b61225780620009af5f395ff3fe608060405234801561000f575f80fd5b506004361061012a575f3560e01c806370a08231116100ab578063a457c2d71161006f578063a457c2d714610342578063a9059cbb14610372578063d9d98ce4146103a2578063dd62ed3e146103d2578063f2fde38b146104025761012a565b806370a08231146102b0578063715018a6146102e057806379cc6790146102ea5780638da5cb5b1461030657806395d89b41146103245761012a565b806339509351116100f257806339509351146101e857806340c10f191461021857806342966c68146102345780635cffe9de14610250578063613255ab146102805761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c57806323b872dd1461019a578063313ce567146101ca575b5f80fd5b61013661041e565b60405161014391906114c7565b60405180910390f35b6101666004803603810190610161919061157c565b6104ae565b60405161017391906115d4565b60405180910390f35b6101846104d0565b60405161019191906115fc565b60405180910390f35b6101b460048036038101906101af9190611615565b6104d9565b6040516101c191906115d4565b60405180910390f35b6101d2610507565b6040516101df9190611680565b60405180910390f35b61020260048036038101906101fd919061157c565b61050f565b60405161020f91906115d4565b60405180910390f35b610232600480360381019061022d919061157c565b610545565b005b61024e60048036038101906102499190611699565b61055b565b005b61026a60048036038101906102659190611760565b61056f565b60405161027791906115d4565b60405180910390f35b61029a600480360381019061029591906117e4565b610754565b6040516102a791906115fc565b60405180910390f35b6102ca60048036038101906102c591906117e4565b6107c9565b6040516102d791906115fc565b60405180910390f35b6102e861080e565b005b61030460048036038101906102ff919061157c565b610821565b005b61030e610841565b60405161031b919061181e565b60405180910390f35b61032c610869565b60405161033991906114c7565b60405180910390f35b61035c6004803603810190610357919061157c565b6108f9565b60405161036991906115d4565b60405180910390f35b61038c6004803603810190610387919061157c565b61096e565b60405161039991906115d4565b60405180910390f35b6103bc60048036038101906103b7919061157c565b610990565b6040516103c991906115fc565b60405180910390f35b6103ec60048036038101906103e79190611837565b610a11565b6040516103f991906115fc565b60405180910390f35b61041c600480360381019061041791906117e4565b610a93565b005b60606003805461042d906118a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610459906118a2565b80156104a45780601f1061047b576101008083540402835291602001916104a4565b820191905f5260205f20905b81548152906001019060200180831161048757829003601f168201915b5050505050905090565b5f806104b8610b15565b90506104c5818585610b1c565b600191505092915050565b5f600254905090565b5f806104e3610b15565b90506104f0858285610cdf565b6104fb858585610d6a565b60019150509392505050565b5f6012905090565b5f80610519610b15565b905061053a81858561052b8589610a11565b61053591906118ff565b610b1c565b600191505092915050565b61054d610fd6565b6105578282611054565b5050565b61056c610566610b15565b826111a2565b50565b5f61057985610754565b8411156105bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b2906119a2565b60405180910390fd5b5f6105c68686610990565b90506105d28786611054565b7f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd98773ffffffffffffffffffffffffffffffffffffffff166323e30c8b338989868a8a6040518763ffffffff1660e01b815260040161063696959493929190611a0a565b6020604051808303815f875af1158015610652573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106769190611a97565b146106b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ad90611b32565b60405180910390fd5b5f6106bf611365565b90506106d7883084896106d291906118ff565b610cdf565b5f82148061071057505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b1561072f5761072a88838861072591906118ff565b6111a2565b610745565b61073988876111a2565b610744888284610d6a565b5b60019250505095945050505050565b5f3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461078e575f6107c2565b6107966104d0565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6107c19190611b50565b5b9050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610816610fd6565b61081f5f611369565b565b6108338261082d610b15565b83610cdf565b61083d82826111a2565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610878906118a2565b80601f01602080910402602001604051908101604052809291908181526020018280546108a4906118a2565b80156108ef5780601f106108c6576101008083540402835291602001916108ef565b820191905f5260205f20905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b5f80610903610b15565b90505f6109108286610a11565b905083811015610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c90611bf3565b60405180910390fd5b6109628286868403610b1c565b60019250505092915050565b5f80610978610b15565b9050610985818585610d6a565b600191505092915050565b5f3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f690611c5b565b60405180910390fd5b610a09838361142c565b905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a9b610fd6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090611ce9565b60405180910390fd5b610b1281611369565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8190611d77565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90611e05565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cd291906115fc565b60405180910390a3505050565b5f610cea8484610a11565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d645781811015610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90611e6d565b60405180910390fd5b610d638484848403610b1c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90611efb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90611f89565b60405180910390fd5b610e51838383611433565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90612017565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fbd91906115fc565b60405180910390a3610fd0848484611438565b50505050565b610fde610b15565b73ffffffffffffffffffffffffffffffffffffffff16610ffc610841565b73ffffffffffffffffffffffffffffffffffffffff1614611052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110499061207f565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b9906120e7565b60405180910390fd5b6110cd5f8383611433565b8060025f8282546110de91906118ff565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161118b91906115fc565b60405180910390a361119e5f8383611438565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790612175565b60405180910390fd5b61121b825f83611433565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129590612203565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161134d91906115fc565b60405180910390a3611360835f84611438565b505050565b5f90565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f92915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611474578082015181840152602081019050611459565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6114998261143d565b6114a38185611447565b93506114b3818560208601611457565b6114bc8161147f565b840191505092915050565b5f6020820190508181035f8301526114df818461148f565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611518826114ef565b9050919050565b6115288161150e565b8114611532575f80fd5b50565b5f813590506115438161151f565b92915050565b5f819050919050565b61155b81611549565b8114611565575f80fd5b50565b5f8135905061157681611552565b92915050565b5f8060408385031215611592576115916114e7565b5b5f61159f85828601611535565b92505060206115b085828601611568565b9150509250929050565b5f8115159050919050565b6115ce816115ba565b82525050565b5f6020820190506115e75f8301846115c5565b92915050565b6115f681611549565b82525050565b5f60208201905061160f5f8301846115ed565b92915050565b5f805f6060848603121561162c5761162b6114e7565b5b5f61163986828701611535565b935050602061164a86828701611535565b925050604061165b86828701611568565b9150509250925092565b5f60ff82169050919050565b61167a81611665565b82525050565b5f6020820190506116935f830184611671565b92915050565b5f602082840312156116ae576116ad6114e7565b5b5f6116bb84828501611568565b91505092915050565b5f6116ce8261150e565b9050919050565b6116de816116c4565b81146116e8575f80fd5b50565b5f813590506116f9816116d5565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126117205761171f6116ff565b5b8235905067ffffffffffffffff81111561173d5761173c611703565b5b60208301915083600182028301111561175957611758611707565b5b9250929050565b5f805f805f60808688031215611779576117786114e7565b5b5f611786888289016116eb565b955050602061179788828901611535565b94505060406117a888828901611568565b935050606086013567ffffffffffffffff8111156117c9576117c86114eb565b5b6117d58882890161170b565b92509250509295509295909350565b5f602082840312156117f9576117f86114e7565b5b5f61180684828501611535565b91505092915050565b6118188161150e565b82525050565b5f6020820190506118315f83018461180f565b92915050565b5f806040838503121561184d5761184c6114e7565b5b5f61185a85828601611535565b925050602061186b85828601611535565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806118b957607f821691505b6020821081036118cc576118cb611875565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61190982611549565b915061191483611549565b925082820190508082111561192c5761192b6118d2565b5b92915050565b7f4552433230466c6173684d696e743a20616d6f756e742065786365656473206d5f8201527f6178466c6173684c6f616e000000000000000000000000000000000000000000602082015250565b5f61198c602b83611447565b915061199782611932565b604082019050919050565b5f6020820190508181035f8301526119b981611980565b9050919050565b5f82825260208201905092915050565b828183375f83830152505050565b5f6119e983856119c0565b93506119f68385846119d0565b6119ff8361147f565b840190509392505050565b5f60a082019050611a1d5f83018961180f565b611a2a602083018861180f565b611a3760408301876115ed565b611a4460608301866115ed565b8181036080830152611a578184866119de565b9050979650505050505050565b5f819050919050565b611a7681611a64565b8114611a80575f80fd5b50565b5f81519050611a9181611a6d565b92915050565b5f60208284031215611aac57611aab6114e7565b5b5f611ab984828501611a83565b91505092915050565b7f4552433230466c6173684d696e743a20696e76616c69642072657475726e20765f8201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b5f611b1c602483611447565b9150611b2782611ac2565b604082019050919050565b5f6020820190508181035f830152611b4981611b10565b9050919050565b5f611b5a82611549565b9150611b6583611549565b9250828203905081811115611b7d57611b7c6118d2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611bdd602583611447565b9150611be882611b83565b604082019050919050565b5f6020820190508181035f830152611c0a81611bd1565b9050919050565b7f4552433230466c6173684d696e743a2077726f6e6720746f6b656e00000000005f82015250565b5f611c45601b83611447565b9150611c5082611c11565b602082019050919050565b5f6020820190508181035f830152611c7281611c39565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611cd3602683611447565b9150611cde82611c79565b604082019050919050565b5f6020820190508181035f830152611d0081611cc7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611d61602483611447565b9150611d6c82611d07565b604082019050919050565b5f6020820190508181035f830152611d8e81611d55565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611def602283611447565b9150611dfa82611d95565b604082019050919050565b5f6020820190508181035f830152611e1c81611de3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611e57601d83611447565b9150611e6282611e23565b602082019050919050565b5f6020820190508181035f830152611e8481611e4b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611ee5602583611447565b9150611ef082611e8b565b604082019050919050565b5f6020820190508181035f830152611f1281611ed9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611f73602383611447565b9150611f7e82611f19565b604082019050919050565b5f6020820190508181035f830152611fa081611f67565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612001602683611447565b915061200c82611fa7565b604082019050919050565b5f6020820190508181035f83015261202e81611ff5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612069602083611447565b915061207482612035565b602082019050919050565b5f6020820190508181035f8301526120968161205d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6120d1601f83611447565b91506120dc8261209d565b602082019050919050565b5f6020820190508181035f8301526120fe816120c5565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61215f602183611447565b915061216a82612105565b604082019050919050565b5f6020820190508181035f83015261218c81612153565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6121ed602283611447565b91506121f882612193565b604082019050919050565b5f6020820190508181035f83015261221a816121e1565b905091905056fea26469706673582212203a283baa1bc6cf32823ed17ad5fdd39d76e56903cb9b8a5c01759f8d6f69e92c64736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061012a575f3560e01c806370a08231116100ab578063a457c2d71161006f578063a457c2d714610342578063a9059cbb14610372578063d9d98ce4146103a2578063dd62ed3e146103d2578063f2fde38b146104025761012a565b806370a08231146102b0578063715018a6146102e057806379cc6790146102ea5780638da5cb5b1461030657806395d89b41146103245761012a565b806339509351116100f257806339509351146101e857806340c10f191461021857806342966c68146102345780635cffe9de14610250578063613255ab146102805761012a565b806306fdde031461012e578063095ea7b31461014c57806318160ddd1461017c57806323b872dd1461019a578063313ce567146101ca575b5f80fd5b61013661041e565b60405161014391906114c7565b60405180910390f35b6101666004803603810190610161919061157c565b6104ae565b60405161017391906115d4565b60405180910390f35b6101846104d0565b60405161019191906115fc565b60405180910390f35b6101b460048036038101906101af9190611615565b6104d9565b6040516101c191906115d4565b60405180910390f35b6101d2610507565b6040516101df9190611680565b60405180910390f35b61020260048036038101906101fd919061157c565b61050f565b60405161020f91906115d4565b60405180910390f35b610232600480360381019061022d919061157c565b610545565b005b61024e60048036038101906102499190611699565b61055b565b005b61026a60048036038101906102659190611760565b61056f565b60405161027791906115d4565b60405180910390f35b61029a600480360381019061029591906117e4565b610754565b6040516102a791906115fc565b60405180910390f35b6102ca60048036038101906102c591906117e4565b6107c9565b6040516102d791906115fc565b60405180910390f35b6102e861080e565b005b61030460048036038101906102ff919061157c565b610821565b005b61030e610841565b60405161031b919061181e565b60405180910390f35b61032c610869565b60405161033991906114c7565b60405180910390f35b61035c6004803603810190610357919061157c565b6108f9565b60405161036991906115d4565b60405180910390f35b61038c6004803603810190610387919061157c565b61096e565b60405161039991906115d4565b60405180910390f35b6103bc60048036038101906103b7919061157c565b610990565b6040516103c991906115fc565b60405180910390f35b6103ec60048036038101906103e79190611837565b610a11565b6040516103f991906115fc565b60405180910390f35b61041c600480360381019061041791906117e4565b610a93565b005b60606003805461042d906118a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610459906118a2565b80156104a45780601f1061047b576101008083540402835291602001916104a4565b820191905f5260205f20905b81548152906001019060200180831161048757829003601f168201915b5050505050905090565b5f806104b8610b15565b90506104c5818585610b1c565b600191505092915050565b5f600254905090565b5f806104e3610b15565b90506104f0858285610cdf565b6104fb858585610d6a565b60019150509392505050565b5f6012905090565b5f80610519610b15565b905061053a81858561052b8589610a11565b61053591906118ff565b610b1c565b600191505092915050565b61054d610fd6565b6105578282611054565b5050565b61056c610566610b15565b826111a2565b50565b5f61057985610754565b8411156105bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b2906119a2565b60405180910390fd5b5f6105c68686610990565b90506105d28786611054565b7f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd98773ffffffffffffffffffffffffffffffffffffffff166323e30c8b338989868a8a6040518763ffffffff1660e01b815260040161063696959493929190611a0a565b6020604051808303815f875af1158015610652573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106769190611a97565b146106b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ad90611b32565b60405180910390fd5b5f6106bf611365565b90506106d7883084896106d291906118ff565b610cdf565b5f82148061071057505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b1561072f5761072a88838861072591906118ff565b6111a2565b610745565b61073988876111a2565b610744888284610d6a565b5b60019250505095945050505050565b5f3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461078e575f6107c2565b6107966104d0565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6107c19190611b50565b5b9050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610816610fd6565b61081f5f611369565b565b6108338261082d610b15565b83610cdf565b61083d82826111a2565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610878906118a2565b80601f01602080910402602001604051908101604052809291908181526020018280546108a4906118a2565b80156108ef5780601f106108c6576101008083540402835291602001916108ef565b820191905f5260205f20905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b5f80610903610b15565b90505f6109108286610a11565b905083811015610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c90611bf3565b60405180910390fd5b6109628286868403610b1c565b60019250505092915050565b5f80610978610b15565b9050610985818585610d6a565b600191505092915050565b5f3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f690611c5b565b60405180910390fd5b610a09838361142c565b905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a9b610fd6565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090611ce9565b60405180910390fd5b610b1281611369565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8190611d77565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90611e05565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cd291906115fc565b60405180910390a3505050565b5f610cea8484610a11565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d645781811015610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90611e6d565b60405180910390fd5b610d638484848403610b1c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90611efb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90611f89565b60405180910390fd5b610e51838383611433565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90612017565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fbd91906115fc565b60405180910390a3610fd0848484611438565b50505050565b610fde610b15565b73ffffffffffffffffffffffffffffffffffffffff16610ffc610841565b73ffffffffffffffffffffffffffffffffffffffff1614611052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110499061207f565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b9906120e7565b60405180910390fd5b6110cd5f8383611433565b8060025f8282546110de91906118ff565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161118b91906115fc565b60405180910390a361119e5f8383611438565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790612175565b60405180910390fd5b61121b825f83611433565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129590612203565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161134d91906115fc565b60405180910390a3611360835f84611438565b505050565b5f90565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f92915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611474578082015181840152602081019050611459565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6114998261143d565b6114a38185611447565b93506114b3818560208601611457565b6114bc8161147f565b840191505092915050565b5f6020820190508181035f8301526114df818461148f565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611518826114ef565b9050919050565b6115288161150e565b8114611532575f80fd5b50565b5f813590506115438161151f565b92915050565b5f819050919050565b61155b81611549565b8114611565575f80fd5b50565b5f8135905061157681611552565b92915050565b5f8060408385031215611592576115916114e7565b5b5f61159f85828601611535565b92505060206115b085828601611568565b9150509250929050565b5f8115159050919050565b6115ce816115ba565b82525050565b5f6020820190506115e75f8301846115c5565b92915050565b6115f681611549565b82525050565b5f60208201905061160f5f8301846115ed565b92915050565b5f805f6060848603121561162c5761162b6114e7565b5b5f61163986828701611535565b935050602061164a86828701611535565b925050604061165b86828701611568565b9150509250925092565b5f60ff82169050919050565b61167a81611665565b82525050565b5f6020820190506116935f830184611671565b92915050565b5f602082840312156116ae576116ad6114e7565b5b5f6116bb84828501611568565b91505092915050565b5f6116ce8261150e565b9050919050565b6116de816116c4565b81146116e8575f80fd5b50565b5f813590506116f9816116d5565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126117205761171f6116ff565b5b8235905067ffffffffffffffff81111561173d5761173c611703565b5b60208301915083600182028301111561175957611758611707565b5b9250929050565b5f805f805f60808688031215611779576117786114e7565b5b5f611786888289016116eb565b955050602061179788828901611535565b94505060406117a888828901611568565b935050606086013567ffffffffffffffff8111156117c9576117c86114eb565b5b6117d58882890161170b565b92509250509295509295909350565b5f602082840312156117f9576117f86114e7565b5b5f61180684828501611535565b91505092915050565b6118188161150e565b82525050565b5f6020820190506118315f83018461180f565b92915050565b5f806040838503121561184d5761184c6114e7565b5b5f61185a85828601611535565b925050602061186b85828601611535565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806118b957607f821691505b6020821081036118cc576118cb611875565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61190982611549565b915061191483611549565b925082820190508082111561192c5761192b6118d2565b5b92915050565b7f4552433230466c6173684d696e743a20616d6f756e742065786365656473206d5f8201527f6178466c6173684c6f616e000000000000000000000000000000000000000000602082015250565b5f61198c602b83611447565b915061199782611932565b604082019050919050565b5f6020820190508181035f8301526119b981611980565b9050919050565b5f82825260208201905092915050565b828183375f83830152505050565b5f6119e983856119c0565b93506119f68385846119d0565b6119ff8361147f565b840190509392505050565b5f60a082019050611a1d5f83018961180f565b611a2a602083018861180f565b611a3760408301876115ed565b611a4460608301866115ed565b8181036080830152611a578184866119de565b9050979650505050505050565b5f819050919050565b611a7681611a64565b8114611a80575f80fd5b50565b5f81519050611a9181611a6d565b92915050565b5f60208284031215611aac57611aab6114e7565b5b5f611ab984828501611a83565b91505092915050565b7f4552433230466c6173684d696e743a20696e76616c69642072657475726e20765f8201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b5f611b1c602483611447565b9150611b2782611ac2565b604082019050919050565b5f6020820190508181035f830152611b4981611b10565b9050919050565b5f611b5a82611549565b9150611b6583611549565b9250828203905081811115611b7d57611b7c6118d2565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611bdd602583611447565b9150611be882611b83565b604082019050919050565b5f6020820190508181035f830152611c0a81611bd1565b9050919050565b7f4552433230466c6173684d696e743a2077726f6e6720746f6b656e00000000005f82015250565b5f611c45601b83611447565b9150611c5082611c11565b602082019050919050565b5f6020820190508181035f830152611c7281611c39565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611cd3602683611447565b9150611cde82611c79565b604082019050919050565b5f6020820190508181035f830152611d0081611cc7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611d61602483611447565b9150611d6c82611d07565b604082019050919050565b5f6020820190508181035f830152611d8e81611d55565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611def602283611447565b9150611dfa82611d95565b604082019050919050565b5f6020820190508181035f830152611e1c81611de3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611e57601d83611447565b9150611e6282611e23565b602082019050919050565b5f6020820190508181035f830152611e8481611e4b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611ee5602583611447565b9150611ef082611e8b565b604082019050919050565b5f6020820190508181035f830152611f1281611ed9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611f73602383611447565b9150611f7e82611f19565b604082019050919050565b5f6020820190508181035f830152611fa081611f67565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612001602683611447565b915061200c82611fa7565b604082019050919050565b5f6020820190508181035f83015261202e81611ff5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612069602083611447565b915061207482612035565b602082019050919050565b5f6020820190508181035f8301526120968161205d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6120d1601f83611447565b91506120dc8261209d565b602082019050919050565b5f6020820190508181035f8301526120fe816120c5565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61215f602183611447565b915061216a82612105565b604082019050919050565b5f6020820190508181035f83015261218c81612153565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6121ed602283611447565b91506121f882612193565b604082019050919050565b5f6020820190508181035f83015261221a816121e1565b905091905056fea26469706673582212203a283baa1bc6cf32823ed17ad5fdd39d76e56903cb9b8a5c01759f8d6f69e92c64736f6c63430008140033

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.