ETH Price: $2,318.98 (-2.63%)
 

Overview

Max Total Supply

1,000,000,000 BULLG...

Holders

428 (0.00%)

Transfers

-
1

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$10,558.60

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BullGod (BULLGOD) is a community-driven token on the Base blockchain with a fixed supply of 1B. The project focuses on transparency, fair distribution, and building long-term community value through future NFT and DeFi integrations.

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 BULLGOD
Market Data Source: Coinmarketcap

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x86d282A0...Fa0B0A3a6
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
StandardToken

Compiler Version
v0.8.30+commit.73712a01

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2025-08-28
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address to, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
    
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @title StandardToken
 * @dev Standard ERC20 token with fixed supply
 * Implements IERC20 interface for better compatibility
 */
contract StandardToken is IERC20 {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    
    uint256 private _totalSupply;
    string public name;
    string public symbol;
    uint8 public constant decimals = 18;
    
    // Maximum supply cap (1 trillion tokens with 18 decimals)
    uint256 public constant MAX_SUPPLY = 1_000_000_000_000 * 10**18;
    
    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _supply,
        address _initialHolder
    ) {
        require(_initialHolder != address(0), "Initial holder cannot be zero address");
        require(_supply > 0, "Supply must be greater than 0");
        require(_supply <= MAX_SUPPLY, "Supply exceeds maximum");
        require(bytes(_name).length > 0, "Name cannot be empty");
        require(bytes(_symbol).length > 0, "Symbol cannot be empty");
        
        name = _name;
        symbol = _symbol;
        _totalSupply = _supply;
        _balances[_initialHolder] = _supply;
        emit Transfer(address(0), _initialHolder, _supply);
    }
    
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }
    
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }
    
    function transfer(address to, uint256 amount) public override returns (bool) {
        _transfer(msg.sender, to, amount);
        return true;
    }
    
    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }
    
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }
    
    function transferFrom(address from, address to, uint256 amount) public override returns (bool) {
        uint256 currentAllowance = _allowances[from][msg.sender];
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(from, msg.sender, currentAllowance - amount);
            }
        }
        _transfer(from, to, amount);
        return true;
    }
    
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        address owner = msg.sender;
        _approve(owner, spender, _allowances[owner][spender] + addedValue);
        return true;
    }
    
    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        address owner = msg.sender;
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }
        return true;
    }
    
    function _transfer(address from, address to, uint256 amount) internal {
        require(from != address(0), "ERC20: transfer from zero address");
        require(to != address(0), "ERC20: transfer to zero address");
        
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        
        unchecked {
            _balances[from] = fromBalance - amount;
            _balances[to] += amount;
        }
        
        emit Transfer(from, to, amount);
    }
    
    function _approve(address owner, address spender, uint256 amount) internal {
        require(owner != address(0), "ERC20: approve from zero address");
        require(spender != address(0), "ERC20: approve to zero address");
        
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"address","name":"_initialHolder","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":"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"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":"","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":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

0x608060405234801561001057600080fd5b50604051610d84380380610d8483398101604081905261002f91610313565b6001600160a01b0381166100985760405162461bcd60e51b815260206004820152602560248201527f496e697469616c20686f6c6465722063616e6e6f74206265207a65726f206164604482015264647265737360d81b60648201526084015b60405180910390fd5b600082116100e85760405162461bcd60e51b815260206004820152601d60248201527f537570706c79206d7573742062652067726561746572207468616e2030000000604482015260640161008f565b6c0c9f2c9cd04674edea400000008211156101455760405162461bcd60e51b815260206004820152601660248201527f537570706c792065786365656473206d6178696d756d00000000000000000000604482015260640161008f565b60008451116101965760405162461bcd60e51b815260206004820152601460248201527f4e616d652063616e6e6f7420626520656d707479000000000000000000000000604482015260640161008f565b60008351116101e75760405162461bcd60e51b815260206004820152601660248201527f53796d626f6c2063616e6e6f7420626520656d70747900000000000000000000604482015260640161008f565b60036101f3858261042f565b506004610200848261042f565b5060028290556001600160a01b038116600081815260208181526040808320869055518581527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050506104ed565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261028157600080fd5b81516001600160401b0381111561029a5761029a61025a565b604051601f8201601f19908116603f011681016001600160401b03811182821017156102c8576102c861025a565b6040528181528382016020018510156102e057600080fd5b60005b828110156102ff576020818601810151838301820152016102e3565b506000918101602001919091529392505050565b6000806000806080858703121561032957600080fd5b84516001600160401b0381111561033f57600080fd5b61034b87828801610270565b602087015190955090506001600160401b0381111561036957600080fd5b61037587828801610270565b60408701516060880151919550935090506001600160a01b038116811461039b57600080fd5b939692955090935050565b600181811c908216806103ba57607f821691505b6020821081036103da57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561042a57806000526020600020601f840160051c810160208510156104075750805b601f840160051c820191505b818110156104275760008155600101610413565b50505b505050565b81516001600160401b038111156104485761044861025a565b61045c8161045684546103a6565b846103e0565b6020601f82116001811461049057600083156104785750848201515b600019600385901b1c1916600184901b178455610427565b600084815260208120601f198516915b828110156104c057878501518255602094850194600190920191016104a0565b50848210156104de5786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b610888806104fc6000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80633950935111610071578063395093511461014d57806370a082311461016057806395d89b4114610189578063a457c2d714610191578063a9059cbb146101a4578063dd62ed3e146101b757600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f57806332cb6b0c14610139575b600080fd5b6100c16101f0565b6040516100ce91906106d1565b60405180910390f35b6100ea6100e536600461073b565b61027e565b60405190151581526020016100ce565b6002545b6040519081526020016100ce565b6100ea61011a366004610765565b610295565b610127601281565b60405160ff90911681526020016100ce565b6100fe6c0c9f2c9cd04674edea4000000081565b6100ea61015b36600461073b565b61033a565b6100fe61016e3660046107a2565b6001600160a01b031660009081526020819052604090205490565b6100c1610383565b6100ea61019f36600461073b565b610390565b6100ea6101b236600461073b565b610422565b6100fe6101c53660046107c4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600380546101fd906107f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610229906107f7565b80156102765780601f1061024b57610100808354040283529160200191610276565b820191906000526020600020905b81548152906001019060200180831161025957829003601f168201915b505050505081565b600061028b33848461042f565b5060015b92915050565b6001600160a01b0383166000908152600160209081526040808320338452909152812054600019811461032457828110156103175760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064015b60405180910390fd5b610324853385840361042f565b61032f85858561053c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103799082908690610374908790610831565b61042f565b5060019392505050565b600480546101fd906107f7565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156104155760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161030e565b61032f828686840361042f565b600061028b33848461053c565b6001600160a01b0383166104855760405162461bcd60e51b815260206004820181905260248201527f45524332303a20617070726f76652066726f6d207a65726f2061646472657373604482015260640161030e565b6001600160a01b0382166104db5760405162461bcd60e51b815260206004820152601e60248201527f45524332303a20617070726f766520746f207a65726f20616464726573730000604482015260640161030e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661059c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a207472616e736665722066726f6d207a65726f206164647265736044820152607360f81b606482015260840161030e565b6001600160a01b0382166105f25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a207472616e7366657220746f207a65726f206164647265737300604482015260640161030e565b6001600160a01b0383166000908152602081905260409020548181101561066a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161030e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b602081526000825180602084015260005b818110156106ff57602081860181015160408684010152016106e2565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461073657600080fd5b919050565b6000806040838503121561074e57600080fd5b6107578361071f565b946020939093013593505050565b60008060006060848603121561077a57600080fd5b6107838461071f565b92506107916020850161071f565b929592945050506040919091013590565b6000602082840312156107b457600080fd5b6107bd8261071f565b9392505050565b600080604083850312156107d757600080fd5b6107e08361071f565b91506107ee6020840161071f565b90509250929050565b600181811c9082168061080b57607f821691505b60208210810361082b57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561028f57634e487b7160e01b600052601160045260246000fdfea2646970667358221220d6833ce0bf733d913be3746040b4ef1334fe3d17044a3293e3da3c276684ab1c64736f6c634300081e0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000e355caa0d0eb5a3e74def0e8ef44e01eb4852665000000000000000000000000000000000000000000000000000000000000000842756c6c20476f64000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000742554c4c474f4400000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80633950935111610071578063395093511461014d57806370a082311461016057806395d89b4114610189578063a457c2d714610191578063a9059cbb146101a4578063dd62ed3e146101b757600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f57806332cb6b0c14610139575b600080fd5b6100c16101f0565b6040516100ce91906106d1565b60405180910390f35b6100ea6100e536600461073b565b61027e565b60405190151581526020016100ce565b6002545b6040519081526020016100ce565b6100ea61011a366004610765565b610295565b610127601281565b60405160ff90911681526020016100ce565b6100fe6c0c9f2c9cd04674edea4000000081565b6100ea61015b36600461073b565b61033a565b6100fe61016e3660046107a2565b6001600160a01b031660009081526020819052604090205490565b6100c1610383565b6100ea61019f36600461073b565b610390565b6100ea6101b236600461073b565b610422565b6100fe6101c53660046107c4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600380546101fd906107f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610229906107f7565b80156102765780601f1061024b57610100808354040283529160200191610276565b820191906000526020600020905b81548152906001019060200180831161025957829003601f168201915b505050505081565b600061028b33848461042f565b5060015b92915050565b6001600160a01b0383166000908152600160209081526040808320338452909152812054600019811461032457828110156103175760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064015b60405180910390fd5b610324853385840361042f565b61032f85858561053c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103799082908690610374908790610831565b61042f565b5060019392505050565b600480546101fd906107f7565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156104155760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161030e565b61032f828686840361042f565b600061028b33848461053c565b6001600160a01b0383166104855760405162461bcd60e51b815260206004820181905260248201527f45524332303a20617070726f76652066726f6d207a65726f2061646472657373604482015260640161030e565b6001600160a01b0382166104db5760405162461bcd60e51b815260206004820152601e60248201527f45524332303a20617070726f766520746f207a65726f20616464726573730000604482015260640161030e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661059c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a207472616e736665722066726f6d207a65726f206164647265736044820152607360f81b606482015260840161030e565b6001600160a01b0382166105f25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a207472616e7366657220746f207a65726f206164647265737300604482015260640161030e565b6001600160a01b0383166000908152602081905260409020548181101561066a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161030e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b602081526000825180602084015260005b818110156106ff57602081860181015160408684010152016106e2565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461073657600080fd5b919050565b6000806040838503121561074e57600080fd5b6107578361071f565b946020939093013593505050565b60008060006060848603121561077a57600080fd5b6107838461071f565b92506107916020850161071f565b929592945050506040919091013590565b6000602082840312156107b457600080fd5b6107bd8261071f565b9392505050565b600080604083850312156107d757600080fd5b6107e08361071f565b91506107ee6020840161071f565b90509250929050565b600181811c9082168061080b57607f821691505b60208210810361082b57634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561028f57634e487b7160e01b600052601160045260246000fdfea2646970667358221220d6833ce0bf733d913be3746040b4ef1334fe3d17044a3293e3da3c276684ab1c64736f6c634300081e0033

Deployed Bytecode Sourcemap

942:4444:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1149:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2668:159;;;;;;:::i;:::-;;:::i;:::-;;;1194:14:1;;1187:22;1169:41;;1157:2;1142:18;2668:159:0;1029:187:1;2107:100:0;2187:12;;2107:100;;;1367:25:1;;;1355:2;1340:18;2107:100:0;1221:177:1;2839:490:0;;;;;;:::i;:::-;;:::i;1201:35::-;;1234:2;1201:35;;;;;1954:4:1;1942:17;;;1924:36;;1912:2;1897:18;1201:35:0;1782:184:1;1313:63:0;;1350:26;1313:63;;3572:230;;;;;;:::i;:::-;;:::i;2219:119::-;;;;;;:::i;:::-;-1:-1:-1;;;;;2312:18:0;2285:7;2312:18;;;;;;;;;;;;2219:119;1174:20;;;:::i;4045:426::-;;;;;;:::i;:::-;;:::i;2350:151::-;;;;;;:::i;:::-;;:::i;2513:143::-;;;;;;:::i;:::-;-1:-1:-1;;;;;2621:18:0;;;2594:7;2621:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;2513:143;1149:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2668:159::-;2743:4;2760:37;2769:10;2781:7;2790:6;2760:8;:37::i;:::-;-1:-1:-1;2815:4:0;2668:159;;;;;:::o;2839:490::-;-1:-1:-1;;;;;2972:17:0;;2928:4;2972:17;;;:11;:17;;;;;;;;2990:10;2972:29;;;;;;;;-1:-1:-1;;3016:37:0;;3012:250;;3098:6;3078:16;:26;;3070:68;;;;-1:-1:-1;;;3070:68:0;;3014:2:1;3070:68:0;;;2996:21:1;3053:2;3033:18;;;3026:30;3092:31;3072:18;;;3065:59;3141:18;;3070:68:0;;;;;;;;;3182:53;3191:4;3197:10;3228:6;3209:16;:25;3182:8;:53::i;:::-;3272:27;3282:4;3288:2;3292:6;3272:9;:27::i;:::-;-1:-1:-1;3317:4:0;;2839:490;-1:-1:-1;;;;2839:490:0:o;3572:230::-;3685:10;3652:4;3731:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;3731:27:0;;;;;;;;;;3652:4;;3685:10;3706:66;;3685:10;;3722:7;;3731:40;;3761:10;;3731:40;:::i;:::-;3706:8;:66::i;:::-;-1:-1:-1;3790:4:0;;3572:230;-1:-1:-1;;;3572:230:0:o;1174:20::-;;;;;;;:::i;4045:426::-;4163:10;4130:4;4211:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;4211:27:0;;;;;;;;;;4130:4;;4163:10;4257:35;;;;4249:85;;;;-1:-1:-1;;;4249:85:0;;3599:2:1;4249:85:0;;;3581:21:1;3638:2;3618:18;;;3611:30;3677:34;3657:18;;;3650:62;-1:-1:-1;;;3728:18:1;;;3721:35;3773:19;;4249:85:0;3397:401:1;4249:85:0;4370:60;4379:5;4386:7;4414:15;4395:16;:34;4370:8;:60::i;2350:151::-;2421:4;2438:33;2448:10;2460:2;2464:6;2438:9;:33::i;5045:338::-;-1:-1:-1;;;;;5139:19:0;;5131:64;;;;-1:-1:-1;;;5131:64:0;;4005:2:1;5131:64:0;;;3987:21:1;;;4024:18;;;4017:30;4083:34;4063:18;;;4056:62;4135:18;;5131:64:0;3803:356:1;5131:64:0;-1:-1:-1;;;;;5214:21:0;;5206:64;;;;-1:-1:-1;;;5206:64:0;;4366:2:1;5206:64:0;;;4348:21:1;4405:2;4385:18;;;4378:30;4444:32;4424:18;;;4417:60;4494:18;;5206:64:0;4164:354:1;5206:64:0;-1:-1:-1;;;;;5291:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;5343:32;;1367:25:1;;;5343:32:0;;1340:18:1;5343:32:0;;;;;;;5045:338;;;:::o;4483:550::-;-1:-1:-1;;;;;4572:18:0;;4564:64;;;;-1:-1:-1;;;4564:64:0;;4725:2:1;4564:64:0;;;4707:21:1;4764:2;4744:18;;;4737:30;4803:34;4783:18;;;4776:62;-1:-1:-1;;;4854:18:1;;;4847:31;4895:19;;4564:64:0;4523:397:1;4564:64:0;-1:-1:-1;;;;;4647:16:0;;4639:60;;;;-1:-1:-1;;;4639:60:0;;5127:2:1;4639:60:0;;;5109:21:1;5166:2;5146:18;;;5139:30;5205:33;5185:18;;;5178:61;5256:18;;4639:60:0;4925:355:1;4639:60:0;-1:-1:-1;;;;;4742:15:0;;4720:19;4742:15;;;;;;;;;;;4776:21;;;;4768:72;;;;-1:-1:-1;;;4768:72:0;;5487:2:1;4768:72:0;;;5469:21:1;5526:2;5506:18;;;5499:30;5565:34;5545:18;;;5538:62;-1:-1:-1;;;5616:18:1;;;5609:36;5662:19;;4768:72:0;5285:402:1;4768:72:0;-1:-1:-1;;;;;4886:15:0;;;:9;:15;;;;;;;;;;;4904:20;;;4886:38;;4939:13;;;;;;;;;;:23;;;;;;4999:26;;1367:25:1;;;4939:13:0;;4999:26;;1340:18:1;4999:26:0;;;;;;;4553:480;4483:550;;;:::o;14:527:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;263:1;273:140;287:6;284:1;281:13;273:140;;;398:2;382:14;;;378:23;;372:30;367:2;348:17;;;344:26;337:66;302:10;273:140;;;277:3;462:1;457:2;448:6;437:9;433:22;429:31;422:42;532:2;525;521:7;516:2;508:6;504:15;500:29;489:9;485:45;481:54;473:62;;;14:527;;;;:::o;546:173::-;614:20;;-1:-1:-1;;;;;663:31:1;;653:42;;643:70;;709:1;706;699:12;643:70;546:173;;;:::o;724:300::-;792:6;800;853:2;841:9;832:7;828:23;824:32;821:52;;;869:1;866;859:12;821:52;892:29;911:9;892:29;:::i;:::-;882:39;990:2;975:18;;;;962:32;;-1:-1:-1;;;724:300:1:o;1403:374::-;1480:6;1488;1496;1549:2;1537:9;1528:7;1524:23;1520:32;1517:52;;;1565:1;1562;1555:12;1517:52;1588:29;1607:9;1588:29;:::i;:::-;1578:39;;1636:38;1670:2;1659:9;1655:18;1636:38;:::i;:::-;1403:374;;1626:48;;-1:-1:-1;;;1743:2:1;1728:18;;;;1715:32;;1403:374::o;1971:186::-;2030:6;2083:2;2071:9;2062:7;2058:23;2054:32;2051:52;;;2099:1;2096;2089:12;2051:52;2122:29;2141:9;2122:29;:::i;:::-;2112:39;1971:186;-1:-1:-1;;;1971:186:1:o;2162:260::-;2230:6;2238;2291:2;2279:9;2270:7;2266:23;2262:32;2259:52;;;2307:1;2304;2297:12;2259:52;2330:29;2349:9;2330:29;:::i;:::-;2320:39;;2378:38;2412:2;2401:9;2397:18;2378:38;:::i;:::-;2368:48;;2162:260;;;;;:::o;2427:380::-;2506:1;2502:12;;;;2549;;;2570:61;;2624:4;2616:6;2612:17;2602:27;;2570:61;2677:2;2669:6;2666:14;2646:18;2643:38;2640:161;;2723:10;2718:3;2714:20;2711:1;2704:31;2758:4;2755:1;2748:15;2786:4;2783:1;2776:15;2640:161;;2427:380;;;:::o;3170:222::-;3235:9;;;3256:10;;;3253:133;;;3308:10;3303:3;3299:20;3296:1;3289:31;3343:4;3340:1;3333:15;3371:4;3368:1;3361:15

Swarm Source

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