ETH Price: $3,063.66 (+2.79%)
Gas: 1 Gwei

Token

FairEx (FRX)
 

Overview

Max Total Supply

10,000,000 FRX

Holders

287

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000079381541084057 FRX

Value
$0.00
0x7fd3f8afca9640605458beac0946909188c863a0
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:
FrxERC20

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 7 : FrxERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract FrxERC20 is ERC20("FairEx", "FRX"), Ownable {
    error FrxERC20_BuyLimit();
    error FrxERC20_HoldLimit();
    error FrxERC20_TradingDisabled();
    error FrxERC20_FeeReceiverZero();

    uint256 internal constant FEE_DENOMINATOR = 100;

    bool public isBuyLimitsEnabled;
    bool public isHoldLimitsEnabled;

    uint64 public start;
    address public feeReceiver;

    uint192 public buyLimit;
    uint256 public holdLimit;

    mapping(address => bool) public isAMMPair;
    mapping(address => bool) public isExcluded;
    mapping(address => uint256) public buyLimits;

    constructor(
        address receiver,
        uint256 initialSupply,
        address owner
    ) Ownable(owner) {
        _mint(receiver, initialSupply);
    }

    function setStart(uint64 _timestamp) public onlyOwner {
        start = _timestamp;
    }

    function setStartCurrent() external onlyOwner {
        start = uint64(block.timestamp);
    }

    function setFeeReceiver(address _feeReceiver) external onlyOwner {
        feeReceiver = _feeReceiver;
    }

    function setIsBuyLimitsEnabled(
        bool _isBuyLimitsEnabled
    ) external onlyOwner {
        isBuyLimitsEnabled = _isBuyLimitsEnabled;
    }

    function setBuyLimit(uint192 _buyLimit) external onlyOwner {
        buyLimit = _buyLimit;
    }

    function setIsHoldLimitsEnabled(
        bool _isHoldLimitsEnabled
    ) external onlyOwner {
        isHoldLimitsEnabled = _isHoldLimitsEnabled;
    }

    function setHoldLimit(uint256 _holdLimit) external onlyOwner {
        holdLimit = _holdLimit;
    }

    function setIsAMMPair(address _address, bool value) external onlyOwner {
        isAMMPair[_address] = value;
    }

    function setIsExcluded(address _address, bool value) external onlyOwner {
        isExcluded[_address] = value;
    }

    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        uint256 feeNominator;
        if (isAMMPair[from] /** BUY */ && !isExcluded[to]) {
            _checkTrading();
            _checkBuyLimit(to, value);
            _checkHoldLimit(to, value);
            (feeNominator, ) = _getFees(block.timestamp - start);
        } else if (isAMMPair[to] /** SELL */ && !isExcluded[from]) {
            _checkTrading();
            (, feeNominator) = _getFees(block.timestamp - start);
        }
        if (feeNominator != 0) {
            if (feeReceiver == address(0)) {
                revert FrxERC20_FeeReceiverZero();
            }
            uint256 fee = (value * feeNominator) / FEE_DENOMINATOR;
            super._update(from, feeReceiver, fee);
            super._update(from, to, value - fee);
        } else {
            super._update(from, to, value);
        }
    }

    function _checkTrading() internal view {
        if (start == 0 || start > block.timestamp) {
            revert FrxERC20_TradingDisabled();
        }
    }

    function _checkBuyLimit(address owner, uint256 value) internal {
        if (isBuyLimitsEnabled) {
            if (value > type(uint192).max) {
                revert FrxERC20_BuyLimit();
            }
            uint256 val = buyLimits[owner];
            uint64 blockNumber = uint64((val >> 192) & type(uint64).max);
            uint192 amount = uint192(val & type(uint192).max);
            if (blockNumber == block.number) {
                amount += uint192(value);
            } else {
                amount = uint192(value);
            }
            if (amount > buyLimit) {
                revert FrxERC20_BuyLimit();
            }
            buyLimits[owner] = (block.number << 192) | uint256(amount);
        }
    }

    function _checkHoldLimit(address owner, uint256 value) internal view {
        if (isHoldLimitsEnabled && balanceOf(owner) + value > holdLimit) {
            revert FrxERC20_HoldLimit();
        }
    }

    function _getFees(
        uint256 elapsed
    ) internal pure returns (uint256, uint256) {
        if (elapsed <= 180) {
            return (35, 40);
        } else if (elapsed <= 600) {
            return (20, 20);
        } else if (elapsed <= 900) {
            return (15, 15);
        } else if (elapsed <= 1200) {
            return (10, 10);
        } else {
            return (5, 5);
        }
    }
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.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 ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `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:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 4 of 7 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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 ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-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 ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 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 5 of 7 : Context.sol
// 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;
    }
}

File 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.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 ERC20 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 7 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "viaIR": true,
  "evmVersion": "cancun",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"owner","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"},{"inputs":[],"name":"FrxERC20_BuyLimit","type":"error"},{"inputs":[],"name":"FrxERC20_FeeReceiverZero","type":"error"},{"inputs":[],"name":"FrxERC20_HoldLimit","type":"error"},{"inputs":[],"name":"FrxERC20_TradingDisabled","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLimit","outputs":[{"internalType":"uint192","name":"","type":"uint192"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"buyLimits","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":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holdLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAMMPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBuyLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isHoldLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint192","name":"_buyLimit","type":"uint192"}],"name":"setBuyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeReceiver","type":"address"}],"name":"setFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_holdLimit","type":"uint256"}],"name":"setHoldLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setIsAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBuyLimitsEnabled","type":"bool"}],"name":"setIsBuyLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setIsExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isHoldLimitsEnabled","type":"bool"}],"name":"setIsHoldLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_timestamp","type":"uint64"}],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartCurrent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60803461058657601f61168a38819003828101601f199081168501946001600160401b039493909290858711848810176104a1578160609285926040998a5283398101031261058657610051826105a9565b936020610063878286015195016105a9565b9261006c61058a565b95600687526508cc2d2e48af60d31b8388015261008761058a565b966003908189526208ca4b60eb1b858a015280518681116104a15782546001928382811c9216801561057c575b8883101461056857818684931161051a575b5087908683116001146104c0575f926104b5575b50505f1982851b1c191690821b1782555b8851928684116104a1576004998a548381811c91168015610497575b8882101461048457828111610441575b50869185116001146103e157849550908492915f956103d6575b50501b925f19911b1c19161785555b6001600160a01b039283169081156103c057600554908260018060a01b03198316179283600555858a5193167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a38488169182156103ac57505f925f80526009825260ff93848b5f20541680610398575b15610335575083906101c36105de565b60a01c166102ae575b600554928360a81c169182610290575b5050610280576101f9916101f49160b01c16426105bd565b61061a565b50905b811561026e57600654169283156102605781830291838304148315171561024d57509161023a9161023560646102409695048093610670565b6105bd565b90610670565b51610fac90816106de8239f35b601190634e487b7160e01b5f525260245ffd5b855163566f1ac160e01b8152fd5b5050905061027b91610670565b610240565b8651637992ec8160e01b81528590fd5b5f80935052526102a384885f2054610663565b600854105f806101dc565b6001600160c01b03808711610308575f838152600b83528a9020548181169060c01c430361032b5781168782160181811161031857905b8060075416911690811161030857825f52600b82524360c01b17895f20556101cc565b895163b38118c760e01b81528890fd5b601189634e487b7160e01b5f525260245ffd5b50808716906102e5565b95949390925f5260098252808a5f2054169182610382575b505061035b575b50506101fc565b610378929350906101f49161036e6105de565b60b01c16426105bd565b9050905f80610354565b600a9192505f805252885f205416155f8061034d565b50835f52600a8352848b5f205416156101b3565b63ec442f0560e01b81525f88820152602490fd5b8751631e4fbdf760e01b81525f81880152602490fd5b015193505f80610131565b9291948416928a5f5284875f20945f5b898983831061042a5750505010610411575b50505050811b018555610140565b01519060f8845f19921b161c191690555f808080610403565b8686015189559097019694850194889350016103f1565b8b5f52875f208380880160051c8201928a891061047b575b0160051c019084905b828110610470575050610117565b5f8155018490610462565b92508192610459565b60228c634e487b7160e01b5f525260245ffd5b90607f1690610107565b634e487b7160e01b5f52604160045260245ffd5b015190505f806100da565b908785941691865f52895f20925f5b8b82821061050457505084116104ed575b505050811b0182556100eb565b01515f1983871b60f8161c191690555f80806104e0565b83850151865588979095019493840193016104cf565b909150845f52875f208680850160051c8201928a861061055f575b918691869594930160051c01915b8281106105515750506100c6565b5f8155859450869101610543565b92508192610535565b634e487b7160e01b5f52602260045260245ffd5b91607f16916100b4565b5f80fd5b60408051919082016001600160401b038111838210176104a157604052565b51906001600160a01b038216820361058657565b919082039182116105ca57565b634e487b7160e01b5f52601160045260245ffd5b60055460b01c6001600160401b03168015908115610610575b506105fe57565b6040516305111d9d60e41b8152600490fd5b905042105f6105f7565b60b4811161062b5750602390602890565b610258811161063c57506014908190565b610384811161064d5750600f908190565b6104b01061065c57600a908190565b6005908190565b919082018092116105ca57565b7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60205f926106a185600254610663565b6002556001600160a01b031693841584146106c85780600254036002555b604051908152a3565b848452838252604084208181540190556106bf56fe608060409080825260049081361015610016575f80fd5b5f3560e01c9081630448eed914610acf5750806306fdde03146109f3578063095ea7b31461094a57806318160ddd1461092c57806323b872dd1461083b5780632f142eff146107ea578063313ce567146107cf5780634c97102e1461079857806356d6226914610753578063589210d91461072b578063604c4d06146106eb578063699d6bce146106c55780636f68ebae146106a75780636fd009e41461068757806370a0823114610651578063715018a6146105f65780638d5628661461059d5780638da5cb5b1461057557806395d89b4114610455578063a9059cbb14610425578063b0249cc6146103e9578063b3e5ad20146103a9578063b3f0067414610381578063be9a655514610356578063cba0e9961461031a578063cf8e2f8e146102c7578063dd62ed3e1461027e578063efdcd9741461023b578063f1d62c77146101fb5763f2fde38b1461016a575f80fd5b346101f75760203660031901126101f757610183610b1b565b9061018c610db4565b6001600160a01b039182169283156101e1575050600554826bffffffffffffffffffffffff60a01b821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3005b905f6024925191631e4fbdf760e01b8352820152fd5b5f80fd5b346101f75760203660031901126101f757610214610b56565b61021c610db4565b6005805460ff60a81b191691151560a81b60ff60a81b16919091179055005b346101f75760203660031901126101f757610254610b1b565b61025c610db4565b600680546001600160a01b0319166001600160a01b0392909216919091179055005b82346101f757806003193601126101f75760209061029a610b1b565b6102a2610b31565b9060018060a01b038091165f5260018452825f2091165f528252805f20549051908152f35b82346101f757806003193601126101f757610318906102e4610b1b565b906102ed610b47565b916102f6610db4565b60018060a01b03165f52600a6020525f209060ff801983541691151516179055565b005b82346101f75760203660031901126101f7576020906001600160a01b0361033f610b1b565b165f52600a825260ff815f20541690519015158152f35b82346101f7575f3660031901126101f75760209067ffffffffffffffff60055460b01c169051908152f35b82346101f7575f3660031901126101f75760065490516001600160a01b039091168152602090f35b346101f75760203660031901126101f7576103c2610b56565b6103ca610db4565b6005805460ff60a01b191691151560a01b60ff60a01b16919091179055005b82346101f75760203660031901126101f7576020906001600160a01b0361040e610b1b565b165f526009825260ff815f20541690519015158152f35b82346101f757806003193601126101f75760209061044e610444610b1b565b6024359033610b65565b5160018152f35b5090346101f7575f3660031901126101f7578051905f835460018160011c906001831692831561056b575b60209384841081146105585783885290811561053c57506001146104e8575b505050829003601f01601f191682019267ffffffffffffffff8411838510176104d557508291826104d1925282610af1565b0390f35b604190634e487b7160e01b5f525260245ffd5b5f878152929350837f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b83851061052857505050508301015f808061049f565b805488860183015293019284908201610512565b60ff1916878501525050151560051b84010190505f808061049f565b602289634e487b7160e01b5f525260245ffd5b91607f1691610480565b82346101f7575f3660031901126101f75760055490516001600160a01b039091168152602090f35b50346101f75760203660031901126101f7573567ffffffffffffffff811681036101f7576105c9610db4565b6005805467ffffffffffffffff60b01b191660b09290921b67ffffffffffffffff60b01b16919091179055005b346101f7575f3660031901126101f75761060e610db4565b600580546001600160a01b031981169091555f906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b82346101f75760203660031901126101f7576020906001600160a01b03610676610b1b565b165f525f8252805f20549051908152f35b50346101f75760203660031901126101f7576106a1610db4565b35600855005b82346101f7575f3660031901126101f7576020906008549051908152f35b82346101f7575f3660031901126101f75760209060ff60055460a01c1690519015158152f35b346101f7575f3660031901126101f757610703610db4565b6005805467ffffffffffffffff60b01b19164260b01b67ffffffffffffffff60b01b16179055005b82346101f7575f3660031901126101f75760075490516001600160c01b039091168152602090f35b50346101f75760203660031901126101f757356001600160c01b038116908190036101f757610780610db4565b67ffffffffffffffff60c01b60075416176007555f80f35b82346101f75760203660031901126101f7576020906001600160a01b036107bd610b1b565b165f52600b8252805f20549051908152f35b82346101f7575f3660031901126101f7576020905160128152f35b82346101f757806003193601126101f75761031890610807610b1b565b90610810610b47565b91610819610db4565b60018060a01b03165f5260096020525f209060ff801983541691151516179055565b50346101f75760603660031901126101f757610855610b1b565b61085d610b31565b906044359260018060a01b038216805f526001602052855f20335f52602052855f2054915f198303610898575b60208761044e888888610b65565b8583106109005781156108ea5733156108d457505f9081526001602090815286822033835281529086902091859003909155829061044e61088a565b6024905f885191634a1406b160e11b8352820152fd5b6024905f88519163e602df0560e01b8352820152fd5b8651637dc7a0d960e11b8152339181019182526020820193909352604081018690528291506060010390fd5b82346101f7575f3660031901126101f7576020906002549051908152f35b5090346101f757806003193601126101f757610964610b1b565b6024359033156109dd576001600160a01b03169081156109c75760209350335f5260018452825f20825f52845280835f205582519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925843392a35160018152f35b8251634a1406b160e11b81525f81860152602490fd5b825163e602df0560e01b81525f81860152602490fd5b5090346101f7575f3660031901126101f7578051905f60035460018160011c9060018316928315610ac5575b60209384841081146105585783885290811561053c5750600114610a6f57505050829003601f01601f191682019267ffffffffffffffff8411838510176104d557508291826104d1925282610af1565b60035f908152929350837fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b838510610ab157505050508301015f808061049f565b805488860183015293019284908201610a9b565b91607f1691610a1f565b346101f7575f3660031901126101f75760209060ff60055460a81c1615158152f35b602060409281835280519182918282860152018484015e5f828201840152601f01601f1916010190565b600435906001600160a01b03821682036101f757565b602435906001600160a01b03821682036101f757565b6024359081151582036101f757565b6004359081151582036101f757565b906001600160a01b038083168015610d9c578183168015610d84575f90825f5260206009815260ff9260409484865f20541680610d70575b15610d0b575050610bac610ded565b8260055460a01c16610c96575b600554928360a81c169182610c78575b5050610c6757610be967ffffffffffffffff610bee9260b01c1642610de0565b610e2a565b50915b8215610c5a5760065416908115610c4a5750818502918583041485151715610c3657610c3494610c296064610c2e9404809387610e80565b610de0565b91610e80565b565b634e487b7160e01b5f52601160045260245ffd5b5163566f1ac160e01b8152600490fd5b505050610c349291610e80565b8151637992ec8160e01b8152600490fd5b5f8093505252610c8b86835f2054610e73565b600854105f80610bc9565b6001600160c01b03808911610cf0575f838152600b8352859020548181169060c01c4303610d0157811689821601818111610c3657905b80600754169116908111610cf057825f52600b82524360c01b17845f2055610bb9565b845163b38118c760e01b8152600490fd5b5080891690610ccd565b925f9694929196526009815281855f2054169283610d5a575b50505015610bf1579150610d36610ded565b610d52610be967ffffffffffffffff60055460b01c1642610de0565b905091610bf1565b600a9293505f5252825f205416155f8080610d24565b50835f52600a835284865f20541615610b9d565b60405163ec442f0560e01b81525f6004820152602490fd5b604051634b637e8f60e11b81525f6004820152602490fd5b6005546001600160a01b03163303610dc857565b60405163118cdaa760e01b8152336004820152602490fd5b91908203918211610c3657565b67ffffffffffffffff60055460b01c168015908115610e20575b50610e0e57565b6040516305111d9d60e41b8152600490fd5b905042105f610e07565b60b48111610e3b5750602390602890565b6102588111610e4c57506014908190565b6103848111610e5d5750600f908190565b6104b010610e6c57600a908190565b6005908190565b91908201809211610c3657565b6001600160a01b0380821692909183610ef757507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91602091610ec586600254610e73565b6002555b169384610ee25780600254036002555b604051908152a3565b845f525f825260405f20818154019055610ed9565b835f525f60205260405f205490858210610f44575091602091857fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef94865f525f85520360405f2055610ec9565b60405163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101859052606490fdfea2646970667358221220eb3e8f030f2fe4ad5755a2ec94bf7119fa3a0f7cf81c546b88b97bd520392e1464736f6c634300081900330000000000000000000000003f528f8b85b36f0b51e019d9bb7129df52b58ef9000000000000000000000000000000000000000000084595161401484a0000000000000000000000000000003f528f8b85b36f0b51e019d9bb7129df52b58ef9

Deployed Bytecode

0x608060409080825260049081361015610016575f80fd5b5f3560e01c9081630448eed914610acf5750806306fdde03146109f3578063095ea7b31461094a57806318160ddd1461092c57806323b872dd1461083b5780632f142eff146107ea578063313ce567146107cf5780634c97102e1461079857806356d6226914610753578063589210d91461072b578063604c4d06146106eb578063699d6bce146106c55780636f68ebae146106a75780636fd009e41461068757806370a0823114610651578063715018a6146105f65780638d5628661461059d5780638da5cb5b1461057557806395d89b4114610455578063a9059cbb14610425578063b0249cc6146103e9578063b3e5ad20146103a9578063b3f0067414610381578063be9a655514610356578063cba0e9961461031a578063cf8e2f8e146102c7578063dd62ed3e1461027e578063efdcd9741461023b578063f1d62c77146101fb5763f2fde38b1461016a575f80fd5b346101f75760203660031901126101f757610183610b1b565b9061018c610db4565b6001600160a01b039182169283156101e1575050600554826bffffffffffffffffffffffff60a01b821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3005b905f6024925191631e4fbdf760e01b8352820152fd5b5f80fd5b346101f75760203660031901126101f757610214610b56565b61021c610db4565b6005805460ff60a81b191691151560a81b60ff60a81b16919091179055005b346101f75760203660031901126101f757610254610b1b565b61025c610db4565b600680546001600160a01b0319166001600160a01b0392909216919091179055005b82346101f757806003193601126101f75760209061029a610b1b565b6102a2610b31565b9060018060a01b038091165f5260018452825f2091165f528252805f20549051908152f35b82346101f757806003193601126101f757610318906102e4610b1b565b906102ed610b47565b916102f6610db4565b60018060a01b03165f52600a6020525f209060ff801983541691151516179055565b005b82346101f75760203660031901126101f7576020906001600160a01b0361033f610b1b565b165f52600a825260ff815f20541690519015158152f35b82346101f7575f3660031901126101f75760209067ffffffffffffffff60055460b01c169051908152f35b82346101f7575f3660031901126101f75760065490516001600160a01b039091168152602090f35b346101f75760203660031901126101f7576103c2610b56565b6103ca610db4565b6005805460ff60a01b191691151560a01b60ff60a01b16919091179055005b82346101f75760203660031901126101f7576020906001600160a01b0361040e610b1b565b165f526009825260ff815f20541690519015158152f35b82346101f757806003193601126101f75760209061044e610444610b1b565b6024359033610b65565b5160018152f35b5090346101f7575f3660031901126101f7578051905f835460018160011c906001831692831561056b575b60209384841081146105585783885290811561053c57506001146104e8575b505050829003601f01601f191682019267ffffffffffffffff8411838510176104d557508291826104d1925282610af1565b0390f35b604190634e487b7160e01b5f525260245ffd5b5f878152929350837f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b83851061052857505050508301015f808061049f565b805488860183015293019284908201610512565b60ff1916878501525050151560051b84010190505f808061049f565b602289634e487b7160e01b5f525260245ffd5b91607f1691610480565b82346101f7575f3660031901126101f75760055490516001600160a01b039091168152602090f35b50346101f75760203660031901126101f7573567ffffffffffffffff811681036101f7576105c9610db4565b6005805467ffffffffffffffff60b01b191660b09290921b67ffffffffffffffff60b01b16919091179055005b346101f7575f3660031901126101f75761060e610db4565b600580546001600160a01b031981169091555f906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b82346101f75760203660031901126101f7576020906001600160a01b03610676610b1b565b165f525f8252805f20549051908152f35b50346101f75760203660031901126101f7576106a1610db4565b35600855005b82346101f7575f3660031901126101f7576020906008549051908152f35b82346101f7575f3660031901126101f75760209060ff60055460a01c1690519015158152f35b346101f7575f3660031901126101f757610703610db4565b6005805467ffffffffffffffff60b01b19164260b01b67ffffffffffffffff60b01b16179055005b82346101f7575f3660031901126101f75760075490516001600160c01b039091168152602090f35b50346101f75760203660031901126101f757356001600160c01b038116908190036101f757610780610db4565b67ffffffffffffffff60c01b60075416176007555f80f35b82346101f75760203660031901126101f7576020906001600160a01b036107bd610b1b565b165f52600b8252805f20549051908152f35b82346101f7575f3660031901126101f7576020905160128152f35b82346101f757806003193601126101f75761031890610807610b1b565b90610810610b47565b91610819610db4565b60018060a01b03165f5260096020525f209060ff801983541691151516179055565b50346101f75760603660031901126101f757610855610b1b565b61085d610b31565b906044359260018060a01b038216805f526001602052855f20335f52602052855f2054915f198303610898575b60208761044e888888610b65565b8583106109005781156108ea5733156108d457505f9081526001602090815286822033835281529086902091859003909155829061044e61088a565b6024905f885191634a1406b160e11b8352820152fd5b6024905f88519163e602df0560e01b8352820152fd5b8651637dc7a0d960e11b8152339181019182526020820193909352604081018690528291506060010390fd5b82346101f7575f3660031901126101f7576020906002549051908152f35b5090346101f757806003193601126101f757610964610b1b565b6024359033156109dd576001600160a01b03169081156109c75760209350335f5260018452825f20825f52845280835f205582519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925843392a35160018152f35b8251634a1406b160e11b81525f81860152602490fd5b825163e602df0560e01b81525f81860152602490fd5b5090346101f7575f3660031901126101f7578051905f60035460018160011c9060018316928315610ac5575b60209384841081146105585783885290811561053c5750600114610a6f57505050829003601f01601f191682019267ffffffffffffffff8411838510176104d557508291826104d1925282610af1565b60035f908152929350837fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b838510610ab157505050508301015f808061049f565b805488860183015293019284908201610a9b565b91607f1691610a1f565b346101f7575f3660031901126101f75760209060ff60055460a81c1615158152f35b602060409281835280519182918282860152018484015e5f828201840152601f01601f1916010190565b600435906001600160a01b03821682036101f757565b602435906001600160a01b03821682036101f757565b6024359081151582036101f757565b6004359081151582036101f757565b906001600160a01b038083168015610d9c578183168015610d84575f90825f5260206009815260ff9260409484865f20541680610d70575b15610d0b575050610bac610ded565b8260055460a01c16610c96575b600554928360a81c169182610c78575b5050610c6757610be967ffffffffffffffff610bee9260b01c1642610de0565b610e2a565b50915b8215610c5a5760065416908115610c4a5750818502918583041485151715610c3657610c3494610c296064610c2e9404809387610e80565b610de0565b91610e80565b565b634e487b7160e01b5f52601160045260245ffd5b5163566f1ac160e01b8152600490fd5b505050610c349291610e80565b8151637992ec8160e01b8152600490fd5b5f8093505252610c8b86835f2054610e73565b600854105f80610bc9565b6001600160c01b03808911610cf0575f838152600b8352859020548181169060c01c4303610d0157811689821601818111610c3657905b80600754169116908111610cf057825f52600b82524360c01b17845f2055610bb9565b845163b38118c760e01b8152600490fd5b5080891690610ccd565b925f9694929196526009815281855f2054169283610d5a575b50505015610bf1579150610d36610ded565b610d52610be967ffffffffffffffff60055460b01c1642610de0565b905091610bf1565b600a9293505f5252825f205416155f8080610d24565b50835f52600a835284865f20541615610b9d565b60405163ec442f0560e01b81525f6004820152602490fd5b604051634b637e8f60e11b81525f6004820152602490fd5b6005546001600160a01b03163303610dc857565b60405163118cdaa760e01b8152336004820152602490fd5b91908203918211610c3657565b67ffffffffffffffff60055460b01c168015908115610e20575b50610e0e57565b6040516305111d9d60e41b8152600490fd5b905042105f610e07565b60b48111610e3b5750602390602890565b6102588111610e4c57506014908190565b6103848111610e5d5750600f908190565b6104b010610e6c57600a908190565b6005908190565b91908201809211610c3657565b6001600160a01b0380821692909183610ef757507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91602091610ec586600254610e73565b6002555b169384610ee25780600254036002555b604051908152a3565b845f525f825260405f20818154019055610ed9565b835f525f60205260405f205490858210610f44575091602091857fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef94865f525f85520360405f2055610ec9565b60405163391434e360e21b81526001600160a01b03919091166004820152602481019190915260448101859052606490fdfea2646970667358221220eb3e8f030f2fe4ad5755a2ec94bf7119fa3a0f7cf81c546b88b97bd520392e1464736f6c63430008190033

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

0000000000000000000000003f528f8b85b36f0b51e019d9bb7129df52b58ef9000000000000000000000000000000000000000000084595161401484a0000000000000000000000000000003f528f8b85b36f0b51e019d9bb7129df52b58ef9

-----Decoded View---------------
Arg [0] : receiver (address): 0x3F528F8B85b36f0b51E019d9bb7129DF52b58ef9
Arg [1] : initialSupply (uint256): 10000000000000000000000000
Arg [2] : owner (address): 0x3F528F8B85b36f0b51E019d9bb7129DF52b58ef9

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000003f528f8b85b36f0b51e019d9bb7129df52b58ef9
Arg [1] : 000000000000000000000000000000000000000000084595161401484a000000
Arg [2] : 0000000000000000000000003f528f8b85b36f0b51e019d9bb7129df52b58ef9


Deployed Bytecode Sourcemap

167:4286:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;:::i;:::-;1500:62:0;;;:::i;:::-;-1:-1:-1;;;;;167:4286:6;;;;2627:22:0;;2623:91;;167:4286:6;;3004:6:0;167:4286:6;;;;;;;;3004:6:0;167:4286:6;;3052:40:0;167:4286:6;3052:40:0;;167:4286:6;2623:91:0;167:4286:6;;;;;2672:31:0;;;;;;;;167:4286:6;2672:31:0;167:4286:6;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;:::i;:::-;1500:62:0;;:::i;:::-;1590:42:6;167:4286;;-1:-1:-1;;;;167:4286:6;;;;;;-1:-1:-1;;;167:4286:6;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;:::i;:::-;1500:62:0;;:::i;:::-;1194:26:6;167:4286;;-1:-1:-1;;;;;;167:4286:6;-1:-1:-1;;;;;167:4286:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;3952:11:2;167:4286:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1954:28;167:4286;;;:::i;:::-;;;;:::i;:::-;1500:62:0;;;:::i;:::-;167:4286:6;;;;;;;;1954:10;167:4286;;;;;;;;;;;;;;;;;;;1954:28;167:4286;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;-1:-1:-1;;;;;167:4286:6;;:::i;:::-;;;;659:42;167:4286;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;;494:19;167:4286;;;;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;519:26;167:4286;;;-1:-1:-1;;;;;167:4286:6;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;:::i;:::-;1500:62:0;;:::i;:::-;1333:40:6;167:4286;;-1:-1:-1;;;;167:4286:6;;;;;;-1:-1:-1;;;167:4286:6;;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;-1:-1:-1;;;;;167:4286:6;;:::i;:::-;;;;612:41;167:4286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3754:5:2;167:4286:6;;:::i;:::-;;;735:10:5;;3754:5:2;:::i;:::-;167:4286:6;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;167:4286:6;;;;;-1:-1:-1;;167:4286:6;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;167:4286:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;-1:-1:-1;;167:4286:6;;;;;;;;-1:-1:-1;167:4286:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;1710:6:0;167:4286:6;;;-1:-1:-1;;;;;167:4286:6;;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;;;;;;;1500:62:0;;:::i;:::-;988:18:6;167:4286;;-1:-1:-1;;;;167:4286:6;;;;;;-1:-1:-1;;;167:4286:6;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;1500:62:0;;:::i;:::-;3004:6;167:4286:6;;-1:-1:-1;;;;;;167:4286:6;;;;;;;-1:-1:-1;;;;;167:4286:6;3052:40:0;167:4286:6;;3052:40:0;167:4286:6;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;-1:-1:-1;;;;;167:4286:6;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;1500:62:0;;:::i;:::-;167:4286:6;1716:22;167:4286;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;581:24;167:4286;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;;420:30;167:4286;;;;;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;1500:62:0;;:::i;:::-;1075:31:6;167:4286;;-1:-1:-1;;;;167:4286:6;1090:15;167:4286;;-1:-1:-1;;;167:4286:6;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;552:23;167:4286;;;-1:-1:-1;;;;;167:4286:6;;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;-1:-1:-1;;;;;167:4286:6;;;;;;;;1500:62:0;;:::i;:::-;167:4286:6;;;1455:20;167:4286;;;1455:20;167:4286;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;-1:-1:-1;;;;;167:4286:6;;:::i;:::-;;;;707:44;167:4286;;;;;;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;;3075:2:2;167:4286:6;;;;;;;;;;;;;;;;1832:27;167:4286;;;:::i;:::-;;;;:::i;:::-;1500:62:0;;;:::i;:::-;167:4286:6;;;;;;;;1832:9;167:4286;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;735:10:5;167:4286:6;;;;;;;;10848:17:2;;;10828:37;;10824:310;;167:4286:6;;5249:5:2;;;;;;:::i;10824:310::-;10885:24;;;10881:130;;10061:19;;10057:89;;735:10:5;10159:21:2;10155:90;;-1:-1:-1;167:4286:6;;;;;;;;;;;;735:10:5;167:4286:6;;;;;;;;;;;;;;;;;5249:5:2;10824:310;;10155:90;167:4286:6;;;;;10203:31:2;;;;;;;;167:4286:6;10203:31:2;10057:89;167:4286:6;;;;;10103:32:2;;;;;;;;167:4286:6;10103:32:2;10881:130;167:4286:6;;-1:-1:-1;;;10936:60:2;;735:10:5;10936:60:2;;;167:4286:6;;;;;;;;;;;;;;;;;;-1:-1:-1;167:4286:6;;10936:60:2;;;167:4286:6;;;;;;;-1:-1:-1;;167:4286:6;;;;;;3222:12:2;167:4286:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;735:10:5;;10061:19:2;10057:89;;-1:-1:-1;;;;;167:4286:6;;10159:21:2;;10155:90;;167:4286:6;735:10:5;;;167:4286:6;;9105:4:2;167:4286:6;;;;;;;;;;;;;;;;;;;;10333:31:2;735:10:5;;10333:31:2;;167:4286:6;9105:4:2;167:4286:6;;;10155:90:2;167:4286:6;;-1:-1:-1;;;10203:31:2;;167:4286:6;10203:31:2;;;167:4286:6;;;10203:31:2;10057:89;167:4286:6;;-1:-1:-1;;;10103:32:2;;167:4286:6;10103:32:2;;;167:4286:6;;;10103:32:2;167:4286:6;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;;;2151:5:2;167:4286:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;167:4286:6;;;;;-1:-1:-1;;167:4286:6;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2151:5:2;167:4286:6;;;;;;-1:-1:-1;167:4286:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;;;;456:31;167:4286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;167:4286:6;;;;:::o;:::-;;;;-1:-1:-1;;;;;167:4286:6;;;;;;:::o;:::-;;;;-1:-1:-1;;;;;167:4286:6;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;:::o;5656:300:2:-;;-1:-1:-1;;;;;167:4286:6;;;5739:18:2;;5735:86;;167:4286:6;;;5834:16:2;;5830:86;;5755:1;167:4286:6;;5755:1:2;167:4286:6;;2145:9;167:4286;;;;;;;;5755:1:2;167:4286:6;;;2145:45;;;5656:300:2;2141:400:6;;;;;;;:::i;:::-;167:4286;3175:18;167:4286;;;;3171:651;;2141:400;3175:18;167:4286;;;;;;3917:59;;;;2141:400;3913:117;;;;2342:23;167:4286;2333:33;167:4286;;;;2342:15;:23;:::i;:::-;2333:33;:::i;:::-;2314:52;2141:400;;2554:17;;;;2591:11;167:4286;;2591:25;;;2587:97;;167:4286;;;;;;;;;;;;;;;2840:11;410:3;2798;410;2840:11;410:3;;2798;;;;:::i;:::-;2840:11;:::i;:::-;;;:::i;:::-;5656:300:2:o;167:4286:6:-;;;;5755:1:2;167:4286:6;;;;;5755:1:2;167:4286:6;2587:97;167:4286;-1:-1:-1;;;2643:26:6;;;;;2550:374;2907:5;;;;;;;:::i;3913:117::-;167:4286;;-1:-1:-1;;;3999:20:6;;;;;3917:59;5755:1:2;167:4286:6;;;;;3940:24;167:4286;;5755:1:2;167:4286:6;;3940:24;:::i;:::-;3967:9;167:4286;-1:-1:-1;3917:59:6;;;;3171:651;-1:-1:-1;;;;;3213:25:6;;;3209:90;;5755:1:2;167:4286:6;;;3326:9;167:4286;;;;;;3455:23;;;;3392:3;167:4286;3512:12;3497:27;3512:12;;167:4286;;;;;;;;;;;3493:152;;167:4286;3671:8;167:4286;;;;3662:17;;;3658:82;;167:4286;5755:1:2;167:4286:6;3326:9;167:4286;;3512:12;3392:3;167:4286;3772:39;167:4286;5755:1:2;167:4286:6;;3171:651;;3658:82;167:4286;;-1:-1:-1;;;3706:19:6;;;;;3493:152;167:4286;;;;3493:152;;;2141:400;167:4286;5755:1:2;167:4286:6;;;;;;2145:9;167:4286;;;;5755:1:2;167:4286:6;;;2387:46;;;;2141:400;2383:158;;;;2141:400;2383:158;;;;;:::i;:::-;2497:33;2506:23;167:4286;2524:5;167:4286;;;;2506:15;:23;:::i;2497:33::-;2478:52;;2383:158;2141:400;;2387:46;2417:10;167:4286;;;5755:1:2;167:4286:6;;;5755:1:2;167:4286:6;;;2416:17;2387:46;;;;;2145:45;167:4286;;5755:1:2;167:4286:6;2176:10;167:4286;;;;5755:1:2;167:4286:6;;;2175:15;2145:45;;5830:86:2;167:4286:6;;-1:-1:-1;;;5873:32:2;;5755:1;5873:32;;;167:4286:6;;;5873:32:2;5735:86;167:4286:6;;-1:-1:-1;;;5780:30:2;;5755:1;5780:30;;;167:4286:6;;;5780:30:2;1796:162:0;1710:6;167:4286:6;-1:-1:-1;;;;;167:4286:6;735:10:5;1855:23:0;1851:101;;1796:162::o;1851:101::-;167:4286:6;;-1:-1:-1;;;1901:40:0;;735:10:5;1901:40:0;;;167:4286:6;;;1901:40:0;167:4286:6;;;;;;;;;;:::o;2936:156::-;167:4286;2989:5;167:4286;;;;2989:10;;:37;;;;;2936:156;2985:101;;;2936:156::o;2985:101::-;167:4286;;-1:-1:-1;;;3049:26:6;;;;;2989:37;3011:15;;;-1:-1:-1;2989:37:6;;;4042:409;4157:3;4146:14;;4157:3;;4176:15;4184:2;4176:15;4188:2;4176:15;:::o;4142:303::-;4223:3;4212:14;;4223:3;;4242:15;4250:2;4242:15;;;:::o;4208:237::-;4289:3;4278:14;;4289:3;;4308:15;4316:2;4308:15;;;:::o;4274:171::-;4355:4;-1:-1:-1;4355:4:6;;4383:2;4375:15;;;:::o;4340:105::-;4429:1;4421:13;;;:::o;167:4286::-;;;;;;;;;;:::o;6271:1107:2:-;-1:-1:-1;;;;;167:4286:6;;;;;;6360:18:2;167:4286:6;;;7346:25:2;167:4286:6;;;6496:21:2;167:4286:6;6496:21:2;167:4286:6;6496:21:2;:::i;:::-;;167:4286:6;6356:540:2;167:4286:6;;6910:16:2;167:4286:6;;;7073:21:2;167:4286:6;;7073:21:2;167:4286:6;6906:425:2;167:4286:6;;;;;7346:25:2;6271:1107::o;6906:425::-;167:4286:6;6376:1:2;167:4286:6;6376:1:2;167:4286:6;;;6376:1:2;167:4286:6;;;;;;;6906:425:2;;6356:540;167:4286:6;6376:1:2;167:4286:6;6376:1:2;167:4286:6;;;6376:1:2;167:4286:6;;6603:19:2;;;;6599:115;;167:4286:6;;;;;7346:25:2;167:4286:6;;6376:1:2;167:4286:6;6376:1:2;167:4286:6;;;;6376:1:2;167:4286:6;;6356:540:2;;6599:115;167:4286:6;;-1:-1:-1;;;6649:50:2;;-1:-1:-1;;;;;167:4286:6;;;;6649:50:2;;;167:4286:6;;;;;;;;;;;;;;;;10936:60:2

Swarm Source

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