ETH Price: $3,813.20 (+4.36%)
Gas: 11.9 Gwei

Token

ERC-20: Flax (FLX)
 

Overview

Max Total Supply

2,581,414.643655135674254279 FLX

Holders

31

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 FLX

Value
$0.00
0xdf998917f61091958feb554edff56add2fe0df77
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:
Coupon

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-16
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

// lib/openzeppelin-contracts/contracts/interfaces/draft-IERC6093.sol

// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

// lib/openzeppelin-contracts/contracts/utils/Context.sol

// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// src/Errors.sol

error UnauthorizedMinter(address minter, bool hasMintingRight);
error ExcessiveMinting (uint attemptedAmount, uint remaining);
error InvalidMintTarget(uint target);

// lib/openzeppelin-contracts/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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);
}

// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.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}.
 *
 * 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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

// src/Coupon.sol

contract Coupon is ERC20, Ownable {
    mapping(address => bool) public minters;

    constructor(string memory name, string memory symbol) ERC20(name, symbol) Ownable(msg.sender) {
    }

    function setMinter(address minter, bool canMint) public onlyOwner {
        minters[minter] = canMint;
    }

    function mint(uint256 amount, address recipient) public {
        // Check if the caller is a minter, if not, revert with custom error
        if (!minters[msg.sender]) {
            revert UnauthorizedMinter(msg.sender, minters[msg.sender]);
        }
        _mint(recipient, amount);
    }

    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"bool","name":"hasMintingRight","type":"bool"}],"name":"UnauthorizedMinter","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"bool","name":"canMint","type":"bool"}],"name":"setMinter","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":"value","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":"value","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"}]

608060405234801562000010575f80fd5b50604051620010ba380380620010ba8339810160408190526200003391620001a7565b338282600362000044838262000299565b50600462000053828262000299565b5050506001600160a01b0381166200008457604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6200008f8162000098565b50505062000361565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126200010d575f80fd5b81516001600160401b03808211156200012a576200012a620000e9565b604051601f8301601f19908116603f01168101908282118183101715620001555762000155620000e9565b8160405283815260209250868385880101111562000171575f80fd5b5f91505b8382101562000194578582018301518183018401529082019062000175565b5f93810190920192909252949350505050565b5f8060408385031215620001b9575f80fd5b82516001600160401b0380821115620001d0575f80fd5b620001de86838701620000fd565b93506020850151915080821115620001f4575f80fd5b506200020385828601620000fd565b9150509250929050565b600181811c908216806200022257607f821691505b6020821081036200024157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000294575f81815260208120601f850160051c810160208610156200026f5750805b601f850160051c820191505b8181101562000290578281556001016200027b565b5050505b505050565b81516001600160401b03811115620002b557620002b5620000e9565b620002cd81620002c684546200020d565b8462000247565b602080601f83116001811462000303575f8415620002eb5750858301515b5f19600386901b1c1916600185901b17855562000290565b5f85815260208120601f198616915b82811015620003335788860151825594840194600190910190840162000312565b50858210156200035157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b610d4b806200036f5f395ff3fe608060405234801561000f575f80fd5b50600436106100fb575f3560e01c80638da5cb5b11610093578063cf456ae711610063578063cf456ae71461021c578063dd62ed3e1461022f578063f2fde38b14610274578063f46eccc414610287575f80fd5b80638da5cb5b146101c657806394bf804d146101ee57806395d89b4114610201578063a9059cbb14610209575f80fd5b8063313ce567116100ce578063313ce5671461016557806342966c681461017457806370a0823114610189578063715018a6146101be575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b6101076102a9565b6040516101149190610ad8565b60405180910390f35b61013061012b366004610b69565b610339565b6040519015158152602001610114565b6002545b604051908152602001610114565b610130610160366004610b91565b610352565b60405160128152602001610114565b610187610182366004610bca565b610375565b005b610144610197366004610be1565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b610187610382565b60055460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610114565b6101876101fc366004610c01565b610395565b61010761040e565b610130610217366004610b69565b61041d565b61018761022a366004610c2b565b61042a565b61014461023d366004610c64565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b610187610282366004610be1565b610487565b610130610295366004610be1565b60066020525f908152604090205460ff1681565b6060600380546102b890610c8c565b80601f01602080910402602001604051908101604052809291908181526020018280546102e490610c8c565b801561032f5780601f106103065761010080835404028352916020019161032f565b820191905f5260205f20905b81548152906001019060200180831161031257829003601f168201915b5050505050905090565b5f336103468185856104e7565b60019150505b92915050565b5f3361035f8582856104f9565b61036a8585856105c6565b506001949350505050565b61037f338261066f565b50565b61038a6106c9565b6103935f61071c565b565b335f9081526006602052604090205460ff1661040057335f81815260066020526040908190205490517faa2a1a6f000000000000000000000000000000000000000000000000000000008152600481019290925260ff16151560248201526044015b60405180910390fd5b61040a8183610792565b5050565b6060600480546102b890610c8c565b5f336103468185856105c6565b6104326106c9565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b61048f6106c9565b73ffffffffffffffffffffffffffffffffffffffff81166104de576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f60048201526024016103f7565b61037f8161071c565b6104f483838360016107ec565b505050565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105c057818110156105b2576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416600482015260248101829052604481018390526064016103f7565b6105c084848484035f6107ec565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610615576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f60048201526024016103f7565b73ffffffffffffffffffffffffffffffffffffffff8216610664576040517fec442f050000000000000000000000000000000000000000000000000000000081525f60048201526024016103f7565b6104f4838383610931565b73ffffffffffffffffffffffffffffffffffffffff82166106be576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f60048201526024016103f7565b61040a825f83610931565b60055473ffffffffffffffffffffffffffffffffffffffff163314610393576040517f118cdaa70000000000000000000000000000000000000000000000000000000081523360048201526024016103f7565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b73ffffffffffffffffffffffffffffffffffffffff82166107e1576040517fec442f050000000000000000000000000000000000000000000000000000000081525f60048201526024016103f7565b61040a5f8383610931565b73ffffffffffffffffffffffffffffffffffffffff841661083b576040517fe602df050000000000000000000000000000000000000000000000000000000081525f60048201526024016103f7565b73ffffffffffffffffffffffffffffffffffffffff831661088a576040517f94280d620000000000000000000000000000000000000000000000000000000081525f60048201526024016103f7565b73ffffffffffffffffffffffffffffffffffffffff8085165f90815260016020908152604080832093871683529290522082905580156105c0578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161092391815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8316610968578060025f82825461095d9190610cdd565b90915550610a189050565b73ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054818110156109ed576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8516600482015260248101829052604481018390526064016103f7565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff8216610a4157600280548290039055610a6c565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610acb91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610b0357858101830151858201604001528201610ae7565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610b64575f80fd5b919050565b5f8060408385031215610b7a575f80fd5b610b8383610b41565b946020939093013593505050565b5f805f60608486031215610ba3575f80fd5b610bac84610b41565b9250610bba60208501610b41565b9150604084013590509250925092565b5f60208284031215610bda575f80fd5b5035919050565b5f60208284031215610bf1575f80fd5b610bfa82610b41565b9392505050565b5f8060408385031215610c12575f80fd5b82359150610c2260208401610b41565b90509250929050565b5f8060408385031215610c3c575f80fd5b610c4583610b41565b915060208301358015158114610c59575f80fd5b809150509250929050565b5f8060408385031215610c75575f80fd5b610c7e83610b41565b9150610c2260208401610b41565b600181811c90821680610ca057607f821691505b602082108103610cd7577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b8082018082111561034c577f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffdfea2646970667358221220ccb8ad107a8e47b63258b517e5213148103bf2d97384f18165fdb2926a0c074364736f6c63430008140033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004466c6178000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003464c580000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fb575f3560e01c80638da5cb5b11610093578063cf456ae711610063578063cf456ae71461021c578063dd62ed3e1461022f578063f2fde38b14610274578063f46eccc414610287575f80fd5b80638da5cb5b146101c657806394bf804d146101ee57806395d89b4114610201578063a9059cbb14610209575f80fd5b8063313ce567116100ce578063313ce5671461016557806342966c681461017457806370a0823114610189578063715018a6146101be575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b6101076102a9565b6040516101149190610ad8565b60405180910390f35b61013061012b366004610b69565b610339565b6040519015158152602001610114565b6002545b604051908152602001610114565b610130610160366004610b91565b610352565b60405160128152602001610114565b610187610182366004610bca565b610375565b005b610144610197366004610be1565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b610187610382565b60055460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610114565b6101876101fc366004610c01565b610395565b61010761040e565b610130610217366004610b69565b61041d565b61018761022a366004610c2b565b61042a565b61014461023d366004610c64565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b610187610282366004610be1565b610487565b610130610295366004610be1565b60066020525f908152604090205460ff1681565b6060600380546102b890610c8c565b80601f01602080910402602001604051908101604052809291908181526020018280546102e490610c8c565b801561032f5780601f106103065761010080835404028352916020019161032f565b820191905f5260205f20905b81548152906001019060200180831161031257829003601f168201915b5050505050905090565b5f336103468185856104e7565b60019150505b92915050565b5f3361035f8582856104f9565b61036a8585856105c6565b506001949350505050565b61037f338261066f565b50565b61038a6106c9565b6103935f61071c565b565b335f9081526006602052604090205460ff1661040057335f81815260066020526040908190205490517faa2a1a6f000000000000000000000000000000000000000000000000000000008152600481019290925260ff16151560248201526044015b60405180910390fd5b61040a8183610792565b5050565b6060600480546102b890610c8c565b5f336103468185856105c6565b6104326106c9565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b61048f6106c9565b73ffffffffffffffffffffffffffffffffffffffff81166104de576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f60048201526024016103f7565b61037f8161071c565b6104f483838360016107ec565b505050565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105c057818110156105b2576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8416600482015260248101829052604481018390526064016103f7565b6105c084848484035f6107ec565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610615576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f60048201526024016103f7565b73ffffffffffffffffffffffffffffffffffffffff8216610664576040517fec442f050000000000000000000000000000000000000000000000000000000081525f60048201526024016103f7565b6104f4838383610931565b73ffffffffffffffffffffffffffffffffffffffff82166106be576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f60048201526024016103f7565b61040a825f83610931565b60055473ffffffffffffffffffffffffffffffffffffffff163314610393576040517f118cdaa70000000000000000000000000000000000000000000000000000000081523360048201526024016103f7565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b73ffffffffffffffffffffffffffffffffffffffff82166107e1576040517fec442f050000000000000000000000000000000000000000000000000000000081525f60048201526024016103f7565b61040a5f8383610931565b73ffffffffffffffffffffffffffffffffffffffff841661083b576040517fe602df050000000000000000000000000000000000000000000000000000000081525f60048201526024016103f7565b73ffffffffffffffffffffffffffffffffffffffff831661088a576040517f94280d620000000000000000000000000000000000000000000000000000000081525f60048201526024016103f7565b73ffffffffffffffffffffffffffffffffffffffff8085165f90815260016020908152604080832093871683529290522082905580156105c0578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161092391815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8316610968578060025f82825461095d9190610cdd565b90915550610a189050565b73ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054818110156109ed576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8516600482015260248101829052604481018390526064016103f7565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff8216610a4157600280548290039055610a6c565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610acb91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015610b0357858101830151858201604001528201610ae7565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610b64575f80fd5b919050565b5f8060408385031215610b7a575f80fd5b610b8383610b41565b946020939093013593505050565b5f805f60608486031215610ba3575f80fd5b610bac84610b41565b9250610bba60208501610b41565b9150604084013590509250925092565b5f60208284031215610bda575f80fd5b5035919050565b5f60208284031215610bf1575f80fd5b610bfa82610b41565b9392505050565b5f8060408385031215610c12575f80fd5b82359150610c2260208401610b41565b90509250929050565b5f8060408385031215610c3c575f80fd5b610c4583610b41565b915060208301358015158114610c59575f80fd5b809150509250929050565b5f8060408385031215610c75575f80fd5b610c7e83610b41565b9150610c2260208401610b41565b600181811c90821680610ca057607f821691505b602082108103610cd7577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b8082018082111561034c577f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffdfea2646970667358221220ccb8ad107a8e47b63258b517e5213148103bf2d97384f18165fdb2926a0c074364736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004466c6178000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003464c580000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Flax
Arg [1] : symbol (string): FLX

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 466c617800000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 464c580000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

25689:707:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16290:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18583:190;;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;18583:190:0;1086:187:1;17392:99:0;17471:12;;17392:99;;;1424:25:1;;;1412:2;1397:18;17392:99:0;1278:177:1;19383:249:0;;;;;;:::i;:::-;;:::i;17243:84::-;;;17317:2;1935:36:1;;1923:2;1908:18;17243:84:0;1793:184:1;26312:81:0;;;;;;:::i;:::-;;:::i;:::-;;17554:118;;;;;;:::i;:::-;17646:18;;17619:7;17646:18;;;;;;;;;;;;17554:118;13146:103;;;:::i;12471:87::-;12544:6;;12471:87;;12544:6;;;;2504:74:1;;2492:2;2477:18;12471:87:0;2358:226:1;26006:298:0;;;;;;:::i;:::-;;:::i;16500:95::-;;;:::i;17877:182::-;;;;;;:::i;:::-;;:::i;25888:110::-;;;;;;:::i;:::-;;:::i;18122:142::-;;;;;;:::i;:::-;18229:18;;;;18202:7;18229:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18122:142;13404:220;;;;;;:::i;:::-;;:::i;25730:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;16290:91;16335:13;16368:5;16361:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16290:91;:::o;18583:190::-;18656:4;10394:10;18712:31;10394:10;18728:7;18737:5;18712:8;:31::i;:::-;18761:4;18754:11;;;18583:190;;;;;:::o;19383:249::-;19470:4;10394:10;19528:37;19544:4;10394:10;19559:5;19528:15;:37::i;:::-;19576:26;19586:4;19592:2;19596:5;19576:9;:26::i;:::-;-1:-1:-1;19620:4:0;;19383:249;-1:-1:-1;;;;19383:249:0:o;26312:81::-;26360:25;26366:10;26378:6;26360:5;:25::i;:::-;26312:81;:::o;13146:103::-;12357:13;:11;:13::i;:::-;13211:30:::1;13238:1;13211:18;:30::i;:::-;13146:103::o:0;26006:298::-;26164:10;26156:19;;;;:7;:19;;;;;;;;26151:111;;26218:10;26230:19;;;;:7;:19;;;;;;;;26199:51;;;;;;;;4075:74:1;;;;26230:19:0;;4192:14:1;4185:22;4165:18;;;4158:50;4048:18;;26199:51:0;;;;;;;;26151:111;26272:24;26278:9;26289:6;26272:5;:24::i;:::-;26006:298;;:::o;16500:95::-;16547:13;16580:7;16573:14;;;;;:::i;17877:182::-;17946:4;10394:10;18002:27;10394:10;18019:2;18023:5;18002:9;:27::i;25888:110::-;12357:13;:11;:13::i;:::-;25965:15:::1;::::0;;;::::1;;::::0;;;:7:::1;:15;::::0;;;;:25;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;25888:110::o;13404:220::-;12357:13;:11;:13::i;:::-;13489:22:::1;::::0;::::1;13485:93;;13535:31;::::0;::::1;::::0;;13563:1:::1;13535:31;::::0;::::1;2504:74:1::0;2477:18;;13535:31:0::1;2358:226:1::0;13485:93:0::1;13588:28;13607:8;13588:18;:28::i;23442:130::-:0;23527:37;23536:5;23543:7;23552:5;23559:4;23527:8;:37::i;:::-;23442:130;;;:::o;25174:487::-;18229:18;;;;25274:24;18229:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;25361:17;25341:37;;25337:317;;25418:5;25399:16;:24;25395:132;;;25451:60;;;;;4451:42:1;4439:55;;25451:60:0;;;4421:74:1;4511:18;;;4504:34;;;4554:18;;;4547:34;;;4394:18;;25451:60:0;4219:368:1;25395:132:0;25570:57;25579:5;25586:7;25614:5;25595:16;:24;25621:5;25570:8;:57::i;:::-;25263:398;25174:487;;;:::o;20017:308::-;20101:18;;;20097:88;;20143:30;;;;;20170:1;20143:30;;;2504:74:1;2477:18;;20143:30:0;2358:226:1;20097:88:0;20199:16;;;20195:88;;20239:32;;;;;20268:1;20239:32;;;2504:74:1;2477:18;;20239:32:0;2358:226:1;20195:88:0;20293:24;20301:4;20307:2;20311:5;20293:7;:24::i;22678:211::-;22749:21;;;22745:91;;22794:30;;;;;22821:1;22794:30;;;2504:74:1;2477:18;;22794:30:0;2358:226:1;22745:91:0;22846:35;22854:7;22871:1;22875:5;22846:7;:35::i;12636:166::-;12544:6;;12696:23;12544:6;10394:10;12696:23;12692:103;;12743:40;;;;;10394:10;12743:40;;;2504:74:1;2477:18;;12743:40:0;2358:226:1;13784:191:0;13877:6;;;;13894:17;;;;;;;;;;;13927:40;;13877:6;;;13894:17;13877:6;;13927:40;;13858:16;;13927:40;13847:128;13784:191;:::o;22137:213::-;22208:21;;;22204:93;;22253:32;;;;;22282:1;22253:32;;;2504:74:1;2477:18;;22253:32:0;2358:226:1;22204:93:0;22307:35;22323:1;22327:7;22336:5;22307:7;:35::i;24439:443::-;24552:19;;;24548:91;;24595:32;;;;;24624:1;24595:32;;;2504:74:1;2477:18;;24595:32:0;2358:226:1;24548:91:0;24653:21;;;24649:92;;24698:31;;;;;24726:1;24698:31;;;2504:74:1;2477:18;;24698:31:0;2358:226:1;24649:92:0;24751:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;24797:78;;;;24848:7;24832:31;;24841:5;24832:31;;;24857:5;24832:31;;;;1424:25:1;;1412:2;1397:18;;1278:177;24832:31:0;;;;;;;;24439:443;;;;:::o;20649:1135::-;20739:18;;;20735:552;;20893:5;20877:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;20735:552:0;;-1:-1:-1;20735:552:0;;20953:15;;;20931:19;20953:15;;;;;;;;;;;20987:19;;;20983:117;;;21034:50;;;;;4451:42:1;4439:55;;21034:50:0;;;4421:74:1;4511:18;;;4504:34;;;4554:18;;;4547:34;;;4394:18;;21034:50:0;4219:368:1;20983:117:0;21223:15;;;:9;:15;;;;;;;;;;21241:19;;;;21223:37;;20735:552;21303:16;;;21299:435;;21469:12;:21;;;;;;;21299:435;;;21685:13;;;:9;:13;;;;;;;;;;:22;;;;;;21299:435;21766:2;21751:25;;21760:4;21751:25;;;21770:5;21751:25;;;;1424::1;;1412:2;1397:18;;1278:177;21751:25:0;;;;;;;;20649:1135;;;:::o;14:607:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:254::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:1:o;1460:328::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1645:29;1664:9;1645:29;:::i;:::-;1635:39;;1693:38;1727:2;1716:9;1712:18;1693:38;:::i;:::-;1683:48;;1778:2;1767:9;1763:18;1750:32;1740:42;;1460:328;;;;;:::o;1982:180::-;2041:6;2094:2;2082:9;2073:7;2069:23;2065:32;2062:52;;;2110:1;2107;2100:12;2062:52;-1:-1:-1;2133:23:1;;1982:180;-1:-1:-1;1982:180:1:o;2167:186::-;2226:6;2279:2;2267:9;2258:7;2254:23;2250:32;2247:52;;;2295:1;2292;2285:12;2247:52;2318:29;2337:9;2318:29;:::i;:::-;2308:39;2167:186;-1:-1:-1;;;2167:186:1:o;2589:254::-;2657:6;2665;2718:2;2706:9;2697:7;2693:23;2689:32;2686:52;;;2734:1;2731;2724:12;2686:52;2770:9;2757:23;2747:33;;2799:38;2833:2;2822:9;2818:18;2799:38;:::i;:::-;2789:48;;2589:254;;;;;:::o;2848:347::-;2913:6;2921;2974:2;2962:9;2953:7;2949:23;2945:32;2942:52;;;2990:1;2987;2980:12;2942:52;3013:29;3032:9;3013:29;:::i;:::-;3003:39;;3092:2;3081:9;3077:18;3064:32;3139:5;3132:13;3125:21;3118:5;3115:32;3105:60;;3161:1;3158;3151:12;3105:60;3184:5;3174:15;;;2848:347;;;;;:::o;3200:260::-;3268:6;3276;3329:2;3317:9;3308:7;3304:23;3300:32;3297:52;;;3345:1;3342;3335:12;3297:52;3368:29;3387:9;3368:29;:::i;:::-;3358:39;;3416:38;3450:2;3439:9;3435:18;3416:38;:::i;3465:437::-;3544:1;3540:12;;;;3587;;;3608:61;;3662:4;3654:6;3650:17;3640:27;;3608:61;3715:2;3707:6;3704:14;3684:18;3681:38;3678:218;;3752:77;3749:1;3742:88;3853:4;3850:1;3843:15;3881:4;3878:1;3871:15;3678:218;;3465:437;;;:::o;4592:279::-;4657:9;;;4678:10;;;4675:190;;;4721:77;4718:1;4711:88;4822:4;4819:1;4812:15;4850:4;4847:1;4840:15

Swarm Source

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