ETH Price: $3,205.57 (-2.99%)

Token

Oscar (Oscar)
 

Overview

Max Total Supply

50,000,000 Oscar

Holders

2

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Null: 0x000...000
Balance
0 Oscar

Value
$0.00
0x0000000000000000000000000000000000000000
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:
Oscar

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 99999 runs

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

pragma solidity ^0.8.14;

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

contract Oscar is IERC20, Ownable {
    string constant _name = "Oscar";
    string constant _symbol = "Oscar";
    uint8 constant _decimals = 9;

    uint256 _totalSupply = 50000000 * (10 ** _decimals);

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

    mapping(address => bool) public isAuthorized;

    bool public isTradeEnabled = false;

    event AddAuthorizedWallet(address holder, bool status);

    constructor() {
        address deployer = 0x3166Dfd7cFb2F66e9Fc6188955b29D9F1c35A679;

        isAuthorized[deployer] = true;
        isAuthorized[address(this)] = true;

        _balances[deployer] = _totalSupply;
        emit Transfer(address(0), deployer, _totalSupply);
    }

    receive() external payable {}

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

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

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

    function allowance(
        address holder,
        address spender
    ) external view override returns (uint256) {
        return _allowances[holder][spender];
    }

    function approve(
        address spender,
        uint256 amount
    ) public override returns (bool) {
        _allowances[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

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

    function approveMax(address spender) external returns (bool) {
        return approve(spender, type(uint256).max);
    }

    function transfer(
        address recipient,
        uint256 amount
    ) external override returns (bool) {
        return _transferFrom(msg.sender, recipient, amount);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external override returns (bool) {
        if (_allowances[sender][msg.sender] != type(uint256).max) {
            require(
                _allowances[sender][msg.sender] >= amount,
                "Insufficient Allowance"
            );
            _allowances[sender][msg.sender] =
                _allowances[sender][msg.sender] -
                amount;
        }

        return _transferFrom(sender, recipient, amount);
    }

    function _transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) internal returns (bool) {
        if (!isTradeEnabled) require(isAuthorized[sender], "Trading disabled");

        require(_balances[sender] >= amount, "Insufficient Balance");
        _balances[sender] = _balances[sender] - amount;

        _balances[recipient] = _balances[recipient] + amount;

        emit Transfer(sender, recipient, amount);
        return true;
    }

    function enableTrading() external onlyOwner {
        require(!isTradeEnabled, "Trading already enabled");
        isTradeEnabled = true;
    }

    function setAuthorizedWallets(
        address _wallet,
        bool _status
    ) external onlyOwner {
        isAuthorized[_wallet] = _status;
    }

    function rescueETH() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "No enough ETH to transfer");

        payable(msg.sender).transfer(balance);
    }
}

File 2 of 4 : 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);
    }
}

File 3 of 4 : 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 4 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"AddAuthorizedWallet","type":"event"},{"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":"holder","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":"spender","type":"address"}],"name":"approveMax","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":"pure","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAuthorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setAuthorizedWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052620000126009600a62000277565b62000022906302faf0806200028f565b6001556005805460ff191690553480156200003c57600080fd5b50620000483362000112565b600460209081527f0b78360450ee9d0bbc9535faf51704ded8a6cff20c3242536d23c826c1b987b98054600160ff1991821681179092553060009081526040808220805490931684179092559154733166dfd7cfb2f66e9fc6188955b29d9f1c35a679808452600285527fc544a86ae58a511082dad1851788c9e2b943c10f6319c6d93136aa11dce47459829055915190815290928392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350620002b1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620001b95781600019048211156200019d576200019d62000162565b80851615620001ab57918102915b93841c93908002906200017d565b509250929050565b600082620001d25750600162000271565b81620001e15750600062000271565b8160018114620001fa5760028114620002055762000225565b600191505062000271565b60ff84111562000219576200021962000162565b50506001821b62000271565b5060208310610133831016604e8410600b84101617156200024a575081810a62000271565b62000256838362000178565b80600019048211156200026d576200026d62000162565b0290505b92915050565b60006200028860ff841683620001c1565b9392505050565b6000816000190483118215151615620002ac57620002ac62000162565b500290565b610d9e80620002c16000396000f3fe60806040526004361061012d5760003560e01c8063715018a6116100a557806395d89b4111610074578063dd62ed3e11610059578063dd62ed3e1461034c578063f2fde38b1461039f578063fe9fbb80146103bf57600080fd5b806395d89b4114610139578063a9059cbb1461032c57600080fd5b8063715018a6146102b35780638a8c523c146102c85780638d38a127146102dd5780638da5cb5b146102f757600080fd5b806323b872dd116100fc5780633683685a116100e15780633683685a14610230578063571ac8b01461025057806370a082311461027057600080fd5b806323b872dd146101f4578063313ce5671461021457600080fd5b806306fdde0314610139578063095ea7b31461018e57806318160ddd146101be57806320800a00146101dd57600080fd5b3661013457005b600080fd5b34801561014557600080fd5b50604080518082018252600581527f4f73636172000000000000000000000000000000000000000000000000000000602082015290516101859190610b8e565b60405180910390f35b34801561019a57600080fd5b506101ae6101a9366004610c23565b6103ef565b6040519015158152602001610185565b3480156101ca57600080fd5b506001545b604051908152602001610185565b3480156101e957600080fd5b506101f2610469565b005b34801561020057600080fd5b506101ae61020f366004610c4d565b61050f565b34801561022057600080fd5b5060405160098152602001610185565b34801561023c57600080fd5b506101f261024b366004610c89565b610681565b34801561025c57600080fd5b506101ae61026b366004610cc5565b6106df565b34801561027c57600080fd5b506101cf61028b366004610cc5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526002602052604090205490565b3480156102bf57600080fd5b506101f261070b565b3480156102d457600080fd5b506101f261071f565b3480156102e957600080fd5b506005546101ae9060ff1681565b34801561030357600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610185565b34801561033857600080fd5b506101ae610347366004610c23565b6107c1565b34801561035857600080fd5b506101cf610367366004610ce0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b3480156103ab57600080fd5b506101f26103ba366004610cc5565b6107d5565b3480156103cb57600080fd5b506101ae6103da366004610cc5565b60046020526000908152604090205460ff1681565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104579086815260200190565b60405180910390a35060015b92915050565b61047161088c565b47806104de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4e6f20656e6f7567682045544820746f207472616e736665720000000000000060448201526064015b60405180910390fd5b604051339082156108fc029083906000818181858888f1935050505015801561050b573d6000803e3d6000fd5b5050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1461066e5773ffffffffffffffffffffffffffffffffffffffff84166000908152600360209081526040808320338452909152902054821115610600576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f496e73756666696369656e7420416c6c6f77616e63650000000000000000000060448201526064016104d5565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832033845290915290205461063c908390610d42565b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602090815260408083203384529091529020555b61067984848461090d565b949350505050565b61068961088c565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260046020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6000610463827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6103ef565b61071361088c565b61071d6000610b19565b565b61072761088c565b60055460ff1615610794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f54726164696e6720616c726561647920656e61626c656400000000000000000060448201526064016104d5565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60006107ce33848461090d565b9392505050565b6107dd61088c565b73ffffffffffffffffffffffffffffffffffffffff8116610880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104d5565b61088981610b19565b50565b60005473ffffffffffffffffffffffffffffffffffffffff16331461071d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104d5565b60055460009060ff166109a95773ffffffffffffffffffffffffffffffffffffffff841660009081526004602052604090205460ff166109a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f54726164696e672064697361626c65640000000000000000000000000000000060448201526064016104d5565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260026020526040902054821115610a38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e73756666696369656e742042616c616e636500000000000000000000000060448201526064016104d5565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260026020526040902054610a69908390610d42565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152600260205260408082209390935590851681522054610aa6908390610d55565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526002602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b079086815260200190565b60405180910390a35060019392505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610bbb57858101830151858201604001528201610b9f565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610c1e57600080fd5b919050565b60008060408385031215610c3657600080fd5b610c3f83610bfa565b946020939093013593505050565b600080600060608486031215610c6257600080fd5b610c6b84610bfa565b9250610c7960208501610bfa565b9150604084013590509250925092565b60008060408385031215610c9c57600080fd5b610ca583610bfa565b915060208301358015158114610cba57600080fd5b809150509250929050565b600060208284031215610cd757600080fd5b6107ce82610bfa565b60008060408385031215610cf357600080fd5b610cfc83610bfa565b9150610d0a60208401610bfa565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561046357610463610d13565b8082018082111561046357610463610d1356fea2646970667358221220ce00c92d0faf2f6054acf2fb8105cf5b312fe6aed2c37915c7f26398eb950cfa64736f6c63430008100033

Deployed Bytecode

0x60806040526004361061012d5760003560e01c8063715018a6116100a557806395d89b4111610074578063dd62ed3e11610059578063dd62ed3e1461034c578063f2fde38b1461039f578063fe9fbb80146103bf57600080fd5b806395d89b4114610139578063a9059cbb1461032c57600080fd5b8063715018a6146102b35780638a8c523c146102c85780638d38a127146102dd5780638da5cb5b146102f757600080fd5b806323b872dd116100fc5780633683685a116100e15780633683685a14610230578063571ac8b01461025057806370a082311461027057600080fd5b806323b872dd146101f4578063313ce5671461021457600080fd5b806306fdde0314610139578063095ea7b31461018e57806318160ddd146101be57806320800a00146101dd57600080fd5b3661013457005b600080fd5b34801561014557600080fd5b50604080518082018252600581527f4f73636172000000000000000000000000000000000000000000000000000000602082015290516101859190610b8e565b60405180910390f35b34801561019a57600080fd5b506101ae6101a9366004610c23565b6103ef565b6040519015158152602001610185565b3480156101ca57600080fd5b506001545b604051908152602001610185565b3480156101e957600080fd5b506101f2610469565b005b34801561020057600080fd5b506101ae61020f366004610c4d565b61050f565b34801561022057600080fd5b5060405160098152602001610185565b34801561023c57600080fd5b506101f261024b366004610c89565b610681565b34801561025c57600080fd5b506101ae61026b366004610cc5565b6106df565b34801561027c57600080fd5b506101cf61028b366004610cc5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526002602052604090205490565b3480156102bf57600080fd5b506101f261070b565b3480156102d457600080fd5b506101f261071f565b3480156102e957600080fd5b506005546101ae9060ff1681565b34801561030357600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610185565b34801561033857600080fd5b506101ae610347366004610c23565b6107c1565b34801561035857600080fd5b506101cf610367366004610ce0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b3480156103ab57600080fd5b506101f26103ba366004610cc5565b6107d5565b3480156103cb57600080fd5b506101ae6103da366004610cc5565b60046020526000908152604090205460ff1681565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104579086815260200190565b60405180910390a35060015b92915050565b61047161088c565b47806104de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4e6f20656e6f7567682045544820746f207472616e736665720000000000000060448201526064015b60405180910390fd5b604051339082156108fc029083906000818181858888f1935050505015801561050b573d6000803e3d6000fd5b5050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1461066e5773ffffffffffffffffffffffffffffffffffffffff84166000908152600360209081526040808320338452909152902054821115610600576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f496e73756666696369656e7420416c6c6f77616e63650000000000000000000060448201526064016104d5565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832033845290915290205461063c908390610d42565b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602090815260408083203384529091529020555b61067984848461090d565b949350505050565b61068961088c565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260046020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6000610463827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6103ef565b61071361088c565b61071d6000610b19565b565b61072761088c565b60055460ff1615610794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f54726164696e6720616c726561647920656e61626c656400000000000000000060448201526064016104d5565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60006107ce33848461090d565b9392505050565b6107dd61088c565b73ffffffffffffffffffffffffffffffffffffffff8116610880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104d5565b61088981610b19565b50565b60005473ffffffffffffffffffffffffffffffffffffffff16331461071d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104d5565b60055460009060ff166109a95773ffffffffffffffffffffffffffffffffffffffff841660009081526004602052604090205460ff166109a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f54726164696e672064697361626c65640000000000000000000000000000000060448201526064016104d5565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260026020526040902054821115610a38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e73756666696369656e742042616c616e636500000000000000000000000060448201526064016104d5565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260026020526040902054610a69908390610d42565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152600260205260408082209390935590851681522054610aa6908390610d55565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526002602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b079086815260200190565b60405180910390a35060019392505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610bbb57858101830151858201604001528201610b9f565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610c1e57600080fd5b919050565b60008060408385031215610c3657600080fd5b610c3f83610bfa565b946020939093013593505050565b600080600060608486031215610c6257600080fd5b610c6b84610bfa565b9250610c7960208501610bfa565b9150604084013590509250925092565b60008060408385031215610c9c57600080fd5b610ca583610bfa565b915060208301358015158114610cba57600080fd5b809150509250929050565b600060208284031215610cd757600080fd5b6107ce82610bfa565b60008060408385031215610cf357600080fd5b610cfc83610bfa565b9150610d0a60208401610bfa565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561046357610463610d13565b8082018082111561046357610463610d1356fea2646970667358221220ce00c92d0faf2f6054acf2fb8105cf5b312fe6aed2c37915c7f26398eb950cfa64736f6c63430008100033

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.