ETH Price: $3,453.29 (+0.93%)
Gas: 8 Gwei

Token

Chuck (CHUCK)
 

Overview

Max Total Supply

42,000,000,000 CHUCK

Holders

623 ( 0.161%)

Market

Price

$0.00 @ 0.000000 ETH (+9.42%)

Onchain Market Cap

$179,340.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
59 CHUCK

Value
$0.00 ( ~0 Eth) [0.0000%]
0x9dbacd7788de737a3943b26bf5eae1e91e53c299
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

As the internet's most legendary meme, CHUCK aims to bring back memecoin glory with humor and unity. It's a pillar of fairness and decentralization on Ethereum. Join the revolution.

Market

Volume (24H):$1,991.62
Market Capitalization:$0.00
Circulating Supply:0.00 CHUCK
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
Uniswap V2 (Ethereum)
0X420698EBC9B7C225731C02D887D0729057339D39-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$0.00
0.0000000 Eth
$1,980.08
480,192,627.511 0X420698EBC9B7C225731C02D887D0729057339D39
100.0000%

Contract Source Code Verified (Exact Match)

Contract Name:
ChuckToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-03
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol
        /*Master of the memeverse

                       .         ..                   
               ..:$&&&&&&&&&&&&$...               
            .+&&&&&&&&$x++x$&&&&&&&&x.            
          .$&&&&&................&&&&&$.          
        :&&&&$........:&&&X++$&+....X&&&&:.       
      .x&&&$.......X&&&&&&&&&&&&&X....x&&&X.      
     .&&&X......$&&&&x$$$$$$$$$$&&+.;:..&&&&.     
    .&x:;+X$x:.;&&&&$x$$$$$$$$$$$&&.;;;:.X&&&.    
    ;+&&&&&&&&&&.+&&&XX$$$$$$$$$$$&.:;:...;$&$.   
   .$&&$$$$$$$$&&&:+&&$X$$$$$$$$$$&:...+&&&&&X:   
  .&XX&$$$$$$$$$$&&&:;&$$$$$$$$$$X&$&&&&&&$&&x&.  
  .&$;&&&$$$$$$$$$&&&&&;&&&&$$$$$$&&$$$$$&&&+$&.  
  :&&$.&&&&$$&&&&&&&..;&&+X&&&&&$$X$$&&&&&:.$&&;  
  .&&&...&&&&&..$&&;.:.......:x&&&&&&&x:....&$&;  
  .&&&.......&:..&$..;;;;;;;:...........:;..&&&.  
   .&&&.:;;:.X&;.:&x..:;;;;;;;;;;;;;;;;;;:.&&&+.  
   .&&&+.:;;:.X&&.&&&:..;;;.........;;;;:.+&&&.   
    :&&&+.:;;:.x&.&&&&&.....$&&&&&&;:;;:.;&&&.    
     :&&&x..;;:.:.X&&&&&&&&&&&&&x;&x.;..+&&&:     
      .$&&&...:;;..&&&&&$&&$+...$&&....&&&&..     
        :&&&&:...:..X&&&XXX$&&&&&&X..&&&&x.       
         .;&&&&&......+&&&&$$$&&;;+&&&&+.         
           ..&&&&&&&x.....$$&$;;&&&&&:.           
             . .;&&&&&&&&&&&$&&&&;..              
                   .......... .   

    https://chuck.club/
    https://twitter.com/CHUCKonETH 
    */

// 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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.20;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

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


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

pragma solidity ^0.8.20;


/**
 * @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: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.20;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of 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: contracts/Coin.sol


pragma solidity ^0.8.20;



contract ChuckToken is Ownable, ERC20 {

    mapping(address => bool) private l;
    bool private sniperProtection = true;

    constructor(
        string memory name,
        string memory symbol,
        uint initialSupply,
        address creator
    ) 
    Ownable(creator) ERC20(name, symbol)  {
        require(initialSupply > 0, "Initial supply has to be greater than 0");
        _mint(creator, initialSupply * 10**18);
        l[address(0)] = true;
        l[creator] = true;
    }

    function rmsp() public onlyOwner {
        sniperProtection = false;
    }

    function is_active() public view returns (bool) {
        return sniperProtection;
    }

    function transfer(address to, uint256 value) public override returns (bool) {
        if (sniperProtection) {
            require(l[to], "transfer not allowed yet");
        }
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public override returns (bool) {
        if (sniperProtection) {
            require(l[from] || l[to], "transfer not allowed yet");
        }
        return super.transferFrom(from, to, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"creator","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":[{"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"is_active","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":[],"name":"rmsp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600160075f6101000a81548160ff0219169083151502179055503480156200002a575f80fd5b5060405162002080380380620020808339818101604052810190620000509190620007ae565b8383825f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000c6575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000bd91906200086c565b60405180910390fd5b620000d7816200021e60201b60201c565b508160049081620000e9919062000ab5565b508060059081620000fb919062000ab5565b5050505f821162000143576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013a9062000c1d565b60405180910390fd5b6200016a81670de0b6b3a7640000846200015e919062000c6a565b620002df60201b60201c565b600160065f8073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050505062000d55565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000352575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200034991906200086c565b60405180910390fd5b620003655f83836200036960201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620003bd578060035f828254620003b0919062000cb4565b9250508190555062000490565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200044a578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620004419392919062000cff565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004d9578060035f828254039250508190555062000524565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000583919062000d3a565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620005f182620005a9565b810181811067ffffffffffffffff82111715620006135762000612620005b9565b5b80604052505050565b5f6200062762000590565b9050620006358282620005e6565b919050565b5f67ffffffffffffffff821115620006575762000656620005b9565b5b6200066282620005a9565b9050602081019050919050565b5f5b838110156200068e57808201518184015260208101905062000671565b5f8484015250505050565b5f620006af620006a9846200063a565b6200061c565b905082815260208101848484011115620006ce57620006cd620005a5565b5b620006db8482856200066f565b509392505050565b5f82601f830112620006fa57620006f9620005a1565b5b81516200070c84826020860162000699565b91505092915050565b5f819050919050565b620007298162000715565b811462000734575f80fd5b50565b5f8151905062000747816200071e565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000778826200074d565b9050919050565b6200078a816200076c565b811462000795575f80fd5b50565b5f81519050620007a8816200077f565b92915050565b5f805f8060808587031215620007c957620007c862000599565b5b5f85015167ffffffffffffffff811115620007e957620007e86200059d565b5b620007f787828801620006e3565b945050602085015167ffffffffffffffff8111156200081b576200081a6200059d565b5b6200082987828801620006e3565b93505060406200083c8782880162000737565b92505060606200084f8782880162000798565b91505092959194509250565b62000866816200076c565b82525050565b5f602082019050620008815f8301846200085b565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620008d657607f821691505b602082108103620008ec57620008eb62000891565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000913565b6200095c868362000913565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6200099d62000997620009918462000715565b62000974565b62000715565b9050919050565b5f819050919050565b620009b8836200097d565b620009d0620009c782620009a4565b8484546200091f565b825550505050565b5f90565b620009e6620009d8565b620009f3818484620009ad565b505050565b5b8181101562000a1a5762000a0e5f82620009dc565b600181019050620009f9565b5050565b601f82111562000a695762000a3381620008f2565b62000a3e8462000904565b8101602085101562000a4e578190505b62000a6662000a5d8562000904565b830182620009f8565b50505b505050565b5f82821c905092915050565b5f62000a8b5f198460080262000a6e565b1980831691505092915050565b5f62000aa5838362000a7a565b9150826002028217905092915050565b62000ac08262000887565b67ffffffffffffffff81111562000adc5762000adb620005b9565b5b62000ae88254620008be565b62000af582828562000a1e565b5f60209050601f83116001811462000b2b575f841562000b16578287015190505b62000b22858262000a98565b86555062000b91565b601f19841662000b3b86620008f2565b5f5b8281101562000b645784890151825560018201915060208501945060208101905062000b3d565b8683101562000b84578489015162000b80601f89168262000a7a565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f496e697469616c20737570706c792068617320746f20626520677265617465725f8201527f207468616e203000000000000000000000000000000000000000000000000000602082015250565b5f62000c0560278362000b99565b915062000c128262000ba9565b604082019050919050565b5f6020820190508181035f83015262000c368162000bf7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000c768262000715565b915062000c838362000715565b925082820262000c938162000715565b9150828204841483151762000cad5762000cac62000c3d565b5b5092915050565b5f62000cc08262000715565b915062000ccd8362000715565b925082820190508082111562000ce85762000ce762000c3d565b5b92915050565b62000cf98162000715565b82525050565b5f60608201905062000d145f8301866200085b565b62000d23602083018562000cee565b62000d32604083018462000cee565b949350505050565b5f60208201905062000d4f5f83018462000cee565b92915050565b61131d8062000d635f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a9059cbb11610064578063a9059cbb1461023a578063dd62ed3e1461026a578063ea984e7f1461029a578063f2fde38b146102a4576100e8565b8063715018a6146101f45780638da5cb5b146101fe57806395d89b411461021c576100e8565b80631a8012e4116100c65780631a8012e41461015857806323b872dd14610176578063313ce567146101a657806370a08231146101c4576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102c0565b6040516101019190610f2e565b60405180910390f35b610124600480360381019061011f9190610fdf565b610350565b6040516101319190611037565b60405180910390f35b610142610372565b60405161014f919061105f565b60405180910390f35b61016061037b565b60405161016d9190611037565b60405180910390f35b610190600480360381019061018b9190611078565b610390565b60405161019d9190611037565b60405180910390f35b6101ae610494565b6040516101bb91906110e3565b60405180910390f35b6101de60048036038101906101d991906110fc565b61049c565b6040516101eb919061105f565b60405180910390f35b6101fc6104e2565b005b6102066104f5565b6040516102139190611136565b60405180910390f35b61022461051c565b6040516102319190610f2e565b60405180910390f35b610254600480360381019061024f9190610fdf565b6105ac565b6040516102619190611037565b60405180910390f35b610284600480360381019061027f919061114f565b61065d565b604051610291919061105f565b60405180910390f35b6102a26106df565b005b6102be60048036038101906102b991906110fc565b610702565b005b6060600480546102cf906111ba565b80601f01602080910402602001604051908101604052809291908181526020018280546102fb906111ba565b80156103465780601f1061031d57610100808354040283529160200191610346565b820191905f5260205f20905b81548152906001019060200180831161032957829003601f168201915b5050505050905090565b5f8061035a610786565b905061036781858561078d565b600191505092915050565b5f600354905090565b5f60075f9054906101000a900460ff16905090565b5f60075f9054906101000a900460ff16156104805760065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610440575060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61047f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047690611234565b60405180910390fd5b5b61048b84848461079f565b90509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104ea6107cd565b6104f35f610854565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461052b906111ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610557906111ba565b80156105a25780601f10610579576101008083540402835291602001916105a2565b820191905f5260205f20905b81548152906001019060200180831161058557829003601f168201915b5050505050905090565b5f60075f9054906101000a900460ff161561064b5760065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661064a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064190611234565b60405180910390fd5b5b6106558383610915565b905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106e76107cd565b5f60075f6101000a81548160ff021916908315150217905550565b61070a6107cd565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361077a575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016107719190611136565b60405180910390fd5b61078381610854565b50565b5f33905090565b61079a8383836001610937565b505050565b5f806107a9610786565b90506107b6858285610b06565b6107c1858585610b98565b60019150509392505050565b6107d5610786565b73ffffffffffffffffffffffffffffffffffffffff166107f36104f5565b73ffffffffffffffffffffffffffffffffffffffff161461085257610816610786565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108499190611136565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8061091f610786565b905061092c818585610b98565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109a7575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161099e9190611136565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a17575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a0e9190611136565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b00578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610af7919061105f565b60405180910390a35b50505050565b5f610b11848461065d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b925781811015610b83578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b7a93929190611252565b60405180910390fd5b610b9184848484035f610937565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c08575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610bff9190611136565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c78575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c6f9190611136565b60405180910390fd5b610c83838383610c88565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd8578060035f828254610ccc91906112b4565b92505081905550610da8565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d62578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610d5993929190611252565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610def578060035f8282540392505081905550610e3a565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e97919061105f565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610edb578082015181840152602081019050610ec0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f0082610ea4565b610f0a8185610eae565b9350610f1a818560208601610ebe565b610f2381610ee6565b840191505092915050565b5f6020820190508181035f830152610f468184610ef6565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f7b82610f52565b9050919050565b610f8b81610f71565b8114610f95575f80fd5b50565b5f81359050610fa681610f82565b92915050565b5f819050919050565b610fbe81610fac565b8114610fc8575f80fd5b50565b5f81359050610fd981610fb5565b92915050565b5f8060408385031215610ff557610ff4610f4e565b5b5f61100285828601610f98565b925050602061101385828601610fcb565b9150509250929050565b5f8115159050919050565b6110318161101d565b82525050565b5f60208201905061104a5f830184611028565b92915050565b61105981610fac565b82525050565b5f6020820190506110725f830184611050565b92915050565b5f805f6060848603121561108f5761108e610f4e565b5b5f61109c86828701610f98565b93505060206110ad86828701610f98565b92505060406110be86828701610fcb565b9150509250925092565b5f60ff82169050919050565b6110dd816110c8565b82525050565b5f6020820190506110f65f8301846110d4565b92915050565b5f6020828403121561111157611110610f4e565b5b5f61111e84828501610f98565b91505092915050565b61113081610f71565b82525050565b5f6020820190506111495f830184611127565b92915050565b5f806040838503121561116557611164610f4e565b5b5f61117285828601610f98565b925050602061118385828601610f98565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806111d157607f821691505b6020821081036111e4576111e361118d565b5b50919050565b7f7472616e73666572206e6f7420616c6c6f7765642079657400000000000000005f82015250565b5f61121e601883610eae565b9150611229826111ea565b602082019050919050565b5f6020820190508181035f83015261124b81611212565b9050919050565b5f6060820190506112655f830186611127565b6112726020830185611050565b61127f6040830184611050565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112be82610fac565b91506112c983610fac565b92508282019050808211156112e1576112e0611287565b5b9291505056fea264697066735822122031411a8129f71491cdc1cb79c2a75282474c4da1daedc448b3edf3aeb228095e64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000009c7652400000000000000000000000000cd6c370427cd10294cf471cdfdd6aa20f05963770000000000000000000000000000000000000000000000000000000000000005436875636b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005434855434b000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a578063a9059cbb11610064578063a9059cbb1461023a578063dd62ed3e1461026a578063ea984e7f1461029a578063f2fde38b146102a4576100e8565b8063715018a6146101f45780638da5cb5b146101fe57806395d89b411461021c576100e8565b80631a8012e4116100c65780631a8012e41461015857806323b872dd14610176578063313ce567146101a657806370a08231146101c4576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102c0565b6040516101019190610f2e565b60405180910390f35b610124600480360381019061011f9190610fdf565b610350565b6040516101319190611037565b60405180910390f35b610142610372565b60405161014f919061105f565b60405180910390f35b61016061037b565b60405161016d9190611037565b60405180910390f35b610190600480360381019061018b9190611078565b610390565b60405161019d9190611037565b60405180910390f35b6101ae610494565b6040516101bb91906110e3565b60405180910390f35b6101de60048036038101906101d991906110fc565b61049c565b6040516101eb919061105f565b60405180910390f35b6101fc6104e2565b005b6102066104f5565b6040516102139190611136565b60405180910390f35b61022461051c565b6040516102319190610f2e565b60405180910390f35b610254600480360381019061024f9190610fdf565b6105ac565b6040516102619190611037565b60405180910390f35b610284600480360381019061027f919061114f565b61065d565b604051610291919061105f565b60405180910390f35b6102a26106df565b005b6102be60048036038101906102b991906110fc565b610702565b005b6060600480546102cf906111ba565b80601f01602080910402602001604051908101604052809291908181526020018280546102fb906111ba565b80156103465780601f1061031d57610100808354040283529160200191610346565b820191905f5260205f20905b81548152906001019060200180831161032957829003601f168201915b5050505050905090565b5f8061035a610786565b905061036781858561078d565b600191505092915050565b5f600354905090565b5f60075f9054906101000a900460ff16905090565b5f60075f9054906101000a900460ff16156104805760065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610440575060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61047f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047690611234565b60405180910390fd5b5b61048b84848461079f565b90509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104ea6107cd565b6104f35f610854565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461052b906111ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610557906111ba565b80156105a25780601f10610579576101008083540402835291602001916105a2565b820191905f5260205f20905b81548152906001019060200180831161058557829003601f168201915b5050505050905090565b5f60075f9054906101000a900460ff161561064b5760065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661064a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064190611234565b60405180910390fd5b5b6106558383610915565b905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106e76107cd565b5f60075f6101000a81548160ff021916908315150217905550565b61070a6107cd565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361077a575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016107719190611136565b60405180910390fd5b61078381610854565b50565b5f33905090565b61079a8383836001610937565b505050565b5f806107a9610786565b90506107b6858285610b06565b6107c1858585610b98565b60019150509392505050565b6107d5610786565b73ffffffffffffffffffffffffffffffffffffffff166107f36104f5565b73ffffffffffffffffffffffffffffffffffffffff161461085257610816610786565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108499190611136565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8061091f610786565b905061092c818585610b98565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109a7575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161099e9190611136565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a17575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a0e9190611136565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b00578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610af7919061105f565b60405180910390a35b50505050565b5f610b11848461065d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b925781811015610b83578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b7a93929190611252565b60405180910390fd5b610b9184848484035f610937565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c08575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610bff9190611136565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c78575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c6f9190611136565b60405180910390fd5b610c83838383610c88565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd8578060035f828254610ccc91906112b4565b92505081905550610da8565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d62578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610d5993929190611252565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610def578060035f8282540392505081905550610e3a565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e97919061105f565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610edb578082015181840152602081019050610ec0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f0082610ea4565b610f0a8185610eae565b9350610f1a818560208601610ebe565b610f2381610ee6565b840191505092915050565b5f6020820190508181035f830152610f468184610ef6565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f7b82610f52565b9050919050565b610f8b81610f71565b8114610f95575f80fd5b50565b5f81359050610fa681610f82565b92915050565b5f819050919050565b610fbe81610fac565b8114610fc8575f80fd5b50565b5f81359050610fd981610fb5565b92915050565b5f8060408385031215610ff557610ff4610f4e565b5b5f61100285828601610f98565b925050602061101385828601610fcb565b9150509250929050565b5f8115159050919050565b6110318161101d565b82525050565b5f60208201905061104a5f830184611028565b92915050565b61105981610fac565b82525050565b5f6020820190506110725f830184611050565b92915050565b5f805f6060848603121561108f5761108e610f4e565b5b5f61109c86828701610f98565b93505060206110ad86828701610f98565b92505060406110be86828701610fcb565b9150509250925092565b5f60ff82169050919050565b6110dd816110c8565b82525050565b5f6020820190506110f65f8301846110d4565b92915050565b5f6020828403121561111157611110610f4e565b5b5f61111e84828501610f98565b91505092915050565b61113081610f71565b82525050565b5f6020820190506111495f830184611127565b92915050565b5f806040838503121561116557611164610f4e565b5b5f61117285828601610f98565b925050602061118385828601610f98565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806111d157607f821691505b6020821081036111e4576111e361118d565b5b50919050565b7f7472616e73666572206e6f7420616c6c6f7765642079657400000000000000005f82015250565b5f61121e601883610eae565b9150611229826111ea565b602082019050919050565b5f6020820190508181035f83015261124b81611212565b9050919050565b5f6060820190506112655f830186611127565b6112726020830185611050565b61127f6040830184611050565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112be82610fac565b91506112c983610fac565b92508282019050808211156112e1576112e0611287565b5b9291505056fea264697066735822122031411a8129f71491cdc1cb79c2a75282474c4da1daedc448b3edf3aeb228095e64736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000009c7652400000000000000000000000000cd6c370427cd10294cf471cdfdd6aa20f05963770000000000000000000000000000000000000000000000000000000000000005436875636b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005434855434b000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Chuck
Arg [1] : symbol (string): CHUCK
Arg [2] : initialSupply (uint256): 42000000000
Arg [3] : creator (address): 0xcD6C370427cD10294cF471CdfdD6aA20F0596377

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000009c7652400
Arg [3] : 000000000000000000000000cd6c370427cd10294cf471cdfdd6aa20f0596377
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 436875636b000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 434855434b000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

27301:1203:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17906:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20199:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19008:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27900:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28234:267;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18859:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19170:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11519:103;;;:::i;:::-;;10844:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18116:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27998:228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19738:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27816:76;;;:::i;:::-;;11777:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17906:91;17951:13;17984:5;17977:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17906:91;:::o;20199:190::-;20272:4;20289:13;20305:12;:10;:12::i;:::-;20289:28;;20328:31;20337:5;20344:7;20353:5;20328:8;:31::i;:::-;20377:4;20370:11;;;20199:190;;;;:::o;19008:99::-;19060:7;19087:12;;19080:19;;19008:99;:::o;27900:90::-;27942:4;27966:16;;;;;;;;;;;27959:23;;27900:90;:::o;28234:267::-;28322:4;28343:16;;;;;;;;;;;28339:102;;;28384:1;:7;28386:4;28384:7;;;;;;;;;;;;;;;;;;;;;;;;;:16;;;;28395:1;:5;28397:2;28395:5;;;;;;;;;;;;;;;;;;;;;;;;;28384:16;28376:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;28339:102;28458:35;28477:4;28483:2;28487:5;28458:18;:35::i;:::-;28451:42;;28234:267;;;;;:::o;18859:84::-;18908:5;18933:2;18926:9;;18859:84;:::o;19170:118::-;19235:7;19262:9;:18;19272:7;19262:18;;;;;;;;;;;;;;;;19255:25;;19170:118;;;:::o;11519:103::-;10730:13;:11;:13::i;:::-;11584:30:::1;11611:1;11584:18;:30::i;:::-;11519:103::o:0;10844:87::-;10890:7;10917:6;;;;;;;;;;;10910:13;;10844:87;:::o;18116:95::-;18163:13;18196:7;18189:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18116:95;:::o;27998:228::-;28068:4;28089:16;;;;;;;;;;;28085:91;;;28130:1;:5;28132:2;28130:5;;;;;;;;;;;;;;;;;;;;;;;;;28122:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;28085:91;28193:25;28208:2;28212:5;28193:14;:25::i;:::-;28186:32;;27998:228;;;;:::o;19738:142::-;19818:7;19845:11;:18;19857:5;19845:18;;;;;;;;;;;;;;;:27;19864:7;19845:27;;;;;;;;;;;;;;;;19838:34;;19738:142;;;;:::o;27816:76::-;10730:13;:11;:13::i;:::-;27879:5:::1;27860:16;;:24;;;;;;;;;;;;;;;;;;27816:76::o:0;11777:220::-;10730:13;:11;:13::i;:::-;11882:1:::1;11862:22;;:8;:22;;::::0;11858:93:::1;;11936:1;11908:31;;;;;;;;;;;:::i;:::-;;;;;;;;11858:93;11961:28;11980:8;11961:18;:28::i;:::-;11777:220:::0;:::o;8853:98::-;8906:7;8933:10;8926:17;;8853:98;:::o;25026:130::-;25111:37;25120:5;25127:7;25136:5;25143:4;25111:8;:37::i;:::-;25026:130;;;:::o;20967:249::-;21054:4;21071:15;21089:12;:10;:12::i;:::-;21071:30;;21112:37;21128:4;21134:7;21143:5;21112:15;:37::i;:::-;21160:26;21170:4;21176:2;21180:5;21160:9;:26::i;:::-;21204:4;21197:11;;;20967:249;;;;;:::o;11009:166::-;11080:12;:10;:12::i;:::-;11069:23;;:7;:5;:7::i;:::-;:23;;;11065:103;;11143:12;:10;:12::i;:::-;11116:40;;;;;;;;;;;:::i;:::-;;;;;;;;11065:103;11009:166::o;12157:191::-;12231:16;12250:6;;;;;;;;;;;12231:25;;12276:8;12267:6;;:17;;;;;;;;;;;;;;;;;;12331:8;12300:40;;12321:8;12300:40;;;;;;;;;;;;12220:128;12157:191;:::o;19493:182::-;19562:4;19579:13;19595:12;:10;:12::i;:::-;19579:28;;19618:27;19628:5;19635:2;19639:5;19618:9;:27::i;:::-;19663:4;19656:11;;;19493:182;;;;:::o;26007:443::-;26137:1;26120:19;;:5;:19;;;26116:91;;26192:1;26163:32;;;;;;;;;;;:::i;:::-;;;;;;;;26116:91;26240:1;26221:21;;:7;:21;;;26217:92;;26294:1;26266:31;;;;;;;;;;;:::i;:::-;;;;;;;;26217:92;26349:5;26319:11;:18;26331:5;26319:18;;;;;;;;;;;;;;;:27;26338:7;26319:27;;;;;;;;;;;;;;;:35;;;;26369:9;26365:78;;;26416:7;26400:31;;26409:5;26400:31;;;26425:5;26400:31;;;;;;:::i;:::-;;;;;;;;26365:78;26007:443;;;;:::o;26742:487::-;26842:24;26869:25;26879:5;26886:7;26869:9;:25::i;:::-;26842:52;;26929:17;26909:16;:37;26905:317;;26986:5;26967:16;:24;26963:132;;;27046:7;27055:16;27073:5;27019:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;26963:132;27138:57;27147:5;27154:7;27182:5;27163:16;:24;27189:5;27138:8;:57::i;:::-;26905:317;26831:398;26742:487;;;:::o;21601:308::-;21701:1;21685:18;;:4;:18;;;21681:88;;21754:1;21727:30;;;;;;;;;;;:::i;:::-;;;;;;;;21681:88;21797:1;21783:16;;:2;:16;;;21779:88;;21852:1;21823:32;;;;;;;;;;;:::i;:::-;;;;;;;;21779:88;21877:24;21885:4;21891:2;21895:5;21877:7;:24::i;:::-;21601:308;;;:::o;22233:1135::-;22339:1;22323:18;;:4;:18;;;22319:552;;22477:5;22461:12;;:21;;;;;;;:::i;:::-;;;;;;;;22319:552;;;22515:19;22537:9;:15;22547:4;22537:15;;;;;;;;;;;;;;;;22515:37;;22585:5;22571:11;:19;22567:117;;;22643:4;22649:11;22662:5;22618:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;22567:117;22839:5;22825:11;:19;22807:9;:15;22817:4;22807:15;;;;;;;;;;;;;;;:37;;;;22500:371;22319:552;22901:1;22887:16;;:2;:16;;;22883:435;;23069:5;23053:12;;:21;;;;;;;;;;;22883:435;;;23286:5;23269:9;:13;23279:2;23269:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;22883:435;23350:2;23335:25;;23344:4;23335:25;;;23354:5;23335:25;;;;;;:::i;:::-;;;;;;;;22233:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:174::-;6672:26;6668:1;6660:6;6656:14;6649:50;6532:174;:::o;6712:366::-;6854:3;6875:67;6939:2;6934:3;6875:67;:::i;:::-;6868:74;;6951:93;7040:3;6951:93;:::i;:::-;7069:2;7064:3;7060:12;7053:19;;6712:366;;;:::o;7084:419::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7337:9;7331:4;7327:20;7323:1;7312:9;7308:17;7301:47;7365:131;7491:4;7365:131;:::i;:::-;7357:139;;7084:419;;;:::o;7509:442::-;7658:4;7696:2;7685:9;7681:18;7673:26;;7709:71;7777:1;7766:9;7762:17;7753:6;7709:71;:::i;:::-;7790:72;7858:2;7847:9;7843:18;7834:6;7790:72;:::i;:::-;7872;7940:2;7929:9;7925:18;7916:6;7872:72;:::i;:::-;7509:442;;;;;;:::o;7957:180::-;8005:77;8002:1;7995:88;8102:4;8099:1;8092:15;8126:4;8123:1;8116:15;8143:191;8183:3;8202:20;8220:1;8202:20;:::i;:::-;8197:25;;8236:20;8254:1;8236:20;:::i;:::-;8231:25;;8279:1;8276;8272:9;8265:16;;8300:3;8297:1;8294:10;8291:36;;;8307:18;;:::i;:::-;8291:36;8143:191;;;;:::o

Swarm Source

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