POL Price: $0.407167 (-2.73%)
Gas: 42 GWei
 

Overview

Max Total Supply

50,000,000 KWAI

Holders

133

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

KWAI is our very own AI-powered chat-based smart assistant that has been developed as a friendly helper to help user manage crypto effortlessly with just a chat prompt.

Contract Source Code Verified (Exact Match)

Contract Name:
KWAI

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 5000 runs

Other Settings:
default evmVersion
File 1 of 4 : KWAI.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

contract KWAI is IERC20, Ownable {

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

    string constant public name = "Kwai";
    string constant public symbol = "KWAI";
    uint constant public decimals = 18;
    uint256 private _totalSupply = 50 * 1E6 * 10**decimals;

    event TransferFee(address sender, address recipient, uint256 amount);
    event Burn(address sender, uint256 amount);

    constructor() {
        _balances[msg.sender] = _totalSupply;
    }

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

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

    function transfer(address to, uint256 amount) external override returns (bool)  {
        _transfer(_msgSender(), to, amount);
        return true;
    }
    
    function allowance(address owner, address spender) external view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) external override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }


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


    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, this.allowance(owner, spender) + addedValue);
        return true;
    }


    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = this.allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

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

        emit Transfer(sender, recipient, amount);
    }


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

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

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


    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 _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = this.allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

    function burnFrom(address account, uint256 amount) external {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

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": 5000,
    "details": {
      "yul": false
    }
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferFee","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052620000126012600a620001ee565b62000022906302faf080620001ff565b6003553480156200003257600080fd5b506200003e3362000057565b6003543360009081526001602052604090205562000221565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b80825b60018511156200010357808604811115620000df57620000df620000a7565b6001851615620000ee57908102905b8002620000fb8560011c90565b9450620000c0565b94509492505050565b6000826200011d57506001620001e7565b816200012c57506000620001e7565b8160018114620001455760028114620001505762000184565b6001915050620001e7565b60ff841115620001645762000164620000a7565b8360020a9150848211156200017d576200017d620000a7565b50620001e7565b5060208310610133831016604e8410600b8410161715620001bc575081810a83811115620001b657620001b6620000a7565b620001e7565b620001cb8484846001620000bd565b92509050818404811115620001e457620001e4620000a7565b81025b9392505050565b6000620001e760001984846200010c565b60008160001904831182151516156200021c576200021c620000a7565b500290565b61114b80620002316000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461027e578063a9059cbb14610291578063dd62ed3e146102a4578063f2fde38b146102ea57600080fd5b8063715018a61461020157806379cc6790146102095780638da5cb5b1461021c57806395d89b411461024257600080fd5b8063313ce567116100d3578063313ce5671461019b57806339509351146101a357806342966c68146101b657806370a08231146101cb57600080fd5b806306fdde0314610105578063095ea7b31461015757806318160ddd1461017757806323b872dd14610188575b600080fd5b6101416040518060400160405280600481526020017f4b7761690000000000000000000000000000000000000000000000000000000081525081565b60405161014e9190610a87565b60405180910390f35b61016a610165366004610ae6565b6102fd565b60405161014e9190610b2d565b6003545b60405161014e9190610b41565b61016a610196366004610b4f565b610314565b61017b601281565b61016a6101b1366004610ae6565b61033a565b6101c96101c4366004610b9f565b6103e1565b005b61017b6101d9366004610bc8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6101c96103ee565b6101c9610217366004610ae6565b610402565b60005473ffffffffffffffffffffffffffffffffffffffff1660405161014e9190610bf2565b6101416040518060400160405280600481526020017f4b5741490000000000000000000000000000000000000000000000000000000081525081565b61016a61028c366004610ae6565b61041b565b61016a61029f366004610ae6565b6104e4565b61017b6102b2366004610c00565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b6101c96102f8366004610bc8565b6104f1565b600061030a338484610535565b5060015b92915050565b600033610322858285610610565b61032d8585856106ee565b60019150505b9392505050565b6040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815260009033906103d790829086908690309063dd62ed3e906103879086908690600401610c33565b602060405180830381865afa1580156103a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c89190610c59565b6103d29190610ca9565b610535565b5060019392505050565b6103eb3382610859565b50565b6103f6610967565b610400600061099e565b565b61040d823383610610565b6104178282610859565b5050565b6040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815260009033908290309063dd62ed3e906104609085908990600401610c33565b602060405180830381865afa15801561047d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104a19190610c59565b9050838110156104cc5760405162461bcd60e51b81526004016104c390610d19565b60405180910390fd5b6104d98286868403610535565b506001949350505050565b600061030a3384846106ee565b6104f9610967565b73ffffffffffffffffffffffffffffffffffffffff811661052c5760405162461bcd60e51b81526004016104c390610d83565b6103eb8161099e565b73ffffffffffffffffffffffffffffffffffffffff83166105685760405162461bcd60e51b81526004016104c390610ded565b73ffffffffffffffffffffffffffffffffffffffff821661059b5760405162461bcd60e51b81526004016104c390610e57565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610603908590610b41565b60405180910390a3505050565b6040517fdd62ed3e000000000000000000000000000000000000000000000000000000008152600090309063dd62ed3e906106519087908790600401610c33565b602060405180830381865afa15801561066e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106929190610c59565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106e857818110156106db5760405162461bcd60e51b81526004016104c390610e9e565b6106e88484848403610535565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166107215760405162461bcd60e51b81526004016104c390610f08565b73ffffffffffffffffffffffffffffffffffffffff82166107545760405162461bcd60e51b81526004016104c390610f72565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600160205260409020548181101561079a5760405162461bcd60e51b81526004016104c390610fdc565b6107a48282610fec565b73ffffffffffffffffffffffffffffffffffffffff80861660009081526001602052604080822093909355908516815290812080548492906107e7908490610ca9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161084b9190610b41565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff821661088c5760405162461bcd60e51b81526004016104c390611059565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054818110156108d25760405162461bcd60e51b81526004016104c3906110c3565b6108dc8282610fec565b73ffffffffffffffffffffffffffffffffffffffff841660009081526001602052604081209190915560038054849290610917908490610fec565b909155505060405160009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610603908690610b41565b60005473ffffffffffffffffffffffffffffffffffffffff1633146104005760405162461bcd60e51b81526004016104c390611105565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b83811015610a2e578181015183820152602001610a16565b50506000910152565b6000610a41825190565b808452602084019350610a58818560208601610a13565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920192915050565b602080825281016103338184610a37565b600073ffffffffffffffffffffffffffffffffffffffff821661030e565b610abf81610a98565b81146103eb57600080fd5b803561030e81610ab6565b80610abf565b803561030e81610ad5565b60008060408385031215610afc57610afc600080fd5b6000610b088585610aca565b9250506020610b1985828601610adb565b9150509250929050565b8015155b82525050565b6020810161030e8284610b23565b80610b27565b6020810161030e8284610b3b565b600080600060608486031215610b6757610b67600080fd5b6000610b738686610aca565b9350506020610b8486828701610aca565b9250506040610b9586828701610adb565b9150509250925092565b600060208284031215610bb457610bb4600080fd5b6000610bc08484610adb565b949350505050565b600060208284031215610bdd57610bdd600080fd5b6000610bc08484610aca565b610b2781610a98565b6020810161030e8284610be9565b60008060408385031215610c1657610c16600080fd5b6000610c228585610aca565b9250506020610b1985828601610aca565b60408101610c418285610be9565b6103336020830184610be9565b805161030e81610ad5565b600060208284031215610c6e57610c6e600080fd5b6000610bc08484610c4e565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561030e5761030e610c7a565b602581526000602082017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781527f207a65726f000000000000000000000000000000000000000000000000000000602082015291505b5060400190565b6020808252810161030e81610cbc565b602681526000602082017f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181527f646472657373000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81610d29565b602481526000602082017f45524332303a20617070726f76652066726f6d20746865207a65726f2061646481527f726573730000000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81610d93565b602281526000602082017f45524332303a20617070726f766520746f20746865207a65726f20616464726581527f737300000000000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81610dfd565b601d81526000602082017f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000815291505b5060200190565b6020808252810161030e81610e67565b602581526000602082017f45524332303a207472616e736665722066726f6d20746865207a65726f20616481527f647265737300000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81610eae565b602381526000602082017f45524332303a207472616e7366657220746f20746865207a65726f206164647281527f657373000000000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81610f18565b602681526000602082017f45524332303a207472616e7366657220616d6f756e742065786365656473206281527f616c616e6365000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81610f82565b8181038181111561030e5761030e610c7a565b602181526000602082017f45524332303a206275726e2066726f6d20746865207a65726f2061646472657381527f730000000000000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81610fff565b602281526000602082017f45524332303a206275726e20616d6f756e7420657863656564732062616c616e81527f636500000000000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81611069565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657291019081526000610e97565b6020808252810161030e816110d356fea2646970667358221220cbd1f36c89b0067627a1cbb586db5dbdc2a99ed2fbfbb389a799099ec81127b664736f6c63430008100033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461027e578063a9059cbb14610291578063dd62ed3e146102a4578063f2fde38b146102ea57600080fd5b8063715018a61461020157806379cc6790146102095780638da5cb5b1461021c57806395d89b411461024257600080fd5b8063313ce567116100d3578063313ce5671461019b57806339509351146101a357806342966c68146101b657806370a08231146101cb57600080fd5b806306fdde0314610105578063095ea7b31461015757806318160ddd1461017757806323b872dd14610188575b600080fd5b6101416040518060400160405280600481526020017f4b7761690000000000000000000000000000000000000000000000000000000081525081565b60405161014e9190610a87565b60405180910390f35b61016a610165366004610ae6565b6102fd565b60405161014e9190610b2d565b6003545b60405161014e9190610b41565b61016a610196366004610b4f565b610314565b61017b601281565b61016a6101b1366004610ae6565b61033a565b6101c96101c4366004610b9f565b6103e1565b005b61017b6101d9366004610bc8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6101c96103ee565b6101c9610217366004610ae6565b610402565b60005473ffffffffffffffffffffffffffffffffffffffff1660405161014e9190610bf2565b6101416040518060400160405280600481526020017f4b5741490000000000000000000000000000000000000000000000000000000081525081565b61016a61028c366004610ae6565b61041b565b61016a61029f366004610ae6565b6104e4565b61017b6102b2366004610c00565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b6101c96102f8366004610bc8565b6104f1565b600061030a338484610535565b5060015b92915050565b600033610322858285610610565b61032d8585856106ee565b60019150505b9392505050565b6040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815260009033906103d790829086908690309063dd62ed3e906103879086908690600401610c33565b602060405180830381865afa1580156103a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c89190610c59565b6103d29190610ca9565b610535565b5060019392505050565b6103eb3382610859565b50565b6103f6610967565b610400600061099e565b565b61040d823383610610565b6104178282610859565b5050565b6040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815260009033908290309063dd62ed3e906104609085908990600401610c33565b602060405180830381865afa15801561047d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104a19190610c59565b9050838110156104cc5760405162461bcd60e51b81526004016104c390610d19565b60405180910390fd5b6104d98286868403610535565b506001949350505050565b600061030a3384846106ee565b6104f9610967565b73ffffffffffffffffffffffffffffffffffffffff811661052c5760405162461bcd60e51b81526004016104c390610d83565b6103eb8161099e565b73ffffffffffffffffffffffffffffffffffffffff83166105685760405162461bcd60e51b81526004016104c390610ded565b73ffffffffffffffffffffffffffffffffffffffff821661059b5760405162461bcd60e51b81526004016104c390610e57565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610603908590610b41565b60405180910390a3505050565b6040517fdd62ed3e000000000000000000000000000000000000000000000000000000008152600090309063dd62ed3e906106519087908790600401610c33565b602060405180830381865afa15801561066e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106929190610c59565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106e857818110156106db5760405162461bcd60e51b81526004016104c390610e9e565b6106e88484848403610535565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166107215760405162461bcd60e51b81526004016104c390610f08565b73ffffffffffffffffffffffffffffffffffffffff82166107545760405162461bcd60e51b81526004016104c390610f72565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600160205260409020548181101561079a5760405162461bcd60e51b81526004016104c390610fdc565b6107a48282610fec565b73ffffffffffffffffffffffffffffffffffffffff80861660009081526001602052604080822093909355908516815290812080548492906107e7908490610ca9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161084b9190610b41565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff821661088c5760405162461bcd60e51b81526004016104c390611059565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054818110156108d25760405162461bcd60e51b81526004016104c3906110c3565b6108dc8282610fec565b73ffffffffffffffffffffffffffffffffffffffff841660009081526001602052604081209190915560038054849290610917908490610fec565b909155505060405160009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610603908690610b41565b60005473ffffffffffffffffffffffffffffffffffffffff1633146104005760405162461bcd60e51b81526004016104c390611105565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b83811015610a2e578181015183820152602001610a16565b50506000910152565b6000610a41825190565b808452602084019350610a58818560208601610a13565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920192915050565b602080825281016103338184610a37565b600073ffffffffffffffffffffffffffffffffffffffff821661030e565b610abf81610a98565b81146103eb57600080fd5b803561030e81610ab6565b80610abf565b803561030e81610ad5565b60008060408385031215610afc57610afc600080fd5b6000610b088585610aca565b9250506020610b1985828601610adb565b9150509250929050565b8015155b82525050565b6020810161030e8284610b23565b80610b27565b6020810161030e8284610b3b565b600080600060608486031215610b6757610b67600080fd5b6000610b738686610aca565b9350506020610b8486828701610aca565b9250506040610b9586828701610adb565b9150509250925092565b600060208284031215610bb457610bb4600080fd5b6000610bc08484610adb565b949350505050565b600060208284031215610bdd57610bdd600080fd5b6000610bc08484610aca565b610b2781610a98565b6020810161030e8284610be9565b60008060408385031215610c1657610c16600080fd5b6000610c228585610aca565b9250506020610b1985828601610aca565b60408101610c418285610be9565b6103336020830184610be9565b805161030e81610ad5565b600060208284031215610c6e57610c6e600080fd5b6000610bc08484610c4e565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561030e5761030e610c7a565b602581526000602082017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781527f207a65726f000000000000000000000000000000000000000000000000000000602082015291505b5060400190565b6020808252810161030e81610cbc565b602681526000602082017f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181527f646472657373000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81610d29565b602481526000602082017f45524332303a20617070726f76652066726f6d20746865207a65726f2061646481527f726573730000000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81610d93565b602281526000602082017f45524332303a20617070726f766520746f20746865207a65726f20616464726581527f737300000000000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81610dfd565b601d81526000602082017f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000815291505b5060200190565b6020808252810161030e81610e67565b602581526000602082017f45524332303a207472616e736665722066726f6d20746865207a65726f20616481527f647265737300000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81610eae565b602381526000602082017f45524332303a207472616e7366657220746f20746865207a65726f206164647281527f657373000000000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81610f18565b602681526000602082017f45524332303a207472616e7366657220616d6f756e742065786365656473206281527f616c616e6365000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81610f82565b8181038181111561030e5761030e610c7a565b602181526000602082017f45524332303a206275726e2066726f6d20746865207a65726f2061646472657381527f730000000000000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81610fff565b602281526000602082017f45524332303a206275726e20616d6f756e7420657863656564732062616c616e81527f636500000000000000000000000000000000000000000000000000000000000060208201529150610d12565b6020808252810161030e81611069565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657291019081526000610e97565b6020808252810161030e816110d356fea2646970667358221220cbd1f36c89b0067627a1cbb586db5dbdc2a99ed2fbfbb389a799099ec81127b664736f6c63430008100033

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.