Source Code
Overview
ETH Balance
0 ETH
Token Holdings
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Latest 25 from a total of 14,569 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 4877768 | 398 days ago | IN | 0 ETH | 0.00039105 | ||||
Approve | 4877758 | 398 days ago | IN | 0 ETH | 0.00032541 | ||||
Approve | 4877736 | 398 days ago | IN | 0 ETH | 0.00034861 | ||||
Approve | 4877304 | 398 days ago | IN | 0 ETH | 0.00397094 | ||||
Mint To | 4748364 | 418 days ago | IN | 0 ETH | 0.00006995 | ||||
Mint To | 4748364 | 418 days ago | IN | 0 ETH | 0.00006995 | ||||
Mint To | 4748364 | 418 days ago | IN | 0 ETH | 0.00006995 | ||||
Mint To | 4748364 | 418 days ago | IN | 0 ETH | 0.00006995 | ||||
Mint To | 4748364 | 418 days ago | IN | 0 ETH | 0.00006995 | ||||
Mint To | 4748364 | 418 days ago | IN | 0 ETH | 0.00006995 | ||||
Mint To | 4748364 | 418 days ago | IN | 0 ETH | 0.00006995 | ||||
Mint To | 4748364 | 418 days ago | IN | 0 ETH | 0.00006995 | ||||
Mint To | 4748363 | 418 days ago | IN | 0 ETH | 0.00007283 | ||||
Mint To | 4748363 | 418 days ago | IN | 0 ETH | 0.00007285 | ||||
Mint To | 4748363 | 418 days ago | IN | 0 ETH | 0.00007285 | ||||
Mint To | 4748363 | 418 days ago | IN | 0 ETH | 0.00007285 | ||||
Mint To | 4748363 | 418 days ago | IN | 0 ETH | 0.00007285 | ||||
Mint To | 4748363 | 418 days ago | IN | 0 ETH | 0.00007285 | ||||
Mint To | 4748363 | 418 days ago | IN | 0 ETH | 0.00007285 | ||||
Mint To | 4748363 | 418 days ago | IN | 0 ETH | 0.00007285 | ||||
Mint To | 4748363 | 418 days ago | IN | 0 ETH | 0.00007285 | ||||
Mint To | 4748363 | 418 days ago | IN | 0 ETH | 0.00007285 | ||||
Mint To | 4748363 | 418 days ago | IN | 0 ETH | 0.00007285 | ||||
Mint To | 4748363 | 418 days ago | IN | 0 ETH | 0.00007331 | ||||
Mint To | 4748363 | 418 days ago | IN | 0 ETH | 0.00007331 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
LaunchPadToken
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-06 */ // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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 ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-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 ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 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/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.0) (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; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the 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/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 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/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.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 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)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual 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 { 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 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); } } } } // File: launchpad/Token.sol pragma solidity ^0.8.20; /** * @dev token */ contract LaunchPadToken is ERC20 { // uint8 private _decimals; /** * @dev construct */ constructor( string memory name_, string memory symbol_, uint8 decimals_ ) ERC20(name_, symbol_) { _decimals = decimals_; } function decimals() public view virtual override returns (uint8) { return _decimals; } /** * @dev mint token */ function mintTo(address account, uint64 amount) public { require(amount <= 100000); uint256 amount_with_decimals = amount * (10**_decimals); _mint(account, amount_with_decimals); } /** * @dev mint token */ function mintToMe(uint64 amount) public { mintTo(msg.sender, amount); } }
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint64","name":"amount","type":"uint64"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"amount","type":"uint64"}],"name":"mintToMe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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
608060405234801562000010575f80fd5b5060405162000c4438038062000c44833981016040819052620000339162000131565b828260036200004383826200023c565b5060046200005282826200023c565b50506005805460ff191660ff93909316929092179091555062000304915050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011262000097575f80fd5b81516001600160401b0380821115620000b457620000b462000073565b604051601f8301601f19908116603f01168101908282118183101715620000df57620000df62000073565b81604052838152602092508683858801011115620000fb575f80fd5b5f91505b838210156200011e5785820183015181830184015290820190620000ff565b5f93810190920192909252949350505050565b5f805f6060848603121562000144575f80fd5b83516001600160401b03808211156200015b575f80fd5b620001698783880162000087565b945060208601519150808211156200017f575f80fd5b506200018e8682870162000087565b925050604084015160ff81168114620001a5575f80fd5b809150509250925092565b600181811c90821680620001c557607f821691505b602082108103620001e457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000237575f81815260208120601f850160051c81016020861015620002125750805b601f850160051c820191505b8181101562000233578281556001016200021e565b5050505b505050565b81516001600160401b0381111562000258576200025862000073565b6200027081620002698454620001b0565b84620001ea565b602080601f831160018114620002a6575f84156200028e5750858301515b5f19600386901b1c1916600185901b17855562000233565b5f85815260208120601f198616915b82811015620002d657888601518255948401946001909101908401620002b5565b5085821015620002f457878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b61093280620003125f395ff3fe608060405234801561000f575f80fd5b50600436106100a6575f3560e01c8063313ce5671161006e578063313ce5671461012557806370a082311461013a57806393d756aa1461016257806395d89b4114610175578063a9059cbb1461017d578063dd62ed3e14610190575f80fd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd57806324dd214814610110575b5f80fd5b6100b26101c8565b6040516100bf9190610628565b60405180910390f35b6100db6100d636600461068e565b610258565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b3660046106b6565b610271565b61012361011e366004610706565b610294565b005b60055460405160ff90911681526020016100bf565b6100ef610148366004610726565b6001600160a01b03165f9081526020819052604090205490565b61012361017036600461073f565b6102a1565b6100b26102f2565b6100db61018b36600461068e565b610301565b6100ef61019e366004610770565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101d790610798565b80601f016020809104026020016040519081016040528092919081815260200182805461020390610798565b801561024e5780601f106102255761010080835404028352916020019161024e565b820191905f5260205f20905b81548152906001019060200180831161023157829003601f168201915b5050505050905090565b5f3361026581858561030e565b60019150505b92915050565b5f3361027e85828561031b565b61028985858561039b565b506001949350505050565b61029e33826102a1565b50565b620186a08167ffffffffffffffff1611156102ba575f80fd5b6005545f906102cd9060ff16600a6108c4565b6102e19067ffffffffffffffff84166108d2565b90506102ed83826103f8565b505050565b6060600480546101d790610798565b5f3361026581858561039b565b6102ed8383836001610430565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610395578181101561038757604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61039584848484035f610430565b50505050565b6001600160a01b0383166103c457604051634b637e8f60e11b81525f600482015260240161037e565b6001600160a01b0382166103ed5760405163ec442f0560e01b81525f600482015260240161037e565b6102ed838383610502565b6001600160a01b0382166104215760405163ec442f0560e01b81525f600482015260240161037e565b61042c5f8383610502565b5050565b6001600160a01b0384166104595760405163e602df0560e01b81525f600482015260240161037e565b6001600160a01b03831661048257604051634a1406b160e11b81525f600482015260240161037e565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561039557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104f491815260200190565b60405180910390a350505050565b6001600160a01b03831661052c578060025f82825461052191906108e9565b9091555061059c9050565b6001600160a01b0383165f908152602081905260409020548181101561057e5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161037e565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166105b8576002805482900390556105d6565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161061b91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b8181101561065357858101830151858201604001528201610637565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610689575f80fd5b919050565b5f806040838503121561069f575f80fd5b6106a883610673565b946020939093013593505050565b5f805f606084860312156106c8575f80fd5b6106d184610673565b92506106df60208501610673565b9150604084013590509250925092565b803567ffffffffffffffff81168114610689575f80fd5b5f60208284031215610716575f80fd5b61071f826106ef565b9392505050565b5f60208284031215610736575f80fd5b61071f82610673565b5f8060408385031215610750575f80fd5b61075983610673565b9150610767602084016106ef565b90509250929050565b5f8060408385031215610781575f80fd5b61078a83610673565b915061076760208401610673565b600181811c908216806107ac57607f821691505b6020821081036107ca57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561081e57815f1904821115610804576108046107d0565b8085161561081157918102915b93841c93908002906107e9565b509250929050565b5f826108345750600161026b565b8161084057505f61026b565b816001811461085657600281146108605761087c565b600191505061026b565b60ff841115610871576108716107d0565b50506001821b61026b565b5060208310610133831016604e8410600b841016171561089f575081810a61026b565b6108a983836107e4565b805f19048211156108bc576108bc6107d0565b029392505050565b5f61071f60ff841683610826565b808202811582820484141761026b5761026b6107d0565b8082018082111561026b5761026b6107d056fea2646970667358221220f8cf7949e61076e97a7bd93e5f23bfde59aeb565fd2a1da3fa9297b019d68e7a64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000d4d6f77676c69546573745553440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d55534400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100a6575f3560e01c8063313ce5671161006e578063313ce5671461012557806370a082311461013a57806393d756aa1461016257806395d89b4114610175578063a9059cbb1461017d578063dd62ed3e14610190575f80fd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd57806324dd214814610110575b5f80fd5b6100b26101c8565b6040516100bf9190610628565b60405180910390f35b6100db6100d636600461068e565b610258565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b3660046106b6565b610271565b61012361011e366004610706565b610294565b005b60055460405160ff90911681526020016100bf565b6100ef610148366004610726565b6001600160a01b03165f9081526020819052604090205490565b61012361017036600461073f565b6102a1565b6100b26102f2565b6100db61018b36600461068e565b610301565b6100ef61019e366004610770565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101d790610798565b80601f016020809104026020016040519081016040528092919081815260200182805461020390610798565b801561024e5780601f106102255761010080835404028352916020019161024e565b820191905f5260205f20905b81548152906001019060200180831161023157829003601f168201915b5050505050905090565b5f3361026581858561030e565b60019150505b92915050565b5f3361027e85828561031b565b61028985858561039b565b506001949350505050565b61029e33826102a1565b50565b620186a08167ffffffffffffffff1611156102ba575f80fd5b6005545f906102cd9060ff16600a6108c4565b6102e19067ffffffffffffffff84166108d2565b90506102ed83826103f8565b505050565b6060600480546101d790610798565b5f3361026581858561039b565b6102ed8383836001610430565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610395578181101561038757604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61039584848484035f610430565b50505050565b6001600160a01b0383166103c457604051634b637e8f60e11b81525f600482015260240161037e565b6001600160a01b0382166103ed5760405163ec442f0560e01b81525f600482015260240161037e565b6102ed838383610502565b6001600160a01b0382166104215760405163ec442f0560e01b81525f600482015260240161037e565b61042c5f8383610502565b5050565b6001600160a01b0384166104595760405163e602df0560e01b81525f600482015260240161037e565b6001600160a01b03831661048257604051634a1406b160e11b81525f600482015260240161037e565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561039557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516104f491815260200190565b60405180910390a350505050565b6001600160a01b03831661052c578060025f82825461052191906108e9565b9091555061059c9050565b6001600160a01b0383165f908152602081905260409020548181101561057e5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161037e565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166105b8576002805482900390556105d6565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161061b91815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b8181101561065357858101830151858201604001528201610637565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610689575f80fd5b919050565b5f806040838503121561069f575f80fd5b6106a883610673565b946020939093013593505050565b5f805f606084860312156106c8575f80fd5b6106d184610673565b92506106df60208501610673565b9150604084013590509250925092565b803567ffffffffffffffff81168114610689575f80fd5b5f60208284031215610716575f80fd5b61071f826106ef565b9392505050565b5f60208284031215610736575f80fd5b61071f82610673565b5f8060408385031215610750575f80fd5b61075983610673565b9150610767602084016106ef565b90509250929050565b5f8060408385031215610781575f80fd5b61078a83610673565b915061076760208401610673565b600181811c908216806107ac57607f821691505b6020821081036107ca57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561081e57815f1904821115610804576108046107d0565b8085161561081157918102915b93841c93908002906107e9565b509250929050565b5f826108345750600161026b565b8161084057505f61026b565b816001811461085657600281146108605761087c565b600191505061026b565b60ff841115610871576108716107d0565b50506001821b61026b565b5060208310610133831016604e8410600b841016171561089f575081810a61026b565b6108a983836107e4565b805f19048211156108bc576108bc6107d0565b029392505050565b5f61071f60ff841683610826565b808202811582820484141761026b5761026b6107d0565b8082018082111561026b5761026b6107d056fea2646970667358221220f8cf7949e61076e97a7bd93e5f23bfde59aeb565fd2a1da3fa9297b019d68e7a64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000d4d6f77676c69546573745553440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d55534400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): MowgliTestUSD
Arg [1] : symbol_ (string): MUSD
Arg [2] : decimals_ (uint8): 6
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 4d6f77676c695465737455534400000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4d55534400000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
22611:798:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13190:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15483:190;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;15483:190:0;1004:187:1;14292:99:0;14371:12;;14292:99;;;1342:25:1;;;1330:2;1315:18;14292:99:0;1196:177:1;16251:249:0;;;;;;:::i;:::-;;:::i;23321:85::-;;;;;;:::i;:::-;;:::i;:::-;;22909:100;22992:9;;22909:100;;22992:9;;;;2218:36:1;;2206:2;2191:18;22909:100:0;2076:184:1;14454:118:0;;;;;;:::i;:::-;-1:-1:-1;;;;;14546:18:0;14519:7;14546:18;;;;;;;;;;;;14454:118;23059:212;;;;;;:::i;:::-;;:::i;13400:95::-;;;:::i;14777:182::-;;;;;;:::i;:::-;;:::i;15022:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15129:18:0;;;15102:7;15129:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15022:142;13190:91;13235:13;13268:5;13261:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13190:91;:::o;15483:190::-;15556:4;7505:10;15612:31;7505:10;15628:7;15637:5;15612:8;:31::i;:::-;15661:4;15654:11;;;15483:190;;;;;:::o;16251:249::-;16338:4;7505:10;16396:37;16412:4;7505:10;16427:5;16396:15;:37::i;:::-;16444:26;16454:4;16460:2;16464:5;16444:9;:26::i;:::-;-1:-1:-1;16488:4:0;;16251:249;-1:-1:-1;;;;16251:249:0:o;23321:85::-;23372:26;23379:10;23391:6;23372;:26::i;:::-;23321:85;:::o;23059:212::-;23143:6;23133;:16;;;;23125:25;;;;;;23206:9;;23161:28;;23202:13;;23206:9;;23202:2;:13;:::i;:::-;23192:24;;;;;;:::i;:::-;23161:55;;23227:36;23233:7;23242:20;23227:5;:36::i;:::-;23114:157;23059:212;;:::o;13400:95::-;13447:13;13480:7;13473:14;;;;;:::i;14777:182::-;14846:4;7505:10;14902:27;7505:10;14919:2;14923:5;14902:9;:27::i;20310:130::-;20395:37;20404:5;20411:7;20420:5;20427:4;20395:8;:37::i;22026:487::-;-1:-1:-1;;;;;15129:18:0;;;22126:24;15129:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22193:37:0;;22189:317;;22270:5;22251:16;:24;22247:132;;;22303:60;;-1:-1:-1;;;22303:60:0;;-1:-1:-1;;;;;5277:32:1;;22303:60:0;;;5259:51:1;5326:18;;;5319:34;;;5369:18;;;5362:34;;;5232:18;;22303:60:0;;;;;;;;22247:132;22422:57;22431:5;22438:7;22466:5;22447:16;:24;22473:5;22422:8;:57::i;:::-;22115:398;22026:487;;;:::o;16885:308::-;-1:-1:-1;;;;;16969:18:0;;16965:88;;17011:30;;-1:-1:-1;;;17011:30:0;;17038:1;17011:30;;;5553:51:1;5526:18;;17011:30:0;5407:203:1;16965:88:0;-1:-1:-1;;;;;17067:16:0;;17063:88;;17107:32;;-1:-1:-1;;;17107:32:0;;17136:1;17107:32;;;5553:51:1;5526:18;;17107:32:0;5407:203:1;17063:88:0;17161:24;17169:4;17175:2;17179:5;17161:7;:24::i;19005:213::-;-1:-1:-1;;;;;19076:21:0;;19072:93;;19121:32;;-1:-1:-1;;;19121:32:0;;19150:1;19121:32;;;5553:51:1;5526:18;;19121:32:0;5407:203:1;19072:93:0;19175:35;19191:1;19195:7;19204:5;19175:7;:35::i;:::-;19005:213;;:::o;21291:443::-;-1:-1:-1;;;;;21404:19:0;;21400:91;;21447:32;;-1:-1:-1;;;21447:32:0;;21476:1;21447:32;;;5553:51:1;5526:18;;21447:32:0;5407:203:1;21400:91:0;-1:-1:-1;;;;;21505:21:0;;21501:92;;21550:31;;-1:-1:-1;;;21550:31:0;;21578:1;21550:31;;;5553:51:1;5526:18;;21550:31:0;5407:203:1;21501:92:0;-1:-1:-1;;;;;21603:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21649:78;;;;21700:7;-1:-1:-1;;;;;21684:31:0;21693:5;-1:-1:-1;;;;;21684:31:0;;21709:5;21684:31;;;;1342:25:1;;1330:2;1315:18;;1196:177;21684:31:0;;;;;;;;21291:443;;;;:::o;17517:1135::-;-1:-1:-1;;;;;17607:18:0;;17603:552;;17761:5;17745:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17603:552:0;;-1:-1:-1;17603:552:0;;-1:-1:-1;;;;;17821:15:0;;17799:19;17821:15;;;;;;;;;;;17855:19;;;17851:117;;;17902:50;;-1:-1:-1;;;17902:50:0;;-1:-1:-1;;;;;5277:32:1;;17902:50:0;;;5259:51:1;5326:18;;;5319:34;;;5369:18;;;5362:34;;;5232:18;;17902:50:0;5057:345:1;17851:117:0;-1:-1:-1;;;;;18091:15:0;;:9;:15;;;;;;;;;;18109:19;;;;18091:37;;17603:552;-1:-1:-1;;;;;18171:16:0;;18167:435;;18337:12;:21;;;;;;;18167:435;;;-1:-1:-1;;;;;18553:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18167:435;18634:2;-1:-1:-1;;;;;18619:25:0;18628:4;-1:-1:-1;;;;;18619:25:0;;18638:5;18619:25;;;;1342::1;;1330:2;1315:18;;1196:177;18619:25:0;;;;;;;;17517:1135;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:171::-;1778:20;;1838:18;1827:30;;1817:41;;1807:69;;1872:1;1869;1862:12;1887:184;1945:6;1998:2;1986:9;1977:7;1973:23;1969:32;1966:52;;;2014:1;2011;2004:12;1966:52;2037:28;2055:9;2037:28;:::i;:::-;2027:38;1887:184;-1:-1:-1;;;1887:184:1:o;2265:186::-;2324:6;2377:2;2365:9;2356:7;2352:23;2348:32;2345:52;;;2393:1;2390;2383:12;2345:52;2416:29;2435:9;2416:29;:::i;2456:258::-;2523:6;2531;2584:2;2572:9;2563:7;2559:23;2555:32;2552:52;;;2600:1;2597;2590:12;2552:52;2623:29;2642:9;2623:29;:::i;:::-;2613:39;;2671:37;2704:2;2693:9;2689:18;2671:37;:::i;:::-;2661:47;;2456:258;;;;;:::o;2719:260::-;2787:6;2795;2848:2;2836:9;2827:7;2823:23;2819:32;2816:52;;;2864:1;2861;2854:12;2816:52;2887:29;2906:9;2887:29;:::i;:::-;2877:39;;2935:38;2969:2;2958:9;2954:18;2935:38;:::i;2984:380::-;3063:1;3059:12;;;;3106;;;3127:61;;3181:4;3173:6;3169:17;3159:27;;3127:61;3234:2;3226:6;3223:14;3203:18;3200:38;3197:161;;3280:10;3275:3;3271:20;3268:1;3261:31;3315:4;3312:1;3305:15;3343:4;3340:1;3333:15;3197:161;;2984:380;;;:::o;3369:127::-;3430:10;3425:3;3421:20;3418:1;3411:31;3461:4;3458:1;3451:15;3485:4;3482:1;3475:15;3501:422;3590:1;3633:5;3590:1;3647:270;3668:7;3658:8;3655:21;3647:270;;;3727:4;3723:1;3719:6;3715:17;3709:4;3706:27;3703:53;;;3736:18;;:::i;:::-;3786:7;3776:8;3772:22;3769:55;;;3806:16;;;;3769:55;3885:22;;;;3845:15;;;;3647:270;;;3651:3;3501:422;;;;;:::o;3928:806::-;3977:5;4007:8;3997:80;;-1:-1:-1;4048:1:1;4062:5;;3997:80;4096:4;4086:76;;-1:-1:-1;4133:1:1;4147:5;;4086:76;4178:4;4196:1;4191:59;;;;4264:1;4259:130;;;;4171:218;;4191:59;4221:1;4212:10;;4235:5;;;4259:130;4296:3;4286:8;4283:17;4280:43;;;4303:18;;:::i;:::-;-1:-1:-1;;4359:1:1;4345:16;;4374:5;;4171:218;;4473:2;4463:8;4460:16;4454:3;4448:4;4445:13;4441:36;4435:2;4425:8;4422:16;4417:2;4411:4;4408:12;4404:35;4401:77;4398:159;;;-1:-1:-1;4510:19:1;;;4542:5;;4398:159;4589:34;4614:8;4608:4;4589:34;:::i;:::-;4659:6;4655:1;4651:6;4647:19;4638:7;4635:32;4632:58;;;4670:18;;:::i;:::-;4708:20;;3928:806;-1:-1:-1;;;3928:806:1:o;4739:140::-;4797:5;4826:47;4867:4;4857:8;4853:19;4847:4;4826:47;:::i;4884:168::-;4957:9;;;4988;;5005:15;;;4999:22;;4985:37;4975:71;;5026:18;;:::i;5615:125::-;5680:9;;;5701:10;;;5698:36;;;5714:18;;:::i
Swarm Source
ipfs://f8cf7949e61076e97a7bd93e5f23bfde59aeb565fd2a1da3fa9297b019d68e7a
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.