ERC-20
Overview
Max Total Supply
237,000,000 $CRTMAN
Holders
10
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
4,495,019.078346836942399346 $CRTMANValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CARTMAN
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-13 */ /** X:https://twitter.com/CartmanKickAss Web:https://cartmaneric.com/ TG:https://t.me/CartmanKickAss */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.6; /** * @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; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, 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}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(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}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { 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); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: contracts/Xwitter.sol //SPDX-License-Identifier:MIT pragma solidity ^0.8.6; contract CARTMAN is ERC20 { constructor() ERC20(unicode"CARTMAN", unicode"$CRTMAN") { _mint(msg.sender, 237000000 * 10 ** decimals()); owner = msg.sender; } address public owner; modifier onlyOwner() { require(msg.sender == owner, "Only the contract owner can call this function."); _;} function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0), "Invalid address."); owner = newOwner; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[{"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600781526020016621a0a92a26a0a760c91b815250604051806040016040528060078152602001661221a92a26a0a760c91b81525081600390805190602001906200006a9291906200019e565b508051620000809060049060208401906200019e565b505050620000bb3362000098620000d360201b60201c565b620000a590600a620002a8565b620000b590630e20554062000376565b620000d8565b600580546001600160a01b03191633179055620003eb565b601290565b6001600160a01b038216620001335760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000147919062000244565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b828054620001ac9062000398565b90600052602060002090601f016020900481019282620001d057600085556200021b565b82601f10620001eb57805160ff19168380011785556200021b565b828001600101855582156200021b579182015b828111156200021b578251825591602001919060010190620001fe565b50620002299291506200022d565b5090565b5b808211156200022957600081556001016200022e565b600082198211156200025a576200025a620003d5565b500190565b600181815b80851115620002a0578160001904821115620002845762000284620003d5565b808516156200029257918102915b93841c939080029062000264565b509250929050565b6000620002b960ff841683620002c0565b9392505050565b600082620002d15750600162000370565b81620002e05750600062000370565b8160018114620002f95760028114620003045762000324565b600191505062000370565b60ff841115620003185762000318620003d5565b50506001821b62000370565b5060208310610133831016604e8410600b841016171562000349575081810a62000370565b6200035583836200025f565b80600019048211156200036c576200036c620003d5565b0290505b92915050565b6000816000190483118215151615620003935762000393620003d5565b500290565b600181811c90821680620003ad57607f821691505b60208210811415620003cf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6109a080620003fb6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d7146101b8578063a9059cbb146101cb578063dd62ed3e146101de578063f2fde38b146101f157600080fd5b806370a082311461015c5780638da5cb5b1461018557806395d89b41146101b057600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a5780633950935114610149575b600080fd5b6100dc610206565b6040516100e991906108b4565b60405180910390f35b61010561010036600461088a565b610298565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b61010561013536600461084e565b6102b0565b604051601281526020016100e9565b61010561015736600461088a565b6102d4565b61011961016a3660046107f9565b6001600160a01b031660009081526020819052604090205490565b600554610198906001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b6100dc6102f6565b6101056101c636600461088a565b610305565b6101056101d936600461088a565b610385565b6101196101ec36600461081b565b610393565b6102046101ff3660046107f9565b6103be565b005b6060600380546102159061092f565b80601f01602080910402602001604051908101604052809291908181526020018280546102419061092f565b801561028e5780601f106102635761010080835404028352916020019161028e565b820191906000526020600020905b81548152906001019060200180831161027157829003601f168201915b5050505050905090565b6000336102a681858561049b565b5060019392505050565b6000336102be8582856105bf565b6102c9858585610639565b506001949350505050565b6000336102a68185856102e78383610393565b6102f19190610909565b61049b565b6060600480546102159061092f565b600033816103138286610393565b9050838110156103785760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102c9828686840361049b565b6000336102a6818585610639565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146104305760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792074686520636f6e7472616374206f776e65722063616e2063616c6c60448201526e103a3434b990333ab731ba34b7b71760891b606482015260840161036f565b6001600160a01b0381166104795760405162461bcd60e51b815260206004820152601060248201526f24b73b30b634b21030b2323932b9b99760811b604482015260640161036f565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166104fd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036f565b6001600160a01b03821661055e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006105cb8484610393565b9050600019811461063357818110156106265760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036f565b610633848484840361049b565b50505050565b6001600160a01b03831661069d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036f565b6001600160a01b0382166106ff5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036f565b6001600160a01b038316600090815260208190526040902054818110156107775760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610633565b80356001600160a01b03811681146107f457600080fd5b919050565b60006020828403121561080b57600080fd5b610814826107dd565b9392505050565b6000806040838503121561082e57600080fd5b610837836107dd565b9150610845602084016107dd565b90509250929050565b60008060006060848603121561086357600080fd5b61086c846107dd565b925061087a602085016107dd565b9150604084013590509250925092565b6000806040838503121561089d57600080fd5b6108a6836107dd565b946020939093013593505050565b600060208083528351808285015260005b818110156108e1578581018301518582016040015282016108c5565b818111156108f3576000604083870101525b50601f01601f1916929092016040019392505050565b6000821982111561092a57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c9082168061094357607f821691505b6020821081141561096457634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220c2499bfd3379a22be775d4354349588a426fe88f26e06eb471b0a60b0b70381764736f6c63430008060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d7146101b8578063a9059cbb146101cb578063dd62ed3e146101de578063f2fde38b146101f157600080fd5b806370a082311461015c5780638da5cb5b1461018557806395d89b41146101b057600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a5780633950935114610149575b600080fd5b6100dc610206565b6040516100e991906108b4565b60405180910390f35b61010561010036600461088a565b610298565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b61010561013536600461084e565b6102b0565b604051601281526020016100e9565b61010561015736600461088a565b6102d4565b61011961016a3660046107f9565b6001600160a01b031660009081526020819052604090205490565b600554610198906001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b6100dc6102f6565b6101056101c636600461088a565b610305565b6101056101d936600461088a565b610385565b6101196101ec36600461081b565b610393565b6102046101ff3660046107f9565b6103be565b005b6060600380546102159061092f565b80601f01602080910402602001604051908101604052809291908181526020018280546102419061092f565b801561028e5780601f106102635761010080835404028352916020019161028e565b820191906000526020600020905b81548152906001019060200180831161027157829003601f168201915b5050505050905090565b6000336102a681858561049b565b5060019392505050565b6000336102be8582856105bf565b6102c9858585610639565b506001949350505050565b6000336102a68185856102e78383610393565b6102f19190610909565b61049b565b6060600480546102159061092f565b600033816103138286610393565b9050838110156103785760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102c9828686840361049b565b6000336102a6818585610639565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146104305760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792074686520636f6e7472616374206f776e65722063616e2063616c6c60448201526e103a3434b990333ab731ba34b7b71760891b606482015260840161036f565b6001600160a01b0381166104795760405162461bcd60e51b815260206004820152601060248201526f24b73b30b634b21030b2323932b9b99760811b604482015260640161036f565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166104fd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161036f565b6001600160a01b03821661055e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161036f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006105cb8484610393565b9050600019811461063357818110156106265760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161036f565b610633848484840361049b565b50505050565b6001600160a01b03831661069d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161036f565b6001600160a01b0382166106ff5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161036f565b6001600160a01b038316600090815260208190526040902054818110156107775760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161036f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610633565b80356001600160a01b03811681146107f457600080fd5b919050565b60006020828403121561080b57600080fd5b610814826107dd565b9392505050565b6000806040838503121561082e57600080fd5b610837836107dd565b9150610845602084016107dd565b90509250929050565b60008060006060848603121561086357600080fd5b61086c846107dd565b925061087a602085016107dd565b9150604084013590509250925092565b6000806040838503121561089d57600080fd5b6108a6836107dd565b946020939093013593505050565b600060208083528351808285015260005b818110156108e1578581018301518582016040015282016108c5565b818111156108f3576000604083870101525b50601f01601f1916929092016040019392505050565b6000821982111561092a57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c9082168061094357607f821691505b6020821081141561096457634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220c2499bfd3379a22be775d4354349588a426fe88f26e06eb471b0a60b0b70381764736f6c63430008060033
Deployed Bytecode Sourcemap
17837:506:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6748:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9108:201;;;;;;:::i;:::-;;:::i;:::-;;;1613:14:1;;1606:22;1588:41;;1576:2;1561:18;9108:201:0;1543:92:1;7877:108:0;7965:12;;7877:108;;;5938:25:1;;;5926:2;5911:18;7877:108:0;5893:76:1;9889:261:0;;;;;;:::i;:::-;;:::i;7719:93::-;;;7802:2;6116:36:1;;6104:2;6089:18;7719:93:0;6071:87:1;10559:238:0;;;;;;:::i;:::-;;:::i;8048:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8149:18:0;8122:7;8149:18;;;;;;;;;;;;8048:127;18027:20;;;;;-1:-1:-1;;;;;18027:20:0;;;;;;-1:-1:-1;;;;;1404:32:1;;;1386:51;;1374:2;1359:18;18027:20:0;1341:102:1;6967:104:0;;;:::i;11300:436::-;;;;;;:::i;:::-;;:::i;8381:193::-;;;;;;:::i;:::-;;:::i;8637:151::-;;;;;;:::i;:::-;;:::i;18181:159::-;;;;;;:::i;:::-;;:::i;:::-;;6748:100;6802:13;6835:5;6828:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6748:100;:::o;9108:201::-;9191:4;886:10;9247:32;886:10;9263:7;9272:6;9247:8;:32::i;:::-;-1:-1:-1;9297:4:0;;9108:201;-1:-1:-1;;;9108:201:0:o;9889:261::-;9986:4;886:10;10044:38;10060:4;886:10;10075:6;10044:15;:38::i;:::-;10093:27;10103:4;10109:2;10113:6;10093:9;:27::i;:::-;-1:-1:-1;10138:4:0;;9889:261;-1:-1:-1;;;;9889:261:0:o;10559:238::-;10647:4;886:10;10703:64;886:10;10719:7;10756:10;10728:25;886:10;10719:7;10728:9;:25::i;:::-;:38;;;;:::i;:::-;10703:8;:64::i;6967:104::-;7023:13;7056:7;7049:14;;;;;:::i;11300:436::-;11393:4;886:10;11393:4;11476:25;886:10;11493:7;11476:9;:25::i;:::-;11449:52;;11540:15;11520:16;:35;;11512:85;;;;-1:-1:-1;;;11512:85:0;;5588:2:1;11512:85:0;;;5570:21:1;5627:2;5607:18;;;5600:30;5666:34;5646:18;;;5639:62;-1:-1:-1;;;5717:18:1;;;5710:35;5762:19;;11512:85:0;;;;;;;;;11633:60;11642:5;11649:7;11677:15;11658:16;:34;11633:8;:60::i;8381:193::-;8460:4;886:10;8516:28;886:10;8533:2;8537:6;8516:9;:28::i;8637:151::-;-1:-1:-1;;;;;8753:18:0;;;8726:7;8753:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8637:151::o;18181:159::-;18108:5;;-1:-1:-1;;;;;18108:5:0;18094:10;:19;18086:79;;;;-1:-1:-1;;;18086:79:0;;5172:2:1;18086:79:0;;;5154:21:1;5211:2;5191:18;;;5184:30;5250:34;5230:18;;;5223:62;-1:-1:-1;;;5301:18:1;;;5294:45;5356:19;;18086:79:0;5144:237:1;18086:79:0;-1:-1:-1;;;;;18262:22:0;::::1;18254:51;;;::::0;-1:-1:-1;;;18254:51:0;;4016:2:1;18254:51:0::1;::::0;::::1;3998:21:1::0;4055:2;4035:18;;;4028:30;-1:-1:-1;;;4074:18:1;;;4067:46;4130:18;;18254:51:0::1;3988:166:1::0;18254:51:0::1;18316:5;:16:::0;;-1:-1:-1;;;;;;18316:16:0::1;-1:-1:-1::0;;;;;18316:16:0;;;::::1;::::0;;;::::1;::::0;;18181:159::o;15293:346::-;-1:-1:-1;;;;;15395:19:0;;15387:68;;;;-1:-1:-1;;;15387:68:0;;4767:2:1;15387:68:0;;;4749:21:1;4806:2;4786:18;;;4779:30;4845:34;4825:18;;;4818:62;-1:-1:-1;;;4896:18:1;;;4889:34;4940:19;;15387:68:0;4739:226:1;15387:68:0;-1:-1:-1;;;;;15474:21:0;;15466:68;;;;-1:-1:-1;;;15466:68:0;;2848:2:1;15466:68:0;;;2830:21:1;2887:2;2867:18;;;2860:30;2926:34;2906:18;;;2899:62;-1:-1:-1;;;2977:18:1;;;2970:32;3019:19;;15466:68:0;2820:224:1;15466:68:0;-1:-1:-1;;;;;15547:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15599:32;;5938:25:1;;;15599:32:0;;5911:18:1;15599:32:0;;;;;;;15293:346;;;:::o;15930:419::-;16031:24;16058:25;16068:5;16075:7;16058:9;:25::i;:::-;16031:52;;-1:-1:-1;;16098:16:0;:37;16094:248;;16180:6;16160:16;:26;;16152:68;;;;-1:-1:-1;;;16152:68:0;;3251:2:1;16152:68:0;;;3233:21:1;3290:2;3270:18;;;3263:30;3329:31;3309:18;;;3302:59;3378:18;;16152:68:0;3223:179:1;16152:68:0;16264:51;16273:5;16280:7;16308:6;16289:16;:25;16264:8;:51::i;:::-;16020:329;15930:419;;;:::o;12206:806::-;-1:-1:-1;;;;;12303:18:0;;12295:68;;;;-1:-1:-1;;;12295:68:0;;4361:2:1;12295:68:0;;;4343:21:1;4400:2;4380:18;;;4373:30;4439:34;4419:18;;;4412:62;-1:-1:-1;;;4490:18:1;;;4483:35;4535:19;;12295:68:0;4333:227:1;12295:68:0;-1:-1:-1;;;;;12382:16:0;;12374:64;;;;-1:-1:-1;;;12374:64:0;;2444:2:1;12374:64:0;;;2426:21:1;2483:2;2463:18;;;2456:30;2522:34;2502:18;;;2495:62;-1:-1:-1;;;2573:18:1;;;2566:33;2616:19;;12374:64:0;2416:225:1;12374:64:0;-1:-1:-1;;;;;12524:15:0;;12502:19;12524:15;;;;;;;;;;;12558:21;;;;12550:72;;;;-1:-1:-1;;;12550:72:0;;3609:2:1;12550:72:0;;;3591:21:1;3648:2;3628:18;;;3621:30;3687:34;3667:18;;;3660:62;-1:-1:-1;;;3738:18:1;;;3731:36;3784:19;;12550:72:0;3581:228:1;12550:72:0;-1:-1:-1;;;;;12658:15:0;;;:9;:15;;;;;;;;;;;12676:20;;;12658:38;;12876:13;;;;;;;;;;:23;;;;;;12928:26;;5938:25:1;;;12876:13:0;;12928:26;;5911:18:1;12928:26:0;;;;;;;12967:37;16949:91;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;:::-;333:39;262:116;-1:-1:-1;;;262:116:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:2;;;1126:1;1123;1116:12;1078:2;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;1068:167:1:o;1640:597::-;1752:4;1781:2;1810;1799:9;1792:21;1842:6;1836:13;1885:6;1880:2;1869:9;1865:18;1858:34;1910:1;1920:140;1934:6;1931:1;1928:13;1920:140;;;2029:14;;;2025:23;;2019:30;1995:17;;;2014:2;1991:26;1984:66;1949:10;;1920:140;;;2078:6;2075:1;2072:13;2069:2;;;2148:1;2143:2;2134:6;2123:9;2119:22;2115:31;2108:42;2069:2;-1:-1:-1;2221:2:1;2200:15;-1:-1:-1;;2196:29:1;2181:45;;;;2228:2;2177:54;;1761:476;-1:-1:-1;;;1761:476:1:o;6163:225::-;6203:3;6234:1;6230:6;6227:1;6224:13;6221:2;;;6279:10;6274:3;6270:20;6267:1;6260:31;6314:4;6311:1;6304:15;6342:4;6339:1;6332:15;6221:2;-1:-1:-1;6373:9:1;;6211:177::o;6393:380::-;6472:1;6468:12;;;;6515;;;6536:2;;6590:4;6582:6;6578:17;6568:27;;6536:2;6643;6635:6;6632:14;6612:18;6609:38;6606:2;;;6689:10;6684:3;6680:20;6677:1;6670:31;6724:4;6721:1;6714:15;6752:4;6749:1;6742:15;6606:2;;6448:325;;;:::o
Swarm Source
ipfs://c2499bfd3379a22be775d4354349588a426fe88f26e06eb471b0a60b0b703817
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.