ETH Price: $3,456.46 (-0.77%)
Gas: 3 Gwei

Token

CHUPE (CHUPE)
 

Overview

Max Total Supply

420,690,000,000,000 CHUPE

Holders

834

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.471275549905122358 CHUPE

Value
$0.00
0x4b83b979111fa71b3acce16999fa1a35313ed7dd
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.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
byzantium EvmVersion
File 1 of 6 : Token.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./BaseERC20Token.sol";

contract Token is BaseERC20Token {
    address public cexAddress;
    address public uniswapV2Pair;
    bool public limited;

    // constraints
    uint256 public maxHoldingAmount;

    constructor(
        address _cexAddress
    ) {
        _name = "CHUPE";
        _symbol = "CHUPE";
        _totalSupply = 420_690_000_000_000 * 10 ** decimals();

        maxHoldingAmount = _totalSupply * 1 / 100;
        cexAddress = _cexAddress;

        // coins distribution
        // 93.1% for liquidity
        _balances[msg.sender] = _totalSupply * 931 / 1000;
        emit Transfer(address(0), msg.sender, _totalSupply * 931 / 1000);
        // 6.9% for CEX
        _balances[cexAddress] = _totalSupply * 69 / 1000;
        emit Transfer(address(0), cexAddress, _totalSupply * 69 / 1000);
    }

    function setRules(bool _limited, address _uniswapV2Pair) public onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override virtual {
        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount, "Forbid");
        }
    }
}

File 2 of 6 : BaseERC20Token.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";


abstract contract BaseERC20Token is Ownable, IERC20, IERC20Metadata {
    string internal _name;
    string internal _symbol;
    uint256 internal _totalSupply;

    mapping(address => uint256) internal _balances;
    mapping(address => mapping(address => uint256)) internal _allowances;

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 pure override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 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 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 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");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 {
        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 {
        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 {}
}

File 3 of 6 : 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 4 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

pragma solidity ^0.8.0;

import "../utils/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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

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

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

    /**
     * @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(), "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);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_cexAddress","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":"cexAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setRules","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162001334380380620013348339810160408190526200003491620002b7565b6200005a6200004b6401000000006200025e810204565b64010000000062000262810204565b60408051808201909152600581527f434855504500000000000000000000000000000000000000000000000000000060208201526001906200009d9082620003c0565b5060408051808201909152600581527f43485550450000000000000000000000000000000000000000000000000000006020820152600290620000e19082620003c0565b50620000f5640100000000620002b2810204565b6200010290600a620005c4565b620001159066017e9d8602b400620005d5565b60038190556064906200012a906001620005d5565b620001369190620005ef565b60085560068054600160a060020a031916600160a060020a0383161790556003546103e89062000169906103a3620005d5565b620001759190620005ef565b3360008181526004602052604081209290925560035490919060008051602062001314833981519152906103e890620001b1906103a3620005d5565b620001bd9190620005ef565b60405190815260200160405180910390a36103e86003546045620001e29190620005d5565b620001ee9190620005ef565b60068054600160a060020a0390811660009081526004602052604081209390935590546003549116919060008051602062001314833981519152906103e8906200023a906045620005d5565b620002469190620005ef565b60405190815260200160405180910390a3506200062b565b3390565b60008054600160a060020a03838116600160a060020a0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b600060208284031215620002ca57600080fd5b8151600160a060020a0381168114620002e257600080fd5b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6002810460018216806200032d57607f821691505b60208210810362000367577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f821115620003bb576000818152602081206020601f86010481016020861015620003965750805b6020601f860104820191505b81811015620003b757828155600101620003a2565b5050505b505050565b815167ffffffffffffffff811115620003dd57620003dd620002e9565b620003f581620003ee845462000318565b846200036d565b602080601f831160018114620004315760008415620004145750858301515b60028086026008870290910a6000190419821617865550620003b7565b600085815260208120601f198616915b82811015620004625788860151825594840194600190910190840162000441565b50858210156200048357878501516008601f88160260020a60001904191681555b5050505050600202600101905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600181815b8085111562000505578160001904821115620004e757620004e762000493565b80851615620004f557918102915b60029094049390800290620004c7565b509250929050565b6000826200051e57506001620005be565b816200052d57506000620005be565b8160018114620005465760028114620005515762000572565b6001915050620005be565b60ff84111562000565576200056562000493565b8360020a915050620005be565b5060208310610133831016604e8410600b841016171562000597575081810a620005be565b620005a38383620004c2565b8060001904821115620005ba57620005ba62000493565b0290505b92915050565b6000620002e260ff8416836200050d565b8082028115828204841417620005be57620005be62000493565b60008262000626577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b610cd9806200063b6000396000f3fe608060405234801561001057600080fd5b5060043610610128576000357c010000000000000000000000000000000000000000000000000000000090048063715018a6116100bf57806395d89b411161008e57806395d89b4114610252578063a25d4e521461025a578063a9059cbb1461026d578063dd62ed3e14610280578063f2fde38b146102b957600080fd5b8063715018a61461020b578063860a32ec1461021357806389f9a1d3146102385780638da5cb5b1461024157600080fd5b8063313ce567116100fb578063313ce5671461019357806349bd5a5e146101a25780634ea4819b146101cd57806370a08231146101e257600080fd5b806306fdde031461012d578063095ea7b31461014b57806318160ddd1461016e57806323b872dd14610180575b600080fd5b6101356102cc565b6040516101429190610ace565b60405180910390f35b61015e610159366004610b38565b61035e565b6040519015158152602001610142565b6003545b604051908152602001610142565b61015e61018e366004610b62565b610378565b60405160128152602001610142565b6007546101b590600160a060020a031681565b604051600160a060020a039091168152602001610142565b6101e06101db366004610b9e565b61039c565b005b6101726101f0366004610bd8565b600160a060020a031660009081526004602052604090205490565b6101e0610409565b60075461015e9074010000000000000000000000000000000000000000900460ff1681565b61017260085481565b600054600160a060020a03166101b5565b61013561041d565b6006546101b590600160a060020a031681565b61015e61027b366004610b38565b61042c565b61017261028e366004610bfa565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b6101e06102c7366004610bd8565b61043a565b6060600180546102db90610c16565b80601f016020809104026020016040519081016040528092919081815260200182805461030790610c16565b80156103545780601f1061032957610100808354040283529160200191610354565b820191906000526020600020905b81548152906001019060200180831161033757829003601f168201915b5050505050905090565b60003361036c8185856104d2565b60019150505b92915050565b600033610386858285610630565b6103918585856106c5565b506001949350505050565b6103a46108cd565b6007805474ffffffffffffffffffffffffffffffffffffffffff1916740100000000000000000000000000000000000000009315159390930273ffffffffffffffffffffffffffffffffffffffff191692909217600160a060020a0391909116179055565b6104116108cd565b61041b600061092a565b565b6060600280546102db90610c16565b60003361036c8185856106c5565b6104426108cd565b600160a060020a0381166104c65760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6104cf8161092a565b50565b600160a060020a0383166105505760405160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104bd565b600160a060020a0382166105cf5760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104bd565b600160a060020a0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600160a060020a0383811660009081526005602090815260408083209386168352929052205460001981146106bf57818110156106b25760405160e560020a62461bcd02815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104bd565b6106bf84848484036104d2565b50505050565b600160a060020a0383166107445760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104bd565b600160a060020a0382166107c35760405160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104bd565b6107ce838383610987565b600160a060020a038316600090815260046020526040902054818110156108605760405160e560020a62461bcd02815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104bd565b600160a060020a0380851660008181526004602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108c09086815260200190565b60405180910390a36106bf565b600054600160a060020a0316331461041b5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104bd565b60008054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600754600160a060020a0316610a1457600054600160a060020a03848116911614806109c05750600054600160a060020a038381169116145b610a0f5760405160e560020a62461bcd02815260206004820152601660248201527f74726164696e67206973206e6f7420737461727465640000000000000000000060448201526064016104bd565b505050565b60075474010000000000000000000000000000000000000000900460ff168015610a4b5750600754600160a060020a038481169116145b15610a0f5760085481610a7384600160a060020a031660009081526004602052604090205490565b610a7d9190610c69565b1115610a0f5760405160e560020a62461bcd02815260206004820152600660248201527f466f72626964000000000000000000000000000000000000000000000000000060448201526064016104bd565b600060208083528351808285015260005b81811015610afb57858101830151858201604001528201610adf565b506000604082860101526040601f19601f8301168501019250505092915050565b8035600160a060020a0381168114610b3357600080fd5b919050565b60008060408385031215610b4b57600080fd5b610b5483610b1c565b946020939093013593505050565b600080600060608486031215610b7757600080fd5b610b8084610b1c565b9250610b8e60208501610b1c565b9150604084013590509250925092565b60008060408385031215610bb157600080fd5b82358015158114610bc157600080fd5b9150610bcf60208401610b1c565b90509250929050565b600060208284031215610bea57600080fd5b610bf382610b1c565b9392505050565b60008060408385031215610c0d57600080fd5b610bc183610b1c565b600281046001821680610c2a57607f821691505b602082108103610c63577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b80820180821115610372577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220582d0517a4fcc58341ee3271b8095e25d9ae940057a013b413d997bc3efa93a264736f6c63430008130033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000dfa705dc4c82822ba19203d9a16dbcb982f114fb

Deployed Bytecode

0x608060405234801561001057600080fd5b5060043610610128576000357c010000000000000000000000000000000000000000000000000000000090048063715018a6116100bf57806395d89b411161008e57806395d89b4114610252578063a25d4e521461025a578063a9059cbb1461026d578063dd62ed3e14610280578063f2fde38b146102b957600080fd5b8063715018a61461020b578063860a32ec1461021357806389f9a1d3146102385780638da5cb5b1461024157600080fd5b8063313ce567116100fb578063313ce5671461019357806349bd5a5e146101a25780634ea4819b146101cd57806370a08231146101e257600080fd5b806306fdde031461012d578063095ea7b31461014b57806318160ddd1461016e57806323b872dd14610180575b600080fd5b6101356102cc565b6040516101429190610ace565b60405180910390f35b61015e610159366004610b38565b61035e565b6040519015158152602001610142565b6003545b604051908152602001610142565b61015e61018e366004610b62565b610378565b60405160128152602001610142565b6007546101b590600160a060020a031681565b604051600160a060020a039091168152602001610142565b6101e06101db366004610b9e565b61039c565b005b6101726101f0366004610bd8565b600160a060020a031660009081526004602052604090205490565b6101e0610409565b60075461015e9074010000000000000000000000000000000000000000900460ff1681565b61017260085481565b600054600160a060020a03166101b5565b61013561041d565b6006546101b590600160a060020a031681565b61015e61027b366004610b38565b61042c565b61017261028e366004610bfa565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b6101e06102c7366004610bd8565b61043a565b6060600180546102db90610c16565b80601f016020809104026020016040519081016040528092919081815260200182805461030790610c16565b80156103545780601f1061032957610100808354040283529160200191610354565b820191906000526020600020905b81548152906001019060200180831161033757829003601f168201915b5050505050905090565b60003361036c8185856104d2565b60019150505b92915050565b600033610386858285610630565b6103918585856106c5565b506001949350505050565b6103a46108cd565b6007805474ffffffffffffffffffffffffffffffffffffffffff1916740100000000000000000000000000000000000000009315159390930273ffffffffffffffffffffffffffffffffffffffff191692909217600160a060020a0391909116179055565b6104116108cd565b61041b600061092a565b565b6060600280546102db90610c16565b60003361036c8185856106c5565b6104426108cd565b600160a060020a0381166104c65760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6104cf8161092a565b50565b600160a060020a0383166105505760405160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104bd565b600160a060020a0382166105cf5760405160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104bd565b600160a060020a0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600160a060020a0383811660009081526005602090815260408083209386168352929052205460001981146106bf57818110156106b25760405160e560020a62461bcd02815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104bd565b6106bf84848484036104d2565b50505050565b600160a060020a0383166107445760405160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104bd565b600160a060020a0382166107c35760405160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104bd565b6107ce838383610987565b600160a060020a038316600090815260046020526040902054818110156108605760405160e560020a62461bcd02815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104bd565b600160a060020a0380851660008181526004602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108c09086815260200190565b60405180910390a36106bf565b600054600160a060020a0316331461041b5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104bd565b60008054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600754600160a060020a0316610a1457600054600160a060020a03848116911614806109c05750600054600160a060020a038381169116145b610a0f5760405160e560020a62461bcd02815260206004820152601660248201527f74726164696e67206973206e6f7420737461727465640000000000000000000060448201526064016104bd565b505050565b60075474010000000000000000000000000000000000000000900460ff168015610a4b5750600754600160a060020a038481169116145b15610a0f5760085481610a7384600160a060020a031660009081526004602052604090205490565b610a7d9190610c69565b1115610a0f5760405160e560020a62461bcd02815260206004820152600660248201527f466f72626964000000000000000000000000000000000000000000000000000060448201526064016104bd565b600060208083528351808285015260005b81811015610afb57858101830151858201604001528201610adf565b506000604082860101526040601f19601f8301168501019250505092915050565b8035600160a060020a0381168114610b3357600080fd5b919050565b60008060408385031215610b4b57600080fd5b610b5483610b1c565b946020939093013593505050565b600080600060608486031215610b7757600080fd5b610b8084610b1c565b9250610b8e60208501610b1c565b9150604084013590509250925092565b60008060408385031215610bb157600080fd5b82358015158114610bc157600080fd5b9150610bcf60208401610b1c565b90509250929050565b600060208284031215610bea57600080fd5b610bf382610b1c565b9392505050565b60008060408385031215610c0d57600080fd5b610bc183610b1c565b600281046001821680610c2a57607f821691505b602082108103610c63577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b80820180821115610372577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220582d0517a4fcc58341ee3271b8095e25d9ae940057a013b413d997bc3efa93a264736f6c63430008130033

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

000000000000000000000000dfa705dc4c82822ba19203d9a16dbcb982f114fb

-----Decoded View---------------
Arg [0] : _cexAddress (address): 0xDfA705Dc4c82822BA19203D9A16dBCB982F114fb

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000dfa705dc4c82822ba19203d9a16dbcb982f114fb


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.