ETH Price: $2,974.09 (-2.53%)
Gas: 3 Gwei

Token

Epstein Token (EPSTEIN)
 

Overview

Max Total Supply

69,000,000,000,000 EPSTEIN

Holders

2,572

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
OpenSea: OPENSTORE Token
Balance
555,896,548.722426737751716769 EPSTEIN

Value
$0.00
0x495f947276749ce646f68ac8c248420045cb7b5e
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:
EPSTEINToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-24
*/

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




/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @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 Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 immutable private _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor (uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}




/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}






 // I don't think we need SafeERC20, haven't seen it yet


// we know it has the following
 // IERC20
 // ERC20
 // ERC20Capped
 
contract EPSTEINToken is Context, ERC20Capped{

    // using Address for address;
    using SafeERC20 for IERC20;         
    
    constructor(uint256 initialSupply) public ERC20Capped(initialSupply * 10 ** 18) ERC20("Epstein Token", "EPSTEIN"){
        //There can never be more EPSTEIN minted, the reason we do the ERC20 version of _mint is to get around a compiler issue, but the cap remains in place.
        ERC20._mint(msg.sender, initialSupply * 10 ** 18);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b5060405162001c6638038062001c668339818101604052810190620000379190620003a0565b670de0b6b3a7640000816200004d9190620004fa565b6040518060400160405280600d81526020017f4570737465696e20546f6b656e000000000000000000000000000000000000008152506040518060400160405280600781526020017f4550535445494e000000000000000000000000000000000000000000000000008152508160039080519060200190620000d1929190620002d9565b508060049080519060200190620000ea929190620002d9565b5050506000811162000133576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012a906200042b565b60405180910390fd5b8060808181525050506200016833670de0b6b3a764000083620001579190620004fa565b6200016f60201b620007aa1760201c565b5062000665565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001d9906200044d565b60405180910390fd5b620001f660008383620002d460201b60201c565b80600260008282546200020a91906200049d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200026191906200049d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002c891906200046f565b60405180910390a35050565b505050565b828054620002e79062000565565b90600052602060002090601f0160209004810192826200030b576000855562000357565b82601f106200032657805160ff191683800117855562000357565b8280016001018555821562000357579182015b828111156200035657825182559160200191906001019062000339565b5b5090506200036691906200036a565b5090565b5b80821115620003855760008160009055506001016200036b565b5090565b6000815190506200039a816200064b565b92915050565b600060208284031215620003b357600080fd5b6000620003c38482850162000389565b91505092915050565b6000620003db6015836200048c565b9150620003e882620005f9565b602082019050919050565b600062000402601f836200048c565b91506200040f8262000622565b602082019050919050565b62000425816200055b565b82525050565b600060208201905081810360008301526200044681620003cc565b9050919050565b600060208201905081810360008301526200046881620003f3565b9050919050565b60006020820190506200048660008301846200041a565b92915050565b600082825260208201905092915050565b6000620004aa826200055b565b9150620004b7836200055b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004ef57620004ee6200059b565b5b828201905092915050565b600062000507826200055b565b915062000514836200055b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000550576200054f6200059b565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200057e57607f821691505b60208210811415620005955762000594620005ca565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000656816200055b565b81146200066257600080fd5b50565b6080516115e562000681600039600061046701526115e56000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80633950935111610071578063395093511461019157806370a08231146101c157806395d89b41146101f1578063a457c2d71461020f578063a9059cbb1461023f578063dd62ed3e1461026f576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce56714610155578063355274ea14610173575b600080fd5b6100c161029f565b6040516100ce9190611008565b60405180910390f35b6100f160048036038101906100ec9190610e33565b610331565b6040516100fe9190610fed565b60405180910390f35b61010f61034f565b60405161011c919061112a565b60405180910390f35b61013f600480360381019061013a9190610de4565b610359565b60405161014c9190610fed565b60405180910390f35b61015d61045a565b60405161016a9190611145565b60405180910390f35b61017b610463565b604051610188919061112a565b60405180910390f35b6101ab60048036038101906101a69190610e33565b61048b565b6040516101b89190610fed565b60405180910390f35b6101db60048036038101906101d69190610d7f565b610537565b6040516101e8919061112a565b60405180910390f35b6101f961057f565b6040516102069190611008565b60405180910390f35b61022960048036038101906102249190610e33565b610611565b6040516102369190610fed565b60405180910390f35b61025960048036038101906102549190610e33565b610705565b6040516102669190610fed565b60405180910390f35b61028960048036038101906102849190610da8565b610723565b604051610296919061112a565b60405180910390f35b6060600380546102ae9061128e565b80601f01602080910402602001604051908101604052809291908181526020018280546102da9061128e565b80156103275780601f106102fc57610100808354040283529160200191610327565b820191906000526020600020905b81548152906001019060200180831161030a57829003601f168201915b5050505050905090565b600061034561033e6108fe565b8484610906565b6001905092915050565b6000600254905090565b6000610366848484610ad1565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103b16108fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104289061108a565b60405180910390fd5b61044e8561043d6108fe565b858461044991906111d2565b610906565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600061052d6104986108fe565b8484600160006104a66108fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610528919061117c565b610906565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461058e9061128e565b80601f01602080910402602001604051908101604052809291908181526020018280546105ba9061128e565b80156106075780601f106105dc57610100808354040283529160200191610607565b820191906000526020600020905b8154815290600101906020018083116105ea57829003601f168201915b5050505050905090565b600080600160006106206108fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d4906110ea565b60405180910390fd5b6106fa6106e86108fe565b8585846106f591906111d2565b610906565b600191505092915050565b60006107196107126108fe565b8484610ad1565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561081a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108119061110a565b60405180910390fd5b61082660008383610d50565b8060026000828254610838919061117c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461088d919061117c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516108f2919061112a565b60405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d906110ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dd9061104a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ac4919061112a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b38906110aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba89061102a565b60405180910390fd5b610bbc838383610d50565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c399061106a565b60405180910390fd5b8181610c4e91906111d2565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cde919061117c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d42919061112a565b60405180910390a350505050565b505050565b600081359050610d6481611581565b92915050565b600081359050610d7981611598565b92915050565b600060208284031215610d9157600080fd5b6000610d9f84828501610d55565b91505092915050565b60008060408385031215610dbb57600080fd5b6000610dc985828601610d55565b9250506020610dda85828601610d55565b9150509250929050565b600080600060608486031215610df957600080fd5b6000610e0786828701610d55565b9350506020610e1886828701610d55565b9250506040610e2986828701610d6a565b9150509250925092565b60008060408385031215610e4657600080fd5b6000610e5485828601610d55565b9250506020610e6585828601610d6a565b9150509250929050565b610e7881611218565b82525050565b6000610e8982611160565b610e93818561116b565b9350610ea381856020860161125b565b610eac8161131e565b840191505092915050565b6000610ec460238361116b565b9150610ecf8261132f565b604082019050919050565b6000610ee760228361116b565b9150610ef28261137e565b604082019050919050565b6000610f0a60268361116b565b9150610f15826113cd565b604082019050919050565b6000610f2d60288361116b565b9150610f388261141c565b604082019050919050565b6000610f5060258361116b565b9150610f5b8261146b565b604082019050919050565b6000610f7360248361116b565b9150610f7e826114ba565b604082019050919050565b6000610f9660258361116b565b9150610fa182611509565b604082019050919050565b6000610fb9601f8361116b565b9150610fc482611558565b602082019050919050565b610fd881611244565b82525050565b610fe78161124e565b82525050565b60006020820190506110026000830184610e6f565b92915050565b600060208201905081810360008301526110228184610e7e565b905092915050565b6000602082019050818103600083015261104381610eb7565b9050919050565b6000602082019050818103600083015261106381610eda565b9050919050565b6000602082019050818103600083015261108381610efd565b9050919050565b600060208201905081810360008301526110a381610f20565b9050919050565b600060208201905081810360008301526110c381610f43565b9050919050565b600060208201905081810360008301526110e381610f66565b9050919050565b6000602082019050818103600083015261110381610f89565b9050919050565b6000602082019050818103600083015261112381610fac565b9050919050565b600060208201905061113f6000830184610fcf565b92915050565b600060208201905061115a6000830184610fde565b92915050565b600081519050919050565b600082825260208201905092915050565b600061118782611244565b915061119283611244565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156111c7576111c66112c0565b5b828201905092915050565b60006111dd82611244565b91506111e883611244565b9250828210156111fb576111fa6112c0565b5b828203905092915050565b600061121182611224565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561127957808201518184015260208101905061125e565b83811115611288576000848401525b50505050565b600060028204905060018216806112a657607f821691505b602082108114156112ba576112b96112ef565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61158a81611206565b811461159557600080fd5b50565b6115a181611244565b81146115ac57600080fd5b5056fea2646970667358221220b0882b998d84e64923c507c6f4a68506b7ef24446a7e26c38a44b3b0b82bb07e64736f6c6343000804003300000000000000000000000000000000000000000000000000003ec1507d5000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80633950935111610071578063395093511461019157806370a08231146101c157806395d89b41146101f1578063a457c2d71461020f578063a9059cbb1461023f578063dd62ed3e1461026f576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce56714610155578063355274ea14610173575b600080fd5b6100c161029f565b6040516100ce9190611008565b60405180910390f35b6100f160048036038101906100ec9190610e33565b610331565b6040516100fe9190610fed565b60405180910390f35b61010f61034f565b60405161011c919061112a565b60405180910390f35b61013f600480360381019061013a9190610de4565b610359565b60405161014c9190610fed565b60405180910390f35b61015d61045a565b60405161016a9190611145565b60405180910390f35b61017b610463565b604051610188919061112a565b60405180910390f35b6101ab60048036038101906101a69190610e33565b61048b565b6040516101b89190610fed565b60405180910390f35b6101db60048036038101906101d69190610d7f565b610537565b6040516101e8919061112a565b60405180910390f35b6101f961057f565b6040516102069190611008565b60405180910390f35b61022960048036038101906102249190610e33565b610611565b6040516102369190610fed565b60405180910390f35b61025960048036038101906102549190610e33565b610705565b6040516102669190610fed565b60405180910390f35b61028960048036038101906102849190610da8565b610723565b604051610296919061112a565b60405180910390f35b6060600380546102ae9061128e565b80601f01602080910402602001604051908101604052809291908181526020018280546102da9061128e565b80156103275780601f106102fc57610100808354040283529160200191610327565b820191906000526020600020905b81548152906001019060200180831161030a57829003601f168201915b5050505050905090565b600061034561033e6108fe565b8484610906565b6001905092915050565b6000600254905090565b6000610366848484610ad1565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103b16108fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104289061108a565b60405180910390fd5b61044e8561043d6108fe565b858461044991906111d2565b610906565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000366e7064422fd84202340000000905090565b600061052d6104986108fe565b8484600160006104a66108fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610528919061117c565b610906565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461058e9061128e565b80601f01602080910402602001604051908101604052809291908181526020018280546105ba9061128e565b80156106075780601f106105dc57610100808354040283529160200191610607565b820191906000526020600020905b8154815290600101906020018083116105ea57829003601f168201915b5050505050905090565b600080600160006106206108fe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d4906110ea565b60405180910390fd5b6106fa6106e86108fe565b8585846106f591906111d2565b610906565b600191505092915050565b60006107196107126108fe565b8484610ad1565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561081a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108119061110a565b60405180910390fd5b61082660008383610d50565b8060026000828254610838919061117c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461088d919061117c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516108f2919061112a565b60405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d906110ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dd9061104a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ac4919061112a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b38906110aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba89061102a565b60405180910390fd5b610bbc838383610d50565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c399061106a565b60405180910390fd5b8181610c4e91906111d2565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cde919061117c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d42919061112a565b60405180910390a350505050565b505050565b600081359050610d6481611581565b92915050565b600081359050610d7981611598565b92915050565b600060208284031215610d9157600080fd5b6000610d9f84828501610d55565b91505092915050565b60008060408385031215610dbb57600080fd5b6000610dc985828601610d55565b9250506020610dda85828601610d55565b9150509250929050565b600080600060608486031215610df957600080fd5b6000610e0786828701610d55565b9350506020610e1886828701610d55565b9250506040610e2986828701610d6a565b9150509250925092565b60008060408385031215610e4657600080fd5b6000610e5485828601610d55565b9250506020610e6585828601610d6a565b9150509250929050565b610e7881611218565b82525050565b6000610e8982611160565b610e93818561116b565b9350610ea381856020860161125b565b610eac8161131e565b840191505092915050565b6000610ec460238361116b565b9150610ecf8261132f565b604082019050919050565b6000610ee760228361116b565b9150610ef28261137e565b604082019050919050565b6000610f0a60268361116b565b9150610f15826113cd565b604082019050919050565b6000610f2d60288361116b565b9150610f388261141c565b604082019050919050565b6000610f5060258361116b565b9150610f5b8261146b565b604082019050919050565b6000610f7360248361116b565b9150610f7e826114ba565b604082019050919050565b6000610f9660258361116b565b9150610fa182611509565b604082019050919050565b6000610fb9601f8361116b565b9150610fc482611558565b602082019050919050565b610fd881611244565b82525050565b610fe78161124e565b82525050565b60006020820190506110026000830184610e6f565b92915050565b600060208201905081810360008301526110228184610e7e565b905092915050565b6000602082019050818103600083015261104381610eb7565b9050919050565b6000602082019050818103600083015261106381610eda565b9050919050565b6000602082019050818103600083015261108381610efd565b9050919050565b600060208201905081810360008301526110a381610f20565b9050919050565b600060208201905081810360008301526110c381610f43565b9050919050565b600060208201905081810360008301526110e381610f66565b9050919050565b6000602082019050818103600083015261110381610f89565b9050919050565b6000602082019050818103600083015261112381610fac565b9050919050565b600060208201905061113f6000830184610fcf565b92915050565b600060208201905061115a6000830184610fde565b92915050565b600081519050919050565b600082825260208201905092915050565b600061118782611244565b915061119283611244565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156111c7576111c66112c0565b5b828201905092915050565b60006111dd82611244565b91506111e883611244565b9250828210156111fb576111fa6112c0565b5b828203905092915050565b600061121182611224565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561127957808201518184015260208101905061125e565b83811115611288576000848401525b50505050565b600060028204905060018216806112a657607f821691505b602082108114156112ba576112b96112ef565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61158a81611206565b811461159557600080fd5b50565b6115a181611244565b81146115ac57600080fd5b5056fea2646970667358221220b0882b998d84e64923c507c6f4a68506b7ef24446a7e26c38a44b3b0b82bb07e64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000003ec1507d5000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 69000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000003ec1507d5000


Deployed Bytecode Sourcemap

27642:481:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6191:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8358:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7311:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9009:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7153:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15465:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9840:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7482:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6410:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10558:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7822:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8060:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6191:100;6245:13;6278:5;6271:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6191:100;:::o;8358:169::-;8441:4;8458:39;8467:12;:10;:12::i;:::-;8481:7;8490:6;8458:8;:39::i;:::-;8515:4;8508:11;;8358:169;;;;:::o;7311:108::-;7372:7;7399:12;;7392:19;;7311:108;:::o;9009:422::-;9115:4;9132:36;9142:6;9150:9;9161:6;9132:9;:36::i;:::-;9181:24;9208:11;:19;9220:6;9208:19;;;;;;;;;;;;;;;:33;9228:12;:10;:12::i;:::-;9208:33;;;;;;;;;;;;;;;;9181:60;;9280:6;9260:16;:26;;9252:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9342:57;9351:6;9359:12;:10;:12::i;:::-;9392:6;9373:16;:25;;;;:::i;:::-;9342:8;:57::i;:::-;9419:4;9412:11;;;9009:422;;;;;:::o;7153:93::-;7211:5;7236:2;7229:9;;7153:93;:::o;15465:83::-;15509:7;15536:4;15529:11;;15465:83;:::o;9840:215::-;9928:4;9945:80;9954:12;:10;:12::i;:::-;9968:7;10014:10;9977:11;:25;9989:12;:10;:12::i;:::-;9977:25;;;;;;;;;;;;;;;:34;10003:7;9977:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9945:8;:80::i;:::-;10043:4;10036:11;;9840:215;;;;:::o;7482:127::-;7556:7;7583:9;:18;7593:7;7583:18;;;;;;;;;;;;;;;;7576:25;;7482:127;;;:::o;6410:104::-;6466:13;6499:7;6492:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6410:104;:::o;10558:377::-;10651:4;10668:24;10695:11;:25;10707:12;:10;:12::i;:::-;10695:25;;;;;;;;;;;;;;;:34;10721:7;10695:34;;;;;;;;;;;;;;;;10668:61;;10768:15;10748:16;:35;;10740:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10836:67;10845:12;:10;:12::i;:::-;10859:7;10887:15;10868:16;:34;;;;:::i;:::-;10836:8;:67::i;:::-;10923:4;10916:11;;;10558:377;;;;:::o;7822:175::-;7908:4;7925:42;7935:12;:10;:12::i;:::-;7949:9;7960:6;7925:9;:42::i;:::-;7985:4;7978:11;;7822:175;;;;:::o;8060:151::-;8149:7;8176:11;:18;8188:5;8176:18;;;;;;;;;;;;;;;:27;8195:7;8176:27;;;;;;;;;;;;;;;;8169:34;;8060:151;;;;:::o;12316:338::-;12419:1;12400:21;;:7;:21;;;;12392:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12470:49;12499:1;12503:7;12512:6;12470:20;:49::i;:::-;12548:6;12532:12;;:22;;;;;;;:::i;:::-;;;;;;;;12587:6;12565:9;:18;12575:7;12565:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;12630:7;12609:37;;12626:1;12609:37;;;12639:6;12609:37;;;;;;:::i;:::-;;;;;;;;12316:338;;:::o;605:98::-;658:7;685:10;678:17;;605:98;:::o;13919:346::-;14038:1;14021:19;;:5;:19;;;;14013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14119:1;14100:21;;:7;:21;;;;14092:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14203:6;14173:11;:18;14185:5;14173:18;;;;;;;;;;;;;;;:27;14192:7;14173:27;;;;;;;;;;;;;;;:36;;;;14241:7;14225:32;;14234:5;14225:32;;;14250:6;14225:32;;;;;;:::i;:::-;;;;;;;;13919:346;;;:::o;11425:604::-;11549:1;11531:20;;:6;:20;;;;11523:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11633:1;11612:23;;:9;:23;;;;11604:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11688:47;11709:6;11717:9;11728:6;11688:20;:47::i;:::-;11748:21;11772:9;:17;11782:6;11772:17;;;;;;;;;;;;;;;;11748:41;;11825:6;11808:13;:23;;11800:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11921:6;11905:13;:22;;;;:::i;:::-;11885:9;:17;11895:6;11885:17;;;;;;;;;;;;;;;:42;;;;11962:6;11938:9;:20;11948:9;11938:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12003:9;11986:35;;11995:6;11986:35;;;12014:6;11986:35;;;;;;:::i;:::-;;;;;;;;11425:604;;;;:::o;14868:92::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;2152:3;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:366::-;2576:3;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2673:93;2762:3;2673:93;:::i;:::-;2791:2;2786:3;2782:12;2775:19;;2580:220;;;:::o;2806:366::-;2948:3;2969:67;3033:2;3028:3;2969:67;:::i;:::-;2962:74;;3045:93;3134:3;3045:93;:::i;:::-;3163:2;3158:3;3154:12;3147:19;;2952:220;;;:::o;3178:366::-;3320:3;3341:67;3405:2;3400:3;3341:67;:::i;:::-;3334:74;;3417:93;3506:3;3417:93;:::i;:::-;3535:2;3530:3;3526:12;3519:19;;3324:220;;;:::o;3550:366::-;3692:3;3713:67;3777:2;3772:3;3713:67;:::i;:::-;3706:74;;3789:93;3878:3;3789:93;:::i;:::-;3907:2;3902:3;3898:12;3891:19;;3696:220;;;:::o;3922:366::-;4064:3;4085:67;4149:2;4144:3;4085:67;:::i;:::-;4078:74;;4161:93;4250:3;4161:93;:::i;:::-;4279:2;4274:3;4270:12;4263:19;;4068:220;;;:::o;4294:366::-;4436:3;4457:67;4521:2;4516:3;4457:67;:::i;:::-;4450:74;;4533:93;4622:3;4533:93;:::i;:::-;4651:2;4646:3;4642:12;4635:19;;4440:220;;;:::o;4666:366::-;4808:3;4829:67;4893:2;4888:3;4829:67;:::i;:::-;4822:74;;4905:93;4994:3;4905:93;:::i;:::-;5023:2;5018:3;5014:12;5007:19;;4812:220;;;:::o;5038:366::-;5180:3;5201:67;5265:2;5260:3;5201:67;:::i;:::-;5194:74;;5277:93;5366:3;5277:93;:::i;:::-;5395:2;5390:3;5386:12;5379:19;;5184:220;;;:::o;5410:118::-;5497:24;5515:5;5497:24;:::i;:::-;5492:3;5485:37;5475:53;;:::o;5534:112::-;5617:22;5633:5;5617:22;:::i;:::-;5612:3;5605:35;5595:51;;:::o;5652:210::-;5739:4;5777:2;5766:9;5762:18;5754:26;;5790:65;5852:1;5841:9;5837:17;5828:6;5790:65;:::i;:::-;5744:118;;;;:::o;5868:313::-;5981:4;6019:2;6008:9;6004:18;5996:26;;6068:9;6062:4;6058:20;6054:1;6043:9;6039:17;6032:47;6096:78;6169:4;6160:6;6096:78;:::i;:::-;6088:86;;5986:195;;;;:::o;6187:419::-;6353:4;6391:2;6380:9;6376:18;6368:26;;6440:9;6434:4;6430:20;6426:1;6415:9;6411:17;6404:47;6468:131;6594:4;6468:131;:::i;:::-;6460:139;;6358:248;;;:::o;6612:419::-;6778:4;6816:2;6805:9;6801:18;6793:26;;6865:9;6859:4;6855:20;6851:1;6840:9;6836:17;6829:47;6893:131;7019:4;6893:131;:::i;:::-;6885:139;;6783:248;;;:::o;7037:419::-;7203:4;7241:2;7230:9;7226:18;7218:26;;7290:9;7284:4;7280:20;7276:1;7265:9;7261:17;7254:47;7318:131;7444:4;7318:131;:::i;:::-;7310:139;;7208:248;;;:::o;7462:419::-;7628:4;7666:2;7655:9;7651:18;7643:26;;7715:9;7709:4;7705:20;7701:1;7690:9;7686:17;7679:47;7743:131;7869:4;7743:131;:::i;:::-;7735:139;;7633:248;;;:::o;7887:419::-;8053:4;8091:2;8080:9;8076:18;8068:26;;8140:9;8134:4;8130:20;8126:1;8115:9;8111:17;8104:47;8168:131;8294:4;8168:131;:::i;:::-;8160:139;;8058:248;;;:::o;8312:419::-;8478:4;8516:2;8505:9;8501:18;8493:26;;8565:9;8559:4;8555:20;8551:1;8540:9;8536:17;8529:47;8593:131;8719:4;8593:131;:::i;:::-;8585:139;;8483:248;;;:::o;8737:419::-;8903:4;8941:2;8930:9;8926:18;8918:26;;8990:9;8984:4;8980:20;8976:1;8965:9;8961:17;8954:47;9018:131;9144:4;9018:131;:::i;:::-;9010:139;;8908:248;;;:::o;9162:419::-;9328:4;9366:2;9355:9;9351:18;9343:26;;9415:9;9409:4;9405:20;9401:1;9390:9;9386:17;9379:47;9443:131;9569:4;9443:131;:::i;:::-;9435:139;;9333:248;;;:::o;9587:222::-;9680:4;9718:2;9707:9;9703:18;9695:26;;9731:71;9799:1;9788:9;9784:17;9775:6;9731:71;:::i;:::-;9685:124;;;;:::o;9815:214::-;9904:4;9942:2;9931:9;9927:18;9919:26;;9955:67;10019:1;10008:9;10004:17;9995:6;9955:67;:::i;:::-;9909:120;;;;:::o;10035:99::-;10087:6;10121:5;10115:12;10105:22;;10094:40;;;:::o;10140:169::-;10224:11;10258:6;10253:3;10246:19;10298:4;10293:3;10289:14;10274:29;;10236:73;;;;:::o;10315:305::-;10355:3;10374:20;10392:1;10374:20;:::i;:::-;10369:25;;10408:20;10426:1;10408:20;:::i;:::-;10403:25;;10562:1;10494:66;10490:74;10487:1;10484:81;10481:2;;;10568:18;;:::i;:::-;10481:2;10612:1;10609;10605:9;10598:16;;10359:261;;;;:::o;10626:191::-;10666:4;10686:20;10704:1;10686:20;:::i;:::-;10681:25;;10720:20;10738:1;10720:20;:::i;:::-;10715:25;;10759:1;10756;10753:8;10750:2;;;10764:18;;:::i;:::-;10750:2;10809:1;10806;10802:9;10794:17;;10671:146;;;;:::o;10823:96::-;10860:7;10889:24;10907:5;10889:24;:::i;:::-;10878:35;;10868:51;;;:::o;10925:90::-;10959:7;11002:5;10995:13;10988:21;10977:32;;10967:48;;;:::o;11021:126::-;11058:7;11098:42;11091:5;11087:54;11076:65;;11066:81;;;:::o;11153:77::-;11190:7;11219:5;11208:16;;11198:32;;;:::o;11236:86::-;11271:7;11311:4;11304:5;11300:16;11289:27;;11279:43;;;:::o;11328:307::-;11396:1;11406:113;11420:6;11417:1;11414:13;11406:113;;;11505:1;11500:3;11496:11;11490:18;11486:1;11481:3;11477:11;11470:39;11442:2;11439:1;11435:10;11430:15;;11406:113;;;11537:6;11534:1;11531:13;11528:2;;;11617:1;11608:6;11603:3;11599:16;11592:27;11528:2;11377:258;;;;:::o;11641:320::-;11685:6;11722:1;11716:4;11712:12;11702:22;;11769:1;11763:4;11759:12;11790:18;11780:2;;11846:4;11838:6;11834:17;11824:27;;11780:2;11908;11900:6;11897:14;11877:18;11874:38;11871:2;;;11927:18;;:::i;:::-;11871:2;11692:269;;;;:::o;11967:180::-;12015:77;12012:1;12005:88;12112:4;12109:1;12102:15;12136:4;12133:1;12126:15;12153:180;12201:77;12198:1;12191:88;12298:4;12295:1;12288:15;12322:4;12319:1;12312:15;12339:102;12380:6;12431:2;12427:7;12422:2;12415:5;12411:14;12407:28;12397:38;;12387:54;;;:::o;12447:222::-;12587:34;12583:1;12575:6;12571:14;12564:58;12656:5;12651:2;12643:6;12639:15;12632:30;12553:116;:::o;12675:221::-;12815:34;12811:1;12803:6;12799:14;12792:58;12884:4;12879:2;12871:6;12867:15;12860:29;12781:115;:::o;12902:225::-;13042:34;13038:1;13030:6;13026:14;13019:58;13111:8;13106:2;13098:6;13094:15;13087:33;13008:119;:::o;13133:227::-;13273:34;13269:1;13261:6;13257:14;13250:58;13342:10;13337:2;13329:6;13325:15;13318:35;13239:121;:::o;13366:224::-;13506:34;13502:1;13494:6;13490:14;13483:58;13575:7;13570:2;13562:6;13558:15;13551:32;13472:118;:::o;13596:223::-;13736:34;13732:1;13724:6;13720:14;13713:58;13805:6;13800:2;13792:6;13788:15;13781:31;13702:117;:::o;13825:224::-;13965:34;13961:1;13953:6;13949:14;13942:58;14034:7;14029:2;14021:6;14017:15;14010:32;13931:118;:::o;14055:181::-;14195:33;14191:1;14183:6;14179:14;14172:57;14161:75;:::o;14242:122::-;14315:24;14333:5;14315:24;:::i;:::-;14308:5;14305:35;14295:2;;14354:1;14351;14344:12;14295:2;14285:79;:::o;14370:122::-;14443:24;14461:5;14443:24;:::i;:::-;14436:5;14433:35;14423:2;;14482:1;14479;14472:12;14423:2;14413:79;:::o

Swarm Source

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