ETH Price: $2,859.84 (-9.66%)
Gas: 9 Gwei

Token

Nihilism (Nihilism)
 

Overview

Max Total Supply

60,000,000,000 Nihilism

Holders

28

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
609,456,841.808421002 Nihilism

Value
$0.00
0x94909384a03c2b910ea8a48ac4d75b00c29f6d8b
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:
NihilismContract

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-09-09
*/

/**

Nihilism is the belief that all values are baseless and that nothing can be known or communicated. 
It is often associated with extreme pessimism and a radical skepticism that condemns existence. 
A true nihilist would believe in nothing, have no loyalties, and no purpose.
Basically Nihilism claims that nothing in life has any meaning or purpose and that life itself is meaningless. 
I have myself become a Nihilist ever since BTC started dumping from 69k. 
I will remain a nihilist and hold on to the belief that nothing in life matters until BTC sets a new all time high.

I was always Kind of a Nihilist I never truly found meaning in life. 
Most Likely there is no grander meaning to life and with how crypto market is looking I have officially emabraced Nihilism. 
Life is pointless guys, accept it.

 sincerely.
 Nihilist Dev

**/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


pragma solidity ^0.8.0;


 // @dev Interface of the ERC20 standard as defined in the EIP.
 
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;



contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;
    uint256 private _decimals;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_,uint256 initialBalance_,uint256 decimals_,address tokenOwner) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = initialBalance_* 10**decimals_;
        _balances[tokenOwner] = _totalSupply;
        _decimals = decimals_;
        emit Transfer(address(0), tokenOwner, _totalSupply);
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint256) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }


    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        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 _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);
    }

}





pragma solidity ^0.8.0;


contract NihilismContract is ERC20 {
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 decimals_,
        uint256 initialBalance_,
        address tokenOwner_,
        address payable feeReceiver_
    ) payable ERC20(name_, symbol_,initialBalance_,decimals_,tokenOwner_) {
        payable(feeReceiver_).transfer(msg.value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner_","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","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":"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":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405260405162000e1238038062000e128339810160408190526200002691620001e2565b8585848685600462000039868262000319565b50600562000048858262000319565b506200005682600a620004fa565b6200006290846200050f565b60028190556001600160a01b038216600081815260208181526040808320859055600387905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350506040516001600160a01b03851693503480156108fc02935091506000818181858888f19350505050158015620000f7573d6000803e3d6000fd5b5050505050505062000529565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200012c57600080fd5b81516001600160401b038082111562000149576200014962000104565b604051601f8301601f19908116603f0116810190828211818310171562000174576200017462000104565b816040528381526020925086838588010111156200019157600080fd5b600091505b83821015620001b5578582018301518183018401529082019062000196565b600093810190920192909252949350505050565b6001600160a01b0381168114620001df57600080fd5b50565b60008060008060008060c08789031215620001fc57600080fd5b86516001600160401b03808211156200021457600080fd5b620002228a838b016200011a565b975060208901519150808211156200023957600080fd5b506200024889828a016200011a565b955050604087015193506060870151925060808701516200026981620001c9565b60a08801519092506200027c81620001c9565b809150509295509295509295565b600181811c908216806200029f57607f821691505b602082108103620002c057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200031457600081815260208120601f850160051c81016020861015620002ef5750805b601f850160051c820191505b818110156200031057828155600101620002fb565b5050505b505050565b81516001600160401b0381111562000335576200033562000104565b6200034d816200034684546200028a565b84620002c6565b602080601f8311600181146200038557600084156200036c5750858301515b600019600386901b1c1916600185901b17855562000310565b600085815260208120601f198616915b82811015620003b65788860151825594840194600190910190840162000395565b5085821015620003d55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200043c578160001904821115620004205762000420620003e5565b808516156200042e57918102915b93841c939080029062000400565b509250929050565b6000826200045557506001620004f4565b816200046457506000620004f4565b81600181146200047d57600281146200048857620004a8565b6001915050620004f4565b60ff8411156200049c576200049c620003e5565b50506001821b620004f4565b5060208310610133831016604e8410600b8410161715620004cd575081810a620004f4565b620004d98383620003fb565b8060001904821115620004f057620004f0620003e5565b0290505b92915050565b600062000508838362000444565b9392505050565b8082028115828204841417620004f457620004f4620003e5565b6108d980620005396000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c39190610708565b60405180910390f35b6100df6100da366004610772565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f36600461079c565b610268565b6003546100f3565b6100df61012a366004610772565b61031e565b6100f361013d3660046107d8565b6001600160a01b031660009081526020819052604090205490565b6100b6610355565b6100df61016e366004610772565b610364565b6100df610181366004610772565b6103ff565b6100f36101943660046107fa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce9061082d565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa9061082d565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040c565b5060015b92915050565b6000610275848484610530565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102ff5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610313853361030e868561087d565b61040c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030e908690610890565b6060600580546101ce9061082d565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f6565b6103f5338561030e868561087d565b5060019392505050565b600061025e338484610530565b6001600160a01b03831661046e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f6565b6001600160a01b0382166104cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105945760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f6565b6001600160a01b0382166105f65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f6565b6001600160a01b0383166000908152602081905260409020548181101561066e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f6565b610678828261087d565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ae908490610890565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106fa91815260200190565b60405180910390a350505050565b600060208083528351808285015260005b8181101561073557858101830151858201604001528201610719565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461076d57600080fd5b919050565b6000806040838503121561078557600080fd5b61078e83610756565b946020939093013593505050565b6000806000606084860312156107b157600080fd5b6107ba84610756565b92506107c860208501610756565b9150604084013590509250925092565b6000602082840312156107ea57600080fd5b6107f382610756565b9392505050565b6000806040838503121561080d57600080fd5b61081683610756565b915061082460208401610756565b90509250929050565b600181811c9082168061084157607f821691505b60208210810361086157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561026257610262610867565b808201808211156102625761026261086756fea26469706673582212208a064d8f331d74d06bfc27097f5905aca04db07cbfde0754e2a50f366ea913a664736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000df8475800000000000000000000000000948ce9f15701c30bebd2041f04d9a97bc09443f5000000000000000000000000948ce9f15701c30bebd2041f04d9a97bc09443f500000000000000000000000000000000000000000000000000000000000000084e6968696c69736d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084e6968696c69736d000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c39190610708565b60405180910390f35b6100df6100da366004610772565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f36600461079c565b610268565b6003546100f3565b6100df61012a366004610772565b61031e565b6100f361013d3660046107d8565b6001600160a01b031660009081526020819052604090205490565b6100b6610355565b6100df61016e366004610772565b610364565b6100df610181366004610772565b6103ff565b6100f36101943660046107fa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce9061082d565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa9061082d565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040c565b5060015b92915050565b6000610275848484610530565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102ff5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610313853361030e868561087d565b61040c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030e908690610890565b6060600580546101ce9061082d565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f6565b6103f5338561030e868561087d565b5060019392505050565b600061025e338484610530565b6001600160a01b03831661046e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f6565b6001600160a01b0382166104cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105945760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f6565b6001600160a01b0382166105f65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f6565b6001600160a01b0383166000908152602081905260409020548181101561066e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f6565b610678828261087d565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ae908490610890565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106fa91815260200190565b60405180910390a350505050565b600060208083528351808285015260005b8181101561073557858101830151858201604001528201610719565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461076d57600080fd5b919050565b6000806040838503121561078557600080fd5b61078e83610756565b946020939093013593505050565b6000806000606084860312156107b157600080fd5b6107ba84610756565b92506107c860208501610756565b9150604084013590509250925092565b6000602082840312156107ea57600080fd5b6107f382610756565b9392505050565b6000806040838503121561080d57600080fd5b61081683610756565b915061082460208401610756565b90509250929050565b600181811c9082168061084157607f821691505b60208210810361086157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561026257610262610867565b808201808211156102625761026261086756fea26469706673582212208a064d8f331d74d06bfc27097f5905aca04db07cbfde0754e2a50f366ea913a664736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000df8475800000000000000000000000000948ce9f15701c30bebd2041f04d9a97bc09443f5000000000000000000000000948ce9f15701c30bebd2041f04d9a97bc09443f500000000000000000000000000000000000000000000000000000000000000084e6968696c69736d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084e6968696c69736d000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Nihilism
Arg [1] : symbol_ (string): Nihilism
Arg [2] : decimals_ (uint256): 9
Arg [3] : initialBalance_ (uint256): 60000000000
Arg [4] : tokenOwner_ (address): 0x948CE9f15701c30bEBd2041f04D9A97BC09443F5
Arg [5] : feeReceiver_ (address): 0x948CE9f15701c30bEBd2041f04D9A97BC09443F5

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 0000000000000000000000000000000000000000000000000000000df8475800
Arg [4] : 000000000000000000000000948ce9f15701c30bebd2041f04d9a97bc09443f5
Arg [5] : 000000000000000000000000948ce9f15701c30bebd2041f04d9a97bc09443f5
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 4e6968696c69736d000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [9] : 4e6968696c69736d000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

11699:385:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5986:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8162:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;8162:169:0;1004:187:1;7115:108:0;7203:12;;7115:108;;;1342:25:1;;;1330:2;1315:18;7115:108:0;1196:177:1;8813:422:0;;;;;;:::i;:::-;;:::i;6948:102::-;7033:9;;6948:102;;9644:215;;;;;;:::i;:::-;;:::i;7286:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7387:18:0;7360:7;7387:18;;;;;;;;;;;;7286:127;6205:104;;;:::i;10362:377::-;;;;;;:::i;:::-;;:::i;7626:175::-;;;;;;:::i;:::-;;:::i;7864:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7980:18:0;;;7953:7;7980:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7864:151;5986:100;6040:13;6073:5;6066:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5986:100;:::o;8162:169::-;8245:4;8262:39;4554:10;8285:7;8294:6;8262:8;:39::i;:::-;-1:-1:-1;8319:4:0;8162:169;;;;;:::o;8813:422::-;8919:4;8936:36;8946:6;8954:9;8965:6;8936:9;:36::i;:::-;-1:-1:-1;;;;;9012:19:0;;8985:24;9012:19;;;:11;:19;;;;;;;;4554:10;9012:33;;;;;;;;9064:26;;;;9056:79;;;;-1:-1:-1;;;9056:79:0;;2754:2:1;9056:79:0;;;2736:21:1;2793:2;2773:18;;;2766:30;2832:34;2812:18;;;2805:62;-1:-1:-1;;;2883:18:1;;;2876:38;2931:19;;9056:79:0;;;;;;;;;9146:57;9155:6;4554:10;9177:25;9196:6;9177:16;:25;:::i;:::-;9146:8;:57::i;:::-;-1:-1:-1;9223:4:0;;8813:422;-1:-1:-1;;;;8813:422:0:o;9644:215::-;4554:10;9732:4;9781:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9781:34:0;;;;;;;;;;9732:4;;9749:80;;9772:7;;9781:47;;9818:10;;9781:47;:::i;6205:104::-;6261:13;6294:7;6287:14;;;;;:::i;10362:377::-;4554:10;10455:4;10499:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10499:34:0;;;;;;;;;;10552:35;;;;10544:85;;;;-1:-1:-1;;;10544:85:0;;3558:2:1;10544:85:0;;;3540:21:1;3597:2;3577:18;;;3570:30;3636:34;3616:18;;;3609:62;-1:-1:-1;;;3687:18:1;;;3680:35;3732:19;;10544:85:0;3356:401:1;10544:85:0;10640:67;4554:10;10663:7;10672:34;10691:15;10672:16;:34;:::i;10640:67::-;-1:-1:-1;10727:4:0;;10362:377;-1:-1:-1;;;10362:377:0:o;7626:175::-;7712:4;7729:42;4554:10;7753:9;7764:6;7729:9;:42::i;11307:346::-;-1:-1:-1;;;;;11409:19:0;;11401:68;;;;-1:-1:-1;;;11401:68:0;;3964:2:1;11401:68:0;;;3946:21:1;4003:2;3983:18;;;3976:30;4042:34;4022:18;;;4015:62;-1:-1:-1;;;4093:18:1;;;4086:34;4137:19;;11401:68:0;3762:400:1;11401:68:0;-1:-1:-1;;;;;11488:21:0;;11480:68;;;;-1:-1:-1;;;11480:68:0;;4369:2:1;11480:68:0;;;4351:21:1;4408:2;4388:18;;;4381:30;4447:34;4427:18;;;4420:62;-1:-1:-1;;;4498:18:1;;;4491:32;4540:19;;11480:68:0;4167:398:1;11480:68:0;-1:-1:-1;;;;;11561:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11613:32;;1342:25:1;;;11613:32:0;;1315:18:1;11613:32:0;;;;;;;11307:346;;;:::o;10749:546::-;-1:-1:-1;;;;;10855:20:0;;10847:70;;;;-1:-1:-1;;;10847:70:0;;4772:2:1;10847:70:0;;;4754:21:1;4811:2;4791:18;;;4784:30;4850:34;4830:18;;;4823:62;-1:-1:-1;;;4901:18:1;;;4894:35;4946:19;;10847:70:0;4570:401:1;10847:70:0;-1:-1:-1;;;;;10936:23:0;;10928:71;;;;-1:-1:-1;;;10928:71:0;;5178:2:1;10928:71:0;;;5160:21:1;5217:2;5197:18;;;5190:30;5256:34;5236:18;;;5229:62;-1:-1:-1;;;5307:18:1;;;5300:33;5350:19;;10928:71:0;4976:399:1;10928:71:0;-1:-1:-1;;;;;11038:17:0;;11014:21;11038:17;;;;;;;;;;;11074:23;;;;11066:74;;;;-1:-1:-1;;;11066:74:0;;5582:2:1;11066:74:0;;;5564:21:1;5621:2;5601:18;;;5594:30;5660:34;5640:18;;;5633:62;-1:-1:-1;;;5711:18:1;;;5704:36;5757:19;;11066:74:0;5380:402:1;11066:74:0;11171:22;11187:6;11171:13;:22;:::i;:::-;-1:-1:-1;;;;;11151:17:0;;;:9;:17;;;;;;;;;;;:42;;;;11204:20;;;;;;;;:30;;11228:6;;11151:9;11204:30;;11228:6;;11204:30;:::i;:::-;;;;;;;;11269:9;-1:-1:-1;;;;;11252:35:0;11261:6;-1:-1:-1;;;;;11252:35:0;;11280:6;11252:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;11252:35:0;;;;;;;;10836:459;10749:546;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:186::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;1862:29;1881:9;1862:29;:::i;:::-;1852:39;1711:186;-1:-1:-1;;;1711:186:1:o;1902:260::-;1970:6;1978;2031:2;2019:9;2010:7;2006:23;2002:32;1999:52;;;2047:1;2044;2037:12;1999:52;2070:29;2089:9;2070:29;:::i;:::-;2060:39;;2118:38;2152:2;2141:9;2137:18;2118:38;:::i;:::-;2108:48;;1902:260;;;;;:::o;2167:380::-;2246:1;2242:12;;;;2289;;;2310:61;;2364:4;2356:6;2352:17;2342:27;;2310:61;2417:2;2409:6;2406:14;2386:18;2383:38;2380:161;;2463:10;2458:3;2454:20;2451:1;2444:31;2498:4;2495:1;2488:15;2526:4;2523:1;2516:15;2380:161;;2167:380;;;:::o;2961:127::-;3022:10;3017:3;3013:20;3010:1;3003:31;3053:4;3050:1;3043:15;3077:4;3074:1;3067:15;3093:128;3160:9;;;3181:11;;;3178:37;;;3195:18;;:::i;3226:125::-;3291:9;;;3312:10;;;3309:36;;;3325:18;;:::i

Swarm Source

ipfs://8a064d8f331d74d06bfc27097f5905aca04db07cbfde0754e2a50f366ea913a6
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.