ETH Price: $2,303.19 (+0.92%)

Token

Musk vs Zuck (muskvszuck)
 

Overview

Max Total Supply

1,000,000,000 muskvszuck

Holders

57

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
565,015.075766658276823942 muskvszuck

Value
$0.00
0x307b69dc991b675e51e8d8d4cb5705e4d101001a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-06-22
*/

/**
 *Submitted for verification at Etherscan.io on 2023-03-09
*/

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: Token.sol



pragma solidity 0.8.9;



contract Token is Context, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private constant _decimals = 18;
    uint256 public constant hardCap = 1_000_000_000 * (10**_decimals); 

    constructor(
        string memory name_,
        string memory symbol_,
        address _to
    ) {
        require(_to != address(0), "Zero to address");
        _name = name_;
        _symbol = symbol_;
        _mint(_to, hardCap);
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address from, address to)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[from][to];
    }

    function approve(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), to, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

    function increaseAllowance(address to, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
        return true;
    }

    function decreaseAllowance(address to, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        uint256 currentAllowance = _allowances[_msgSender()][to];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), to, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

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

        emit Transfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

    function _approve(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: approve from the zero address");
        require(to != address(0), "ERC20: approve to the zero address");

        _allowances[from][to] = amount;
        emit Approval(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_to","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200113f3803806200113f833981016040819052620000349162000338565b6001600160a01b038116620000825760405162461bcd60e51b815260206004820152600f60248201526e5a65726f20746f206164647265737360881b60448201526064015b60405180910390fd5b825162000097906003906020860190620001c5565b508151620000ad906004906020850190620001c5565b50620000d781620000c16012600a620004da565b620000d190633b9aca00620004f2565b620000e0565b5050506200056c565b6001600160a01b038216620001385760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000079565b80600260008282546200014c919062000514565b90915550506001600160a01b038216600090815260208190526040812080548392906200017b90849062000514565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001d3906200052f565b90600052602060002090601f016020900481019282620001f7576000855562000242565b82601f106200021257805160ff191683800117855562000242565b8280016001018555821562000242579182015b828111156200024257825182559160200191906001019062000225565b506200025092915062000254565b5090565b5b8082111562000250576000815560010162000255565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200029357600080fd5b81516001600160401b0380821115620002b057620002b06200026b565b604051601f8301601f19908116603f01168101908282118183101715620002db57620002db6200026b565b81604052838152602092508683858801011115620002f857600080fd5b600091505b838210156200031c5785820183015181830184015290820190620002fd565b838211156200032e5760008385830101525b9695505050505050565b6000806000606084860312156200034e57600080fd5b83516001600160401b03808211156200036657600080fd5b620003748783880162000281565b945060208601519150808211156200038b57600080fd5b506200039a8682870162000281565b604086015190935090506001600160a01b0381168114620003ba57600080fd5b809150509250925092565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200041c578160001904821115620004005762000400620003c5565b808516156200040e57918102915b93841c9390800290620003e0565b509250929050565b6000826200043557506001620004d4565b816200044457506000620004d4565b81600181146200045d5760028114620004685762000488565b6001915050620004d4565b60ff8411156200047c576200047c620003c5565b50506001821b620004d4565b5060208310610133831016604e8410600b8410161715620004ad575081810a620004d4565b620004b98383620003db565b8060001904821115620004d057620004d0620003c5565b0290505b92915050565b6000620004eb60ff84168362000424565b9392505050565b60008160001904831182151516156200050f576200050f620003c5565b500290565b600082198211156200052a576200052a620003c5565b500190565b600181811c908216806200054457607f821691505b602082108114156200056657634e487b7160e01b600052602260045260246000fd5b50919050565b610bc3806200057c6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c578063a457c2d711610066578063a457c2d7146101a2578063a9059cbb146101b5578063dd62ed3e146101c8578063fb86a4041461020157600080fd5b806342966c681461015c57806370a082311461017157806395d89b411461019a57600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a5780633950935114610149575b600080fd5b6100dc610209565b6040516100e991906108b6565b60405180910390f35b610105610100366004610927565b61029b565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b610105610135366004610951565b6102b2565b604051601281526020016100e9565b610105610157366004610927565b610361565b61016f61016a36600461098d565b61039d565b005b61011961017f3660046109a6565b6001600160a01b031660009081526020819052604090205490565b6100dc6103aa565b6101056101b0366004610927565b6103b9565b6101056101c3366004610927565b610452565b6101196101d63660046109c8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61011961045f565b606060038054610218906109fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610244906109fb565b80156102915780601f1061026657610100808354040283529160200191610291565b820191906000526020600020905b81548152906001019060200180831161027457829003601f168201915b5050505050905090565b60006102a833848461047c565b5060015b92915050565b60006102bf8484846105a1565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103495760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610356853385840361047c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102a8918590610398908690610a4c565b61047c565b6103a73382610770565b50565b606060048054610218906109fb565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561043b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610340565b610448338585840361047c565b5060019392505050565b60006102a83384846105a1565b61046b6012600a610b48565b61047990633b9aca00610b57565b81565b6001600160a01b0383166104de5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610340565b6001600160a01b03821661053f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610340565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106055760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610340565b6001600160a01b0382166106675760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610340565b6001600160a01b038316600090815260208190526040902054818110156106df5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610340565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610716908490610a4c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161076291815260200190565b60405180910390a350505050565b6001600160a01b0382166107d05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610340565b6001600160a01b038216600090815260208190526040902054818110156108445760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610340565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610873908490610b76565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610594565b600060208083528351808285015260005b818110156108e3578581018301518582016040015282016108c7565b818111156108f5576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461092257600080fd5b919050565b6000806040838503121561093a57600080fd5b6109438361090b565b946020939093013593505050565b60008060006060848603121561096657600080fd5b61096f8461090b565b925061097d6020850161090b565b9150604084013590509250925092565b60006020828403121561099f57600080fd5b5035919050565b6000602082840312156109b857600080fd5b6109c18261090b565b9392505050565b600080604083850312156109db57600080fd5b6109e48361090b565b91506109f26020840161090b565b90509250929050565b600181811c90821680610a0f57607f821691505b60208210811415610a3057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610a5f57610a5f610a36565b500190565b600181815b80851115610a9f578160001904821115610a8557610a85610a36565b80851615610a9257918102915b93841c9390800290610a69565b509250929050565b600082610ab6575060016102ac565b81610ac3575060006102ac565b8160018114610ad95760028114610ae357610aff565b60019150506102ac565b60ff841115610af457610af4610a36565b50506001821b6102ac565b5060208310610133831016604e8410600b8410161715610b22575081810a6102ac565b610b2c8383610a64565b8060001904821115610b4057610b40610a36565b029392505050565b60006109c160ff841683610aa7565b6000816000190483118215151615610b7157610b71610a36565b500290565b600082821015610b8857610b88610a36565b50039056fea26469706673582212205261020e0fa11b82ce5b8526f02fb8884f7c5252e80e9f4fb9f0f1788bcdcf5464736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a1f187e9a77e8a02436204ac3f68d37b2b98d61a000000000000000000000000000000000000000000000000000000000000000c4d75736b207673205a75636b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a6d75736b76737a75636b00000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c578063a457c2d711610066578063a457c2d7146101a2578063a9059cbb146101b5578063dd62ed3e146101c8578063fb86a4041461020157600080fd5b806342966c681461015c57806370a082311461017157806395d89b411461019a57600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a5780633950935114610149575b600080fd5b6100dc610209565b6040516100e991906108b6565b60405180910390f35b610105610100366004610927565b61029b565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b610105610135366004610951565b6102b2565b604051601281526020016100e9565b610105610157366004610927565b610361565b61016f61016a36600461098d565b61039d565b005b61011961017f3660046109a6565b6001600160a01b031660009081526020819052604090205490565b6100dc6103aa565b6101056101b0366004610927565b6103b9565b6101056101c3366004610927565b610452565b6101196101d63660046109c8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61011961045f565b606060038054610218906109fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610244906109fb565b80156102915780601f1061026657610100808354040283529160200191610291565b820191906000526020600020905b81548152906001019060200180831161027457829003601f168201915b5050505050905090565b60006102a833848461047c565b5060015b92915050565b60006102bf8484846105a1565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103495760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610356853385840361047c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102a8918590610398908690610a4c565b61047c565b6103a73382610770565b50565b606060048054610218906109fb565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561043b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610340565b610448338585840361047c565b5060019392505050565b60006102a83384846105a1565b61046b6012600a610b48565b61047990633b9aca00610b57565b81565b6001600160a01b0383166104de5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610340565b6001600160a01b03821661053f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610340565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106055760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610340565b6001600160a01b0382166106675760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610340565b6001600160a01b038316600090815260208190526040902054818110156106df5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610340565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610716908490610a4c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161076291815260200190565b60405180910390a350505050565b6001600160a01b0382166107d05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610340565b6001600160a01b038216600090815260208190526040902054818110156108445760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610340565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610873908490610b76565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610594565b600060208083528351808285015260005b818110156108e3578581018301518582016040015282016108c7565b818111156108f5576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461092257600080fd5b919050565b6000806040838503121561093a57600080fd5b6109438361090b565b946020939093013593505050565b60008060006060848603121561096657600080fd5b61096f8461090b565b925061097d6020850161090b565b9150604084013590509250925092565b60006020828403121561099f57600080fd5b5035919050565b6000602082840312156109b857600080fd5b6109c18261090b565b9392505050565b600080604083850312156109db57600080fd5b6109e48361090b565b91506109f26020840161090b565b90509250929050565b600181811c90821680610a0f57607f821691505b60208210811415610a3057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610a5f57610a5f610a36565b500190565b600181815b80851115610a9f578160001904821115610a8557610a85610a36565b80851615610a9257918102915b93841c9390800290610a69565b509250929050565b600082610ab6575060016102ac565b81610ac3575060006102ac565b8160018114610ad95760028114610ae357610aff565b60019150506102ac565b60ff841115610af457610af4610a36565b50506001821b6102ac565b5060208310610133831016604e8410600b8410161715610b22575081810a6102ac565b610b2c8383610a64565b8060001904821115610b4057610b40610a36565b029392505050565b60006109c160ff841683610aa7565b6000816000190483118215151615610b7157610b71610a36565b500290565b600082821015610b8857610b88610a36565b50039056fea26469706673582212205261020e0fa11b82ce5b8526f02fb8884f7c5252e80e9f4fb9f0f1788bcdcf5464736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a1f187e9a77e8a02436204ac3f68d37b2b98d61a000000000000000000000000000000000000000000000000000000000000000c4d75736b207673205a75636b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a6d75736b76737a75636b00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Musk vs Zuck
Arg [1] : symbol_ (string): muskvszuck
Arg [2] : _to (address): 0xA1F187E9A77E8A02436204AC3F68d37b2b98d61A

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000a1f187e9a77e8a02436204ac3f68d37b2b98d61a
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 4d75736b207673205a75636b0000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 6d75736b76737a75636b00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

4665:5029:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5313:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6363:200;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;6363:200:0;1053:187:1;5641:108:0;5729:12;;5641:108;;;1391:25:1;;;1379:2;1364:18;5641:108:0;1245:177:1;6571:529:0;;;;;;:::i;:::-;;:::i;5533:100::-;;;4972:2;1902:36:1;;1890:2;1875:18;5533:100:0;1760:184:1;7108:232:0;;;;;;:::i;:::-;;:::i;9242:85::-;;;;;;:::i;:::-;;:::i;:::-;;5757:177;;;;;;:::i;:::-;-1:-1:-1;;;;;5908:18:0;5876:7;5908:18;;;;;;;;;;;;5757:177;5421:104;;;:::i;7348:467::-;;;;;;:::i;:::-;;:::i;5942:216::-;;;;;;:::i;:::-;;:::i;6166:189::-;;;;;;:::i;:::-;-1:-1:-1;;;;;6326:17:0;;;6294:7;6326:17;;;:11;:17;;;;;;;;:21;;;;;;;;;;;;;6166:189;4981:65;;;:::i;5313:100::-;5367:13;5400:5;5393:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5313:100;:::o;6363:200::-;6477:4;6499:34;4475:10;6522:2;6526:6;6499:8;:34::i;:::-;-1:-1:-1;6551:4:0;6363:200;;;;;:::o;6571:529::-;6711:4;6728:36;6738:6;6746:9;6757:6;6728:9;:36::i;:::-;-1:-1:-1;;;;;6804:19:0;;6777:24;6804:19;;;:11;:19;;;;;;;;4475:10;6804:33;;;;;;;;6870:26;;;;6848:116;;;;-1:-1:-1;;;6848:116:0;;3177:2:1;6848:116:0;;;3159:21:1;3216:2;3196:18;;;3189:30;3255:34;3235:18;;;3228:62;-1:-1:-1;;;3306:18:1;;;3299:38;3354:19;;6848:116:0;;;;;;;;;7000:57;7009:6;4475:10;7050:6;7031:16;:25;7000:8;:57::i;:::-;-1:-1:-1;7088:4:0;;6571:529;-1:-1:-1;;;;6571:529:0:o;7108:232::-;4475:10;7218:4;7267:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;7267:29:0;;;;;;;;;;7218:4;;7240:70;;7263:2;;7267:42;;7299:10;;7267:42;:::i;:::-;7240:8;:70::i;9242:85::-;9292:27;4475:10;9312:6;9292:5;:27::i;:::-;9242:85;:::o;5421:104::-;5477:13;5510:7;5503:14;;;;;:::i;7348:467::-;4475:10;7463:4;7512:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;7512:29:0;;;;;;;;;;7574:35;;;;7552:122;;;;-1:-1:-1;;;7552:122:0;;3851:2:1;7552:122:0;;;3833:21:1;3890:2;3870:18;;;3863:30;3929:34;3909:18;;;3902:62;-1:-1:-1;;;3980:18:1;;;3973:35;4025:19;;7552:122:0;3649:401:1;7552:122:0;7710:62;4475:10;7733:2;7756:15;7737:16;:34;7710:8;:62::i;:::-;-1:-1:-1;7803:4:0;;7348:467;-1:-1:-1;;;7348:467:0:o;5942:216::-;6064:4;6086:42;4475:10;6110:9;6121:6;6086:9;:42::i;4981:65::-;5032:13;4972:2;5032;:13;:::i;:::-;5015:31;;:13;:31;:::i;:::-;4981:65;:::o;9335:356::-;-1:-1:-1;;;;;9465:18:0;;9457:67;;;;-1:-1:-1;;;9457:67:0;;5813:2:1;9457:67:0;;;5795:21:1;5852:2;5832:18;;;5825:30;5891:34;5871:18;;;5864:62;-1:-1:-1;;;5942:18:1;;;5935:34;5986:19;;9457:67:0;5611:400:1;9457:67:0;-1:-1:-1;;;;;9543:16:0;;9535:63;;;;-1:-1:-1;;;9535:63:0;;6218:2:1;9535:63:0;;;6200:21:1;6257:2;6237:18;;;6230:30;6296:34;6276:18;;;6269:62;-1:-1:-1;;;6347:18:1;;;6340:32;6389:19;;9535:63:0;6016:398:1;9535:63:0;-1:-1:-1;;;;;9611:17:0;;;;;;;:11;:17;;;;;;;;:21;;;;;;;;;;;;;:30;;;9657:26;;1391:25:1;;;9657:26:0;;1364:18:1;9657:26:0;;;;;;;;9335:356;;;:::o;7823:651::-;-1:-1:-1;;;;;7963:20:0;;7955:70;;;;-1:-1:-1;;;7955:70:0;;6621:2:1;7955:70:0;;;6603:21:1;6660:2;6640:18;;;6633:30;6699:34;6679:18;;;6672:62;-1:-1:-1;;;6750:18:1;;;6743:35;6795:19;;7955:70:0;6419:401:1;7955:70:0;-1:-1:-1;;;;;8044:23:0;;8036:71;;;;-1:-1:-1;;;8036:71:0;;7027:2:1;8036:71:0;;;7009:21:1;7066:2;7046:18;;;7039:30;7105:34;7085:18;;;7078:62;-1:-1:-1;;;7156:18:1;;;7149:33;7199:19;;8036:71:0;6825:399:1;8036:71:0;-1:-1:-1;;;;;8144:17:0;;8120:21;8144:17;;;;;;;;;;;8194:23;;;;8172:111;;;;-1:-1:-1;;;8172:111:0;;7431:2:1;8172:111:0;;;7413:21:1;7470:2;7450:18;;;7443:30;7509:34;7489:18;;;7482:62;-1:-1:-1;;;7560:18:1;;;7553:36;7606:19;;8172:111:0;7229:402:1;8172:111:0;-1:-1:-1;;;;;8319:17:0;;;:9;:17;;;;;;;;;;;8339:22;;;8319:42;;8383:20;;;;;;;;:30;;8355:6;;8319:9;8383:30;;8355:6;;8383:30;:::i;:::-;;;;;;;;8448:9;-1:-1:-1;;;;;8431:35:0;8440:6;-1:-1:-1;;;;;8431:35:0;;8459:6;8431:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;8431:35:0;;;;;;;;7944:530;7823:651;;;:::o;8766:468::-;-1:-1:-1;;;;;8850:21:0;;8842:67;;;;-1:-1:-1;;;8842:67:0;;7838:2:1;8842:67:0;;;7820:21:1;7877:2;7857:18;;;7850:30;7916:34;7896:18;;;7889:62;-1:-1:-1;;;7967:18:1;;;7960:31;8008:19;;8842:67:0;7636:397:1;8842:67:0;-1:-1:-1;;;;;8947:18:0;;8922:22;8947:18;;;;;;;;;;;8984:24;;;;8976:71;;;;-1:-1:-1;;;8976:71:0;;8240:2:1;8976:71:0;;;8222:21:1;8279:2;8259:18;;;8252:30;8318:34;8298:18;;;8291:62;-1:-1:-1;;;8369:18:1;;;8362:32;8411:19;;8976:71:0;8038:398:1;8976:71:0;-1:-1:-1;;;;;9083:18:0;;:9;:18;;;;;;;;;;9104:23;;;9083:44;;9149:12;:22;;9121:6;;9083:9;9149:22;;9121:6;;9149:22;:::i;:::-;;;;-1:-1:-1;;9189:37:0;;1391:25:1;;;9215:1:0;;-1:-1:-1;;;;;9189:37:0;;;;;1379:2:1;1364:18;9189:37:0;1245:177:1;14:597;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;:::-;2275:39;2134:186;-1:-1:-1;;;2134:186:1:o;2325:260::-;2393:6;2401;2454:2;2442:9;2433:7;2429:23;2425:32;2422:52;;;2470:1;2467;2460:12;2422:52;2493:29;2512:9;2493:29;:::i;:::-;2483:39;;2541:38;2575:2;2564:9;2560:18;2541:38;:::i;:::-;2531:48;;2325:260;;;;;:::o;2590:380::-;2669:1;2665:12;;;;2712;;;2733:61;;2787:4;2779:6;2775:17;2765:27;;2733:61;2840:2;2832:6;2829:14;2809:18;2806:38;2803:161;;;2886:10;2881:3;2877:20;2874:1;2867:31;2921:4;2918:1;2911:15;2949:4;2946:1;2939:15;2803:161;;2590:380;;;:::o;3384:127::-;3445:10;3440:3;3436:20;3433:1;3426:31;3476:4;3473:1;3466:15;3500:4;3497:1;3490:15;3516:128;3556:3;3587:1;3583:6;3580:1;3577:13;3574:39;;;3593:18;;:::i;:::-;-1:-1:-1;3629:9:1;;3516:128::o;4055:422::-;4144:1;4187:5;4144:1;4201:270;4222:7;4212:8;4209:21;4201:270;;;4281:4;4277:1;4273:6;4269:17;4263:4;4260:27;4257:53;;;4290:18;;:::i;:::-;4340:7;4330:8;4326:22;4323:55;;;4360:16;;;;4323:55;4439:22;;;;4399:15;;;;4201:270;;;4205:3;4055:422;;;;;:::o;4482:806::-;4531:5;4561:8;4551:80;;-1:-1:-1;4602:1:1;4616:5;;4551:80;4650:4;4640:76;;-1:-1:-1;4687:1:1;4701:5;;4640:76;4732:4;4750:1;4745:59;;;;4818:1;4813:130;;;;4725:218;;4745:59;4775:1;4766:10;;4789:5;;;4813:130;4850:3;4840:8;4837:17;4834:43;;;4857:18;;:::i;:::-;-1:-1:-1;;4913:1:1;4899:16;;4928:5;;4725:218;;5027:2;5017:8;5014:16;5008:3;5002:4;4999:13;4995:36;4989:2;4979:8;4976:16;4971:2;4965:4;4962:12;4958:35;4955:77;4952:159;;;-1:-1:-1;5064:19:1;;;5096:5;;4952:159;5143:34;5168:8;5162:4;5143:34;:::i;:::-;5213:6;5209:1;5205:6;5201:19;5192:7;5189:32;5186:58;;;5224:18;;:::i;:::-;5262:20;;4482:806;-1:-1:-1;;;4482:806:1:o;5293:140::-;5351:5;5380:47;5421:4;5411:8;5407:19;5401:4;5380:47;:::i;5438:168::-;5478:7;5544:1;5540;5536:6;5532:14;5529:1;5526:21;5521:1;5514:9;5507:17;5503:45;5500:71;;;5551:18;;:::i;:::-;-1:-1:-1;5591:9:1;;5438:168::o;8441:125::-;8481:4;8509:1;8506;8503:8;8500:34;;;8514:18;;:::i;:::-;-1:-1:-1;8551:9:1;;8441:125::o

Swarm Source

ipfs://5261020e0fa11b82ce5b8526f02fb8884f7c5252e80e9f4fb9f0f1788bcdcf54
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.