Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 87 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21440557 | 8 hrs ago | IN | 0 ETH | 0.00048283 | ||||
Approve | 21420411 | 3 days ago | IN | 0 ETH | 0.00050505 | ||||
Approve | 21414843 | 3 days ago | IN | 0 ETH | 0.00079425 | ||||
Approve | 21404321 | 5 days ago | IN | 0 ETH | 0.00031348 | ||||
Approve | 21402098 | 5 days ago | IN | 0 ETH | 0.0004446 | ||||
Approve | 21394140 | 6 days ago | IN | 0 ETH | 0.00068044 | ||||
Approve | 21380224 | 8 days ago | IN | 0 ETH | 0.00154107 | ||||
Approve | 21372451 | 9 days ago | IN | 0 ETH | 0.00094169 | ||||
Approve | 21370880 | 10 days ago | IN | 0 ETH | 0.00068874 | ||||
Transfer | 21370552 | 10 days ago | IN | 0 ETH | 0.00070684 | ||||
Approve | 21366818 | 10 days ago | IN | 0 ETH | 0.00133581 | ||||
Approve | 21365744 | 10 days ago | IN | 0 ETH | 0.00225746 | ||||
Approve | 21355425 | 12 days ago | IN | 0 ETH | 0.00037862 | ||||
Approve | 21355414 | 12 days ago | IN | 0 ETH | 0.00037374 | ||||
Transfer | 21355172 | 12 days ago | IN | 0 ETH | 0.00026616 | ||||
Transfer | 21355097 | 12 days ago | IN | 0 ETH | 0.00048124 | ||||
Approve | 21354290 | 12 days ago | IN | 0 ETH | 0.00045558 | ||||
Transfer | 21349981 | 12 days ago | IN | 0 ETH | 0.00045117 | ||||
Transfer | 21348359 | 13 days ago | IN | 0 ETH | 0.00080995 | ||||
Approve | 21344454 | 13 days ago | IN | 0 ETH | 0.00203493 | ||||
Approve | 21329249 | 15 days ago | IN | 0 ETH | 0.00094129 | ||||
Approve | 21322060 | 16 days ago | IN | 0 ETH | 0.00115302 | ||||
Approve | 21318629 | 17 days ago | IN | 0 ETH | 0.00087108 | ||||
Approve | 21318481 | 17 days ago | IN | 0 ETH | 0.0009232 | ||||
Approve | 21315121 | 17 days ago | IN | 0 ETH | 0.00091934 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
CustomToken
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // Ensure you're using the correct version of OpenZeppelin contracts import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; // Update the import path if necessary based on the version you're using import "@openzeppelin/contracts/access/Ownable.sol"; /** * @title CustomToken * @dev Implementation of a custom ERC20 token with minter role management and burn capabilities * Security features: * - Role-based minting control * - Protected owner privileges * - Standard burn capabilities */ contract CustomToken is ERC20Burnable, Ownable { uint8 private _decimals; mapping(address => bool) public isMinter; // Events for state change tracking event MinterAdded(address indexed minter); event MinterRemoved(address indexed minter); event MinterOperation(address indexed minter, address indexed to, uint256 amount); /** * @dev Constructor that sets up the token with initial parameters * @param name_ The name of the token * @param symbol_ The symbol of the token * @param decimals_ The number of decimals for the token */ constructor( string memory name_, string memory symbol_, uint8 decimals_ ) ERC20(name_, symbol_) Ownable(msg.sender) { require(decimals_ <= 18, "Decimals cannot exceed 18"); _decimals = decimals_; isMinter[msg.sender] = true; emit MinterAdded(msg.sender); } /** * @dev Returns the number of decimals used for token amounts */ function decimals() public view virtual override returns (uint8) { return _decimals; } /** * @dev Mints new tokens * @param to The address that will receive the minted tokens * @param amount The amount of tokens to mint */ function mint(address to, uint256 amount) public { require(to != address(0), "Cannot mint to zero address"); require(isMinter[msg.sender], "Only minters can mint tokens"); require(amount > 0, "Amount must be greater than 0"); _mint(to, amount); emit MinterOperation(msg.sender, to, amount); } /** * @dev Override burn function to add zero value check * @param amount The amount of tokens to burn */ function burn(uint256 amount) public virtual override { require(amount > 0, "Cannot burn zero tokens"); super.burn(amount); } /** * @dev Override burnFrom function to add zero value check * @param account The account whose tokens will be burned * @param amount The amount of tokens to burn */ function burnFrom(address account, uint256 amount) public virtual override { require(amount > 0, "Cannot burn zero tokens"); super.burnFrom(account, amount); } /** * @dev Transfers ownership and grants minter rights to the new owner if not already a minter * @param newOwner The address of the new owner */ function transferOwnership(address newOwner) public virtual override { require(newOwner != address(0), "New owner cannot be zero address"); super.transferOwnership(newOwner); if (!isMinter[newOwner]) { isMinter[newOwner] = true; emit MinterAdded(newOwner); } } /** * @dev Prevent ownership renouncement to ensure contract always has an owner */ function renounceOwnership() public virtual override { revert("Ownership renouncement is disabled"); } /** * @dev Adds a new minter * @param newMinter The address to be granted minting rights */ function addMinter(address newMinter) public onlyOwner { require(newMinter != address(0), "Cannot add zero address as minter"); require(!isMinter[newMinter], "Address is already a minter"); isMinter[newMinter] = true; emit MinterAdded(newMinter); } /** * @dev Removes a minter * @param minter The address to remove minting rights from */ function removeMinter(address minter) public onlyOwner { require(minter != address(0), "Cannot remove zero address as minter"); require(isMinter[minter], "Address is not a minter"); require(minter != owner(), "Cannot remove owner as minter"); isMinter[minter] = false; emit MinterRemoved(minter); } /** * @dev Allows a minter to renounce their minting rights */ function renounceMinter() public { require(isMinter[msg.sender], "Not a minter"); require(msg.sender != owner(), "Owner cannot renounce minter role"); isMinter[msg.sender] = false; emit MinterRemoved(msg.sender); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; import {ERC20} from "../ERC20.sol"; import {Context} from "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of tokens from `account`, deducting from * the caller's allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) 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); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the 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); }
// SPDX-License-Identifier: MIT // 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "remappings": [] }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":"minter","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MinterOperation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"newMinter","type":"address"}],"name":"addMinter","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b50604051612a5c380380612a5c8339818101604052810190610031919061041e565b338383816003908161004391906106b3565b50806004908161005391906106b3565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100c6575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016100bd91906107c1565b60405180910390fd5b6100d5816101d860201b60201c565b5060128160ff16111561011d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161011490610834565b60405180910390fd5b80600560146101000a81548160ff021916908360ff160217905550600160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a2505050610852565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6102fa826102b4565b810181811067ffffffffffffffff82111715610319576103186102c4565b5b80604052505050565b5f61032b61029b565b905061033782826102f1565b919050565b5f67ffffffffffffffff821115610356576103556102c4565b5b61035f826102b4565b9050602081019050919050565b8281835e5f83830152505050565b5f61038c6103878461033c565b610322565b9050828152602081018484840111156103a8576103a76102b0565b5b6103b384828561036c565b509392505050565b5f82601f8301126103cf576103ce6102ac565b5b81516103df84826020860161037a565b91505092915050565b5f60ff82169050919050565b6103fd816103e8565b8114610407575f80fd5b50565b5f81519050610418816103f4565b92915050565b5f805f60608486031215610435576104346102a4565b5b5f84015167ffffffffffffffff811115610452576104516102a8565b5b61045e868287016103bb565b935050602084015167ffffffffffffffff81111561047f5761047e6102a8565b5b61048b868287016103bb565b925050604061049c8682870161040a565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806104f457607f821691505b602082108103610507576105066104b0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261052e565b610573868361052e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6105b76105b26105ad8461058b565b610594565b61058b565b9050919050565b5f819050919050565b6105d08361059d565b6105e46105dc826105be565b84845461053a565b825550505050565b5f90565b6105f86105ec565b6106038184846105c7565b505050565b5b818110156106265761061b5f826105f0565b600181019050610609565b5050565b601f82111561066b5761063c8161050d565b6106458461051f565b81016020851015610654578190505b6106686106608561051f565b830182610608565b50505b505050565b5f82821c905092915050565b5f61068b5f1984600802610670565b1980831691505092915050565b5f6106a3838361067c565b9150826002028217905092915050565b6106bc826104a6565b67ffffffffffffffff8111156106d5576106d46102c4565b5b6106df82546104dd565b6106ea82828561062a565b5f60209050601f83116001811461071b575f8415610709578287015190505b6107138582610698565b86555061077a565b601f1984166107298661050d565b5f5b828110156107505784890151825560018201915060208501945060208101905061072b565b8683101561076d5784890151610769601f89168261067c565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6107ab82610782565b9050919050565b6107bb816107a1565b82525050565b5f6020820190506107d45f8301846107b2565b92915050565b5f82825260208201905092915050565b7f446563696d616c732063616e6e6f7420657863656564203138000000000000005f82015250565b5f61081e6019836107da565b9150610829826107ea565b602082019050919050565b5f6020820190508181035f83015261084b81610812565b9050919050565b6121fd8061085f5f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c8063715018a6116100ab578063986502751161006f57806398650275146102df578063a9059cbb146102e9578063aa271e1a14610319578063dd62ed3e14610349578063f2fde38b146103795761011f565b8063715018a61461026157806379cc67901461026b5780638da5cb5b1461028757806395d89b41146102a5578063983b2d56146102c35761011f565b80633092afd5116100f25780633092afd5146101bf578063313ce567146101db57806340c10f19146101f957806342966c681461021557806370a08231146102315761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b610395565b604051610138919061186b565b60405180910390f35b61015b6004803603810190610156919061191c565b610425565b6040516101689190611974565b60405180910390f35b610179610447565b604051610186919061199c565b60405180910390f35b6101a960048036038101906101a491906119b5565b610450565b6040516101b69190611974565b60405180910390f35b6101d960048036038101906101d49190611a05565b61047e565b005b6101e361068c565b6040516101f09190611a4b565b60405180910390f35b610213600480360381019061020e919061191c565b6106a2565b005b61022f600480360381019061022a9190611a64565b61084e565b005b61024b60048036038101906102469190611a05565b61089c565b604051610258919061199c565b60405180910390f35b6102696108e1565b005b6102856004803603810190610280919061191c565b61091c565b005b61028f61096c565b60405161029c9190611a9e565b60405180910390f35b6102ad610994565b6040516102ba919061186b565b60405180910390f35b6102dd60048036038101906102d89190611a05565b610a24565b005b6102e7610bbf565b005b61030360048036038101906102fe919061191c565b610d56565b6040516103109190611974565b60405180910390f35b610333600480360381019061032e9190611a05565b610d78565b6040516103409190611974565b60405180910390f35b610363600480360381019061035e9190611ab7565b610d95565b604051610370919061199c565b60405180910390f35b610393600480360381019061038e9190611a05565b610e17565b005b6060600380546103a490611b22565b80601f01602080910402602001604051908101604052809291908181526020018280546103d090611b22565b801561041b5780601f106103f25761010080835404028352916020019161041b565b820191905f5260205f20905b8154815290600101906020018083116103fe57829003601f168201915b5050505050905090565b5f8061042f610f78565b905061043c818585610f7f565b600191505092915050565b5f600254905090565b5f8061045a610f78565b9050610467858285610f91565b610472858585611023565b60019150509392505050565b610486611113565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036104f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104eb90611bc2565b60405180910390fd5b60065f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661057d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057490611c2a565b60405180910390fd5b61058561096c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e990611c92565b60405180910390fd5b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b5f600560149054906101000a900460ff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070790611cfa565b60405180910390fd5b60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079090611d62565b60405180910390fd5b5f81116107db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d290611dca565b60405180910390fd5b6107e5828261119a565b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f060609a2a61d39608e9f8ffedc91bc03dc346f154cb1220940aff4e1467e527d83604051610842919061199c565b60405180910390a35050565b5f8111610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088790611e32565b60405180910390fd5b61089981611219565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091390611ec0565b60405180910390fd5b5f811161095e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095590611e32565b60405180910390fd5b610968828261122d565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109a390611b22565b80601f01602080910402602001604051908101604052809291908181526020018280546109cf90611b22565b8015610a1a5780601f106109f157610100808354040283529160200191610a1a565b820191905f5260205f20905b8154815290600101906020018083116109fd57829003601f168201915b5050505050905090565b610a2c611113565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190611f4e565b60405180910390fd5b60065f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b90611fb6565b60405180910390fd5b600160065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f9061201e565b60405180910390fd5b610c5061096c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb4906120ac565b60405180910390fd5b5f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a2565b5f80610d60610f78565b9050610d6d818585611023565b600191505092915050565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90612114565b60405180910390fd5b610e8e8161124d565b60065f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610f7557600160065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a25b50565b5f33905090565b610f8c83838360016112d1565b505050565b5f610f9c8484610d95565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461101d578181101561100e578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161100593929190612132565b60405180910390fd5b61101c84848484035f6112d1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611093575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161108a9190611a9e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611103575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110fa9190611a9e565b60405180910390fd5b61110e8383836114a0565b505050565b61111b610f78565b73ffffffffffffffffffffffffffffffffffffffff1661113961096c565b73ffffffffffffffffffffffffffffffffffffffff16146111985761115c610f78565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161118f9190611a9e565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120a575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016112019190611a9e565b60405180910390fd5b6112155f83836114a0565b5050565b61122a611224610f78565b826116b9565b50565b61123f82611239610f78565b83610f91565b61124982826116b9565b5050565b611255611113565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112c5575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016112bc9190611a9e565b60405180910390fd5b6112ce81611738565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611341575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016113389190611a9e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113b1575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113a89190611a9e565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561149a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611491919061199c565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114f0578060025f8282546114e49190612194565b925050819055506115be565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611579578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161157093929190612132565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611605578060025f828254039250508190555061164f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116ac919061199c565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611729575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016117209190611a9e565b60405180910390fd5b611734825f836114a0565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61183d826117fb565b6118478185611805565b9350611857818560208601611815565b61186081611823565b840191505092915050565b5f6020820190508181035f8301526118838184611833565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6118b88261188f565b9050919050565b6118c8816118ae565b81146118d2575f80fd5b50565b5f813590506118e3816118bf565b92915050565b5f819050919050565b6118fb816118e9565b8114611905575f80fd5b50565b5f81359050611916816118f2565b92915050565b5f80604083850312156119325761193161188b565b5b5f61193f858286016118d5565b925050602061195085828601611908565b9150509250929050565b5f8115159050919050565b61196e8161195a565b82525050565b5f6020820190506119875f830184611965565b92915050565b611996816118e9565b82525050565b5f6020820190506119af5f83018461198d565b92915050565b5f805f606084860312156119cc576119cb61188b565b5b5f6119d9868287016118d5565b93505060206119ea868287016118d5565b92505060406119fb86828701611908565b9150509250925092565b5f60208284031215611a1a57611a1961188b565b5b5f611a27848285016118d5565b91505092915050565b5f60ff82169050919050565b611a4581611a30565b82525050565b5f602082019050611a5e5f830184611a3c565b92915050565b5f60208284031215611a7957611a7861188b565b5b5f611a8684828501611908565b91505092915050565b611a98816118ae565b82525050565b5f602082019050611ab15f830184611a8f565b92915050565b5f8060408385031215611acd57611acc61188b565b5b5f611ada858286016118d5565b9250506020611aeb858286016118d5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611b3957607f821691505b602082108103611b4c57611b4b611af5565b5b50919050565b7f43616e6e6f742072656d6f7665207a65726f2061646472657373206173206d695f8201527f6e74657200000000000000000000000000000000000000000000000000000000602082015250565b5f611bac602483611805565b9150611bb782611b52565b604082019050919050565b5f6020820190508181035f830152611bd981611ba0565b9050919050565b7f41646472657373206973206e6f742061206d696e7465720000000000000000005f82015250565b5f611c14601783611805565b9150611c1f82611be0565b602082019050919050565b5f6020820190508181035f830152611c4181611c08565b9050919050565b7f43616e6e6f742072656d6f7665206f776e6572206173206d696e7465720000005f82015250565b5f611c7c601d83611805565b9150611c8782611c48565b602082019050919050565b5f6020820190508181035f830152611ca981611c70565b9050919050565b7f43616e6e6f74206d696e7420746f207a65726f206164647265737300000000005f82015250565b5f611ce4601b83611805565b9150611cef82611cb0565b602082019050919050565b5f6020820190508181035f830152611d1181611cd8565b9050919050565b7f4f6e6c79206d696e746572732063616e206d696e7420746f6b656e73000000005f82015250565b5f611d4c601c83611805565b9150611d5782611d18565b602082019050919050565b5f6020820190508181035f830152611d7981611d40565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f611db4601d83611805565b9150611dbf82611d80565b602082019050919050565b5f6020820190508181035f830152611de181611da8565b9050919050565b7f43616e6e6f74206275726e207a65726f20746f6b656e730000000000000000005f82015250565b5f611e1c601783611805565b9150611e2782611de8565b602082019050919050565b5f6020820190508181035f830152611e4981611e10565b9050919050565b7f4f776e6572736869702072656e6f756e63656d656e742069732064697361626c5f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f611eaa602283611805565b9150611eb582611e50565b604082019050919050565b5f6020820190508181035f830152611ed781611e9e565b9050919050565b7f43616e6e6f7420616464207a65726f2061646472657373206173206d696e74655f8201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b5f611f38602183611805565b9150611f4382611ede565b604082019050919050565b5f6020820190508181035f830152611f6581611f2c565b9050919050565b7f4164647265737320697320616c72656164792061206d696e74657200000000005f82015250565b5f611fa0601b83611805565b9150611fab82611f6c565b602082019050919050565b5f6020820190508181035f830152611fcd81611f94565b9050919050565b7f4e6f742061206d696e74657200000000000000000000000000000000000000005f82015250565b5f612008600c83611805565b915061201382611fd4565b602082019050919050565b5f6020820190508181035f83015261203581611ffc565b9050919050565b7f4f776e65722063616e6e6f742072656e6f756e6365206d696e74657220726f6c5f8201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b5f612096602183611805565b91506120a18261203c565b604082019050919050565b5f6020820190508181035f8301526120c38161208a565b9050919050565b7f4e6577206f776e65722063616e6e6f74206265207a65726f20616464726573735f82015250565b5f6120fe602083611805565b9150612109826120ca565b602082019050919050565b5f6020820190508181035f83015261212b816120f2565b9050919050565b5f6060820190506121455f830186611a8f565b612152602083018561198d565b61215f604083018461198d565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61219e826118e9565b91506121a9836118e9565b92508282019050808211156121c1576121c0612167565b5b9291505056fea2646970667358221220014042091c02c7455c53c14fd57a8f114f0c71aaeaf4451bce25dcb05b5e57a364736f6c634300081a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000005485944524100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054859445241000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c8063715018a6116100ab578063986502751161006f57806398650275146102df578063a9059cbb146102e9578063aa271e1a14610319578063dd62ed3e14610349578063f2fde38b146103795761011f565b8063715018a61461026157806379cc67901461026b5780638da5cb5b1461028757806395d89b41146102a5578063983b2d56146102c35761011f565b80633092afd5116100f25780633092afd5146101bf578063313ce567146101db57806340c10f19146101f957806342966c681461021557806370a08231146102315761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b610395565b604051610138919061186b565b60405180910390f35b61015b6004803603810190610156919061191c565b610425565b6040516101689190611974565b60405180910390f35b610179610447565b604051610186919061199c565b60405180910390f35b6101a960048036038101906101a491906119b5565b610450565b6040516101b69190611974565b60405180910390f35b6101d960048036038101906101d49190611a05565b61047e565b005b6101e361068c565b6040516101f09190611a4b565b60405180910390f35b610213600480360381019061020e919061191c565b6106a2565b005b61022f600480360381019061022a9190611a64565b61084e565b005b61024b60048036038101906102469190611a05565b61089c565b604051610258919061199c565b60405180910390f35b6102696108e1565b005b6102856004803603810190610280919061191c565b61091c565b005b61028f61096c565b60405161029c9190611a9e565b60405180910390f35b6102ad610994565b6040516102ba919061186b565b60405180910390f35b6102dd60048036038101906102d89190611a05565b610a24565b005b6102e7610bbf565b005b61030360048036038101906102fe919061191c565b610d56565b6040516103109190611974565b60405180910390f35b610333600480360381019061032e9190611a05565b610d78565b6040516103409190611974565b60405180910390f35b610363600480360381019061035e9190611ab7565b610d95565b604051610370919061199c565b60405180910390f35b610393600480360381019061038e9190611a05565b610e17565b005b6060600380546103a490611b22565b80601f01602080910402602001604051908101604052809291908181526020018280546103d090611b22565b801561041b5780601f106103f25761010080835404028352916020019161041b565b820191905f5260205f20905b8154815290600101906020018083116103fe57829003601f168201915b5050505050905090565b5f8061042f610f78565b905061043c818585610f7f565b600191505092915050565b5f600254905090565b5f8061045a610f78565b9050610467858285610f91565b610472858585611023565b60019150509392505050565b610486611113565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036104f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104eb90611bc2565b60405180910390fd5b60065f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661057d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057490611c2a565b60405180910390fd5b61058561096c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e990611c92565b60405180910390fd5b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b5f600560149054906101000a900460ff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610710576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070790611cfa565b60405180910390fd5b60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079090611d62565b60405180910390fd5b5f81116107db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d290611dca565b60405180910390fd5b6107e5828261119a565b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f060609a2a61d39608e9f8ffedc91bc03dc346f154cb1220940aff4e1467e527d83604051610842919061199c565b60405180910390a35050565b5f8111610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088790611e32565b60405180910390fd5b61089981611219565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091390611ec0565b60405180910390fd5b5f811161095e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095590611e32565b60405180910390fd5b610968828261122d565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109a390611b22565b80601f01602080910402602001604051908101604052809291908181526020018280546109cf90611b22565b8015610a1a5780601f106109f157610100808354040283529160200191610a1a565b820191905f5260205f20905b8154815290600101906020018083116109fd57829003601f168201915b5050505050905090565b610a2c611113565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190611f4e565b60405180910390fd5b60065f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b90611fb6565b60405180910390fd5b600160065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f9061201e565b60405180910390fd5b610c5061096c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb4906120ac565b60405180910390fd5b5f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a2565b5f80610d60610f78565b9050610d6d818585611023565b600191505092915050565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90612114565b60405180910390fd5b610e8e8161124d565b60065f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610f7557600160065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a25b50565b5f33905090565b610f8c83838360016112d1565b505050565b5f610f9c8484610d95565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461101d578181101561100e578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161100593929190612132565b60405180910390fd5b61101c84848484035f6112d1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611093575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161108a9190611a9e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611103575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110fa9190611a9e565b60405180910390fd5b61110e8383836114a0565b505050565b61111b610f78565b73ffffffffffffffffffffffffffffffffffffffff1661113961096c565b73ffffffffffffffffffffffffffffffffffffffff16146111985761115c610f78565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161118f9190611a9e565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120a575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016112019190611a9e565b60405180910390fd5b6112155f83836114a0565b5050565b61122a611224610f78565b826116b9565b50565b61123f82611239610f78565b83610f91565b61124982826116b9565b5050565b611255611113565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112c5575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016112bc9190611a9e565b60405180910390fd5b6112ce81611738565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611341575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016113389190611a9e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113b1575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113a89190611a9e565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561149a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611491919061199c565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114f0578060025f8282546114e49190612194565b925050819055506115be565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611579578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161157093929190612132565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611605578060025f828254039250508190555061164f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116ac919061199c565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611729575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016117209190611a9e565b60405180910390fd5b611734825f836114a0565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61183d826117fb565b6118478185611805565b9350611857818560208601611815565b61186081611823565b840191505092915050565b5f6020820190508181035f8301526118838184611833565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6118b88261188f565b9050919050565b6118c8816118ae565b81146118d2575f80fd5b50565b5f813590506118e3816118bf565b92915050565b5f819050919050565b6118fb816118e9565b8114611905575f80fd5b50565b5f81359050611916816118f2565b92915050565b5f80604083850312156119325761193161188b565b5b5f61193f858286016118d5565b925050602061195085828601611908565b9150509250929050565b5f8115159050919050565b61196e8161195a565b82525050565b5f6020820190506119875f830184611965565b92915050565b611996816118e9565b82525050565b5f6020820190506119af5f83018461198d565b92915050565b5f805f606084860312156119cc576119cb61188b565b5b5f6119d9868287016118d5565b93505060206119ea868287016118d5565b92505060406119fb86828701611908565b9150509250925092565b5f60208284031215611a1a57611a1961188b565b5b5f611a27848285016118d5565b91505092915050565b5f60ff82169050919050565b611a4581611a30565b82525050565b5f602082019050611a5e5f830184611a3c565b92915050565b5f60208284031215611a7957611a7861188b565b5b5f611a8684828501611908565b91505092915050565b611a98816118ae565b82525050565b5f602082019050611ab15f830184611a8f565b92915050565b5f8060408385031215611acd57611acc61188b565b5b5f611ada858286016118d5565b9250506020611aeb858286016118d5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611b3957607f821691505b602082108103611b4c57611b4b611af5565b5b50919050565b7f43616e6e6f742072656d6f7665207a65726f2061646472657373206173206d695f8201527f6e74657200000000000000000000000000000000000000000000000000000000602082015250565b5f611bac602483611805565b9150611bb782611b52565b604082019050919050565b5f6020820190508181035f830152611bd981611ba0565b9050919050565b7f41646472657373206973206e6f742061206d696e7465720000000000000000005f82015250565b5f611c14601783611805565b9150611c1f82611be0565b602082019050919050565b5f6020820190508181035f830152611c4181611c08565b9050919050565b7f43616e6e6f742072656d6f7665206f776e6572206173206d696e7465720000005f82015250565b5f611c7c601d83611805565b9150611c8782611c48565b602082019050919050565b5f6020820190508181035f830152611ca981611c70565b9050919050565b7f43616e6e6f74206d696e7420746f207a65726f206164647265737300000000005f82015250565b5f611ce4601b83611805565b9150611cef82611cb0565b602082019050919050565b5f6020820190508181035f830152611d1181611cd8565b9050919050565b7f4f6e6c79206d696e746572732063616e206d696e7420746f6b656e73000000005f82015250565b5f611d4c601c83611805565b9150611d5782611d18565b602082019050919050565b5f6020820190508181035f830152611d7981611d40565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f611db4601d83611805565b9150611dbf82611d80565b602082019050919050565b5f6020820190508181035f830152611de181611da8565b9050919050565b7f43616e6e6f74206275726e207a65726f20746f6b656e730000000000000000005f82015250565b5f611e1c601783611805565b9150611e2782611de8565b602082019050919050565b5f6020820190508181035f830152611e4981611e10565b9050919050565b7f4f776e6572736869702072656e6f756e63656d656e742069732064697361626c5f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f611eaa602283611805565b9150611eb582611e50565b604082019050919050565b5f6020820190508181035f830152611ed781611e9e565b9050919050565b7f43616e6e6f7420616464207a65726f2061646472657373206173206d696e74655f8201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b5f611f38602183611805565b9150611f4382611ede565b604082019050919050565b5f6020820190508181035f830152611f6581611f2c565b9050919050565b7f4164647265737320697320616c72656164792061206d696e74657200000000005f82015250565b5f611fa0601b83611805565b9150611fab82611f6c565b602082019050919050565b5f6020820190508181035f830152611fcd81611f94565b9050919050565b7f4e6f742061206d696e74657200000000000000000000000000000000000000005f82015250565b5f612008600c83611805565b915061201382611fd4565b602082019050919050565b5f6020820190508181035f83015261203581611ffc565b9050919050565b7f4f776e65722063616e6e6f742072656e6f756e6365206d696e74657220726f6c5f8201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b5f612096602183611805565b91506120a18261203c565b604082019050919050565b5f6020820190508181035f8301526120c38161208a565b9050919050565b7f4e6577206f776e65722063616e6e6f74206265207a65726f20616464726573735f82015250565b5f6120fe602083611805565b9150612109826120ca565b602082019050919050565b5f6020820190508181035f83015261212b816120f2565b9050919050565b5f6060820190506121455f830186611a8f565b612152602083018561198d565b61215f604083018461198d565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61219e826118e9565b91506121a9836118e9565b92508282019050808211156121c1576121c0612167565b5b9291505056fea2646970667358221220014042091c02c7455c53c14fd57a8f114f0c71aaeaf4451bce25dcb05b5e57a364736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000005485944524100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054859445241000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): HYDRA
Arg [1] : symbol_ (string): HYDRA
Arg [2] : decimals_ (uint8): 18
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 4859445241000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4859445241000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
646:4319:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074:89:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4293:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3144:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5039:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4251:358:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1673:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1946:352;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2435:148;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3299:116:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3593::7;;;:::i;:::-;;2787:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1638:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2276:93:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3832:299:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4697:265;;;:::i;:::-;;3610:178:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;730:40:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3846:140:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3147:337:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2074:89:2;2119:13;2151:5;2144:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074:89;:::o;4293:186::-;4366:4;4382:13;4398:12;:10;:12::i;:::-;4382:28;;4420:31;4429:5;4436:7;4445:5;4420:8;:31::i;:::-;4468:4;4461:11;;;4293:186;;;;:::o;3144:97::-;3196:7;3222:12;;3215:19;;3144:97;:::o;5039:244::-;5126:4;5142:15;5160:12;:10;:12::i;:::-;5142:30;;5182:37;5198:4;5204:7;5213:5;5182:15;:37::i;:::-;5229:26;5239:4;5245:2;5249:5;5229:9;:26::i;:::-;5272:4;5265:11;;;5039:244;;;;;:::o;4251:358:7:-;1531:13:0;:11;:13::i;:::-;4343:1:7::1;4325:20;;:6;:20;;::::0;4317:69:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4405:8;:16;4414:6;4405:16;;;;;;;;;;;;;;;;;;;;;;;;;4397:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;4478:7;:5;:7::i;:::-;4468:17;;:6;:17;;::::0;4460:59:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4559:5;4540:8;:16;4549:6;4540:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;4594:6;4580:21;;;;;;;;;;;;4251:358:::0;:::o;1673:100::-;1731:5;1756:9;;;;;;;;;;;1749:16;;1673:100;:::o;1946:352::-;2028:1;2014:16;;:2;:16;;;2006:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:8;:20;2090:10;2081:20;;;;;;;;;;;;;;;;;;;;;;;;;2073:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;2162:1;2153:6;:10;2145:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;2218:17;2224:2;2228:6;2218:5;:17::i;:::-;2279:2;2251:39;;2267:10;2251:39;;;2283:6;2251:39;;;;;;:::i;:::-;;;;;;;;1946:352;;:::o;2435:148::-;2517:1;2508:6;:10;2500:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;2557:18;2568:6;2557:10;:18::i;:::-;2435:148;:::o;3299:116:2:-;3364:7;3390:9;:18;3400:7;3390:18;;;;;;;;;;;;;;;;3383:25;;3299:116;;;:::o;3593::7:-;3657:44;;;;;;;;;;:::i;:::-;;;;;;;;2787:182;2890:1;2881:6;:10;2873:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;2930:31;2945:7;2954:6;2930:14;:31::i;:::-;2787:182;;:::o;1638:85:0:-;1684:7;1710:6;;;;;;;;;;;1703:13;;1638:85;:::o;2276:93:2:-;2323:13;2355:7;2348:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2276:93;:::o;3832:299:7:-;1531:13:0;:11;:13::i;:::-;3927:1:7::1;3906:23;;:9;:23;;::::0;3898:69:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3987:8;:19;3996:9;3987:19;;;;;;;;;;;;;;;;;;;;;;;;;3986:20;3978:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;4081:4;4059:8;:19;4068:9;4059:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;4113:9;4101:22;;;;;;;;;;;;3832:299:::0;:::o;4697:265::-;4749:8;:20;4758:10;4749:20;;;;;;;;;;;;;;;;;;;;;;;;;4741:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;4819:7;:5;:7::i;:::-;4805:21;;:10;:21;;;4797:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;4908:5;4885:8;:20;4894:10;4885:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;4943:10;4929:25;;;;;;;;;;;;4697:265::o;3610:178:2:-;3679:4;3695:13;3711:12;:10;:12::i;:::-;3695:28;;3733:27;3743:5;3750:2;3754:5;3733:9;:27::i;:::-;3777:4;3770:11;;;3610:178;;;;:::o;730:40:7:-;;;;;;;;;;;;;;;;;;;;;;:::o;3846:140:2:-;3926:7;3952:11;:18;3964:5;3952:18;;;;;;;;;;;;;;;:27;3971:7;3952:27;;;;;;;;;;;;;;;;3945:34;;3846:140;;;;:::o;3147:337:7:-;3255:1;3235:22;;:8;:22;;;3227:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;3305:33;3329:8;3305:23;:33::i;:::-;3364:8;:18;3373:8;3364:18;;;;;;;;;;;;;;;;;;;;;;;;;3359:118;;3420:4;3399:8;:18;3408:8;3399:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;3456:8;3444:21;;;;;;;;;;;;3359:118;3147:337;:::o;656:96:6:-;709:7;735:10;728:17;;656:96;:::o;8989:128:2:-;9073:37;9082:5;9089:7;9098:5;9105:4;9073:8;:37::i;:::-;8989:128;;;:::o;10663:477::-;10762:24;10789:25;10799:5;10806:7;10789:9;:25::i;:::-;10762:52;;10848:17;10828:16;:37;10824:310;;10904:5;10885:16;:24;10881:130;;;10963:7;10972:16;10990:5;10936:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;10881:130;11052:57;11061:5;11068:7;11096:5;11077:16;:24;11103:5;11052:8;:57::i;:::-;10824:310;10752:388;10663:477;;;:::o;5656:300::-;5755:1;5739:18;;:4;:18;;;5735:86;;5807:1;5780:30;;;;;;;;;;;:::i;:::-;;;;;;;;5735:86;5848:1;5834:16;;:2;:16;;;5830:86;;5902:1;5873:32;;;;;;;;;;;:::i;:::-;;;;;;;;5830:86;5925:24;5933:4;5939:2;5943:5;5925:7;:24::i;:::-;5656:300;;;:::o;1796:162:0:-;1866:12;:10;:12::i;:::-;1855:23;;:7;:5;:7::i;:::-;:23;;;1851:101;;1928:12;:10;:12::i;:::-;1901:40;;;;;;;;;;;:::i;:::-;;;;;;;;1851:101;1796:162::o;7721:208:2:-;7810:1;7791:21;;:7;:21;;;7787:91;;7864:1;7835:32;;;;;;;;;;;:::i;:::-;;;;;;;;7787:91;7887:35;7903:1;7907:7;7916:5;7887:7;:35::i;:::-;7721:208;;:::o;618:87:4:-;672:26;678:12;:10;:12::i;:::-;692:5;672;:26::i;:::-;618:87;:::o;1021:158::-;1096:45;1112:7;1121:12;:10;:12::i;:::-;1135:5;1096:15;:45::i;:::-;1151:21;1157:7;1166:5;1151;:21::i;:::-;1021:158;;:::o;2543:215:0:-;1531:13;:11;:13::i;:::-;2647:1:::1;2627:22;;:8;:22;;::::0;2623:91:::1;;2700:1;2672:31;;;;;;;;;;;:::i;:::-;;;;;;;;2623:91;2723:28;2742:8;2723:18;:28::i;:::-;2543:215:::0;:::o;9949:432:2:-;10078:1;10061:19;;:5;:19;;;10057:89;;10132:1;10103:32;;;;;;;;;;;:::i;:::-;;;;;;;;10057:89;10178:1;10159:21;;:7;:21;;;10155:90;;10231:1;10203:31;;;;;;;;;;;:::i;:::-;;;;;;;;10155:90;10284:5;10254:11;:18;10266:5;10254:18;;;;;;;;;;;;;;;:27;10273:7;10254:27;;;;;;;;;;;;;;;:35;;;;10303:9;10299:76;;;10349:7;10333:31;;10342:5;10333:31;;;10358:5;10333:31;;;;;;:::i;:::-;;;;;;;;10299:76;9949:432;;;;:::o;6271:1107::-;6376:1;6360:18;;:4;:18;;;6356:540;;6512:5;6496:12;;:21;;;;;;;:::i;:::-;;;;;;;;6356:540;;;6548:19;6570:9;:15;6580:4;6570:15;;;;;;;;;;;;;;;;6548:37;;6617:5;6603:11;:19;6599:115;;;6674:4;6680:11;6693:5;6649:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6599:115;6866:5;6852:11;:19;6834:9;:15;6844:4;6834:15;;;;;;;;;;;;;;;:37;;;;6534:362;6356:540;6924:1;6910:16;;:2;:16;;;6906:425;;7089:5;7073:12;;:21;;;;;;;;;;;6906:425;;;7301:5;7284:9;:13;7294:2;7284:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;6906:425;7361:2;7346:25;;7355:4;7346:25;;;7365:5;7346:25;;;;;;:::i;:::-;;;;;;;;6271:1107;;;:::o;8247:206::-;8336:1;8317:21;;:7;:21;;;8313:89;;8388:1;8361:30;;;;;;;;;;;:::i;:::-;;;;;;;;8313:89;8411:35;8419:7;8436:1;8440:5;8411:7;:35::i;:::-;8247:206;;:::o;2912:187:0:-;2985:16;3004:6;;;;;;;;;;;2985:25;;3029:8;3020:6;;:17;;;;;;;;;;;;;;;;;;3083:8;3052:40;;3073:8;3052:40;;;;;;;;;;;;2975:124;2912:187;:::o;7:99:8:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:329::-;4375:6;4424:2;4412:9;4403:7;4399:23;4395:32;4392:119;;;4430:79;;:::i;:::-;4392:119;4550:1;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4521:117;4316:329;;;;:::o;4651:86::-;4686:7;4726:4;4719:5;4715:16;4704:27;;4651:86;;;:::o;4743:112::-;4826:22;4842:5;4826:22;:::i;:::-;4821:3;4814:35;4743:112;;:::o;4861:214::-;4950:4;4988:2;4977:9;4973:18;4965:26;;5001:67;5065:1;5054:9;5050:17;5041:6;5001:67;:::i;:::-;4861:214;;;;:::o;5081:329::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:474::-;5836:6;5844;5893:2;5881:9;5872:7;5868:23;5864:32;5861:119;;;5899:79;;:::i;:::-;5861:119;6019:1;6044:53;6089:7;6080:6;6069:9;6065:22;6044:53;:::i;:::-;6034:63;;5990:117;6146:2;6172:53;6217:7;6208:6;6197:9;6193:22;6172:53;:::i;:::-;6162:63;;6117:118;5768:474;;;;;:::o;6248:180::-;6296:77;6293:1;6286:88;6393:4;6390:1;6383:15;6417:4;6414:1;6407:15;6434:320;6478:6;6515:1;6509:4;6505:12;6495:22;;6562:1;6556:4;6552:12;6583:18;6573:81;;6639:4;6631:6;6627:17;6617:27;;6573:81;6701:2;6693:6;6690:14;6670:18;6667:38;6664:84;;6720:18;;:::i;:::-;6664:84;6485:269;6434:320;;;:::o;6760:223::-;6900:34;6896:1;6888:6;6884:14;6877:58;6969:6;6964:2;6956:6;6952:15;6945:31;6760:223;:::o;6989:366::-;7131:3;7152:67;7216:2;7211:3;7152:67;:::i;:::-;7145:74;;7228:93;7317:3;7228:93;:::i;:::-;7346:2;7341:3;7337:12;7330:19;;6989:366;;;:::o;7361:419::-;7527:4;7565:2;7554:9;7550:18;7542:26;;7614:9;7608:4;7604:20;7600:1;7589:9;7585:17;7578:47;7642:131;7768:4;7642:131;:::i;:::-;7634:139;;7361:419;;;:::o;7786:173::-;7926:25;7922:1;7914:6;7910:14;7903:49;7786:173;:::o;7965:366::-;8107:3;8128:67;8192:2;8187:3;8128:67;:::i;:::-;8121:74;;8204:93;8293:3;8204:93;:::i;:::-;8322:2;8317:3;8313:12;8306:19;;7965:366;;;:::o;8337:419::-;8503:4;8541:2;8530:9;8526:18;8518:26;;8590:9;8584:4;8580:20;8576:1;8565:9;8561:17;8554:47;8618:131;8744:4;8618:131;:::i;:::-;8610:139;;8337:419;;;:::o;8762:179::-;8902:31;8898:1;8890:6;8886:14;8879:55;8762:179;:::o;8947:366::-;9089:3;9110:67;9174:2;9169:3;9110:67;:::i;:::-;9103:74;;9186:93;9275:3;9186:93;:::i;:::-;9304:2;9299:3;9295:12;9288:19;;8947:366;;;:::o;9319:419::-;9485:4;9523:2;9512:9;9508:18;9500:26;;9572:9;9566:4;9562:20;9558:1;9547:9;9543:17;9536:47;9600:131;9726:4;9600:131;:::i;:::-;9592:139;;9319:419;;;:::o;9744:177::-;9884:29;9880:1;9872:6;9868:14;9861:53;9744:177;:::o;9927:366::-;10069:3;10090:67;10154:2;10149:3;10090:67;:::i;:::-;10083:74;;10166:93;10255:3;10166:93;:::i;:::-;10284:2;10279:3;10275:12;10268:19;;9927:366;;;:::o;10299:419::-;10465:4;10503:2;10492:9;10488:18;10480:26;;10552:9;10546:4;10542:20;10538:1;10527:9;10523:17;10516:47;10580:131;10706:4;10580:131;:::i;:::-;10572:139;;10299:419;;;:::o;10724:178::-;10864:30;10860:1;10852:6;10848:14;10841:54;10724:178;:::o;10908:366::-;11050:3;11071:67;11135:2;11130:3;11071:67;:::i;:::-;11064:74;;11147:93;11236:3;11147:93;:::i;:::-;11265:2;11260:3;11256:12;11249:19;;10908:366;;;:::o;11280:419::-;11446:4;11484:2;11473:9;11469:18;11461:26;;11533:9;11527:4;11523:20;11519:1;11508:9;11504:17;11497:47;11561:131;11687:4;11561:131;:::i;:::-;11553:139;;11280:419;;;:::o;11705:179::-;11845:31;11841:1;11833:6;11829:14;11822:55;11705:179;:::o;11890:366::-;12032:3;12053:67;12117:2;12112:3;12053:67;:::i;:::-;12046:74;;12129:93;12218:3;12129:93;:::i;:::-;12247:2;12242:3;12238:12;12231:19;;11890:366;;;:::o;12262:419::-;12428:4;12466:2;12455:9;12451:18;12443:26;;12515:9;12509:4;12505:20;12501:1;12490:9;12486:17;12479:47;12543:131;12669:4;12543:131;:::i;:::-;12535:139;;12262:419;;;:::o;12687:173::-;12827:25;12823:1;12815:6;12811:14;12804:49;12687:173;:::o;12866:366::-;13008:3;13029:67;13093:2;13088:3;13029:67;:::i;:::-;13022:74;;13105:93;13194:3;13105:93;:::i;:::-;13223:2;13218:3;13214:12;13207:19;;12866:366;;;:::o;13238:419::-;13404:4;13442:2;13431:9;13427:18;13419:26;;13491:9;13485:4;13481:20;13477:1;13466:9;13462:17;13455:47;13519:131;13645:4;13519:131;:::i;:::-;13511:139;;13238:419;;;:::o;13663:221::-;13803:34;13799:1;13791:6;13787:14;13780:58;13872:4;13867:2;13859:6;13855:15;13848:29;13663:221;:::o;13890:366::-;14032:3;14053:67;14117:2;14112:3;14053:67;:::i;:::-;14046:74;;14129:93;14218:3;14129:93;:::i;:::-;14247:2;14242:3;14238:12;14231:19;;13890:366;;;:::o;14262:419::-;14428:4;14466:2;14455:9;14451:18;14443:26;;14515:9;14509:4;14505:20;14501:1;14490:9;14486:17;14479:47;14543:131;14669:4;14543:131;:::i;:::-;14535:139;;14262:419;;;:::o;14687:220::-;14827:34;14823:1;14815:6;14811:14;14804:58;14896:3;14891:2;14883:6;14879:15;14872:28;14687:220;:::o;14913:366::-;15055:3;15076:67;15140:2;15135:3;15076:67;:::i;:::-;15069:74;;15152:93;15241:3;15152:93;:::i;:::-;15270:2;15265:3;15261:12;15254:19;;14913:366;;;:::o;15285:419::-;15451:4;15489:2;15478:9;15474:18;15466:26;;15538:9;15532:4;15528:20;15524:1;15513:9;15509:17;15502:47;15566:131;15692:4;15566:131;:::i;:::-;15558:139;;15285:419;;;:::o;15710:177::-;15850:29;15846:1;15838:6;15834:14;15827:53;15710:177;:::o;15893:366::-;16035:3;16056:67;16120:2;16115:3;16056:67;:::i;:::-;16049:74;;16132:93;16221:3;16132:93;:::i;:::-;16250:2;16245:3;16241:12;16234:19;;15893:366;;;:::o;16265:419::-;16431:4;16469:2;16458:9;16454:18;16446:26;;16518:9;16512:4;16508:20;16504:1;16493:9;16489:17;16482:47;16546:131;16672:4;16546:131;:::i;:::-;16538:139;;16265:419;;;:::o;16690:162::-;16830:14;16826:1;16818:6;16814:14;16807:38;16690:162;:::o;16858:366::-;17000:3;17021:67;17085:2;17080:3;17021:67;:::i;:::-;17014:74;;17097:93;17186:3;17097:93;:::i;:::-;17215:2;17210:3;17206:12;17199:19;;16858:366;;;:::o;17230:419::-;17396:4;17434:2;17423:9;17419:18;17411:26;;17483:9;17477:4;17473:20;17469:1;17458:9;17454:17;17447:47;17511:131;17637:4;17511:131;:::i;:::-;17503:139;;17230:419;;;:::o;17655:220::-;17795:34;17791:1;17783:6;17779:14;17772:58;17864:3;17859:2;17851:6;17847:15;17840:28;17655:220;:::o;17881:366::-;18023:3;18044:67;18108:2;18103:3;18044:67;:::i;:::-;18037:74;;18120:93;18209:3;18120:93;:::i;:::-;18238:2;18233:3;18229:12;18222:19;;17881:366;;;:::o;18253:419::-;18419:4;18457:2;18446:9;18442:18;18434:26;;18506:9;18500:4;18496:20;18492:1;18481:9;18477:17;18470:47;18534:131;18660:4;18534:131;:::i;:::-;18526:139;;18253:419;;;:::o;18678:182::-;18818:34;18814:1;18806:6;18802:14;18795:58;18678:182;:::o;18866:366::-;19008:3;19029:67;19093:2;19088:3;19029:67;:::i;:::-;19022:74;;19105:93;19194:3;19105:93;:::i;:::-;19223:2;19218:3;19214:12;19207:19;;18866:366;;;:::o;19238:419::-;19404:4;19442:2;19431:9;19427:18;19419:26;;19491:9;19485:4;19481:20;19477:1;19466:9;19462:17;19455:47;19519:131;19645:4;19519:131;:::i;:::-;19511:139;;19238:419;;;:::o;19663:442::-;19812:4;19850:2;19839:9;19835:18;19827:26;;19863:71;19931:1;19920:9;19916:17;19907:6;19863:71;:::i;:::-;19944:72;20012:2;20001:9;19997:18;19988:6;19944:72;:::i;:::-;20026;20094:2;20083:9;20079:18;20070:6;20026:72;:::i;:::-;19663:442;;;;;;:::o;20111:180::-;20159:77;20156:1;20149:88;20256:4;20253:1;20246:15;20280:4;20277:1;20270:15;20297:191;20337:3;20356:20;20374:1;20356:20;:::i;:::-;20351:25;;20390:20;20408:1;20390:20;:::i;:::-;20385:25;;20433:1;20430;20426:9;20419:16;;20454:3;20451:1;20448:10;20445:36;;;20461:18;;:::i;:::-;20445:36;20297:191;;;;:::o
Swarm Source
ipfs://014042091c02c7455c53c14fd57a8f114f0c71aaeaf4451bce25dcb05b5e57a3
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.