ETH Price: $2,655.84 (-5.37%)
    /

    Token

    Roach Racing Club (bTRAX)

    Overview

    Max Total Supply

    223,737.00000000000000001 bTRAX

    Holders

    2,463

    Market

    Price

    $0.00 @ 0.000000 ETH

    Onchain Market Cap

    $0.00

    Circulating Supply Market Cap

    -

    Other Info

    Token Contract (WITH 18 Decimals)

    Balance
    95 bTRAX

    Value
    $0.00
    0x1BdE3D2861Cb5216Eb6Ec559aFdE7d44f385D4f6
    Loading...
    Loading
    Loading...
    Loading
    Loading...
    Loading

    Click here to update the token information / general information
    This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

    Contract Source Code Verified (Exact Match)

    Contract Name:
    TRAX

    Compiler Version
    v0.8.24+commit.e11b9ed9

    ZkSolc Version
    v1.5.7

    Optimization Enabled:
    Yes with Mode 3

    Other Settings:
    paris EvmVersion
    File 1 of 13 : TRAX.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // Roach Racing Club: gamified trading competitions, where trading becomes a fun,
    // fast-paced game set in the wicked Nanoverse (https://roachracingclub.com)
    /*
    ..::--------::..
    .:--------------------::
    :----------------------------:
    .:---------------------------------.
    :-------------------------------------
    .----------------------------------------:
    :------------------------------------------:
    :--===----------------------------------===--:
    .--+@@@@%%#+=----------------------=+*#%@@@@+--:
    ---@@@@@@@@@@@#+----------------+#@@@@@@@@@@@=--
    :--+@@@@@@@@@@@@@@#+----------=#@@@@@@@@@@@@@@*--:
    ---#@@@@@@@@@@@@@@@@%+------=%@@@@@@@@@@@@@@@@%---
    -----==+*%@@@@@@@@@@@@%=--=#@@@@@@@@@@@@%*++=-----
    -----------=*@@@@@@@@@@@*+@@@@@@@@@@@#+-----------
    :-------------+%@@@@@@@@@@@@@@@@@@%+-------------:
    ---------------*@@@@@@@@@@@@@@@@*---------------
    :---------------=@@@@@@@@@@@@@@+---------------:
    :---------------=@@@@@@@@@@@@=----------------
    :---------------+@@@@@@@@@@*---------------:
    :---------------%@@@@@@@@@---------------:
    --------------#@@@@@@@@%--------------.
    .------------#@@@@@@@@#------------.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 13 : AccessControl.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)
    pragma solidity ^0.8.20;
    import {IAccessControl} from "./IAccessControl.sol";
    import {Context} from "../utils/Context.sol";
    import {ERC165} from "../utils/introspection/ERC165.sol";
    /**
    * @dev Contract module that allows children to implement role-based access
    * control mechanisms. This is a lightweight version that doesn't allow enumerating role
    * members except through off-chain means by accessing the contract event logs. Some
    * applications may benefit from on-chain enumerability, for those cases see
    * {AccessControlEnumerable}.
    *
    * Roles are referred to by their `bytes32` identifier. These should be exposed
    * in the external API and be unique. The best way to achieve this is by
    * using `public constant` hash digests:
    *
    * ```solidity
    * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
    * ```
    *
    * Roles can be used to represent a set of permissions. To restrict access to a
    * function call, use {hasRole}:
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 13 : ERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/ERC20.sol)
    pragma solidity ^0.8.20;
    import {IERC20} from "./IERC20.sol";
    import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
    import {Context} from "../../utils/Context.sol";
    import {IERC20Errors} from "../../interfaces/draft-IERC6093.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
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 13 : ERC20Pausable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC20Pausable.sol)
    pragma solidity ^0.8.20;
    import {ERC20} from "../ERC20.sol";
    import {Pausable} from "../../../utils/Pausable.sol";
    /**
    * @dev ERC-20 token with pausable token transfers, minting and burning.
    *
    * Useful for scenarios such as preventing trades until the end of an evaluation
    * period, or having an emergency switch for freezing all token transfers in the
    * event of a large bug.
    *
    * IMPORTANT: This contract does not include public pause and unpause functions. In
    * addition to inheriting this contract, you must define both functions, invoking the
    * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate
    * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will
    * make the contract pause mechanism of the contract unreachable, and thus unusable.
    */
    abstract contract ERC20Pausable is ERC20, Pausable {
    /**
    * @dev See {ERC20-_update}.
    *
    * Requirements:
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 5 of 13 : ERC20Burnable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)
    pragma solidity ^0.8.20;
    import {ERC20} from "../ERC20.sol";
    import {Context} from "../../../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 a `value` amount of tokens from the caller.
    *
    * See {ERC20-_burn}.
    */
    function burn(uint256 value) public virtual {
    _burn(_msgSender(), value);
    }
    /**
    * @dev Destroys a `value` amount of tokens from `account`, deducting from
    * the caller's allowance.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 6 of 13 : Context.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
    pragma solidity ^0.8.20;
    /**
    * @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;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 7 of 13 : draft-IERC6093.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
    pragma solidity ^0.8.20;
    /**
    * @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.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 8 of 13 : ERC165.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)
    pragma solidity ^0.8.20;
    import {IERC165} from "./IERC165.sol";
    /**
    * @dev Implementation of the {IERC165} interface.
    *
    * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check
    * for the additional interface id that will be supported. For example:
    *
    * ```solidity
    * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
    * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
    * }
    * ```
    */
    abstract contract ERC165 is IERC165 {
    /**
    * @dev See {IERC165-supportsInterface}.
    */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
    return interfaceId == type(IERC165).interfaceId;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 9 of 13 : Pausable.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol)
    pragma solidity ^0.8.20;
    import {Context} from "../utils/Context.sol";
    /**
    * @dev Contract module which allows children to implement an emergency stop
    * mechanism that can be triggered by an authorized account.
    *
    * This module is used through inheritance. It will make available the
    * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
    * the functions of your contract. Note that they will not be pausable by
    * simply including this module, only once the modifiers are put in place.
    */
    abstract contract Pausable is Context {
    bool private _paused;
    /**
    * @dev Emitted when the pause is triggered by `account`.
    */
    event Paused(address account);
    /**
    * @dev Emitted when the pause is lifted by `account`.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 10 of 13 : IAccessControl.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (access/IAccessControl.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev External interface of AccessControl declared to support ERC-165 detection.
    */
    interface IAccessControl {
    /**
    * @dev The `account` is missing a role.
    */
    error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);
    /**
    * @dev The caller of a function is not the expected one.
    *
    * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
    */
    error AccessControlBadConfirmation();
    /**
    * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
    *
    * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
    * {RoleAdminChanged} not being emitted signaling this.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 11 of 13 : IERC20.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)
    pragma solidity ^0.8.20;
    /**
    * @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.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 12 of 13 : IERC20Metadata.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)
    pragma solidity ^0.8.20;
    import {IERC20} from "../IERC20.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);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 13 of 13 : IERC165.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)
    pragma solidity ^0.8.20;
    /**
    * @dev Interface of the ERC-165 standard, as defined in the
    * https://eips.ethereum.org/EIPS/eip-165[ERC].
    *
    * Implementers can declare support of contract interfaces, which can then be
    * queried by others ({ERC165Checker}).
    *
    * For an implementation, see {ERC165}.
    */
    interface IERC165 {
    /**
    * @dev Returns true if this contract implements the interface defined by
    * `interfaceId`. See the corresponding
    * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]
    * to learn more about how these ids are created.
    *
    * This function call must use less than 30 000 gas.
    */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    {
    "evmVersion": "paris",
    "optimizer": {
    "enabled": true,
    "mode": "3"
    },
    "outputSelection": {
    "*": {
    "*": [
    "abi",
    "metadata"
    ],
    "": [
    "ast"
    ]
    }
    },
    "detectMissingLibraries": false,
    "forceEVMLA": false,
    "enableEraVMExtensions": false,
    "libraries": {}
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract Security Audit

    Contract ABI

    [{"inputs":[{"internalType":"address","name":"defaultAdmin","type":"address"},{"internalType":"address","name":"minter","type":"address"},{"internalType":"address","name":"_signerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"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":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"IdUsed","type":"error"},{"inputs":[],"name":"MintLimit","type":"error"},{"inputs":[],"name":"TransfersNotAllowed","type":"error"},{"inputs":[],"name":"WrongSignature","type":"error"},{"inputs":[],"name":"ZeroAddress","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"param","type":"uint256"}],"name":"Used","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"mintLimitPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimitPerTx","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"param","type":"uint256"},{"internalType":"uint8","name":"sigV","type":"uint8"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"}],"name":"use","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"param","type":"uint256"},{"internalType":"uint8","name":"sigV","type":"uint8"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"}],"name":"useFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

    9c4d535b000000000000000000000000000000000000000000000000000000000000000001000267fe0dee3f252593dbdebc487dfc03c3138443a24c12df3034ef3448f30000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000ef80626c6406ec0bf9720e2e81c066396c0000000000000000000000000100000ec0732d3a7b69660aa85dbaddd672879f000000000000000000000000020000dc5611f4258cb9c0b0d0da971cdba8b96a9

    Deployed Bytecode

    0x0001000000000002000900000000000200000000000103550000006003100270000002060330019700000001002001900000001f0000c13d0000008002000039000000400020043f000000040030008c000002eb0000413d000000000201043b000000e0022002700000021c0020009c000000650000a13d0000021d0020009c000000b40000a13d0000021e0020009c000000d90000213d000002240020009c000001740000213d000002270020009c0000029e0000613d000002280020009c000002eb0000c13d0000000001000416000000000001004b000002eb0000c13d000000800000043f0000024501000041000008150001042e0000000002000416000000000002004b000002eb0000c13d0000001f0230003900000207022001970000008002200039000000400020043f0000001f0430018f00000208053001980000008002500039000000300000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b0000002c0000c13d000000000004004b0000003d0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600030008c000002eb0000413d000000800600043d000002090060009c000002eb0000213d000000a00100043d000900000001001d000002090010009c000002eb0000213d000000c00100043d000800000001001d000002090010009c000002eb0000213d000000400300043d0000020a0030009c0000005f0000213d0000004001300039000000400010043f000000110100003900000000091304360000020b010000410000000000190435000000400700043d0000020a0070009c0000005f0000213d0000004001700039000000400010043f000000050100003900000000041704360000020c01000041000000000014043500000000080304330000020d0080009c000002fe0000a13d0000021a01000041000000000010043f0000004101000039000000040010043f0000021b010000410000081600010430000002320020009c0000007d0000213d0000023c0020009c000000e60000a13d0000023d0020009c0000012d0000213d000002400020009c000001af0000613d000002410020009c000002eb0000c13d000000240030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000000401100370000000000101043b000000000010043f0000000901000039000000200010043f00000040020000390000000001000019081407f50000040f000002970000013d000002330020009c0000010c0000a13d000002340020009c0000014b0000213d000002370020009c000001c00000613d000002380020009c000002eb0000c13d000000440030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000000402100370000000000202043b000900000002001d000002090020009c000002eb0000213d0000002401100370000000000101043b000800000001001d0000021501000041000000000010043f0000000601000039000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b000000000101041a000000ff00100190000003ea0000c13d000000400100043d00000024021000390000021503000041000002530000013d000002290020009c000001190000a13d0000022a0020009c000001580000213d0000022d0020009c000001e10000613d0000022e0020009c000002eb0000c13d0000000001000416000000000001004b000002eb0000c13d0000000001000411000000000010043f0000021001000041000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b000000000101041a000000ff00100190000003160000c13d000000400100043d0000024d02000041000000000021043500000004021000390000000003000411000000000032043500000024021000390000000000020435000002590000013d0000021f0020009c000001900000213d000002220020009c000002ab0000613d000002230020009c000002eb0000c13d0000000001000416000000000001004b000002eb0000c13d0000021501000041000000800010043f0000024501000041000008150001042e000002420020009c000002700000613d000002430020009c000002100000613d000002440020009c000002eb0000c13d0000000001000416000000000001004b000002eb0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000003080000c13d000000800010043f000000000005004b0000016e0000613d000000000030043f000000020020008c000003340000413d000002570200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000001030000413d000003bd0000013d000002390020009c000002810000613d0000023a0020009c000002150000613d0000023b0020009c000002eb0000c13d0000000001000416000000000001004b000002eb0000c13d0000001201000039000000800010043f0000024501000041000008150001042e0000022f0020009c000002930000613d000002300020009c0000025e0000613d000002310020009c000002eb0000c13d000000240030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000000401100370000000000101043b000002090010009c000002eb0000213d000000000010043f000000200000043f00000040020000390000000001000019000001ad0000013d0000023e0020009c000001d10000613d0000023f0020009c000002eb0000c13d000000640030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000000402100370000000000202043b000002090020009c000002eb0000213d00000000040200190000002402100370000000000202043b000900000002001d000002090020009c000002eb0000213d0000004401100370000000000301043b00000000020004110000000001040019000800000004001d081405ad0000040f000000080000006b000003cf0000c13d000000400100043d0000024a02000041000003d30000013d000002350020009c000001d60000613d000002360020009c000002eb0000c13d0000000001000416000000000001004b000002eb0000c13d0000000801000039000000000101041a0000020901100197000000800010043f0000024501000041000008150001042e0000022b0020009c000001f70000613d0000022c0020009c000002eb0000c13d0000000001000416000000000001004b000002eb0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000003080000c13d000000800010043f000000000005004b000003310000c13d0000025b01200197000000a00010043f000000000004004b000000c001000039000000a001006039000003be0000013d000002250020009c000002d30000613d000002260020009c000002eb0000c13d000000c40030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000006402100370000000000202043b000900000002001d000000ff0020008c000002eb0000213d0000000401100370000000000201043b000800000002001d0000000001000411081406b90000040f00000000010003670000002402100370000000000202043b0000004403100370000000000403043b0000008403100370000000000603043b000000a401100370000002cc0000013d000002200020009c000002e10000613d000002210020009c000002eb0000c13d000000440030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000000402100370000000000202043b000002090020009c000002eb0000213d0000002401100370000000000101043b000900000001001d000002090010009c000002eb0000213d000000000020043f0000000101000039000000200010043f00000040020000390000000001000019081407f50000040f0000000902000029000000000020043f000000200010043f00000000010000190000004002000039081407f50000040f0000028f0000013d000000440030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000000402100370000000000202043b000900000002001d000002090020009c000002eb0000213d0000002401100370000000000301043b0000000002000411000000000002004b0000030e0000c13d0000025601000041000003390000013d000000440030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000002402100370000000000302043b000002090030009c000002eb0000213d0000000002000411000000000023004b000003120000c13d0000000401100370000000000101043b081406680000040f0000000001000019000008150001042e0000000001000416000000000001004b000002eb0000c13d00000002010000390000028f0000013d000000240030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000000401100370000000000201043b0000000001000411081406b90000040f0000000001000019000008150001042e000000440030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000000402100370000000000202043b000002090020009c000002eb0000213d00000000040200190000002401100370000000000301043b000800000003001d00000000020004110000000001040019000900000004001d081405ad0000040f00000009010000290000000802000029081406b90000040f0000000001000019000008150001042e000000440030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000002402100370000000000202043b000900000002001d000002090020009c000002eb0000213d0000000401100370000000000101043b000000000010043f0000000601000039000000200010043f00000040020000390000000001000019081407f50000040f0000000902000029000000000020043f000000200010043f00000000010000190000004002000039081407f50000040f000002970000013d0000000001000416000000000001004b000002eb0000c13d00000007010000390000028f0000013d000000440030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000000402100370000000000202043b000900000002001d0000002401100370000000000101043b000800000001001d000002090010009c000002eb0000213d0000000901000029000000000010043f0000000601000039000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b0000000101100039000000000101041a000700000001001d000000000010043f0000000601000039000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b000000000101041a000000ff00100190000003f40000c13d000000400100043d0000002402100039000000070300002900000000003204350000024d020000410000000000210435000000040210003900000000030004110000000000320435000002060010009c000002060100804100000040011002100000024e011001c70000081600010430000000240030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000000401100370000000000101043b000900000001001d000002090010009c000002eb0000213d081406170000040f0000000801000039000000000201041a000002160220019700000009022001af000000000021041b0000000001000019000008150001042e000000240030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000000401100370000000000101043b0000025800100198000002eb0000c13d000002590010009c000000000200003900000001020060390000025a0010009c00000001022061bf000000800020043f0000024501000041000008150001042e000000240030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000000401100370000000000101043b000000000010043f0000000601000039000000200010043f00000040020000390000000001000019081407f50000040f0000000101100039000000000101041a000000800010043f0000024501000041000008150001042e0000000001000416000000000001004b000002eb0000c13d0000000501000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f0000024501000041000008150001042e000000240030008c000002eb0000413d0000000001000416000000000001004b000002eb0000c13d081406170000040f00000004010000390000000001100367000000000101043b0000000702000039000000000012041b0000000001000019000008150001042e000000e40030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000000402100370000000000202043b000002090020009c000002eb0000213d00000000040200190000008402100370000000000202043b000900000002001d000000ff0020008c000002eb0000213d0000002401100370000000000301043b000800000003001d00000000020004110000000001040019000700000004001d081405ad0000040f00000007010000290000000802000029081406b90000040f00000000010003670000004402100370000000000202043b0000006403100370000000000403043b000000a403100370000000000603043b000000c401100370000000000701043b000000080100002900000000030004110000000905000029081407200000040f0000000001000019000008150001042e000000440030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000000401100370000000000101043b000002090010009c000002eb0000213d0000000002000411000000000002004b000003360000c13d0000024a01000041000003390000013d000000440030008c000002eb0000413d0000000002000416000000000002004b000002eb0000c13d0000002402100370000000000202043b000900000002001d000002090020009c000002ed0000a13d000000000100001900000816000104300000000401100370000000000101043b000800000001001d000000000010043f0000000601000039000000200010043f00000040020000390000000001000019081407f50000040f0000000101100039000000000101041a081406380000040f00000008010000290000000902000029081406680000040f0000000001000019000008150001042e0000000305000039000000000105041a0000000102100190000000010a1002700000007f0aa0618f0000001f00a0008c00000000010000390000000101002039000000000012004b0000033d0000613d0000021a01000041000000000010043f0000002201000039000000040010043f0000021b010000410000081600010430000000090000006b0000037b0000c13d0000025501000041000003390000013d0000025201000041000000800010043f000002470100004100000816000104300000000501000039000000000201041a000000ff002001900000046e0000c13d0000025b0220019700000001022001bf000000000021041b000000400100043d00000000020004110000000000210435000002060010009c000002060100804100000040011002100000000002000414000002060020009c0000020602008041000000c002200210000000000112019f0000020e011001c70000800d0200003900000001030000390000024c040000410814080a0000040f0000000100200190000002eb0000613d0000000001000019000008150001042e000000000030043f000000020020008c000003b30000813d000000a001000039000003be0000013d000000000001004b000003db0000c13d0000024801000041000000800010043f000000840000043f000002490100004100000816000104300000002000a0008c000700000007001d000400000006001d000300000004001d000003650000413d00010000000a001d000200000009001d000500000008001d000600000003001d000000000050043f0000000001000414000002060010009c0000020601008041000000c0011002100000020e011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d00000005080000290000001f028000390000000502200270000000200080008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000707000029000000030500003900000006030000290000000209000029000003650000813d000000000002041b0000000102200039000000000012004b000003610000413d0000001f0080008c000003df0000a13d000500000008001d000600000003001d000000000050043f0000000001000414000002060010009c0000020601008041000000c0011002100000020e011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d00000005090000290000025c02900198000000000101043b0000000608000029000004760000c13d00000020030000390000000707000029000004830000013d000800000003001d000000000020043f0000000101000039000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b0000000802000029000000000021041b000000400100043d0000000000210435000002060010009c000002060100804100000040011002100000000002000414000002060020009c0000020602008041000000c002200210000000000112019f0000020e011001c70000800d0200003900000003030000390000025304000041000000000500041100000009060000290814080a0000040f0000000100200190000002eb0000613d000000400100043d00000001020000390000000000210435000002060010009c0000020601008041000000400110021000000254011001c7000008150001042e0000024b0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000003b50000413d000000c001300039000000800210008a0000008001000039081405930000040f000000400100043d000900000001001d00000080020000390814057e0000040f00000009020000290000000001210049000002060010009c00000206010080410000006001100210000002060020009c00000206020080410000004002200210000000000121019f000008150001042e000000090000006b000003f10000c13d000000400100043d0000024802000041000000000021043500000004021000390000000000020435000002060010009c000002060100804100000040011002100000021b011001c700000816000104300000024601000041000000800010043f00000247010000410000081600010430000000000008004b0000000001000019000003e30000613d000000000109043300000003028002100000025d0220027f0000025d02200167000000000121016f0000000102800210000000000121019f000004900000013d0000000701000039000000000101041a000000080010006b000004400000a13d000000400100043d0000025102000041000004700000013d000000400100043d0000024602000041000004700000013d0000000901000029000000000010043f0000000601000039000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b000000000101041a000000ff001001900000032f0000c13d0000000901000029000000000010043f0000000601000039000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b000000000201041a0000025b0220019700000001022001bf000000000021041b0000000001000414000002060010009c0000020601008041000000c00110021000000212011001c70000800d02000039000000040300003900000213040000410000000905000029000000080600002900000000070004110814080a0000040f0000000100200190000002eb0000613d0000032f0000013d000000090000006b000003d10000613d0000000501000039000000000101041a000000ff001001900000046e0000c13d0000000201000039000000000201041a000000080020002a000005780000413d0000000802200029000000000021041b0000000901000029000000000010043f000000200000043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b000000000201041a00000008030000290000000002320019000000000021041b000000400100043d0000000000310435000002060010009c000002060100804100000040011002100000000002000414000002060020009c0000020602008041000000c002200210000000000112019f0000020e011001c70000800d0200003900000003030000390000025004000041000000000500001900000009060000290000032c0000013d000000400100043d0000024f020000410000000000210435000002060010009c0000020601008041000000400110021000000219011001c70000081600010430000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000070700002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000047c0000c13d000000000092004b0000048d0000813d0000000302900210000000f80220018f0000025d0220027f0000025d0220016700000000038300190000000003030433000000000223016f000000000021041b000000010190021000000001011001bf0000000305000039000000000015041b00000000050704330000020d0050009c0000005f0000213d0000000403000039000000000103041a000000010010019000000001071002700000007f0770618f0000001f0070008c00000000020000390000000102002039000000000121013f0000000100100190000003080000c13d000500000007001d000000200070008c000600000005001d000004bf0000413d000000000030043f0000000001000414000002060010009c0000020601008041000000c0011002100000020e011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d00000006050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000005010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000403000039000004bf0000813d000000000002041b0000000102200039000000000012004b000004bb0000413d0000001f0050008c000004d10000a13d000000000030043f0000000001000414000002060010009c0000020601008041000000c0011002100000020e011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000200200008a0000000602200180000000000101043b000004de0000c13d0000002003000039000004eb0000013d000000060000006b0000000001000019000004d60000613d00000003010000290000000001010433000000060400002900000003024002100000025d0220027f0000025d02200167000000000121016f0000000102400210000000000121019f000004f90000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000070600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000004e40000c13d000000060020006c000004f60000813d00000006020000290000000302200210000000f80220018f0000025d0220027f0000025d0220016700000007033000290000000003030433000000000223016f000000000021041b0000000601000029000000010110021000000001011001bf0000000402000039000000000012041b0000000502000039000000000102041a0000025b01100197000000000012041b0000020f010000410000000702000039000000000012041b0000000401000029000702090010019c000005080000c13d000000400100043d0000021802000041000004700000013d0000000701000029000000000010043f0000021001000041000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b000000000101041a000000ff00100190000005390000c13d0000000701000029000000000010043f0000021001000041000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b000000000201041a0000025b0220019700000001022001bf000000000021041b0000000001000414000002060010009c0000020601008041000000c00110021000000212011001c70000800d02000039000000040300003900000000070004110000021304000041000000000500001900000007060000290814080a0000040f0000000100200190000002eb0000613d00000009010000290000020901100197000900000001001d000000000010043f0000021401000041000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b000000000101041a000000ff001001900000056c0000c13d0000000901000029000000000010043f0000021401000041000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000002eb0000613d000000000101043b000000000201041a0000025b0220019700000001022001bf000000000021041b0000000001000414000002060010009c0000020601008041000000c00110021000000212011001c70000800d02000039000000040300003900000000070004110000021304000041000002150500004100000009060000290814080a0000040f0000000100200190000002eb0000613d000000080100002900000209011001970000000802000039000000000302041a0000021603300197000000000113019f000000000012041b0000002001000039000001000010044300000120000004430000021701000041000008150001042e0000021a01000041000000000010043f0000001101000039000000040010043f0000021b01000041000008160001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b0000058d0000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b000005860000413d000000000321001900000000000304350000001f022000390000025c022001970000000001210019000000000001042d0000001f022000390000025c022001970000000001120019000000000021004b000000000200003900000001020040390000020d0010009c0000059f0000213d00000001002001900000059f0000c13d000000400010043f000000000001042d0000021a01000041000000000010043f0000004101000039000000040010043f0000021b0100004100000816000104300000004005100039000000000045043500000020041000390000000000340435000002090220019700000000002104350000006001100039000000000001042d0004000000000002000200000003001d000400000002001d0000020901100197000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000005f80000613d000000000101043b00000004020000290000020902200197000300000002001d000000000020043f000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000005f80000613d0000000402000029000000000101043b000000000301041a0000025d0030009c000005f70000613d0000000204000029000000000543004b000005fa0000413d0000000101000029000000000001004b0000060a0000613d000400000005001d000000030000006b0000060d0000613d000000000010043f0000000101000039000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000005f80000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000005f80000613d000000000101043b0000000402000029000000000021041b000000000001042d00000000010000190000081600010430000000400500043d000300000005001d0000025e0100004100000000001504350000000401500039081405a50000040f00000003020000290000000001210049000002060010009c00000206010080410000006001100210000002060020009c00000206020080410000004002200210000000000121019f0000081600010430000000400100043d00000256020000410000060f0000013d000000400100043d0000025502000041000000000021043500000004021000390000000000020435000002060010009c000002060100804100000040011002100000021b011001c700000816000104300000000001000411000000000010043f0000021001000041000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000006290000613d000000000101043b000000000101041a000000ff001001900000062b0000613d000000000001042d00000000010000190000081600010430000000400100043d0000024d02000041000000000021043500000004021000390000000003000411000000000032043500000024021000390000000000020435000002060010009c000002060100804100000040011002100000024e011001c700000816000104300001000000000002000100000001001d000000000010043f0000000601000039000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000006580000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000006580000613d000000000101043b000000000101041a000000ff001001900000065a0000613d000000000001042d00000000010000190000081600010430000000400100043d0000002402100039000000010300002900000000003204350000024d020000410000000000210435000000040210003900000000030004110000000000320435000002060010009c000002060100804100000040011002100000024e011001c700000816000104300002000000000002000100000002001d000200000001001d000000000010043f0000000601000039000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000006b70000613d000000000101043b00000001020000290000020902200197000100000002001d000000000020043f000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000006b70000613d000000000101043b000000000101041a000000ff00100190000006b60000613d0000000201000029000000000010043f0000000601000039000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000006b70000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000006b70000613d000000000101043b000000000201041a0000025b02200197000000000021041b0000000001000414000002060010009c0000020601008041000000c00110021000000212011001c70000800d02000039000000040300003900000000070004110000025f04000041000000020500002900000001060000290814080a0000040f0000000100200190000006b70000613d000000000001042d000000000100001900000816000104300004000000000002000400000002001d0000020903100198000006fc0000613d000100000001001d0000000501000039000000000101041a000000ff00100190000007060000c13d000000000030043f000000200000043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c70000801002000039000300000003001d0814080f0000040f0000000100200190000006fa0000613d0000000302000029000000000101043b000000000301041a00020004003000740000070e0000413d000000000020043f000000200000043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000006fa0000613d000000000101043b0000000202000029000000000021041b0000000201000039000000000201041a00000004030000290000000002320049000000000021041b000000400100043d0000000000310435000002060010009c000002060100804100000040011002100000000002000414000002060020009c0000020602008041000000c002200210000000000112019f0000020e011001c70000800d0200003900000003030000390000025004000041000000030500002900000000060000190814080a0000040f0000000100200190000006fa0000613d000000000001042d00000000010000190000081600010430000000400100043d0000024a02000041000000000021043500000004021000390000000000020435000002060010009c000002060100804100000040011002100000021b011001c70000081600010430000000400100043d0000024f020000410000000000210435000002060010009c0000020601008041000000400110021000000219011001c70000081600010430000000400200043d000300000002001d00000260010000410000000000120435000000040120003900000001020000290000000404000029081405a50000040f00000003020000290000000001210049000002060010009c00000206010080410000006001100210000002060020009c00000206020080410000004002200210000000000121019f00000816000104300009000000000002000600000007001d000700000006001d000800000005001d000000400700043d000000a006700039000000000500041000000000005604350000008005700039000300000004001d00000000004504350000004004700039000100000001001d0000000000140435000000a001000039000000000117043600000209043001970000006003700039000200000004001d0000000000430435000900000002001d0000000000210435000002610070009c000007c60000813d000000c002700039000400000002001d000000400020043f000002060010009c00000206010080410000004001100210000500000007001d0000000002070433000002060020009c00000206020080410000006002200210000000000112019f0000000002000414000002060020009c0000020602008041000000c002200210000000000112019f00000212011001c700008010020000390814080f0000040f0000000100200190000007c40000613d000000000101043b0000000404000029000000000014043500000005030000290000012001300039000000060200002900000000002104350000010001300039000000070200002900000000002104350000000801000029000000ff0110018f000000e0023000390000000000120435000000000000043f000002060040009c000002060400804100000040014002100000000002000414000002060020009c0000020602008041000000c002200210000000000112019f00000262011001c700000001020000390814080f0000040f00000060031002700000020603300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000007760000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000007720000c13d000000000005004b000007830000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000000100200190000007cc0000613d0000000801000039000000000101041a000000000200043d000000000121013f0000020900100198000007ea0000c13d0000000901000029000000000010043f0000000901000039000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000007c40000613d000000000101043b000000000101041a000000ff00100190000007ed0000c13d0000000901000029000000000010043f0000000901000039000000200010043f0000000001000414000002060010009c0000020601008041000000c00110021000000211011001c700008010020000390814080f0000040f0000000100200190000007c40000613d000000000101043b000000000201041a0000025b0220019700000001022001bf000000000021041b000000400100043d00000001020000290000000000210435000002060010009c000002060100804100000040011002100000000002000414000002060020009c0000020602008041000000c002200210000000000112019f0000020e011001c70000800d02000039000000040300003900000265040000410000000905000029000000020600002900000003070000290814080a0000040f0000000100200190000007c40000613d000000000001042d000000000100001900000816000104300000021a01000041000000000010043f0000004101000039000000040010043f0000021b0100004100000816000104300000001f0530018f0000020806300198000000400200043d0000000004620019000007d70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007d30000c13d000000000005004b000007e40000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000002060020009c00000206020080410000004002200210000000000112019f0000081600010430000000400100043d0000026302000041000007ef0000013d000000400100043d00000264020000410000000000210435000002060010009c0000020601008041000000400110021000000219011001c70000081600010430000002060010009c00000206010080410000004001100210000002060020009c00000206020080410000006002200210000000000112019f0000000002000414000002060020009c0000020602008041000000c002200210000000000112019f00000212011001c700008010020000390814080f0000040f0000000100200190000008080000613d000000000101043b000000000001042d000000000100001900000816000104300000080d002104210000000102000039000000000001042d0000000002000019000000000001042d00000812002104230000000102000039000000000001042d0000000002000019000000000001042d0000081400000432000008150001042e0000081600010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf526f61636820526163696e6720436c75620000000000000000000000000000006254524158000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff020000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000021e19e0c9bab240000054cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8020000000000000000000000000000000000004000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d3195c024b2ddd6d9b8f6c836aa52f67fe69376c8903d009b80229b3ce4425f519f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6ffffffffffffffffffffffff00000000000000000000000000000000000000000000000200000000000000000000000000000040000001000000000000000000d92e233d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000000000000000000005c975aba000000000000000000000000000000000000000000000000000000009e6a1d7c00000000000000000000000000000000000000000000000000000000c97bc25800000000000000000000000000000000000000000000000000000000d547741e00000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000c97bc25900000000000000000000000000000000000000000000000000000000d539139300000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000bed90f9b000000000000000000000000000000000000000000000000000000009e6a1d7d00000000000000000000000000000000000000000000000000000000a217fddf0000000000000000000000000000000000000000000000000000000079cc678f0000000000000000000000000000000000000000000000000000000091d148530000000000000000000000000000000000000000000000000000000091d148540000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000079cc6790000000000000000000000000000000000000000000000000000000008456cb59000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000006c19e7830000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000248a9ca20000000000000000000000000000000000000000000000000000000036568abd0000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000005b7633d00000000000000000000000000000000000000000000000000000000036568abe0000000000000000000000000000000000000000000000000000000040c10f1900000000000000000000000000000000000000000000000000000000248a9ca3000000000000000000000000000000000000000000000000000000002f2ff15d00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000095ea7b20000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000012a77b960000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000068b2fec0000000000000000000000000000000000000000000000000000000006fdde030000000000000000000000000000000000000020000000800000000000000000ab064ad3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000ec442f0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000080000000000000000096c6fd1e000000000000000000000000000000000000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258e2517d3f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000d93c066500000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efec8e6a63000000000000000000000000000000000000000000000000000000006697b232000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925000000000000000000000000000000000000002000000000000000000000000094280d6200000000000000000000000000000000000000000000000000000000e602df0500000000000000000000000000000000000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff01ffc9a7000000000000000000000000000000000000000000000000000000007965db0b00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8f41b200000000000000000000000000000000000000000000000000000000f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171be450d38c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff400000000000000000000000000000000000000080000000000000000000000000356a44180000000000000000000000000000000000000000000000000000000065d472ed00000000000000000000000000000000000000000000000000000000b10bbc93786cd0f11375f208a14fa4aa8576248a30c1aa201ec4d106125a6e189b407c44cd879aef19b8e306781fb5608ee60ab7df0e0cbd34693461e84146bf

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

    00000000000000000000000000000ef80626c6406ec0bf9720e2e81c066396c0000000000000000000000000100000ec0732d3a7b69660aa85dbaddd672879f000000000000000000000000020000dc5611f4258cb9c0b0d0da971cdba8b96a9

    -----Decoded View---------------
    Arg [0] : defaultAdmin (address): 0x00000eF80626C6406ec0bf9720e2e81C066396C0
    Arg [1] : minter (address): 0x100000ec0732D3A7B69660aa85dBaDdd672879f0
    Arg [2] : _signerAddress (address): 0x20000dC5611f4258cb9c0b0d0Da971cDba8b96a9

    -----Encoded View---------------
    3 Constructor Arguments found :
    Arg [0] : 00000000000000000000000000000ef80626c6406ec0bf9720e2e81c066396c0
    Arg [1] : 000000000000000000000000100000ec0732d3a7b69660aa85dbaddd672879f0
    Arg [2] : 00000000000000000000000020000dc5611f4258cb9c0b0d0da971cdba8b96a9


    [ 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.